*/
struct TecplotFlags : public OutputFlagsBase<TecplotFlags>
{
- /**
- * This variable is needed to hold the output file name when using the
- * Tecplot API to write binary files. If the user doesn't set the file
- * name with this variable only ASCII Tecplot output will be produced.
- *
- * @deprecated Using Tecplot binary output is deprecated.
- */
- DEAL_II_DEPRECATED const char *tecplot_binary_file_name;
-
/**
* Tecplot allows to assign names to zones. This variable stores this
* name.
/**
* Constructor.
- *
- * @deprecated Using this constructor is deprecated. Set the member variables
- * directly instead.
*/
- DEAL_II_DEPRECATED
- TecplotFlags(const char * tecplot_binary_file_name = nullptr,
- const char * zone_name = nullptr,
- const double solution_time = -1.0);
+ TecplotFlags(const char * zone_name = nullptr,
+ const double solution_time = -1.0);
/**
* Return an estimate for the memory consumption, in bytes, of this
const TecplotFlags &flags,
std::ostream & out);
- /**
- * Write the given list of patches to the output stream in Tecplot binary
- * format.
- *
- * For this to work properly <tt>./configure</tt> checks for the Tecplot API
- * at build time. To write Tecplot binary files directly make sure that the
- * TECHOME environment variable points to the Tecplot installation
- * directory, and that the files \$TECHOME/include/TECIO.h and
- * \$TECHOME/lib/tecio.a are readable. If these files are not available (or
- * in the case of 1D) this function will simply call write_tecplot() and
- * thus larger ASCII data files will be produced rather than more efficient
- * Tecplot binary files.
- *
- * @warning TecplotFlags::tecplot_binary_file_name indicates the name of the
- * file to be written. If the file name is not set ASCII output is
- * produced.
- *
- * For more information consult the Tecplot Users and Reference manuals.
- *
- * @deprecated Using Tecplot binary output is deprecated.
- */
- template <int dim, int spacedim>
- DEAL_II_DEPRECATED void
- write_tecplot_binary(
- const std::vector<Patch<dim, spacedim>> &patches,
- const std::vector<std::string> & data_names,
- const std::vector<
- std::tuple<unsigned int,
- unsigned int,
- std::string,
- DataComponentInterpretation::DataComponentInterpretation>>
- & nonscalar_data_ranges,
- const TecplotFlags &flags,
- std::ostream & out);
-
/**
* Write the given list of patches to the output stream in UCD format
* described in the AVS developer's guide (now AVS). Due to limitations in
void
write_tecplot(std::ostream &out) const;
- /**
- * Obtain data through get_patches() and write it in the Tecplot binary
- * output format. Note that the name of the output file must be specified
- * through the TecplotFlags interface.
- *
- * @deprecated Using Tecplot binary output is deprecated.
- */
- DEAL_II_DEPRECATED
- void
- write_tecplot_binary(std::ostream &out) const;
-
/**
* Obtain data through get_patches() and write it to <tt>out</tt> in UCD
* format for AVS. See DataOutBase::write_ucd.
- TecplotFlags::TecplotFlags(const char * tecplot_binary_file_name,
- const char * zone_name,
- const double solution_time)
- : tecplot_binary_file_name(tecplot_binary_file_name)
- , zone_name(zone_name)
+ TecplotFlags::TecplotFlags(const char *zone_name, const double solution_time)
+ : zone_name(zone_name)
, solution_time(solution_time)
{}
std::size_t
TecplotFlags::memory_consumption() const
{
- return sizeof(*this) +
- MemoryConsumption::memory_consumption(tecplot_binary_file_name) +
- MemoryConsumption::memory_consumption(zone_name);
+ return sizeof(*this) + MemoryConsumption::memory_consumption(zone_name);
}
-template <int dim, int spacedim>
-void
-DataOutInterface<dim, spacedim>::write_tecplot_binary(std::ostream &out) const
-{
- DataOutBase::write_tecplot_binary(get_patches(),
- get_dataset_names(),
- get_nonscalar_data_ranges(),
- tecplot_flags,
- out);
-}
-
-
-
template <int dim, int spacedim>
void
DataOutInterface<dim, spacedim>::write_vtk(std::ostream &out) const
write_tecplot(out);
break;
- case DataOutBase::tecplot_binary:
- write_tecplot_binary(out);
- break;
-
case DataOutBase::vtk:
write_vtk(out);
break;
+++ /dev/null
-// ---------------------------------------------------------------------
-//
-// Copyright (C) 2006 - 2020 by the deal.II authors
-//
-// This file is part of the deal.II library.
-//
-// The deal.II library is free software; you can use it, redistribute
-// it, and/or modify it under the terms of the GNU Lesser General
-// Public License as published by the Free Software Foundation; either
-// version 2.1 of the License, or (at your option) any later version.
-// The full text of the license can be found in the file LICENSE.md at
-// the top level directory of deal.II.
-//
-// ---------------------------------------------------------------------
-
-
-#include <deal.II/base/data_out_base.h>
-
-#include <sstream>
-#include <string>
-#include <vector>
-
-#include "../tests.h"
-
-#include "patches.h"
-
-// Output data on repetitions of the unit hypercube
-
-template <int dim, int spacedim>
-void
-check(DataOutBase::TecplotFlags flags, std::ostream &out)
-{
- const unsigned int np = 4;
-
- std::vector<DataOutBase::Patch<dim, spacedim>> patches(np);
-
- create_patches(patches);
-
- std::vector<std::string> names(5);
- names[0] = "x1";
- names[1] = "x2";
- names[2] = "x3";
- names[3] = "x4";
- names[4] = "i";
- std::vector<
- std::tuple<unsigned int,
- unsigned int,
- std::string,
- DataComponentInterpretation::DataComponentInterpretation>>
- vectors;
- DataOutBase::write_tecplot_binary(patches, names, vectors, flags, out);
-}
-
-
-template <int dim, int spacedim>
-void
-check_all()
-{
- char name[100];
- DataOutBase::TecplotFlags flags;
- if (true)
- {
- sprintf(name, "%d%d.tecplot", dim, spacedim);
- flags.tecplot_binary_file_name = name;
-
- check<dim, spacedim>(flags, deallog.get_file_stream());
- }
-}
-
-int
-main()
-{
- initlog();
- check_all<1, 1>();
- check_all<1, 2>();
- check_all<2, 2>();
- check_all<2, 3>();
- check_all<3, 3>();
-}
+++ /dev/null
-
-# This file was generated by the deal.II library.
-
-
-#
-# For a description of the Tecplot format see the Tecplot documentation.
-#
-Variables="x", "x1", "x2", "x3", "x4", "i"
-zone f=feblock, n=14, e=10, et=lineseg
-0.00000
-1.00000
-1.00000
-1.50000
-2.00000
-2.00000
-2.33333
-2.66667
-3.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-
-0.00000
-1.00000
-1.00000
-1.50000
-2.00000
-2.00000
-2.33333
-2.66667
-3.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-
-0.00000
-0.00000
-1.00000
-1.00000
-1.00000
-2.00000
-2.00000
-2.00000
-2.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-
-0.00000
-0.00000
-1.00000
-1.00000
-1.00000
-2.00000
-2.00000
-2.00000
-2.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-
-0.00000
-0.00000
-1.00000
-1.00000
-1.00000
-2.00000
-2.00000
-2.00000
-2.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-
-0.00000
-1.00000
-0.00000
-1.00000
-2.00000
-0.00000
-1.00000
-2.00000
-3.00000
-0.00000
-1.00000
-2.00000
-3.00000
-4.00000
-
-1 2
-3 4
-4 5
-6 7
-7 8
-8 9
-10 11
-11 12
-12 13
-13 14
-# This file was generated by the deal.II library.
-
-
-#
-# For a description of the Tecplot format see the Tecplot documentation.
-#
-Variables="x", "y", "x1", "x2", "x3", "x4", "i"
-zone f=feblock, n=14, e=10, et=lineseg
-0.00000
-1.00000
-1.00000
-1.50000
-2.00000
-2.00000
-2.33333
-2.66667
-3.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-
-0.00000
-1.00000
-1.00000
-1.50000
-2.00000
-2.00000
-2.33333
-2.66667
-3.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-
-0.00000
-1.00000
-1.00000
-1.50000
-2.00000
-2.00000
-2.33333
-2.66667
-3.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-
-0.00000
-0.00000
-1.00000
-1.00000
-1.00000
-2.00000
-2.00000
-2.00000
-2.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-
-0.00000
-0.00000
-1.00000
-1.00000
-1.00000
-2.00000
-2.00000
-2.00000
-2.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-
-0.00000
-0.00000
-1.00000
-1.00000
-1.00000
-2.00000
-2.00000
-2.00000
-2.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-
-0.00000
-1.00000
-0.00000
-1.00000
-2.00000
-0.00000
-1.00000
-2.00000
-3.00000
-0.00000
-1.00000
-2.00000
-3.00000
-4.00000
-
-1 2
-3 4
-4 5
-6 7
-7 8
-8 9
-10 11
-11 12
-12 13
-13 14
-# This file was generated by the deal.II library.
-
-
-#
-# For a description of the Tecplot format see the Tecplot documentation.
-#
-Variables="x", "y", "x1", "x2", "x3", "x4", "i"
-zone f=feblock, n=54, e=30, et=quadrilateral
-0.00000
-1.00000
-0.00000
-1.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-
-0.00000
-0.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.50000
-1.50000
-1.50000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.33333
-2.33333
-2.33333
-2.33333
-2.66667
-2.66667
-2.66667
-2.66667
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-
-0.00000
-1.00000
-0.00000
-1.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-
-0.00000
-0.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.50000
-1.50000
-1.50000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.33333
-2.33333
-2.33333
-2.33333
-2.66667
-2.66667
-2.66667
-2.66667
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-
-0.00000
-0.00000
-0.00000
-0.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-
-0.00000
-0.00000
-0.00000
-0.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-
-0.00000
-1.00000
-2.00000
-3.00000
-0.00000
-1.00000
-2.00000
-3.00000
-4.00000
-5.00000
-6.00000
-7.00000
-8.00000
-0.00000
-1.00000
-2.00000
-3.00000
-4.00000
-5.00000
-6.00000
-7.00000
-8.00000
-9.00000
-10.0000
-11.0000
-12.0000
-13.0000
-14.0000
-15.0000
-0.00000
-1.00000
-2.00000
-3.00000
-4.00000
-5.00000
-6.00000
-7.00000
-8.00000
-9.00000
-10.0000
-11.0000
-12.0000
-13.0000
-14.0000
-15.0000
-16.0000
-17.0000
-18.0000
-19.0000
-20.0000
-21.0000
-22.0000
-23.0000
-24.0000
-
-1 2 4 3
-5 6 9 8
-6 7 10 9
-8 9 12 11
-9 10 13 12
-14 15 19 18
-15 16 20 19
-16 17 21 20
-18 19 23 22
-19 20 24 23
-20 21 25 24
-22 23 27 26
-23 24 28 27
-24 25 29 28
-30 31 36 35
-31 32 37 36
-32 33 38 37
-33 34 39 38
-35 36 41 40
-36 37 42 41
-37 38 43 42
-38 39 44 43
-40 41 46 45
-41 42 47 46
-42 43 48 47
-43 44 49 48
-45 46 51 50
-46 47 52 51
-47 48 53 52
-48 49 54 53
-# This file was generated by the deal.II library.
-
-
-#
-# For a description of the Tecplot format see the Tecplot documentation.
-#
-Variables="x", "y", "z", "x1", "x2", "x3", "x4", "i"
-zone f=feblock, n=54, e=30, et=quadrilateral
-0.00000
-1.00000
-0.00000
-1.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-
-0.00000
-0.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.50000
-1.50000
-1.50000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.33333
-2.33333
-2.33333
-2.33333
-2.66667
-2.66667
-2.66667
-2.66667
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-
-0.00000
-1.00000
-2.00000
-3.00000
-1.00000
-1.50000
-2.00000
-2.00000
-2.50000
-3.00000
-3.00000
-3.50000
-4.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.66667
-3.00000
-3.33333
-3.66667
-3.33333
-3.66667
-4.00000
-4.33333
-4.00000
-4.33333
-4.66667
-5.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.50000
-3.75000
-4.00000
-4.25000
-4.50000
-4.00000
-4.25000
-4.50000
-4.75000
-5.00000
-4.50000
-4.75000
-5.00000
-5.25000
-5.50000
-5.00000
-5.25000
-5.50000
-5.75000
-6.00000
-
-0.00000
-1.00000
-0.00000
-1.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-
-0.00000
-0.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.50000
-1.50000
-1.50000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.33333
-2.33333
-2.33333
-2.33333
-2.66667
-2.66667
-2.66667
-2.66667
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-
-0.00000
-0.00000
-0.00000
-0.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-
-0.00000
-0.00000
-0.00000
-0.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-
-0.00000
-1.00000
-2.00000
-3.00000
-0.00000
-1.00000
-2.00000
-3.00000
-4.00000
-5.00000
-6.00000
-7.00000
-8.00000
-0.00000
-1.00000
-2.00000
-3.00000
-4.00000
-5.00000
-6.00000
-7.00000
-8.00000
-9.00000
-10.0000
-11.0000
-12.0000
-13.0000
-14.0000
-15.0000
-0.00000
-1.00000
-2.00000
-3.00000
-4.00000
-5.00000
-6.00000
-7.00000
-8.00000
-9.00000
-10.0000
-11.0000
-12.0000
-13.0000
-14.0000
-15.0000
-16.0000
-17.0000
-18.0000
-19.0000
-20.0000
-21.0000
-22.0000
-23.0000
-24.0000
-
-1 2 4 3
-5 6 9 8
-6 7 10 9
-8 9 12 11
-9 10 13 12
-14 15 19 18
-15 16 20 19
-16 17 21 20
-18 19 23 22
-19 20 24 23
-20 21 25 24
-22 23 27 26
-23 24 28 27
-24 25 29 28
-30 31 36 35
-31 32 37 36
-32 33 38 37
-33 34 39 38
-35 36 41 40
-36 37 42 41
-37 38 43 42
-38 39 44 43
-40 41 46 45
-41 42 47 46
-42 43 48 47
-43 44 49 48
-45 46 51 50
-46 47 52 51
-47 48 53 52
-48 49 54 53
-# This file was generated by the deal.II library.
-
-
-#
-# For a description of the Tecplot format see the Tecplot documentation.
-#
-Variables="x", "y", "z", "x1", "x2", "x3", "x4", "i"
-zone f=feblock, n=224, e=100, et=brick
-0.00000
-1.00000
-0.00000
-1.00000
-0.00000
-1.00000
-0.00000
-1.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-
-0.00000
-0.00000
-1.00000
-1.00000
-0.00000
-0.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.50000
-1.50000
-1.50000
-2.00000
-2.00000
-2.00000
-1.00000
-1.00000
-1.00000
-1.50000
-1.50000
-1.50000
-2.00000
-2.00000
-2.00000
-1.00000
-1.00000
-1.00000
-1.50000
-1.50000
-1.50000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.33333
-2.33333
-2.33333
-2.33333
-2.66667
-2.66667
-2.66667
-2.66667
-3.00000
-3.00000
-3.00000
-3.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.33333
-2.33333
-2.33333
-2.33333
-2.66667
-2.66667
-2.66667
-2.66667
-3.00000
-3.00000
-3.00000
-3.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.33333
-2.33333
-2.33333
-2.33333
-2.66667
-2.66667
-2.66667
-2.66667
-3.00000
-3.00000
-3.00000
-3.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.33333
-2.33333
-2.33333
-2.33333
-2.66667
-2.66667
-2.66667
-2.66667
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-
-0.00000
-0.00000
-0.00000
-0.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.50000
-1.50000
-1.50000
-1.50000
-1.50000
-1.50000
-1.50000
-1.50000
-1.50000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-
-0.00000
-1.00000
-0.00000
-1.00000
-0.00000
-1.00000
-0.00000
-1.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-1.00000
-1.50000
-2.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-2.00000
-2.33333
-2.66667
-3.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-3.00000
-3.25000
-3.50000
-3.75000
-4.00000
-
-0.00000
-0.00000
-1.00000
-1.00000
-0.00000
-0.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.50000
-1.50000
-1.50000
-2.00000
-2.00000
-2.00000
-1.00000
-1.00000
-1.00000
-1.50000
-1.50000
-1.50000
-2.00000
-2.00000
-2.00000
-1.00000
-1.00000
-1.00000
-1.50000
-1.50000
-1.50000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.33333
-2.33333
-2.33333
-2.33333
-2.66667
-2.66667
-2.66667
-2.66667
-3.00000
-3.00000
-3.00000
-3.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.33333
-2.33333
-2.33333
-2.33333
-2.66667
-2.66667
-2.66667
-2.66667
-3.00000
-3.00000
-3.00000
-3.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.33333
-2.33333
-2.33333
-2.33333
-2.66667
-2.66667
-2.66667
-2.66667
-3.00000
-3.00000
-3.00000
-3.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.33333
-2.33333
-2.33333
-2.33333
-2.66667
-2.66667
-2.66667
-2.66667
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-
-0.00000
-0.00000
-0.00000
-0.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.50000
-1.50000
-1.50000
-1.50000
-1.50000
-1.50000
-1.50000
-1.50000
-1.50000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.33333
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-2.66667
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.25000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.50000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-3.75000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-4.00000
-
-0.00000
-0.00000
-0.00000
-0.00000
-0.00000
-0.00000
-0.00000
-0.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-1.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-2.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-3.00000
-
-0.00000
-1.00000
-2.00000
-3.00000
-4.00000
-5.00000
-6.00000
-7.00000
-0.00000
-1.00000
-2.00000
-3.00000
-4.00000
-5.00000
-6.00000
-7.00000
-8.00000
-9.00000
-10.0000
-11.0000
-12.0000
-13.0000
-14.0000
-15.0000
-16.0000
-17.0000
-18.0000
-19.0000
-20.0000
-21.0000
-22.0000
-23.0000
-24.0000
-25.0000
-26.0000
-0.00000
-1.00000
-2.00000
-3.00000
-4.00000
-5.00000
-6.00000
-7.00000
-8.00000
-9.00000
-10.0000
-11.0000
-12.0000
-13.0000
-14.0000
-15.0000
-16.0000
-17.0000
-18.0000
-19.0000
-20.0000
-21.0000
-22.0000
-23.0000
-24.0000
-25.0000
-26.0000
-27.0000
-28.0000
-29.0000
-30.0000
-31.0000
-32.0000
-33.0000
-34.0000
-35.0000
-36.0000
-37.0000
-38.0000
-39.0000
-40.0000
-41.0000
-42.0000
-43.0000
-44.0000
-45.0000
-46.0000
-47.0000
-48.0000
-49.0000
-50.0000
-51.0000
-52.0000
-53.0000
-54.0000
-55.0000
-56.0000
-57.0000
-58.0000
-59.0000
-60.0000
-61.0000
-62.0000
-63.0000
-0.00000
-1.00000
-2.00000
-3.00000
-4.00000
-5.00000
-6.00000
-7.00000
-8.00000
-9.00000
-10.0000
-11.0000
-12.0000
-13.0000
-14.0000
-15.0000
-16.0000
-17.0000
-18.0000
-19.0000
-20.0000
-21.0000
-22.0000
-23.0000
-24.0000
-25.0000
-26.0000
-27.0000
-28.0000
-29.0000
-30.0000
-31.0000
-32.0000
-33.0000
-34.0000
-35.0000
-36.0000
-37.0000
-38.0000
-39.0000
-40.0000
-41.0000
-42.0000
-43.0000
-44.0000
-45.0000
-46.0000
-47.0000
-48.0000
-49.0000
-50.0000
-51.0000
-52.0000
-53.0000
-54.0000
-55.0000
-56.0000
-57.0000
-58.0000
-59.0000
-60.0000
-61.0000
-62.0000
-63.0000
-64.0000
-65.0000
-66.0000
-67.0000
-68.0000
-69.0000
-70.0000
-71.0000
-72.0000
-73.0000
-74.0000
-75.0000
-76.0000
-77.0000
-78.0000
-79.0000
-80.0000
-81.0000
-82.0000
-83.0000
-84.0000
-85.0000
-86.0000
-87.0000
-88.0000
-89.0000
-90.0000
-91.0000
-92.0000
-93.0000
-94.0000
-95.0000
-96.0000
-97.0000
-98.0000
-99.0000
-100.000
-101.000
-102.000
-103.000
-104.000
-105.000
-106.000
-107.000
-108.000
-109.000
-110.000
-111.000
-112.000
-113.000
-114.000
-115.000
-116.000
-117.000
-118.000
-119.000
-120.000
-121.000
-122.000
-123.000
-124.000
-
-1 2 4 3 5 6 8 7
-9 10 13 12 18 19 22 21
-10 11 14 13 19 20 23 22
-12 13 16 15 21 22 25 24
-13 14 17 16 22 23 26 25
-18 19 22 21 27 28 31 30
-19 20 23 22 28 29 32 31
-21 22 25 24 30 31 34 33
-22 23 26 25 31 32 35 34
-36 37 41 40 52 53 57 56
-37 38 42 41 53 54 58 57
-38 39 43 42 54 55 59 58
-40 41 45 44 56 57 61 60
-41 42 46 45 57 58 62 61
-42 43 47 46 58 59 63 62
-44 45 49 48 60 61 65 64
-45 46 50 49 61 62 66 65
-46 47 51 50 62 63 67 66
-52 53 57 56 68 69 73 72
-53 54 58 57 69 70 74 73
-54 55 59 58 70 71 75 74
-56 57 61 60 72 73 77 76
-57 58 62 61 73 74 78 77
-58 59 63 62 74 75 79 78
-60 61 65 64 76 77 81 80
-61 62 66 65 77 78 82 81
-62 63 67 66 78 79 83 82
-68 69 73 72 84 85 89 88
-69 70 74 73 85 86 90 89
-70 71 75 74 86 87 91 90
-72 73 77 76 88 89 93 92
-73 74 78 77 89 90 94 93
-74 75 79 78 90 91 95 94
-76 77 81 80 92 93 97 96
-77 78 82 81 93 94 98 97
-78 79 83 82 94 95 99 98
-100 101 106 105 125 126 131 130
-101 102 107 106 126 127 132 131
-102 103 108 107 127 128 133 132
-103 104 109 108 128 129 134 133
-105 106 111 110 130 131 136 135
-106 107 112 111 131 132 137 136
-107 108 113 112 132 133 138 137
-108 109 114 113 133 134 139 138
-110 111 116 115 135 136 141 140
-111 112 117 116 136 137 142 141
-112 113 118 117 137 138 143 142
-113 114 119 118 138 139 144 143
-115 116 121 120 140 141 146 145
-116 117 122 121 141 142 147 146
-117 118 123 122 142 143 148 147
-118 119 124 123 143 144 149 148
-125 126 131 130 150 151 156 155
-126 127 132 131 151 152 157 156
-127 128 133 132 152 153 158 157
-128 129 134 133 153 154 159 158
-130 131 136 135 155 156 161 160
-131 132 137 136 156 157 162 161
-132 133 138 137 157 158 163 162
-133 134 139 138 158 159 164 163
-135 136 141 140 160 161 166 165
-136 137 142 141 161 162 167 166
-137 138 143 142 162 163 168 167
-138 139 144 143 163 164 169 168
-140 141 146 145 165 166 171 170
-141 142 147 146 166 167 172 171
-142 143 148 147 167 168 173 172
-143 144 149 148 168 169 174 173
-150 151 156 155 175 176 181 180
-151 152 157 156 176 177 182 181
-152 153 158 157 177 178 183 182
-153 154 159 158 178 179 184 183
-155 156 161 160 180 181 186 185
-156 157 162 161 181 182 187 186
-157 158 163 162 182 183 188 187
-158 159 164 163 183 184 189 188
-160 161 166 165 185 186 191 190
-161 162 167 166 186 187 192 191
-162 163 168 167 187 188 193 192
-163 164 169 168 188 189 194 193
-165 166 171 170 190 191 196 195
-166 167 172 171 191 192 197 196
-167 168 173 172 192 193 198 197
-168 169 174 173 193 194 199 198
-175 176 181 180 200 201 206 205
-176 177 182 181 201 202 207 206
-177 178 183 182 202 203 208 207
-178 179 184 183 203 204 209 208
-180 181 186 185 205 206 211 210
-181 182 187 186 206 207 212 211
-182 183 188 187 207 208 213 212
-183 184 189 188 208 209 214 213
-185 186 191 190 210 211 216 215
-186 187 192 191 211 212 217 216
-187 188 193 192 212 213 218 217
-188 189 194 193 213 214 219 218
-190 191 196 195 215 216 221 220
-191 192 197 196 216 217 222 221
-192 193 198 197 217 218 223 222
-193 194 199 198 218 219 224 223