2017-01-10 02:30:39 -06:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2017- Statoil ASA
|
|
|
|
//
|
|
|
|
// ResInsight 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.
|
|
|
|
//
|
|
|
|
// ResInsight 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 at <http://www.gnu.org/licenses/gpl.html>
|
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "RifEclipseExportTools.h"
|
|
|
|
|
2017-01-11 07:32:15 -06:00
|
|
|
#include "RiaApplication.h"
|
2017-02-28 03:01:31 -06:00
|
|
|
#include "RiaLogging.h"
|
|
|
|
|
2017-02-16 08:22:03 -06:00
|
|
|
#include "RigEclipseCaseData.h"
|
2017-01-11 07:32:15 -06:00
|
|
|
#include "RigFracture.h"
|
|
|
|
#include "RigFracture.h"
|
|
|
|
#include "RigMainGrid.h"
|
|
|
|
|
2017-02-02 01:46:05 -06:00
|
|
|
#include "RimEclipseCase.h"
|
2017-01-11 07:32:15 -06:00
|
|
|
#include "RimEclipseResultDefinition.h"
|
2017-01-11 03:30:38 -06:00
|
|
|
#include "RimEclipseView.h"
|
|
|
|
#include "RimEclipseWell.h"
|
2017-01-12 06:29:18 -06:00
|
|
|
#include "RimEllipseFractureTemplate.h"
|
2017-01-31 08:58:13 -06:00
|
|
|
#include "RimFracture.h"
|
2017-01-11 03:30:38 -06:00
|
|
|
#include "RimWellPath.h"
|
2017-01-10 02:30:39 -06:00
|
|
|
|
|
|
|
#include "cafProgressInfo.h"
|
|
|
|
|
|
|
|
#include <QFile>
|
2017-01-27 03:46:45 -06:00
|
|
|
#include <QString>
|
2017-01-30 07:47:56 -06:00
|
|
|
#include <QTextStream>
|
2017-01-10 02:30:39 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
/// Constructor
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RifEclipseExportTools::RifEclipseExportTools()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
/// Destructor
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RifEclipseExportTools::~RifEclipseExportTools()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2017-02-02 01:46:05 -06:00
|
|
|
bool RifEclipseExportTools::writeFracturesToTextFile(const QString& fileName, const std::vector< RimFracture*>& fractures, RimEclipseCase* caseToApply)
|
2017-01-10 02:30:39 -06:00
|
|
|
{
|
2017-02-28 03:01:31 -06:00
|
|
|
RiaLogging::info(QString("Computing and writing COMPDAT values to file %1").arg(fileName));
|
|
|
|
|
2017-01-27 03:46:45 -06:00
|
|
|
RiaApplication* app = RiaApplication::instance();
|
|
|
|
RimView* activeView = RiaApplication::instance()->activeReservoirView();
|
|
|
|
if (!activeView) return false;
|
|
|
|
RimEclipseView* activeRiv = dynamic_cast<RimEclipseView*>(activeView);
|
|
|
|
if (!activeRiv) return false;
|
|
|
|
|
|
|
|
const RigMainGrid* mainGrid = activeRiv->mainGrid();
|
|
|
|
if (!mainGrid) return false;
|
|
|
|
|
2017-01-10 02:30:39 -06:00
|
|
|
|
|
|
|
QFile file(fileName);
|
|
|
|
if (!file.open(QIODevice::WriteOnly | QIODevice::Text))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-01-11 03:30:38 -06:00
|
|
|
caf::ProgressInfo pi(fractures.size(), QString("Writing data to file %1").arg(fileName));
|
2017-01-10 04:57:42 -06:00
|
|
|
RimEclipseWell* simWell = nullptr;
|
2017-01-11 03:30:38 -06:00
|
|
|
RimWellPath* wellPath = nullptr;
|
2017-01-10 02:30:39 -06:00
|
|
|
|
2017-01-19 03:01:07 -06:00
|
|
|
size_t progress =0;
|
2017-01-10 04:57:42 -06:00
|
|
|
std::vector<size_t> ijk;
|
2017-01-19 03:01:07 -06:00
|
|
|
|
2017-01-27 03:46:45 -06:00
|
|
|
QTextStream out(&file);
|
|
|
|
out << "\n";
|
2017-03-06 08:14:11 -06:00
|
|
|
out << "-- Exported from ResInsight" << "\n";
|
|
|
|
|
2017-03-15 04:10:43 -05:00
|
|
|
RigEclipseCaseData::UnitsType caseUnit = caseToApply->eclipseCaseData()->unitsType();
|
2017-03-06 08:14:11 -06:00
|
|
|
if (caseUnit == RigEclipseCaseData::UNITS_METRIC) out << "-- Using metric unit system" << "\n";
|
|
|
|
if (caseUnit == RigEclipseCaseData::UNITS_FIELD) out << "-- Using field unit system" << "\n";
|
|
|
|
out << "\n";
|
2017-01-27 03:46:45 -06:00
|
|
|
|
2017-03-20 04:38:58 -05:00
|
|
|
//Included for debug / prototyping only
|
|
|
|
performStimPlanUpscalingAndPrintResults(fractures, caseToApply, out, wellPath, simWell, mainGrid);
|
|
|
|
|
2017-03-17 05:28:00 -05:00
|
|
|
|
2017-01-30 07:47:56 -06:00
|
|
|
printBackgroundDataHeaderLine(out);
|
2017-01-27 03:46:45 -06:00
|
|
|
|
|
|
|
|
2017-02-28 03:01:31 -06:00
|
|
|
RiaLogging::debug(QString("Writing intermediate results from COMPDAT calculation"));
|
2017-01-27 03:46:45 -06:00
|
|
|
|
|
|
|
for (RimFracture* fracture : fractures)
|
|
|
|
{
|
2017-02-02 01:46:05 -06:00
|
|
|
fracture->computeTransmissibility(caseToApply);
|
2017-01-27 03:46:45 -06:00
|
|
|
std::vector<RigFractureData> fracDataVector = fracture->attachedRigFracture()->fractureData();
|
|
|
|
|
|
|
|
for (RigFractureData fracData : fracDataVector)
|
|
|
|
{
|
2017-01-30 07:47:56 -06:00
|
|
|
printBackgroundData(out, wellPath, simWell, fracture, mainGrid, fracData);
|
2017-01-27 03:46:45 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
out << "\n";
|
|
|
|
|
2017-02-10 04:22:10 -06:00
|
|
|
out << qSetFieldWidth(7) << "COMPDAT" << "\n" << right << qSetFieldWidth(8);
|
2017-01-19 03:01:07 -06:00
|
|
|
for (RimFracture* fracture : fractures)
|
2017-01-10 02:30:39 -06:00
|
|
|
{
|
2017-02-28 03:01:31 -06:00
|
|
|
RiaLogging::debug(QString("Writing COMPDAT values for fracture %1").arg(fracture->name()));
|
2017-02-02 01:46:05 -06:00
|
|
|
fracture->computeTransmissibility(caseToApply);
|
2017-01-11 07:32:15 -06:00
|
|
|
std::vector<RigFractureData> fracDataVector = fracture->attachedRigFracture()->fractureData();
|
|
|
|
|
|
|
|
for (RigFractureData fracData : fracDataVector)
|
|
|
|
{
|
2017-01-31 03:14:26 -06:00
|
|
|
if (fracData.transmissibility > 0)
|
|
|
|
{
|
2017-01-30 07:47:56 -06:00
|
|
|
printCOMPDATvalues(out, fracData, fracture, wellPath, simWell, mainGrid);
|
2017-01-31 03:14:26 -06:00
|
|
|
}
|
2017-01-11 07:32:15 -06:00
|
|
|
}
|
|
|
|
|
2017-01-27 03:46:45 -06:00
|
|
|
//TODO: If same cell is used for multiple fractures, the sum of contributions should be added to table.
|
|
|
|
|
2017-01-19 03:01:07 -06:00
|
|
|
progress++;
|
|
|
|
pi.setProgress(progress);
|
2017-01-10 02:30:39 -06:00
|
|
|
}
|
|
|
|
|
2017-02-10 04:22:10 -06:00
|
|
|
out << "/ \n";
|
|
|
|
|
2017-02-28 03:01:31 -06:00
|
|
|
RiaLogging::info(QString("Competed writing COMPDAT data to file %1").arg(fileName));
|
2017-01-11 03:30:38 -06:00
|
|
|
return true;
|
2017-01-11 02:30:34 -06:00
|
|
|
}
|
2017-01-30 07:47:56 -06:00
|
|
|
|
2017-03-20 04:38:58 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RifEclipseExportTools::performStimPlanUpscalingAndPrintResults(const std::vector<RimFracture *>& fractures, RimEclipseCase* caseToApply, QTextStream &out, RimWellPath* wellPath, RimEclipseWell* simWell, const RigMainGrid* mainGrid)
|
|
|
|
{
|
|
|
|
for (RimFracture* fracture : fractures) //For testing upscaling...
|
|
|
|
{
|
|
|
|
fracture->computeUpscaledPropertyFromStimPlan(caseToApply);
|
|
|
|
std::vector<RigFractureData> fracDataVector = fracture->attachedRigFracture()->fractureData();
|
|
|
|
|
2017-03-20 06:29:09 -05:00
|
|
|
out << qSetFieldWidth(4);
|
|
|
|
out << "-- ";
|
|
|
|
|
|
|
|
out << qSetFieldWidth(12);
|
|
|
|
out << "Well";
|
|
|
|
|
|
|
|
out << qSetFieldWidth(16);
|
|
|
|
out << "Fracture name ";
|
|
|
|
|
|
|
|
|
|
|
|
out << qSetFieldWidth(5);
|
|
|
|
out << "i"; // 2. I location grid block, adding 1 to go to eclipse 1-based grid definition
|
|
|
|
out << "j"; // 3. J location grid block, adding 1 to go to eclipse 1-based grid definition
|
|
|
|
out << "k"; // 4. K location of upper connecting grid block, adding 1 to go to eclipse 1-based grid definition
|
|
|
|
|
|
|
|
out << qSetFieldWidth(10);
|
|
|
|
out << "cellIndex";
|
|
|
|
out << "Aritm. ";
|
|
|
|
out << "Harm. ";
|
|
|
|
|
|
|
|
out << "\n";
|
|
|
|
|
2017-03-20 04:38:58 -05:00
|
|
|
for (RigFractureData fracData : fracDataVector)
|
|
|
|
{
|
2017-03-20 06:29:09 -05:00
|
|
|
|
2017-03-20 04:38:58 -05:00
|
|
|
out << qSetFieldWidth(4);
|
|
|
|
out << "-- ";
|
|
|
|
|
|
|
|
out << qSetFieldWidth(12);
|
|
|
|
wellPath, simWell = nullptr;
|
|
|
|
fracture->firstAncestorOrThisOfType(simWell);
|
|
|
|
if (simWell) out << simWell->name + " "; // 1. Well name
|
|
|
|
fracture->firstAncestorOrThisOfType(wellPath);
|
|
|
|
if (wellPath) out << wellPath->name + " "; // 1. Well name
|
|
|
|
|
|
|
|
out << qSetFieldWidth(16);
|
|
|
|
out << fracture->name().left(15) + " ";
|
|
|
|
|
|
|
|
|
|
|
|
out << qSetFieldWidth(5);
|
|
|
|
size_t i, j, k;
|
|
|
|
mainGrid->ijkFromCellIndex(fracData.reservoirCellIndex, &i, &j, &k);
|
|
|
|
out << i + 1; // 2. I location grid block, adding 1 to go to eclipse 1-based grid definition
|
|
|
|
out << j + 1; // 3. J location grid block, adding 1 to go to eclipse 1-based grid definition
|
|
|
|
out << k + 1; // 4. K location of upper connecting grid block, adding 1 to go to eclipse 1-based grid definition
|
|
|
|
|
|
|
|
out << qSetFieldWidth(10);
|
|
|
|
out << fracData.cellIndex;
|
2017-03-20 06:29:09 -05:00
|
|
|
out << QString::number(fracData.upscaledAritmStimPlanValue, 'f', 3);
|
|
|
|
out << QString::number(fracData.upscaledHarmStimPlanValue, 'f', 3);
|
2017-03-20 04:38:58 -05:00
|
|
|
|
|
|
|
out << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-30 07:47:56 -06:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RifEclipseExportTools::printCOMPDATvalues(QTextStream & out, RigFractureData &fracData, RimFracture* fracture, RimWellPath* wellPath, RimEclipseWell* simWell, const RigMainGrid* mainGrid)
|
|
|
|
{
|
|
|
|
out << qSetFieldWidth(8);
|
|
|
|
if (fracData.transmissibility == cvf::UNDEFINED_DOUBLE || !(fracture->attachedFractureDefinition())) out << "--"; //Commenting out line in output file
|
|
|
|
|
|
|
|
wellPath, simWell = nullptr;
|
|
|
|
fracture->firstAncestorOrThisOfType(simWell);
|
|
|
|
if (simWell) out << simWell->name; // 1. Well name
|
|
|
|
fracture->firstAncestorOrThisOfType(wellPath);
|
|
|
|
if (wellPath) out << wellPath->name; // 1. Well name
|
|
|
|
|
|
|
|
out << qSetFieldWidth(5);
|
|
|
|
|
|
|
|
size_t i, j, k;
|
|
|
|
mainGrid->ijkFromCellIndex(fracData.reservoirCellIndex, &i, &j, &k);
|
|
|
|
out << i + 1; // 2. I location grid block, adding 1 to go to eclipse 1-based grid definition
|
|
|
|
out << j + 1; // 3. J location grid block, adding 1 to go to eclipse 1-based grid definition
|
|
|
|
out << k + 1; // 4. K location of upper connecting grid block, adding 1 to go to eclipse 1-based grid definition
|
|
|
|
out << k + 1; // 5. K location of lower connecting grid block, adding 1 to go to eclipse 1-based grid definition
|
|
|
|
|
|
|
|
out << "2* "; // Default value for
|
|
|
|
//6. Open / Shut flag of connection
|
|
|
|
// 7. Saturation table number for connection rel perm. Default value
|
|
|
|
|
2017-01-31 02:52:55 -06:00
|
|
|
out << qSetFieldWidth(12);
|
2017-01-30 07:47:56 -06:00
|
|
|
// 8. Transmissibility
|
2017-02-10 04:22:10 -06:00
|
|
|
if (fracData.transmissibility != cvf::UNDEFINED_DOUBLE) out << QString::number(fracData.transmissibility, 'e', 4);
|
2017-01-30 07:47:56 -06:00
|
|
|
else out << "UNDEF";
|
|
|
|
|
|
|
|
out << qSetFieldWidth(4);
|
|
|
|
out << "2* "; // Default value for
|
|
|
|
// 9. Well bore diameter. Set to default
|
|
|
|
// 10. Effective Kh (perm times width)
|
|
|
|
|
|
|
|
if (fracture->attachedFractureDefinition())
|
|
|
|
{
|
|
|
|
out << fracture->attachedFractureDefinition()->skinFactor; // 11. Skin factor
|
|
|
|
}
|
|
|
|
else //If no attached fracture definition these parameters are set to UNDEF
|
|
|
|
{
|
|
|
|
out << "UNDEF";
|
|
|
|
}
|
|
|
|
|
|
|
|
out << "/";
|
|
|
|
out << " " << fracture->name(); //Fracture name as comment
|
|
|
|
out << "\n"; // Terminating entry
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RifEclipseExportTools::printBackgroundDataHeaderLine(QTextStream & out)
|
|
|
|
{
|
|
|
|
out << "-- Background data for calculation" << "\n\n";
|
|
|
|
|
|
|
|
|
|
|
|
//Write header line
|
|
|
|
out << qSetFieldWidth(4);
|
|
|
|
out << "--";
|
|
|
|
out << qSetFieldWidth(12);
|
|
|
|
out << "Well ";
|
|
|
|
|
|
|
|
out << qSetFieldWidth(16);
|
|
|
|
out << "Fracture ";
|
|
|
|
|
|
|
|
out << qSetFieldWidth(5);
|
|
|
|
out << "i";
|
|
|
|
out << "j";
|
|
|
|
out << "k";
|
|
|
|
|
|
|
|
out << qSetFieldWidth(12);
|
|
|
|
out << "Ax";
|
|
|
|
out << "Ay";
|
|
|
|
out << "Az";
|
|
|
|
out << "TotArea";
|
|
|
|
|
|
|
|
out << "skinfac";
|
|
|
|
out << "FracLen";
|
|
|
|
|
|
|
|
out << qSetFieldWidth(10);
|
|
|
|
out << "DX";
|
|
|
|
out << "DY";
|
|
|
|
out << "DZ";
|
|
|
|
|
2017-02-10 04:22:10 -06:00
|
|
|
out << qSetFieldWidth(12);
|
2017-01-30 07:47:56 -06:00
|
|
|
out << "PermX";
|
|
|
|
out << "PermY";
|
|
|
|
out << "PermZ";
|
2017-02-10 04:22:10 -06:00
|
|
|
|
|
|
|
out << qSetFieldWidth(8);
|
2017-01-30 07:47:56 -06:00
|
|
|
out << "NTG";
|
|
|
|
|
|
|
|
out << qSetFieldWidth(12);
|
|
|
|
out << "T_x";
|
|
|
|
out << "T_y";
|
|
|
|
out << "T_z";
|
|
|
|
|
|
|
|
out << qSetFieldWidth(15);
|
|
|
|
out << "Transm";
|
|
|
|
|
2017-02-10 04:22:10 -06:00
|
|
|
out << qSetFieldWidth(20);
|
|
|
|
out << "Status";
|
|
|
|
|
2017-01-30 07:47:56 -06:00
|
|
|
out << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RifEclipseExportTools::printBackgroundData(QTextStream & out, RimWellPath* wellPath, RimEclipseWell* simWell, RimFracture* fracture, const RigMainGrid* mainGrid, RigFractureData &fracData)
|
|
|
|
{
|
2017-02-10 04:22:10 -06:00
|
|
|
out << qSetFieldWidth(4);
|
|
|
|
out << "-- ";
|
2017-01-30 07:47:56 -06:00
|
|
|
|
2017-02-10 04:22:10 -06:00
|
|
|
out << qSetFieldWidth(12);
|
2017-01-30 07:47:56 -06:00
|
|
|
wellPath, simWell = nullptr;
|
|
|
|
fracture->firstAncestorOrThisOfType(simWell);
|
|
|
|
if (simWell) out << simWell->name + " " ; // 1. Well name
|
|
|
|
fracture->firstAncestorOrThisOfType(wellPath);
|
|
|
|
if (wellPath) out << wellPath->name + " "; // 1. Well name
|
|
|
|
|
|
|
|
out << qSetFieldWidth(16);
|
|
|
|
out << fracture->name().left(15) + " ";
|
|
|
|
|
|
|
|
|
|
|
|
out << qSetFieldWidth(5);
|
|
|
|
size_t i, j, k;
|
|
|
|
mainGrid->ijkFromCellIndex(fracData.reservoirCellIndex, &i, &j, &k);
|
|
|
|
out << i + 1; // 2. I location grid block, adding 1 to go to eclipse 1-based grid definition
|
|
|
|
out << j + 1; // 3. J location grid block, adding 1 to go to eclipse 1-based grid definition
|
|
|
|
out << k + 1; // 4. K location of upper connecting grid block, adding 1 to go to eclipse 1-based grid definition
|
|
|
|
|
|
|
|
out << qSetFieldWidth(12);
|
|
|
|
//Use f for float, e for exponent float and g for best choice of these two.
|
|
|
|
out << QString::number(fracData.projectedAreas.x(), 'g', 4);
|
|
|
|
out << QString::number(fracData.projectedAreas.y(), 'g', 4);
|
|
|
|
out << QString::number(fracData.projectedAreas.z(), 'g', 4);
|
|
|
|
out << QString::number(fracData.totalArea, 'g', 4);
|
|
|
|
|
|
|
|
out << QString::number(fracData.skinFactor, 'f', 2);
|
|
|
|
out << QString::number(fracData.fractureLenght, 'g', 3);
|
|
|
|
|
|
|
|
out << qSetFieldWidth(10);
|
|
|
|
out << QString::number(fracData.cellSizes.x(), 'f', 2);
|
|
|
|
out << QString::number(fracData.cellSizes.y(), 'f', 2);
|
|
|
|
out << QString::number(fracData.cellSizes.z(), 'f', 2);
|
|
|
|
|
2017-02-10 04:22:10 -06:00
|
|
|
out << qSetFieldWidth(12);
|
|
|
|
out << QString::number(fracData.permeabilities.x(), 'e', 3);
|
|
|
|
out << QString::number(fracData.permeabilities.y(), 'e', 3);
|
|
|
|
out << QString::number(fracData.permeabilities.z(), 'e', 3);
|
|
|
|
|
|
|
|
out << qSetFieldWidth(8);
|
2017-01-30 07:47:56 -06:00
|
|
|
out << QString::number(fracData.NTG, 'f', 2);
|
|
|
|
|
|
|
|
out << qSetFieldWidth(12);
|
|
|
|
out << QString::number(fracData.transmissibilities.x(), 'e', 3);
|
|
|
|
out << QString::number(fracData.transmissibilities.y(), 'e', 3);
|
|
|
|
out << QString::number(fracData.transmissibilities.z(), 'e', 3);
|
|
|
|
|
|
|
|
out << qSetFieldWidth(15);
|
2017-02-10 04:22:10 -06:00
|
|
|
out << QString::number(fracData.transmissibility, 'e', 3);
|
|
|
|
|
|
|
|
if (!fracData.cellIsActive)
|
|
|
|
{
|
|
|
|
out << qSetFieldWidth(20);
|
|
|
|
out << " INACTIVE CELL ";
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (fracData.cellIsActive && fracData.transmissibility > 0)
|
|
|
|
{
|
|
|
|
out << qSetFieldWidth(20);
|
|
|
|
out << " ACTIVE CELL ";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
out << qSetFieldWidth(20);
|
|
|
|
out << " INVALID DATA ";
|
|
|
|
}
|
2017-01-30 07:47:56 -06:00
|
|
|
|
|
|
|
out << "\n";
|
|
|
|
|
|
|
|
}
|