diff --git a/include/OpenColorIO/OpenColorTypes.h b/include/OpenColorIO/OpenColorTypes.h index 8fa583374..39a181c46 100644 --- a/include/OpenColorIO/OpenColorTypes.h +++ b/include/OpenColorIO/OpenColorTypes.h @@ -977,6 +977,13 @@ extern OCIOEXPORT const char * METADATA_NAME; */ extern OCIOEXPORT const char * METADATA_ID; +/** + * An ID when stored as an XML element rather than as an attribute. This is the + * preferred mechanism in the SMPTE ST 2036-1 version of the CLF format. If + * present, it is only available from the top-level FormatMetadata. + */ + extern OCIOEXPORT const char * METADATA_ID_ELEMENT; + /*!rst:: Caches ****** diff --git a/src/OpenColorIO/HashUtils.cpp b/src/OpenColorIO/HashUtils.cpp index 15f775faa..627ab2066 100644 --- a/src/OpenColorIO/HashUtils.cpp +++ b/src/OpenColorIO/HashUtils.cpp @@ -2,6 +2,7 @@ // Copyright Contributors to the OpenColorIO Project. #include +#include #include @@ -25,4 +26,27 @@ std::string CacheIDHash(const char * array, std::size_t size) return oss.str(); } +std::string CacheIDHashUUID(const char * array, std::size_t size) +{ + XXH128_hash_t hash = XXH3_128bits(array, size); + + // Make sure that we have full, zero-padded 32 chars. + std::stringstream oss; + oss << std::hex << std::setfill('0'); + oss << std::setw(16) << hash.high64; + oss << std::setw(16) << hash.low64; + + // Format into 8-4-4-4-12 form. + std::string hex = oss.str(); + std::string uuid = + hex.substr(0, 8) + "-" + + hex.substr(8, 4) + "-" + + hex.substr(12, 4) + "-" + + hex.substr(16, 4) + "-" + + hex.substr(20, 12); + + return uuid; +} + + } // namespace OCIO_NAMESPACE diff --git a/src/OpenColorIO/HashUtils.h b/src/OpenColorIO/HashUtils.h index 66c3b6e3f..cf53ab1cb 100644 --- a/src/OpenColorIO/HashUtils.h +++ b/src/OpenColorIO/HashUtils.h @@ -14,6 +14,10 @@ namespace OCIO_NAMESPACE std::string CacheIDHash(const char * array, std::size_t size); +// Generates 128 bit UUID in the form of 8-4-4-4-12 using the hash of the passed +// string. +std::string CacheIDHashUUID(const char * array, std::size_t size); + } // namespace OCIO_NAMESPACE #endif diff --git a/src/OpenColorIO/Processor.cpp b/src/OpenColorIO/Processor.cpp index dab0287df..83b8468b7 100755 --- a/src/OpenColorIO/Processor.cpp +++ b/src/OpenColorIO/Processor.cpp @@ -330,15 +330,9 @@ const char * Processor::Impl::getCacheID() const if(!m_cacheID.empty()) return m_cacheID.c_str(); - if(m_ops.empty()) - { - m_cacheID = ""; - } - else - { - const std::string fullstr = m_ops.getCacheID(); - m_cacheID = CacheIDHash(fullstr.c_str(), fullstr.size()); - } + // Note: empty ops vector will also create a UUID. + const std::string fullstr = m_ops.getCacheID(); + m_cacheID = CacheIDHashUUID(fullstr.c_str(), fullstr.size()); return m_cacheID.c_str(); } diff --git a/src/OpenColorIO/fileformats/FileFormatCTF.cpp b/src/OpenColorIO/fileformats/FileFormatCTF.cpp index b1f039303..775ac8ec2 100644 --- a/src/OpenColorIO/fileformats/FileFormatCTF.cpp +++ b/src/OpenColorIO/fileformats/FileFormatCTF.cpp @@ -28,6 +28,7 @@ #include "TransformBuilder.h" #include "transforms/FileTransform.h" #include "utils/StringUtils.h" +#include "HashUtils.h" /* @@ -40,7 +41,14 @@ to agree on a common LUT format for this industry. Support for CLF is a requirement in order to obtain ACES Logo Certification from the Academy (in several product categories). CLF files are expressed using XML. The spec, AMPAS S-2014-006, is available from: - + + +In 2026, SMPTE will publish ST 2136-1 to standardize the Academy/ASC format. +The main change is how versions are declared. The SMPTE spec sets the xmlns +attribute of the ProcessList to a specific value rather than using the +compCLFversion attribute. Since the differences are so minimal, OCIO writes +both the xmlns and compCLFversion in order to maximize compatibility with +different readers. The Autodesk CTF format is based on the Academy/ASC CLF format and adds several operators that allow higher quality results by avoiding the need to bake @@ -146,27 +154,36 @@ class LocalFileFormat : public FileFormat void LocalFileFormat::getFormatInfo(FormatInfoVec & formatInfoVec) const { - FormatInfo info; - info.name = FILEFORMAT_CLF; - info.extension = "clf"; - info.capabilities = FormatCapabilityFlags(FORMAT_CAPABILITY_READ | - FORMAT_CAPABILITY_BAKE | - FORMAT_CAPABILITY_WRITE); - info.bake_capabilities = FormatBakeFlags(FORMAT_BAKE_CAPABILITY_3DLUT | - FORMAT_BAKE_CAPABILITY_1DLUT | - FORMAT_BAKE_CAPABILITY_1D_3D_LUT); - formatInfoVec.push_back(info); - - FormatInfo info2; - info2.name = FILEFORMAT_CTF; - info2.extension = "ctf"; - info2.capabilities = FormatCapabilityFlags(FORMAT_CAPABILITY_READ | - FORMAT_CAPABILITY_BAKE | - FORMAT_CAPABILITY_WRITE); - info.bake_capabilities = FormatBakeFlags(FORMAT_BAKE_CAPABILITY_3DLUT | - FORMAT_BAKE_CAPABILITY_1DLUT | - FORMAT_BAKE_CAPABILITY_1D_3D_LUT); - formatInfoVec.push_back(info2); + // CLF - Academy/ASC & SMPTE uses the same format + { + FormatInfo info; + info.name = FILEFORMAT_CLF; + info.extension = "clf"; + info.capabilities = FormatCapabilityFlags(FORMAT_CAPABILITY_READ | + FORMAT_CAPABILITY_BAKE | + FORMAT_CAPABILITY_WRITE); + + info.bake_capabilities = FormatBakeFlags( FORMAT_BAKE_CAPABILITY_3DLUT | + FORMAT_BAKE_CAPABILITY_1DLUT | + FORMAT_BAKE_CAPABILITY_1D_3D_LUT); + formatInfoVec.push_back(info); + } + + // CTF + { + FormatInfo info; + info.name = FILEFORMAT_CTF; + info.extension = "ctf"; + info.capabilities = FormatCapabilityFlags(FORMAT_CAPABILITY_READ | + FORMAT_CAPABILITY_BAKE | + FORMAT_CAPABILITY_WRITE); + + info.bake_capabilities = FormatBakeFlags( FORMAT_BAKE_CAPABILITY_3DLUT | + FORMAT_BAKE_CAPABILITY_1DLUT | + FORMAT_BAKE_CAPABILITY_1D_3D_LUT); + + formatInfoVec.push_back(info); + } } class XMLParserHelper @@ -227,7 +244,7 @@ class XMLParserHelper throwMessage(error); } - if (pT->getOps().empty()) + if (pT->getOpDataVec().empty()) { static const std::string error( "CTF/CLF parsing error: No color operator in file."); @@ -420,7 +437,7 @@ class XMLParserHelper // Start the parsing of one element. static void StartElementHandler(void * userData, - const XML_Char * name, + const XML_Char * name_full, const XML_Char ** atts) { static const std::vector rangeSubElements = { @@ -478,7 +495,7 @@ class XMLParserHelper XMLParserHelper * pImpl = (XMLParserHelper*)userData; - if (!pImpl || !name || !*name) + if (!pImpl || !name_full || !*name_full) { if (!pImpl) { @@ -490,6 +507,14 @@ class XMLParserHelper } } + // Strip the name spaces + const char *name = name_full; + if (pImpl->m_keepNamespaces <= 0) + { + name = strrchr(name_full, ':'); + name = name ? (name+1) : name_full; + } + if (!pImpl->m_elms.empty()) { // Check if we are still processing a metadata structure. @@ -717,6 +742,16 @@ class XMLParserHelper pImpl->getXmLineNumber(), pImpl->getXmlFilename())); } + else if (SupportedElement(name, pElt, TAG_ID, "", recognizedName)) + { + pImpl->m_elms.push_back( + std::make_shared( + name, + pContainer, + pImpl->getXmLineNumber(), + pImpl->getXmlFilename())); + } + // Dynamic Property is valid under any operator parent. First // test if the tag is supported to set the recognizedName // accordingly, without testing for parents. Test for the @@ -790,6 +825,8 @@ class XMLParserHelper else if (SupportedElement(name, pElt, TAG_INFO, TAG_PROCESS_LIST, recognizedName)) { + pImpl->m_keepNamespaces++; + pImpl->m_elms.push_back( std::make_shared( name, @@ -992,14 +1029,22 @@ class XMLParserHelper // End the parsing of one element. static void EndElementHandler(void * userData, - const XML_Char * name) + const XML_Char * name_full) { XMLParserHelper * pImpl = (XMLParserHelper*)userData; - if (!pImpl || !name || !*name) + if (!pImpl || !name_full || !*name_full) { throw Exception("CTF/CLF internal parsing error."); } + // Strip the name spaces + const char *name = name_full; + if (pImpl->m_keepNamespaces <= 0) + { + name = strrchr(name_full, ':'); + name = name ? (name+1) : name_full; + } + // Is the expected element present? auto pElt(pImpl->m_elms.back()); if (!pElt.get()) @@ -1054,6 +1099,12 @@ class XMLParserHelper } } + // Exiting the info element; decrease keep namespace counter. + if(std::dynamic_pointer_cast(pElt)) + { + pImpl->m_keepNamespaces--; + } + pElt->end(); } @@ -1160,6 +1211,7 @@ class XMLParserHelper bool m_isCLF; XmlReaderElementStack m_elms; // Parsing stack CTFReaderTransformPtr m_transform; + int m_keepNamespaces = 0; // if >0, name spaces will be preserved }; @@ -1167,8 +1219,10 @@ bool isLoadableCTF(std::istream & istream) { std::streampos curPos = istream.tellg(); - const unsigned limit(5 * 1024); // 5 kilobytes. - const char *pattern = "m_transform->toMetadata(processorData); // Resolve reference path using context and load referenced files. - const ConstOpDataVec & opDataVec = cachedFile->m_transform->getOps(); + const ConstOpDataVec & opDataVec = cachedFile->m_transform->getOpDataVec(); // Try to use the FileTransform interpolation for any Lut1D or Lut3D that does not specify // an interpolation in the CTF itself. If the interpolation can not be used, ignore it. @@ -1558,14 +1619,19 @@ void LocalFileFormat::write(const ConstConfigRcPtr & config, const std::string & formatName, std::ostream & ostream) const { - bool isCLF = false; + + TransformWriter::SubFormat subFormat{TransformWriter::SubFormat::FORMAT_UNKNOWN}; + if (Platform::Strcasecmp(formatName.c_str(), FILEFORMAT_CLF) == 0) { - isCLF = true; - } - else if (Platform::Strcasecmp(formatName.c_str(), FILEFORMAT_CTF) != 0) + subFormat = TransformWriter::SubFormat::FORMAT_CLF; + } + else if (Platform::Strcasecmp(formatName.c_str(), FILEFORMAT_CTF) == 0) + { + subFormat = TransformWriter::SubFormat::FORMAT_CTF; + } + else { - // Neither a clf nor a ctf. std::ostringstream os; os << "Error: CLF/CTF writer does not also write format " << formatName << "."; throw Exception(os.str().c_str()); @@ -1583,11 +1649,21 @@ void LocalFileFormat::write(const ConstConfigRcPtr & config, const FormatMetadataImpl & metadata = group.getFormatMetadata(); CTFReaderTransformPtr transform = std::make_shared(ops, metadata); + // It it doesn't have an id, create one based on the op list. + if (transform->getID().empty()) + { + std::string opId = ops.getCacheID(); + + std::ostringstream ss; + ss << "urn:uuid:" << CacheIDHashUUID(opId.c_str(), opId.size()); + transform->setID(ss.str().c_str()); + } + // Write XML Header. ostream << "" << std::endl; XmlFormatter fmt(ostream); - TransformWriter writer(fmt, transform, isCLF); + TransformWriter writer(fmt, transform, subFormat); writer.write(); } diff --git a/src/OpenColorIO/fileformats/FormatMetadata.cpp b/src/OpenColorIO/fileformats/FormatMetadata.cpp index 8b5fe1cfa..b5fe876dd 100644 --- a/src/OpenColorIO/fileformats/FormatMetadata.cpp +++ b/src/OpenColorIO/fileformats/FormatMetadata.cpp @@ -19,6 +19,9 @@ const char * METADATA_INFO = "Info"; const char * METADATA_INPUT_DESCRIPTOR = "InputDescriptor"; const char * METADATA_OUTPUT_DESCRIPTOR = "OutputDescriptor"; +// CLF XML elements described in ST2136-1 +const char * METADATA_ID_ELEMENT = "Id"; + // NAME and ID are CLF XML attributes described in S-2014-006. const char * METADATA_NAME = "name"; const char * METADATA_ID = "id"; diff --git a/src/OpenColorIO/fileformats/cdl/CDLParser.h b/src/OpenColorIO/fileformats/cdl/CDLParser.h index 0e5471b00..ddeee5a26 100644 --- a/src/OpenColorIO/fileformats/cdl/CDLParser.h +++ b/src/OpenColorIO/fileformats/cdl/CDLParser.h @@ -20,7 +20,7 @@ class CDLParser { public: explicit CDLParser(const std::string& xmlFile); - virtual ~CDLParser(); + ~CDLParser(); void parse(std::istream & istream) const; diff --git a/src/OpenColorIO/fileformats/ctf/CTFReaderHelper.cpp b/src/OpenColorIO/fileformats/ctf/CTFReaderHelper.cpp index 79393fc48..5c96bd7cc 100644 --- a/src/OpenColorIO/fileformats/ctf/CTFReaderHelper.cpp +++ b/src/OpenColorIO/fileformats/ctf/CTFReaderHelper.cpp @@ -60,6 +60,7 @@ void CTFReaderTransformElt::start(const char ** atts) bool isIdFound = false; bool isVersionFound = false; bool isCLFVersionFound = false; + bool isSMPTEVersionFound = false; CTFVersion requestedVersion(0, 0); CTFVersion requestedCLFVersion(0, 0); @@ -70,12 +71,40 @@ void CTFReaderTransformElt::start(const char ** atts) { if (!atts[i + 1] || !*atts[i + 1]) { - throwMessage("Required attribute 'id' does not have a value."); + throwMessage("Attribute 'id' does not have a value."); } m_transform->setID(atts[i + 1]); isIdFound = true; } + else if (0 == Platform::Strcasecmp(ATTR_XMLNS, atts[i])) + { + if (!atts[i + 1] || !*atts[i + 1]) + { + throwMessage("Attribute 'xmlns' does not have a value."); + } + + // Check if xmlns atrribute holds a SMPTE version string. + try + { + auto version = CTFVersion(atts[i + 1], CTFVersion::StringFormat::VERSION_SMPTE_XMLNS); + requestedVersion = CTF_PROCESS_LIST_VERSION_2_0; + requestedCLFVersion = version; + isSMPTEVersionFound = true; + m_isCLF = true; + } + catch (Exception& /*e*/) + { + // Ignore other xmlns attribute strings. + } + + // Disallow Version and version-holding xmlns appering togather. + // Note that compCLFversion can appear together with xmlns. + if (isVersionFound && isSMPTEVersionFound) + { + throwMessage("SMPTE 'xmlns' version and 'Version' attribute cannot both be present."); + } + } else if (0 == Platform::Strcasecmp(ATTR_NAME, atts[i])) { if (!atts[i + 1] || !*atts[i + 1]) @@ -100,6 +129,10 @@ void CTFReaderTransformElt::start(const char ** atts) { throwMessage("'compCLFversion' and 'Version' cannot both be present."); } + if (isSMPTEVersionFound) + { + throwMessage("SMPTE 'xmlns' version and 'Version' attribute cannot both be present."); + } if (isVersionFound) { throwMessage("'Version' can only be there once."); @@ -114,7 +147,7 @@ void CTFReaderTransformElt::start(const char ** atts) try { const std::string verString(pVer); - CTFVersion::ReadVersion(verString, requestedVersion); + requestedVersion = CTFVersion(verString); } catch (Exception& ce) { @@ -134,6 +167,9 @@ void CTFReaderTransformElt::start(const char ** atts) throwMessage("'compCLFversion' and 'Version' cannot be both present."); } + // Note: compCLFversion can appear together with xmlns for SMPTE CLF + // files. + const char* pVer = atts[i + 1]; if (!pVer || !*pVer) { @@ -143,7 +179,7 @@ void CTFReaderTransformElt::start(const char ** atts) try { std::string verString(pVer); - CTFVersion::ReadVersion(verString, requestedCLFVersion); + requestedCLFVersion = CTFVersion(verString, CTFVersion::StringFormat::VERSION_SMPTE_CLF); } catch (Exception& ce) { @@ -168,14 +204,16 @@ void CTFReaderTransformElt::start(const char ** atts) requestedVersion = CTF_PROCESS_LIST_VERSION_2_0; } - isVersionFound = true; isCLFVersionFound = true; // Handle as CLF. m_isCLF = true; } - else if (0 == Platform::Strcasecmp("xmlns", atts[i])) + else if(StringUtils::StartsWith(std::string(atts[i]),"xmlns:")) { - // Ignore. + // TODO: Once the CTFReaderTransform class gets a FormatMetada + // member, push this as an attribute. Until then just ignore with a + // reminder warning. + logParameterWarning(atts[i]); } else { @@ -185,29 +223,27 @@ void CTFReaderTransformElt::start(const char ** atts) i += 2; } - // Check mandatory elements. - if (!isIdFound) + // Check mandatory id keyword for non-SMPTE variants. + if (!isIdFound && !isSMPTEVersionFound) { throwMessage("Required attribute 'id' is missing."); } // Transform file format with no version means that // the CTF format is 1.2. - if (!isVersionFound) + if (!(isVersionFound || isCLFVersionFound || isSMPTEVersionFound )) { - if (m_isCLF && !isCLFVersionFound) + if (m_isCLF) { - throwMessage("Required attribute 'compCLFversion' is missing."); + throwMessage("No valid 'version', 'compCLFversion', or 'xmlns' attributes were found; " + "at least one of them is required."); } setVersion(CTF_PROCESS_LIST_VERSION_1_2); } else { setVersion(requestedVersion); - if (m_isCLF) - { - setCLFVersion(requestedCLFVersion); - } + setCLFVersion(requestedCLFVersion); } } @@ -230,6 +266,10 @@ const char * CTFReaderTransformElt::getTypeName() const static const std::string n(TAG_PROCESS_LIST); return n.c_str(); } +void CTFReaderTransformElt::setIDElement(const std::string& idStr) +{ + getTransform()->setIDElement(idStr.c_str()); +} void CTFReaderTransformElt::setVersion(const CTFVersion & ver) { @@ -260,6 +300,25 @@ bool CTFReaderTransformElt::isCLF() const return getTransform()->isCLF(); } +////////////////////////////////////////////////////////// +void CTFReaderIdElt::end() +{ + if(!ValidateSMPTEId(m_id)) + { + // We allow non-compliant Id values with a warning. + std::ostringstream ss; + ss << getXmlFile().c_str() << "(" << getXmlLineNumber() << "): "; + ss << "'" << m_id << "' is not a SMPTE ST 2136-1 compliant Id value."; + LogWarning(ss.str().c_str()); + } + + auto* pTransformnElt = dynamic_cast(getParent().get()); + if (pTransformnElt) + { + pTransformnElt->setIDElement(m_id); + } +} + ////////////////////////////////////////////////////////// CTFReaderArrayElt::CTFReaderArrayElt(const std::string & name, @@ -844,7 +903,7 @@ void CTFReaderOpElt::start(const char ** atts) // Add a pointer to an empty op of the appropriate child class to the // end of the opvec. No data is copied since the parameters of the op // have not been filled in yet. - m_transform->getOps().push_back(getOp()); + m_transform->getOpDataVec().push_back(getOp()); enum BitDepthFlags { @@ -4363,9 +4422,9 @@ void CTFReaderLut1DElt_1_7::end() // This code assumes that the current LUT is at the end of the opList. // In other words, that this LUT's end() method will be called before // any other Op's start(). - const size_t len = m_transform->getOps().size(); + const size_t len = m_transform->getOpDataVec().size(); const size_t pos = len - 1; - m_transform->getOps().insert(m_transform->getOps().begin() + pos, pRng); + m_transform->getOpDataVec().insert(m_transform->getOpDataVec().begin() + pos, pRng); } } @@ -4530,9 +4589,9 @@ void CTFReaderLut3DElt_1_7::end() // This code assumes that the current LUT is at the end of the opList. // In other words, that this LUT's end() method will be called before // any other Op's start(). - const unsigned long len = (unsigned long)m_transform->getOps().size(); + const unsigned long len = (unsigned long)m_transform->getOpDataVec().size(); const unsigned long pos = len - 1; - m_transform->getOps().insert(m_transform->getOps().begin() + pos, pRng); + m_transform->getOpDataVec().insert(m_transform->getOpDataVec().begin() + pos, pRng); } } @@ -4908,12 +4967,12 @@ void CTFReaderRangeElt_1_7::end() // This code assumes that the current Range is at the end of the opList. // In other words, that this Op's end() method will be called before // any other Op's start(). - const size_t len = m_transform->getOps().size(); + const size_t len = m_transform->getOpDataVec().size(); const size_t pos = len - 1; // Replace the range appended to m_transform in OpElt::start // with the matrix. - m_transform->getOps()[pos].swap(pMtx); + m_transform->getOpDataVec()[pos].swap(pMtx); } } diff --git a/src/OpenColorIO/fileformats/ctf/CTFReaderHelper.h b/src/OpenColorIO/fileformats/ctf/CTFReaderHelper.h index e4e1bacec..bec6e9748 100644 --- a/src/OpenColorIO/fileformats/ctf/CTFReaderHelper.h +++ b/src/OpenColorIO/fileformats/ctf/CTFReaderHelper.h @@ -54,6 +54,9 @@ class CTFReaderTransformElt : public XmlReaderContainerElt const char * getTypeName() const override; + // Set the ID element (when SMPTE id tag is used) + void setIDElement(const std::string& idStr); + // Set the current transform CTF version. void setVersion(const CTFVersion & ver); @@ -71,11 +74,48 @@ class CTFReaderTransformElt : public XmlReaderContainerElt // The associated Transform. CTFReaderTransformPtr m_transform; // Is it a clf file? Or is a clf parser requested. - bool m_isCLF; + bool m_isCLF = false; +}; + +// Class for the Id element. +class CTFReaderIdElt : public XmlReaderPlainElt +{ +public: + CTFReaderIdElt() = delete; + CTFReaderIdElt(const std::string & name, + ContainerEltRcPtr & pParent, + unsigned int xmlLocation, + const std::string & xmlFile) + : XmlReaderPlainElt(name, pParent, xmlLocation, xmlFile) + { + } + + ~CTFReaderIdElt() + { + } + + void start(const char ** /* atts */) override + { + m_id = {}; + } + + void end() override; + + void setRawData(const char * str, size_t len, unsigned int /* xmlLine */) override + { + // This function can receive the text in small pieces, so keep adding to + // the string. + m_id += std::string(str, len); + } + +private: + std::string m_id; }; typedef OCIO_SHARED_PTR CTFReaderTransformEltRcPtr; +// Note: This class is used only for adding metadata to other info metadata +// elements, not to the transform. class CTFReaderMetadataElt : public XmlReaderComplexElt { public: @@ -135,22 +175,27 @@ class CTFReaderInputDescriptorElt : public XmlReaderPlainElt void start(const char ** /* atts */) override { + m_desc = {}; + // Todo: collect language attr. } void end() override { + CTFReaderTransformElt* pTransform = + dynamic_cast(getParent().get()); + + auto & descs = pTransform->getTransform()->getInputDescriptors(); + descs.push_back(m_desc); } void setRawData(const char * str, size_t len, unsigned int /*xmlLine*/) override { - CTFReaderTransformElt* pTransform - = dynamic_cast(getParent().get()); - - std::string s = pTransform->getTransform()->getInputDescriptor(); - s += std::string(str, len); - - pTransform->getTransform()->setInputDescriptor(s); + // This function can receive the text in small pieces, so keep adding to + // the string. + m_desc += std::string(str, len); } +private: + std::string m_desc; }; class CTFReaderOutputDescriptorElt : public XmlReaderPlainElt @@ -169,24 +214,29 @@ class CTFReaderOutputDescriptorElt : public XmlReaderPlainElt { } - void start(const char ** /* atts */) override + void start(const char ** /*atts*/ ) override { + m_desc = {}; + // TODO: collect language attr. } void end() override { + CTFReaderTransformElt* pTransform = + dynamic_cast(getParent().get()); + + auto & descs = pTransform->getTransform()->getOutputDescriptors(); + descs.push_back(m_desc); } void setRawData(const char* str, size_t len, unsigned int /* xmlLine */) override { - CTFReaderTransformElt* pTransform - = dynamic_cast(getParent().get()); - - std::string s = pTransform->getTransform()->getOutputDescriptor(); - s += std::string(str, len); - - pTransform->getTransform()->setOutputDescriptor(s); + // This function can receive the text in small pieces, so keep adding to + // the string. + m_desc += std::string(str, len); } +private: + std::string m_desc; }; class CTFReaderArrayElt : public XmlReaderPlainElt diff --git a/src/OpenColorIO/fileformats/ctf/CTFReaderUtils.cpp b/src/OpenColorIO/fileformats/ctf/CTFReaderUtils.cpp index ffd73cbd4..89eb7f9f7 100644 --- a/src/OpenColorIO/fileformats/ctf/CTFReaderUtils.cpp +++ b/src/OpenColorIO/fileformats/ctf/CTFReaderUtils.cpp @@ -3,6 +3,7 @@ #include #include +#include #include "fileformats/ctf/CTFReaderUtils.h" #include "Platform.h" @@ -173,4 +174,19 @@ const char * ConvertGradingStyleAndDirToString(GradingStyle style, TransformDire throw Exception(os.str().c_str()); } + +bool ValidateSMPTEId(const std::string& id) +{ + static const std::regex clf_id_regex( + "^urn:uuid:" + "[0-9a-fA-F]{8}-" + "[0-9a-fA-F]{4}-" + "[0-9a-fA-F]{4}-" + "[0-9a-fA-F]{4}-" + "[0-9a-fA-F]{12}$"); + + return std::regex_match(id, clf_id_regex); +} + + } // namespace OCIO_NAMESPACE diff --git a/src/OpenColorIO/fileformats/ctf/CTFReaderUtils.h b/src/OpenColorIO/fileformats/ctf/CTFReaderUtils.h index 805e95bb1..7b549cece 100644 --- a/src/OpenColorIO/fileformats/ctf/CTFReaderUtils.h +++ b/src/OpenColorIO/fileformats/ctf/CTFReaderUtils.h @@ -18,6 +18,7 @@ void ConvertStringToGradingStyleAndDir(const char * str, TransformDirection & dir); const char * ConvertGradingStyleAndDirToString(GradingStyle style, TransformDirection dir); +bool ValidateSMPTEId(const std::string& id); static constexpr char TAG_ACES[] = "ACES"; static constexpr char TAG_ACES_PARAMS[] = "ACESParams"; @@ -42,6 +43,7 @@ static constexpr char TAG_FIXED_FUNCTION[] = "FixedFunction"; static constexpr char TAG_FUNCTION[] = "Function"; static constexpr char TAG_GAMMA[] = "Gamma"; static constexpr char TAG_GAMMA_PARAMS[] = "GammaParams"; +static constexpr char TAG_ID[] = "Id"; static constexpr char TAG_INDEX_MAP[] = "IndexMap"; static constexpr char TAG_INFO[] = "Info"; static constexpr char TAG_INVLUT1D[] = "InverseLUT1D"; diff --git a/src/OpenColorIO/fileformats/ctf/CTFTransform.cpp b/src/OpenColorIO/fileformats/ctf/CTFTransform.cpp index 5a21b6cb1..f34f0d88b 100644 --- a/src/OpenColorIO/fileformats/ctf/CTFTransform.cpp +++ b/src/OpenColorIO/fileformats/ctf/CTFTransform.cpp @@ -2,12 +2,12 @@ // Copyright Contributors to the OpenColorIO Project. #include +#include #include "BitDepthUtils.h" #include "fileformats/ctf/CTFReaderUtils.h" #include "fileformats/ctf/CTFTransform.h" #include "fileformats/xmlutils/XMLReaderUtils.h" -#include "HashUtils.h" #include "ops/cdl/CDLOpData.h" #include "ops/exponent/ExponentOp.h" #include "ops/exposurecontrast/ExposureContrastOpData.h" @@ -38,9 +38,37 @@ namespace OCIO_NAMESPACE // This results in less pretty output and also causes problems for some unit tests. static constexpr unsigned DOUBLE_PRECISION = 15; +static constexpr const char* SMPTE_XMLNS_URL = "http://www.smpte-ra.org/ns/2136-1/2024"; -void CTFVersion::ReadVersion(const std::string & versionString, CTFVersion & versionOut) +CTFVersion::CTFVersion(const std::string & versionString, StringFormat acceptedFormat) { + // Parse the version string to see if that matches the SMPTE + // namespace/version patterns. If so store the version string and consider + // equivalent to v3.0. + if (acceptedFormat & ( VERSION_SMPTE_XMLNS | VERSION_SMPTE_CLF)) + { + bool res = false; + if (acceptedFormat & VERSION_SMPTE_XMLNS) + { + res = (0 == Platform::Strcasecmp(versionString.c_str(), + SMPTE_XMLNS_URL)); + } + + if (!res && acceptedFormat & VERSION_SMPTE_CLF) + { + res = (0 == Platform::Strcasecmp(versionString.c_str(), + "ST2136-1:2024")); + } + + if (res) + { + m_version_string = versionString; + m_major = 3; + return; + } + } + + // For non-SMPTE namespace versions, parse as MAJOR[.MINOR[.REVISION]] unsigned int numDot = 0; unsigned int numInt = 0; bool canBeDot = false; @@ -73,19 +101,19 @@ void CTFVersion::ReadVersion(const std::string & versionString, CTFVersion & ver std::ostringstream os; os << "'"; os << versionString; - os << "' is not a valid version. "; - os << "Expecting MAJOR[.MINOR[.REVISION]] "; + os << "' is not a valid version. Expecting "; + if (acceptedFormat & VERSION_SMPTE_CLF) + os << "'ST2136-1:2024' or "; + if (acceptedFormat & VERSION_SMPTE_XMLNS) + os << "'" << SMPTE_XMLNS_URL << "' or "; + os << "MAJOR[.MINOR[.REVISION]] "; throw Exception(os.str().c_str()); } - versionOut.m_major = 0; - versionOut.m_minor = 0; - versionOut.m_revision = 0; - sscanf(versionString.c_str(), "%d.%d.%d", - &versionOut.m_major, - &versionOut.m_minor, - &versionOut.m_revision); + &m_major, + &m_minor, + &m_revision); } CTFVersion & CTFVersion::operator=(const CTFVersion & rhs) @@ -95,6 +123,7 @@ CTFVersion & CTFVersion::operator=(const CTFVersion & rhs) m_major = rhs.m_major; m_minor = rhs.m_minor; m_revision = rhs.m_revision; + m_version_string = rhs.m_version_string; } return *this; } @@ -385,7 +414,7 @@ CTFVersion GetOpMinimumVersion(const ConstOpDataRcPtr & op) CTFVersion GetMinimumVersion(const ConstCTFReaderTransformPtr & transform) { - auto & opList = transform->getOps(); + auto & opList = transform->getOpDataVec(); // Need to specify the minimum version here. Some test transforms have no ops. CTFVersion minimumVersion = CTF_PROCESS_LIST_VERSION_1_3; @@ -414,6 +443,7 @@ const char * GetFirstElementValue(const FormatMetadataImpl::Elements & elements, return ""; } +[[maybe_unused]] const char * GetLastElementValue(const FormatMetadataImpl::Elements & elements, const std::string & name) { for (auto it = elements.rbegin(); it != elements.rend(); ++it) @@ -433,6 +463,8 @@ const char * GetLastElementValue(const FormatMetadataImpl::Elements & elements, // note that any metadata in the individual process nodes are stored separately // in their opData. Here is what is preserved: // -- ProcessList attributes "name", "id", and "inverseOf". Other attributes are ignored. +// -- ProcessList sub-element "Id". If more than one is found, the contents are +// concatenated into one element. // -- ProcessList sub-elements "InputDescriptor" and "OutputDescriptor". The value // of these elements is preserved but no additional attributes or sub-elements. // Only the first InputDescriptor and last OutputDescriptor in the metadata is preserved. @@ -448,9 +480,12 @@ void CTFReaderTransform::fromMetadata(const FormatMetadataImpl & metadata) m_id = metadata.getAttributeValueString(METADATA_ID); m_inverseOfId = metadata.getAttributeValueString(ATTR_INVERSE_OF); + + // Elements + m_id_element = GetFirstElementValue(metadata.getChildrenElements(), METADATA_ID_ELEMENT); // Preserve first InputDescriptor, last OutputDescriptor, and all Descriptions. - m_inDescriptor = GetFirstElementValue(metadata.getChildrenElements(), METADATA_INPUT_DESCRIPTOR); - m_outDescriptor = GetLastElementValue(metadata.getChildrenElements(), METADATA_OUTPUT_DESCRIPTOR); + GetElementsValues(metadata.getChildrenElements(), METADATA_INPUT_DESCRIPTOR, m_inDescriptors); + GetElementsValues(metadata.getChildrenElements(), METADATA_OUTPUT_DESCRIPTOR, m_outDescriptors); GetElementsValues(metadata.getChildrenElements(), METADATA_DESCRIPTION, m_descriptions); // Combine all Info elements. @@ -485,16 +520,28 @@ void AddNonEmptyAttribute(FormatMetadataImpl & metadata, const char * name, cons void CTFReaderTransform::toMetadata(FormatMetadataImpl & metadata) const { // Put CTF processList information into the FormatMetadata. + + // Attributes AddNonEmptyAttribute(metadata, METADATA_NAME, getName()); AddNonEmptyAttribute(metadata, METADATA_ID, getID()); AddNonEmptyAttribute(metadata, ATTR_INVERSE_OF, getInverseOfId()); - AddNonEmptyElement(metadata, METADATA_INPUT_DESCRIPTOR, getInputDescriptor()); - AddNonEmptyElement(metadata, METADATA_OUTPUT_DESCRIPTOR, getOutputDescriptor()); + // Child Elements + AddNonEmptyElement(metadata, METADATA_ID_ELEMENT, getIDElement()); + for (auto & desc : m_descriptions) { metadata.addChildElement(METADATA_DESCRIPTION, desc.c_str()); } + for (auto & desc : m_inDescriptors) + { + metadata.addChildElement(METADATA_INPUT_DESCRIPTOR, desc.c_str()); + } + for (auto & desc : m_outDescriptors) + { + metadata.addChildElement(METADATA_OUTPUT_DESCRIPTOR, desc.c_str()); + } + const std::string infoValue(m_infoMetadata.getElementValue()); if (m_infoMetadata.getNumAttributes() || m_infoMetadata.getNumChildrenElements() || !infoValue.empty()) @@ -508,9 +555,9 @@ void CTFReaderTransform::toMetadata(FormatMetadataImpl & metadata) const namespace { -void WriteDescriptions(XmlFormatter & fmt, const char * tag, const StringUtils::StringVec & descriptions) +void WriteTagStringVec(XmlFormatter & fmt, const char * tag, const StringUtils::StringVec & strVec) { - for (auto & it : descriptions) + for (auto & it : strVec) { fmt.writeContentTag(tag, it); } @@ -737,7 +784,7 @@ void OpWriter::writeFormatMetadata() const StringUtils::StringVec desc; GetElementsValues(op->getFormatMetadata().getChildrenElements(), TAG_DESCRIPTION, desc); - WriteDescriptions(m_formatter, TAG_DESCRIPTION, desc); + WriteTagStringVec(m_formatter, TAG_DESCRIPTION, desc); } const char * BitDepthToCLFString(BitDepth bitDepth) @@ -879,7 +926,7 @@ void CDLWriter::writeContent() const StringUtils::StringVec desc; GetElementsValues(op->getFormatMetadata().getChildrenElements(), METADATA_SOP_DESCRIPTION, desc); - WriteDescriptions(m_formatter, TAG_DESCRIPTION, desc); + WriteTagStringVec(m_formatter, TAG_DESCRIPTION, desc); oss.str(""); params = m_cdl->getSlopeParams(); @@ -906,7 +953,7 @@ void CDLWriter::writeContent() const StringUtils::StringVec desc; GetElementsValues(op->getFormatMetadata().getChildrenElements(), METADATA_SAT_DESCRIPTION, desc); - WriteDescriptions(m_formatter, TAG_DESCRIPTION, desc); + WriteTagStringVec(m_formatter, TAG_DESCRIPTION, desc); oss.str(""); oss << m_cdl->getSaturation(); @@ -921,15 +968,15 @@ void CDLWriter::writeFormatMetadata() const StringUtils::StringVec desc; GetElementsValues(op->getFormatMetadata().getChildrenElements(), METADATA_DESCRIPTION, desc); - WriteDescriptions(m_formatter, TAG_DESCRIPTION, desc); + WriteTagStringVec(m_formatter, TAG_DESCRIPTION, desc); desc.clear(); GetElementsValues(op->getFormatMetadata().getChildrenElements(), METADATA_INPUT_DESCRIPTION, desc); - WriteDescriptions(m_formatter, METADATA_INPUT_DESCRIPTION, desc); + WriteTagStringVec(m_formatter, METADATA_INPUT_DESCRIPTION, desc); desc.clear(); GetElementsValues(op->getFormatMetadata().getChildrenElements(), METADATA_VIEWING_DESCRIPTION, desc); - WriteDescriptions(m_formatter, METADATA_VIEWING_DESCRIPTION, desc); + WriteTagStringVec(m_formatter, METADATA_VIEWING_DESCRIPTION, desc); } /////////////////////////////////////////////////////////////////////////////// @@ -2517,10 +2564,10 @@ void RangeWriter::writeContent() const TransformWriter::TransformWriter(XmlFormatter & formatter, ConstCTFReaderTransformPtr transform, - bool isCLF) + SubFormat subFormat) : XmlElementWriter(formatter) , m_transform(transform) - , m_isCLF(isCLF) + , m_subFormat(subFormat) { } @@ -2534,40 +2581,43 @@ void TransformWriter::write() const XmlFormatter::Attributes attributes; - CTFVersion writeVersion{ CTF_PROCESS_LIST_VERSION_2_0 }; - - std::ostringstream fversion; - if (m_isCLF) + CTFVersion writeVersion; // This controls the available ops + switch(m_subFormat) { - // Save with CLF version 3. - fversion << 3; - attributes.push_back(XmlFormatter::Attribute(ATTR_COMP_CLF_VERSION, - fversion.str())); + case SubFormat::FORMAT_UNKNOWN: + throw Exception("Cannot write transform with unknown sub-format."); + break; - } - else - { - writeVersion = GetMinimumVersion(m_transform); - fversion << writeVersion; + case SubFormat::FORMAT_CLF: + // For CLF, we're writing versions per both the Academy and SMPTE + // requirements. + writeVersion = CTF_PROCESS_LIST_VERSION_2_0; + attributes.push_back(XmlFormatter::Attribute( + ATTR_COMP_CLF_VERSION, "3")); + attributes.push_back(XmlFormatter::Attribute( + ATTR_XMLNS, SMPTE_XMLNS_URL)); + break; - attributes.push_back(XmlFormatter::Attribute(ATTR_VERSION, - fversion.str())); + case SubFormat::FORMAT_CTF: + writeVersion = GetMinimumVersion(m_transform); - } + std::ostringstream fversion; + fversion << writeVersion; + attributes.push_back(XmlFormatter::Attribute( + ATTR_VERSION, fversion.str())); + break; + } + + // Id attribute std::string id = m_transform->getID(); if (id.empty()) { - auto & ops = m_transform->getOps(); - for (auto op : ops) - { - id += op->getCacheID(); - } - - id = CacheIDHash(id.c_str(), id.size()); + throw Exception("Internal error; at this point the transform should have an id"); } - attributes.push_back(XmlFormatter::Attribute(ATTR_ID, id)); + attributes.push_back(XmlFormatter::Attribute(ATTR_ID, id)); + const std::string& name = m_transform->getName(); if (!name.empty()) { @@ -2583,20 +2633,24 @@ void TransformWriter::write() const m_formatter.writeStartTag(processListTag, attributes); { XmlScopeIndent scopeIndent(m_formatter); - - WriteDescriptions(m_formatter, TAG_DESCRIPTION, m_transform->getDescriptions()); - - const std::string & inputDesc = m_transform->getInputDescriptor(); - if (!inputDesc.empty()) + + // Id element, won't generate if not provided but the format is + // enforced. + std::string idEl = m_transform->getIDElement(); + if (!idEl.empty()) { - m_formatter.writeContentTag(METADATA_INPUT_DESCRIPTOR, inputDesc); + if (m_subFormat == SubFormat::FORMAT_CLF && !ValidateSMPTEId(idEl)) + { + std::ostringstream ss; + ss << "'" << idEl << "' is not a SMPTE ST 2136-1 compliant Id value."; + throw Exception(ss.str().c_str()); + } + m_formatter.writeContentTag(TAG_ID, idEl); } - const std::string & outputDesc = m_transform->getOutputDescriptor(); - if (!outputDesc.empty()) - { - m_formatter.writeContentTag(METADATA_OUTPUT_DESCRIPTOR, outputDesc); - } + WriteTagStringVec(m_formatter, TAG_DESCRIPTION, m_transform->getDescriptions()); + WriteTagStringVec(m_formatter, METADATA_INPUT_DESCRIPTOR, m_transform->getInputDescriptors()); + WriteTagStringVec(m_formatter, METADATA_OUTPUT_DESCRIPTOR, m_transform->getOutputDescriptors()); const FormatMetadataImpl & info = m_transform->getInfoMetadata(); { @@ -2699,8 +2753,8 @@ void TransformWriter::writeOps(const CTFVersion & version) const // values on write. Otherwise, default to 32f. BitDepth inBD = BIT_DEPTH_F32; BitDepth outBD = BIT_DEPTH_F32; - - auto & ops = m_transform->getOps(); + bool isCLF = m_subFormat == SubFormat::FORMAT_CLF; + auto & ops = m_transform->getOpDataVec(); size_t numOps = ops.size(); size_t numSavedOps = 0; if (numOps) @@ -2762,7 +2816,7 @@ void TransformWriter::writeOps(const CTFVersion & version) const paramR, paramG, paramB, paramA); gammaData->getFormatMetadata() = exp->getFormatMetadata(); - if (m_isCLF && !gammaData->isAlphaComponentIdentity()) + if (isCLF && !gammaData->isAlphaComponentIdentity()) { ThrowWriteOp("Exponent with alpha"); } @@ -2775,7 +2829,7 @@ void TransformWriter::writeOps(const CTFVersion & version) const } case OpData::ExposureContrastType: { - if (m_isCLF) + if (isCLF) { ThrowWriteOp("ExposureContrast"); } @@ -2789,7 +2843,7 @@ void TransformWriter::writeOps(const CTFVersion & version) const } case OpData::FixedFunctionType: { - if (m_isCLF) + if (isCLF) { ThrowWriteOp("FixedFunction"); } @@ -2804,7 +2858,7 @@ void TransformWriter::writeOps(const CTFVersion & version) const case OpData::GammaType: { auto gamma = OCIO_DYNAMIC_POINTER_CAST(op); - if (m_isCLF) + if (isCLF) { if (!gamma->isAlphaComponentIdentity()) { @@ -2820,7 +2874,7 @@ void TransformWriter::writeOps(const CTFVersion & version) const } case OpData::GradingPrimaryType: { - if (m_isCLF) + if (isCLF) { ThrowWriteOp("GradingPrimary"); } @@ -2834,7 +2888,7 @@ void TransformWriter::writeOps(const CTFVersion & version) const } case OpData::GradingRGBCurveType: { - if (m_isCLF) + if (isCLF) { ThrowWriteOp("GradingRGBCurve"); } @@ -2848,7 +2902,7 @@ void TransformWriter::writeOps(const CTFVersion & version) const } case OpData::GradingHueCurveType: { - if (m_isCLF) + if (isCLF) { ThrowWriteOp("GradingHueCurve"); } @@ -2862,7 +2916,7 @@ void TransformWriter::writeOps(const CTFVersion & version) const } case OpData::GradingToneType: { - if (m_isCLF) + if (isCLF) { ThrowWriteOp("GradingTone"); } @@ -2886,7 +2940,7 @@ void TransformWriter::writeOps(const CTFVersion & version) const case OpData::Lut1DType: { auto lut = OCIO_DYNAMIC_POINTER_CAST(op); - if (m_isCLF) + if (isCLF) { if (lut->getDirection() != TRANSFORM_DIR_FORWARD) { @@ -2910,7 +2964,7 @@ void TransformWriter::writeOps(const CTFVersion & version) const case OpData::Lut3DType: { auto lut = OCIO_DYNAMIC_POINTER_CAST(op); - if (m_isCLF) + if (isCLF) { if (lut->getDirection() != TRANSFORM_DIR_FORWARD) { @@ -2935,7 +2989,7 @@ void TransformWriter::writeOps(const CTFVersion & version) const { auto matSrc = OCIO_DYNAMIC_POINTER_CAST(op); - if (m_isCLF) + if (isCLF) { if (matSrc->hasAlpha()) { diff --git a/src/OpenColorIO/fileformats/ctf/CTFTransform.h b/src/OpenColorIO/fileformats/ctf/CTFTransform.h index f8fb741c2..01e8664ac 100644 --- a/src/OpenColorIO/fileformats/ctf/CTFTransform.h +++ b/src/OpenColorIO/fileformats/ctf/CTFTransform.h @@ -22,16 +22,20 @@ namespace OCIO_NAMESPACE class CTFVersion { public: + enum StringFormat + { + VERSION_NUMERIC = 0, // Numeric version is always accepted. + VERSION_SMPTE_XMLNS = 1 << 1, + VERSION_SMPTE_CLF = 1 << 2 + }; + // Will throw if versionString is not formatted like a version. - static void ReadVersion(const std::string & versionString, - CTFVersion & versionOut); + explicit CTFVersion(const std::string & versionString, StringFormat acceptedFormat = VERSION_NUMERIC); CTFVersion() - : m_major(0) - , m_minor(0) - , m_revision(0) { } + CTFVersion(unsigned int major, unsigned int minor, unsigned int revision) : m_major(major) , m_minor(minor) @@ -41,7 +45,6 @@ class CTFVersion CTFVersion(unsigned int major, unsigned int minor) : m_major(major) , m_minor(minor) - , m_revision(0) { } @@ -49,6 +52,7 @@ class CTFVersion : m_major(otherVersion.m_major) , m_minor(otherVersion.m_minor) , m_revision(otherVersion.m_revision) + , m_version_string(otherVersion.m_version_string) { } @@ -65,22 +69,33 @@ class CTFVersion friend std::ostream & operator<< (std::ostream & stream, const CTFVersion & rhs) { - stream << rhs.m_major; - if (rhs.m_minor != 0 || rhs.m_revision != 0) + if (!rhs.m_version_string.empty()) + { + stream << rhs.m_version_string; + } + else { - stream << "." << rhs.m_minor; - if (rhs.m_revision != 0) + stream << rhs.m_major; + if (rhs.m_minor != 0 || rhs.m_revision != 0) { - stream << "." << rhs.m_revision; + stream << "." << rhs.m_minor; + if (rhs.m_revision != 0) + { + stream << "." << rhs.m_revision; + } } } return stream; } private: - unsigned int m_major; - unsigned int m_minor; - unsigned int m_revision; + // CTF and Academy/ASC CLF uses the numeric version system. + unsigned int m_major = 0; + unsigned int m_minor = 0; + unsigned int m_revision = 0; + + // SMPTE CLF uses a non-numeric xmlns version system. + std::string m_version_string; }; // @@ -157,6 +172,14 @@ class CTFReaderTransform { m_id = id; } + const std::string & getIDElement() const + { + return m_id_element; + } + void setIDElement(const char * id) + { + m_id_element = id; + } const std::string & getName() const { return m_name; @@ -181,11 +204,11 @@ class CTFReaderTransform { return m_infoMetadata; } - const ConstOpDataVec & getOps() const + const ConstOpDataVec & getOpDataVec() const { return m_ops; } - ConstOpDataVec & getOps() + ConstOpDataVec & getOpDataVec() { return m_ops; } @@ -198,24 +221,24 @@ class CTFReaderTransform return m_descriptions; } - const std::string & getInputDescriptor() const + const StringUtils::StringVec & getInputDescriptors() const { - return m_inDescriptor; + return m_inDescriptors; } - void setInputDescriptor(const std::string & in) + StringUtils::StringVec & getInputDescriptors() { - m_inDescriptor = in; + return m_inDescriptors; } - const std::string & getOutputDescriptor() const + const StringUtils::StringVec & getOutputDescriptors() const { - return m_outDescriptor; + return m_outDescriptors; } - void setOutputDescriptor(const std::string & out) + StringUtils::StringVec & getOutputDescriptors() { - m_outDescriptor = out; + return m_outDescriptors; } void setCTFVersion(const CTFVersion & ver); @@ -239,15 +262,16 @@ class CTFReaderTransform } private: - std::string m_id; + std::string m_id; // id attribute + std::string m_id_element; // id element std::string m_name; std::string m_inverseOfId; - std::string m_inDescriptor; - std::string m_outDescriptor; FormatMetadataImpl m_infoMetadata; ConstOpDataVec m_ops; StringUtils::StringVec m_descriptions; + StringUtils::StringVec m_inDescriptors; + StringUtils::StringVec m_outDescriptors; // CTF version used even for CLF files. // CLF versions <= 2.0 are interpreted as CTF version 1.7. @@ -265,14 +289,22 @@ typedef OCIO_SHARED_PTR ConstCTFReaderTransformPtr; class TransformWriter : public XmlElementWriter { -public: + public: + enum class SubFormat : uint8_t + { + FORMAT_UNKNOWN, + FORMAT_CLF, + FORMAT_CTF + }; + + public: TransformWriter() = delete; TransformWriter(const TransformWriter &) = delete; TransformWriter& operator=(const TransformWriter &) = delete; TransformWriter(XmlFormatter & formatter, ConstCTFReaderTransformPtr transform, - bool isCLF); + SubFormat SubFormat); virtual ~TransformWriter(); @@ -284,8 +316,8 @@ class TransformWriter : public XmlElementWriter void writeOps(const CTFVersion & version) const; private: - ConstCTFReaderTransformPtr m_transform; - bool m_isCLF; + ConstCTFReaderTransformPtr m_transform; + SubFormat m_subFormat = SubFormat::FORMAT_UNKNOWN; }; diff --git a/src/OpenColorIO/fileformats/xmlutils/XMLReaderHelper.cpp b/src/OpenColorIO/fileformats/xmlutils/XMLReaderHelper.cpp index d5b5be5dc..4c2630b93 100644 --- a/src/OpenColorIO/fileformats/xmlutils/XMLReaderHelper.cpp +++ b/src/OpenColorIO/fileformats/xmlutils/XMLReaderHelper.cpp @@ -102,6 +102,8 @@ void XmlReaderDescriptionElt::end() // Note: eXpat automatically replaces escaped characters with // their original values. getParent()->appendMetadata(getIdentifier(), m_description); + + // TODO: set the language attribute. } } diff --git a/src/OpenColorIO/fileformats/xmlutils/XMLReaderHelper.h b/src/OpenColorIO/fileformats/xmlutils/XMLReaderHelper.h index 203d3bcdf..60087d806 100644 --- a/src/OpenColorIO/fileformats/xmlutils/XMLReaderHelper.h +++ b/src/OpenColorIO/fileformats/xmlutils/XMLReaderHelper.h @@ -288,6 +288,7 @@ class XmlReaderDescriptionElt : public XmlReaderPlainElt void start(const char ** /* atts */) override { + // TODO: collect language attr. m_description.resize(0); m_changed = false; } diff --git a/src/OpenColorIO/fileformats/xmlutils/XMLReaderUtils.h b/src/OpenColorIO/fileformats/xmlutils/XMLReaderUtils.h index 9a813a255..895771fa8 100644 --- a/src/OpenColorIO/fileformats/xmlutils/XMLReaderUtils.h +++ b/src/OpenColorIO/fileformats/xmlutils/XMLReaderUtils.h @@ -23,19 +23,20 @@ namespace OCIO_NAMESPACE // Strings used by CDL and CLF parsers or writers. -static constexpr char ATTR_ID[] = "id"; -static constexpr char ATTR_NAME[] = "name"; - -static constexpr char CDL_TAG_COLOR_CORRECTION[] = "ColorCorrection"; - -static constexpr char TAG_DESCRIPTION[] = "Description"; -static constexpr char TAG_OFFSET[] = "Offset"; -static constexpr char TAG_POWER[] = "Power"; -static constexpr char TAG_SATNODE[] = "SatNode"; -static constexpr char TAG_SATNODEALT[] = "SATNode"; -static constexpr char TAG_SATURATION[] = "Saturation"; -static constexpr char TAG_SLOPE[] = "Slope"; -static constexpr char TAG_SOPNODE[] = "SOPNode"; +static constexpr const char* ATTR_ID = "id"; +static constexpr const char* ATTR_NAME = "name"; +static constexpr const char* ATTR_XMLNS = "xmlns"; + +static constexpr const char* CDL_TAG_COLOR_CORRECTION = "ColorCorrection"; + +static constexpr const char* TAG_DESCRIPTION = "Description"; +static constexpr const char* TAG_OFFSET = "Offset"; +static constexpr const char* TAG_POWER = "Power"; +static constexpr const char* TAG_SATNODE = "SatNode"; +static constexpr const char* TAG_SATNODEALT = "SATNode"; +static constexpr const char* TAG_SATURATION = "Saturation"; +static constexpr const char* TAG_SLOPE = "Slope"; +static constexpr const char* TAG_SOPNODE = "SOPNode"; // This method truncates a string (mainly used for display purpose). diff --git a/src/OpenColorIO/ops/cdl/CDLOpCPU.cpp b/src/OpenColorIO/ops/cdl/CDLOpCPU.cpp index 982e992f1..ddb1f8eab 100644 --- a/src/OpenColorIO/ops/cdl/CDLOpCPU.cpp +++ b/src/OpenColorIO/ops/cdl/CDLOpCPU.cpp @@ -132,7 +132,7 @@ inline void ApplyClamp(__m128&) { } -// Apply the power component to the the pixel's values. +// Apply the power component to the pixel's values. // When the template argument is true, the values in pix // are clamped to the range [0,1] and the power operation is // applied. When the argument is false, the values in pix are @@ -154,7 +154,7 @@ inline void ApplyPower(__m128& pix, const __m128& power) pix = sseSelect(negMask, pix, pixPower); } -// Apply the saturation component to the the pixel's values +// Apply the saturation component to the pixel's values inline void ApplySaturation(__m128& pix, const __m128 saturation) { // Compute luma: dot product of pixel values and the luma weights @@ -179,7 +179,7 @@ inline void ApplyScale(float * pix, const float scale) pix[2] = pix[2] * scale; } -// Apply the slope component to the the pixel's values +// Apply the slope component to the pixel's values inline void ApplySlope(float * pix, const float * slope) { pix[0] = pix[0] * slope[0]; @@ -187,7 +187,7 @@ inline void ApplySlope(float * pix, const float * slope) pix[2] = pix[2] * slope[2]; } -// Apply the offset component to the the pixel's values +// Apply the offset component to the pixel's values inline void ApplyOffset(float * pix, const float * offset) { pix[0] = pix[0] + offset[0]; @@ -195,7 +195,7 @@ inline void ApplyOffset(float * pix, const float * offset) pix[2] = pix[2] + offset[2]; } -// Apply the saturation component to the the pixel's values +// Apply the saturation component to the pixel's values inline void ApplySaturation(float * pix, const float saturation) { const float srcpix[3] = { pix[0], pix[1], pix[2] }; @@ -232,7 +232,7 @@ inline void ApplyClamp(float *) { } -// Apply the power component to the the pixel's values. +// Apply the power component to the pixel's values. // When the template argument is true, the values in pix // are clamped to the range [0,1] and the power operation is // applied. When the argument is false, the values in pix are diff --git a/src/OpenColorIO/ops/gradingprimary/GradingPrimaryOpCPU.cpp b/src/OpenColorIO/ops/gradingprimary/GradingPrimaryOpCPU.cpp index f0e73d648..760bd78b6 100644 --- a/src/OpenColorIO/ops/gradingprimary/GradingPrimaryOpCPU.cpp +++ b/src/OpenColorIO/ops/gradingprimary/GradingPrimaryOpCPU.cpp @@ -190,7 +190,7 @@ inline void ApplyLinContrast(float * pix, const float * contrast, const float pi pix[2] = std::pow(std::abs(pix[2] / pivot), contrast[2]) * std::copysign(pivot, pix[2]); } -// Apply the slope component to the the pixel's values +// Apply the slope component to the pixel's values inline void ApplySlope(float * pix, const float * slope) { pix[0] = pix[0] * slope[0]; @@ -198,7 +198,7 @@ inline void ApplySlope(float * pix, const float * slope) pix[2] = pix[2] * slope[2]; } -// Apply the offset component to the the pixel's values. +// Apply the offset component to the pixel's values. inline void ApplyOffset(float * pix, const float * m_offset) { pix[0] = pix[0] + m_offset[0]; @@ -216,7 +216,7 @@ inline void ApplyGamma(float * pix, const float * gamma, float blackPivot, float std::copysign(1.f, pix[2] - blackPivot) * (whitePivot - blackPivot) + blackPivot; } -// Apply the saturation component to the the pixel's values. +// Apply the saturation component to the pixel's values. inline void ApplySaturation(float * pix, const float m_saturation) { if (m_saturation != 1.f) diff --git a/src/OpenColorIO/transforms/CDLTransform.cpp b/src/OpenColorIO/transforms/CDLTransform.cpp index 393bec4db..a6ac91891 100755 --- a/src/OpenColorIO/transforms/CDLTransform.cpp +++ b/src/OpenColorIO/transforms/CDLTransform.cpp @@ -7,7 +7,6 @@ #include -#include "fileformats/cdl/CDLParser.h" #include "Logging.h" #include "MathUtils.h" #include "Mutex.h" diff --git a/src/apps/ociomakeclf/main.cpp b/src/apps/ociomakeclf/main.cpp index b79c77132..3c765f8fc 100644 --- a/src/apps/ociomakeclf/main.cpp +++ b/src/apps/ociomakeclf/main.cpp @@ -31,7 +31,7 @@ static int parse_end_args(int argc, const char * argv[]) return 0; } -void CreateOutputLutFile(const std::string & outLutFilepath, OCIO::ConstGroupTransformRcPtr transform) +void CreateOutputLutFile(const std::string & outLutFilepath, OCIO::ConstGroupTransformRcPtr transform, bool generateId) { // Get the processor. @@ -55,7 +55,15 @@ void CreateOutputLutFile(const std::string & outLutFilepath, OCIO::ConstGroupTra try { const auto group = optProcessor->createGroupTransform(); - group->write(config, "Academy/ASC Common LUT Format", outfs); + + if(generateId) + { + std::ostringstream ss; + ss << "urn:uuid:" << optProcessor->getCacheID(); + group->getFormatMetadata().addChildElement("Id", ss.str().c_str()); + } + + group->write(config, "Academy/ASC Common LUT Format", outfs); } catch (const OCIO::Exception &) { @@ -79,7 +87,11 @@ void CreateOutputLutFile(const std::string & outLutFilepath, OCIO::ConstGroupTra int main(int argc, const char ** argv) { - bool help = false, verbose = false, measure = false, listCSCColorSpaces = false; + bool help = false; + bool verbose = false; + bool measure = false; + bool listCSCColorSpaces = false; + bool generateId = false; std::string cscColorSpace; ArgParse ap; @@ -96,6 +108,7 @@ int main(int argc, const char ** argv) "--measure", &measure, "Measure (in ms) the CLF write", "--list", &listCSCColorSpaces, "List of the supported CSC color spaces", "--csc %s", &cscColorSpace, "The color space that the input LUT expects and produces", + "--generateid",&generateId, "Generates an id based on content and writes in SMPTE Id element format", nullptr); if (ap.parse(argc, argv) < 0) @@ -266,12 +279,12 @@ int main(int argc, const char ** argv) m.resume(); // Create the CLF file. - CreateOutputLutFile(outLutFilepath, grp); + CreateOutputLutFile(outLutFilepath, grp, generateId); } else { // Create the CLF file. - CreateOutputLutFile(outLutFilepath, grp); + CreateOutputLutFile(outLutFilepath, grp, generateId); } } catch (OCIO::Exception & ex) diff --git a/tests/cpu/OpOptimizers_tests.cpp b/tests/cpu/OpOptimizers_tests.cpp index bffb1b6ad..5b2f771a7 100644 --- a/tests/cpu/OpOptimizers_tests.cpp +++ b/tests/cpu/OpOptimizers_tests.cpp @@ -729,7 +729,7 @@ OCIO_ADD_TEST(OpOptimizers, lut1d_identity_replacement_order) OCIO::OpRcPtrVec optOps = fwd_inv_ops.clone(); OCIO_CHECK_NO_THROW(optOps.finalize()); OCIO_CHECK_NO_THROW(optOps.optimize(OCIO::OPTIMIZATION_DEFAULT)); - OCIO_CHECK_EQUAL(optOps.size(), 1); + OCIO_REQUIRE_EQUAL(optOps.size(), 1); OCIO_CHECK_EQUAL(optOps[0]->getInfo(), ""); // Compare renders. @@ -748,7 +748,7 @@ OCIO_ADD_TEST(OpOptimizers, lut1d_identity_replacement_order) OCIO::OpRcPtrVec optOps = inv_fwd_ops.clone(); OCIO_CHECK_NO_THROW(optOps.finalize()); OCIO_CHECK_NO_THROW(optOps.optimize(OCIO::OPTIMIZATION_DEFAULT)); - OCIO_CHECK_EQUAL(optOps.size(), 1); + OCIO_REQUIRE_EQUAL(optOps.size(), 1); OCIO_CHECK_EQUAL(optOps[0]->getInfo(), ""); // Compare renders. @@ -1052,7 +1052,7 @@ OCIO_ADD_TEST(OpOptimizers, gamma_comp) OCIO_CHECK_NO_THROW(optOps_noComp.finalize()); OCIO_CHECK_NO_THROW(optOps_noComp.optimize(AllBut(OCIO::OPTIMIZATION_COMP_GAMMA))); // Identity matrix is removed but gamma are not combined. - OCIO_CHECK_EQUAL(optOps_noComp.size(), 3); + OCIO_REQUIRE_EQUAL(optOps_noComp.size(), 3); OCIO_CHECK_EQUAL(optOps_noComp[0]->getInfo(), ""); OCIO_CHECK_EQUAL(optOps_noComp[1]->getInfo(), ""); OCIO_CHECK_EQUAL(optOps_noComp[2]->getInfo(), ""); @@ -1100,7 +1100,7 @@ OCIO_ADD_TEST(OpOptimizers, gamma_comp_test2) OCIO_CHECK_NO_THROW(optOps_noComp.finalize()); // NB: The op->apply function used here hard-codes OPTIMIZATION_FAST_LOG_EXP_POW to off. OCIO_CHECK_NO_THROW(optOps_noComp.optimize(AllBut(OCIO::OPTIMIZATION_COMP_GAMMA))); - OCIO_CHECK_EQUAL(optOps_noComp.size(), 2); + OCIO_REQUIRE_EQUAL(optOps_noComp.size(), 2); OCIO_CHECK_EQUAL(optOps_noComp[0]->getInfo(), ""); OCIO_CHECK_EQUAL(optOps_noComp[1]->getInfo(), ""); diff --git a/tests/cpu/Processor_tests.cpp b/tests/cpu/Processor_tests.cpp index d2e008725..3188bb6b4 100644 --- a/tests/cpu/Processor_tests.cpp +++ b/tests/cpu/Processor_tests.cpp @@ -19,7 +19,7 @@ OCIO_ADD_TEST(Processor, basic_cache) auto processorEmptyGroup = config->getProcessor(group); OCIO_CHECK_EQUAL(processorEmptyGroup->getNumTransforms(), 0); - OCIO_CHECK_EQUAL(std::string(processorEmptyGroup->getCacheID()), ""); + OCIO_CHECK_EQUAL(std::string(processorEmptyGroup->getCacheID()), "99aa06d3-0147-98d8-6001-c324468d497f"); auto mat = OCIO::MatrixTransform::Create(); double matrix[16]{ @@ -34,26 +34,26 @@ OCIO_ADD_TEST(Processor, basic_cache) auto processorMat = config->getProcessor(mat); OCIO_CHECK_EQUAL(processorMat->getNumTransforms(), 1); - OCIO_CHECK_EQUAL(std::string(processorMat->getCacheID()), "1b1880136f7669351adb0dcae0f4f9fd"); + OCIO_CHECK_EQUAL(std::string(processorMat->getCacheID()), "1adb0dca-e0f4-f9fd-1b18-80136f766935"); // Check behaviour of the cacheID offset[0] = 0.0; mat->setOffset(offset); processorMat = config->getProcessor(mat); - OCIO_CHECK_EQUAL(std::string(processorMat->getCacheID()), "675ca29c0f7d28fbdc865818c8cf5c4c"); + OCIO_CHECK_EQUAL(std::string(processorMat->getCacheID()), "dc865818-c8cf-5c4c-675c-a29c0f7d28fb"); matrix[0] = 2.0; mat->setMatrix(matrix); processorMat = config->getProcessor(mat); - OCIO_CHECK_EQUAL(std::string(processorMat->getCacheID()), "1ebac7d1c2d833943e1d1d3c26a7eb18"); + OCIO_CHECK_EQUAL(std::string(processorMat->getCacheID()), "3e1d1d3c-26a7-eb18-1eba-c7d1c2d83394"); offset[0] = 0.1; matrix[0] = 1.0; mat->setOffset(offset); mat->setMatrix(matrix); processorMat = config->getProcessor(mat); - OCIO_CHECK_EQUAL(std::string(processorMat->getCacheID()), "1b1880136f7669351adb0dcae0f4f9fd"); + OCIO_CHECK_EQUAL(std::string(processorMat->getCacheID()), "1adb0dca-e0f4-f9fd-1b18-80136f766935"); } OCIO_ADD_TEST(Processor, basic_cache_lut) @@ -63,7 +63,7 @@ OCIO_ADD_TEST(Processor, basic_cache_lut) auto processorEmptyGroup = config->getProcessor(group); OCIO_CHECK_EQUAL(processorEmptyGroup->getNumTransforms(), 0); - OCIO_CHECK_EQUAL(std::string(processorEmptyGroup->getCacheID()), ""); + OCIO_CHECK_EQUAL(std::string(processorEmptyGroup->getCacheID()), "99aa06d3-0147-98d8-6001-c324468d497f"); auto lut = OCIO::Lut3DTransform::Create(3); // Make sure it's not an identity. @@ -71,19 +71,19 @@ OCIO_ADD_TEST(Processor, basic_cache_lut) auto processorLut = config->getProcessor(lut); OCIO_CHECK_EQUAL(processorLut->getNumTransforms(), 1); - OCIO_CHECK_EQUAL(std::string(processorLut->getCacheID()), "2b26d0097cdcf8f141fe3b3d6e21b5ec"); + OCIO_CHECK_EQUAL(std::string(processorLut->getCacheID()), "41fe3b3d-6e21-b5ec-2b26-d0097cdcf8f1"); // Check behaviour of the cacheID // Change a value and check that the cacheID changes. lut->setValue(2, 2, 2, 1.f, 3.f, 4.f); processorLut = config->getProcessor(lut); - OCIO_CHECK_EQUAL(std::string(processorLut->getCacheID()), "288ec8ea132adaca5b5aed24a296a1a2"); + OCIO_CHECK_EQUAL(std::string(processorLut->getCacheID()), "5b5aed24-a296-a1a2-288e-c8ea132adaca"); // Restore the original value, check that the cache ID matches what it used to be. lut->setValue(2, 2, 2, 2.f, 3.f, 4.f); processorLut = config->getProcessor(lut); - OCIO_CHECK_EQUAL(std::string(processorLut->getCacheID()), "2b26d0097cdcf8f141fe3b3d6e21b5ec"); + OCIO_CHECK_EQUAL(std::string(processorLut->getCacheID()), "41fe3b3d-6e21-b5ec-2b26-d0097cdcf8f1"); } OCIO_ADD_TEST(Processor, unique_dynamic_properties) diff --git a/tests/cpu/apphelpers/MergeConfigsHelpers_tests.cpp b/tests/cpu/apphelpers/MergeConfigsHelpers_tests.cpp index 26dd83acc..2114a9054 100644 --- a/tests/cpu/apphelpers/MergeConfigsHelpers_tests.cpp +++ b/tests/cpu/apphelpers/MergeConfigsHelpers_tests.cpp @@ -2318,7 +2318,7 @@ OCIO_ADD_TEST(MergeConfigs, view_transforms_section) constexpr char PREFIX[] { "The Input config contains a value that would override the Base config: " }; - // Test that an error is thrown when the the input values are different. + // Test that an error is thrown when the input values are different. { OCIO::MergeHandlerOptions options = { baseConfig, inputConfig, params, mergedConfig }; checkForLogOrException(LOG_TYPE_ERROR, __LINE__, diff --git a/tests/cpu/fileformats/FileFormatCTF_tests.cpp b/tests/cpu/fileformats/FileFormatCTF_tests.cpp index 4dc12578a..03402ab32 100644 --- a/tests/cpu/fileformats/FileFormatCTF_tests.cpp +++ b/tests/cpu/fileformats/FileFormatCTF_tests.cpp @@ -52,7 +52,7 @@ OCIO_ADD_TEST(FileFormatCTF, clf_examples) OCIO_CHECK_EQUAL(cachedFile->m_transform->getDescriptions().size(), 1); OCIO_CHECK_EQUAL(cachedFile->m_transform->getDescriptions()[0], "1D LUT with legal out of range values"); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); OCIO_CHECK_EQUAL(opList[0]->getType(), OCIO::OpData::Lut1DType); OCIO_CHECK_EQUAL(opList[0]->getName(), "65valueLut"); @@ -78,7 +78,7 @@ OCIO_ADD_TEST(FileFormatCTF, clf_examples) OCIO_REQUIRE_EQUAL(cachedFile->m_transform->getDescriptions().size(), 1); OCIO_CHECK_EQUAL(cachedFile->m_transform->getDescriptions()[0], " 3D LUT example "); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); OCIO_CHECK_EQUAL(opList[0]->getName(), "identity"); OCIO_CHECK_EQUAL(opList[0]->getID(), "lut-24"); @@ -105,7 +105,7 @@ OCIO_ADD_TEST(FileFormatCTF, clf_examples) " Matrix example "); OCIO_CHECK_EQUAL(cachedFile->m_transform->getDescriptions()[1], " Used by unit tests "); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); OCIO_CHECK_EQUAL(opList[0]->getName(), "colorspace conversion"); OCIO_CHECK_EQUAL(opList[0]->getID(), "mat-25"); @@ -170,7 +170,7 @@ OCIO_ADD_TEST(FileFormatCTF, clf_examples) OCIO_REQUIRE_EQUAL(cachedFile->m_transform->getDescriptions().size(), 1); OCIO_CHECK_EQUAL(cachedFile->m_transform->getDescriptions()[0], " IndexMap LUT example from spec "); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 2); auto pR = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pR); @@ -205,13 +205,16 @@ OCIO_ADD_TEST(FileFormatCTF, matrix4x4) cachedFile->m_transform->getCTFVersion(); OCIO_CHECK_ASSERT(OCIO::CTF_PROCESS_LIST_VERSION_1_2 == ctfVersion); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pMatrix = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pMatrix); - OCIO_CHECK_ASSERT(cachedFile->m_transform->getInputDescriptor() == "XYZ"); - OCIO_CHECK_ASSERT(cachedFile->m_transform->getOutputDescriptor() == "RGB"); + OCIO_REQUIRE_ASSERT(cachedFile->m_transform->getInputDescriptors().size() == 1); + OCIO_CHECK_ASSERT(cachedFile->m_transform->getInputDescriptors()[0] == "XYZ"); + + OCIO_REQUIRE_ASSERT(cachedFile->m_transform->getOutputDescriptors().size() == 1); + OCIO_CHECK_ASSERT(cachedFile->m_transform->getOutputDescriptors()[0] == "RGB"); OCIO_CHECK_EQUAL(pMatrix->getFileInputBitDepth(), OCIO::BIT_DEPTH_F32); OCIO_CHECK_EQUAL(pMatrix->getFileOutputBitDepth(), OCIO::BIT_DEPTH_F32); @@ -266,7 +269,7 @@ OCIO_ADD_TEST(FileFormatCTF, matrix_with_offset) cachedFile->m_transform->getCTFVersion(); OCIO_CHECK_EQUAL(OCIO::CTF_PROCESS_LIST_VERSION_1_2, ctfVersion); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pMatrix = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pMatrix); @@ -324,13 +327,16 @@ OCIO_ADD_TEST(FileFormatCTF, matrix_1_3_3x3) cachedFile->m_transform->getCTFVersion(); OCIO_CHECK_ASSERT(OCIO::CTF_PROCESS_LIST_VERSION_1_3 == ctfVersion); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pMatrix = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pMatrix); - OCIO_CHECK_ASSERT(cachedFile->m_transform->getInputDescriptor() == "XYZ"); - OCIO_CHECK_ASSERT(cachedFile->m_transform->getOutputDescriptor() == "RGB"); + OCIO_REQUIRE_ASSERT(cachedFile->m_transform->getInputDescriptors().size() == 1); + OCIO_CHECK_ASSERT(cachedFile->m_transform->getInputDescriptors()[0] == "XYZ"); + + OCIO_REQUIRE_ASSERT(cachedFile->m_transform->getOutputDescriptors().size() == 1); + OCIO_CHECK_ASSERT(cachedFile->m_transform->getOutputDescriptors()[0] == "RGB"); OCIO_CHECK_EQUAL(pMatrix->getFileInputBitDepth(), OCIO::BIT_DEPTH_UINT10); OCIO_CHECK_EQUAL(pMatrix->getFileOutputBitDepth(), OCIO::BIT_DEPTH_UINT10); @@ -382,7 +388,7 @@ OCIO_ADD_TEST(FileFormatCTF, matrix_1_3_4x4) cachedFile->m_transform->getCTFVersion(); OCIO_CHECK_ASSERT(OCIO::CTF_PROCESS_LIST_VERSION_1_3 == ctfVersion); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pMatrix = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pMatrix); @@ -434,7 +440,7 @@ OCIO_ADD_TEST(FileFormatCTF, matrix_1_3_offsets) cachedFile->m_transform->getCTFVersion(); OCIO_CHECK_ASSERT(OCIO::CTF_PROCESS_LIST_VERSION_1_3 == ctfVersion); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pMatrix = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pMatrix); @@ -485,7 +491,7 @@ OCIO_ADD_TEST(FileFormatCTF, matrix_1_3_alpha_offsets) cachedFile->m_transform->getCTFVersion(); OCIO_CHECK_ASSERT(OCIO::CTF_PROCESS_LIST_VERSION_1_3 == ctfVersion); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pMatrix = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pMatrix); @@ -534,7 +540,8 @@ void CheckIdentity(std::istringstream & ctfStream, unsigned line) OCIO::CachedFileRcPtr file; OCIO_CHECK_NO_THROW_FROM(file = tester.read(ctfStream, emptyString, OCIO::INTERP_DEFAULT), line); OCIO::LocalCachedFileRcPtr cachedFile = OCIO_DYNAMIC_POINTER_CAST(file); - const auto & fileOps = cachedFile->m_transform->getOps(); + OCIO_REQUIRE_ASSERT(cachedFile); + const auto & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL_FROM(fileOps.size(), 1, line); const auto op = fileOps[0]; @@ -642,9 +649,14 @@ OCIO_ADD_TEST(FileFormatCTF, lut_1d) OCIO_REQUIRE_EQUAL(cachedFile->m_transform->getDescriptions().size(), 1); OCIO_CHECK_EQUAL(cachedFile->m_transform->getDescriptions()[0], "Apply a 1/2.2 gamma."); - OCIO_CHECK_EQUAL(cachedFile->m_transform->getInputDescriptor(), "RGB"); - OCIO_CHECK_EQUAL(cachedFile->m_transform->getOutputDescriptor(), "RGB"); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + + OCIO_REQUIRE_ASSERT(cachedFile->m_transform->getInputDescriptors().size() == 1); + OCIO_CHECK_EQUAL(cachedFile->m_transform->getInputDescriptors()[0], "RGB"); + + OCIO_REQUIRE_ASSERT(cachedFile->m_transform->getOutputDescriptors().size() == 1); + OCIO_CHECK_EQUAL(cachedFile->m_transform->getOutputDescriptors()[0], "RGB"); + + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pLut = std::dynamic_pointer_cast(opList[0]); @@ -695,7 +707,7 @@ OCIO_ADD_TEST(FileFormatCTF, lut_1d) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pLut = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pLut); @@ -717,7 +729,7 @@ OCIO_ADD_TEST(FileFormatCTF, lut_3by1d_with_nan_infinity) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pLut1d = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pLut1d); @@ -769,7 +781,7 @@ OCIO_ADD_TEST(FileFormatCTF, lut1d_half_domain_raw_half_set) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pLut1d = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pLut1d); @@ -806,7 +818,7 @@ OCIO_ADD_TEST(FileFormatCTF, 3by1d_lut) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 3); auto pMatrix = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pMatrix); @@ -875,7 +887,7 @@ OCIO_ADD_TEST(FileFormatCTF, lut1d_long_lut) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pLut = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pLut); @@ -895,7 +907,7 @@ OCIO_ADD_TEST(FileFormatCTF, lut1d_inv) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 2); auto pMatrix = std::dynamic_pointer_cast(opList[0]); @@ -966,7 +978,7 @@ OCIO_ADD_TEST(FileFormatCTF, lut1d_inv_scaling) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pLut = std::dynamic_pointer_cast(opList[0]); @@ -1045,7 +1057,7 @@ OCIO_ADD_TEST(FileFormatCTF, lut3d) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pLut = std::dynamic_pointer_cast(opList[0]); @@ -1086,7 +1098,7 @@ OCIO_ADD_TEST(FileFormatCTF, lut3d_inv) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pLut = std::dynamic_pointer_cast(opList[0]); @@ -1134,7 +1146,8 @@ OCIO_ADD_TEST(FileFormatCTF, tabluation_support) // series of numbers. const std::string ctfFile("clf/tabulation_support.clf"); OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + OCIO_REQUIRE_ASSERT(cachedFile); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_CHECK_EQUAL(cachedFile->m_transform->getID(), "e0a0ae4b-adc2-4c25-ad70-fa6f31ba219d"); OCIO_REQUIRE_EQUAL(opList.size(), 1); @@ -1179,7 +1192,8 @@ OCIO_ADD_TEST(FileFormatCTF, matrix_windows_eol) // with the ?xml header. const std::string ctfFile("clf/matrix_windows.clf"); OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + OCIO_REQUIRE_ASSERT(cachedFile); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_CHECK_EQUAL(cachedFile->m_transform->getID(), "42"); OCIO_REQUIRE_EQUAL(opList.size(), 1); OCIO_CHECK_EQUAL(opList[0]->getType(), OCIO::OpData::MatrixType); @@ -1192,7 +1206,8 @@ OCIO_ADD_TEST(FileFormatCTF, matrix_no_newlines) OCIO::LocalCachedFileRcPtr cachedFile; const std::string ctfFile("clf/matrix_no_newlines.clf"); OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + OCIO_REQUIRE_ASSERT(cachedFile); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); OCIO_CHECK_EQUAL(opList[0]->getType(), OCIO::OpData::MatrixType); auto pMatrix = std::dynamic_pointer_cast(opList[0]); @@ -1229,7 +1244,7 @@ OCIO_ADD_TEST(FileFormatCTF, check_utf8) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); StringUtils::StringVec descList; GetElementsValues(opList[0]->getFormatMetadata().getChildrenElements(), @@ -1245,6 +1260,77 @@ OCIO_ADD_TEST(FileFormatCTF, check_utf8) } +OCIO_ADD_TEST(FileFormatCTF, smpte_id_element) +{ + const std::string ctfFile("clf/bit_depth_identity.clf"); + OCIO::LocalCachedFileRcPtr cachedFile; + OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); + OCIO_REQUIRE_ASSERT((bool)cachedFile); + OCIO_CHECK_EQUAL(cachedFile->m_transform->getID(), "urn:uuid:9d768121-0cf9-40a3-a8e3-7b49f79858a7"); + OCIO_REQUIRE_EQUAL(cachedFile->m_transform->getDescriptions().size(), 2); + OCIO_CHECK_EQUAL(cachedFile->m_transform->getDescriptions()[0], + "Identity transform illustrating Array bit depth scaling"); + OCIO_CHECK_EQUAL(cachedFile->m_transform->getDescriptions()[1], + "Can be loaded by either SMPTE or CLF v3 parsers"); + + // Check the ops. + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); + OCIO_REQUIRE_EQUAL(opList.size(), 3); + + auto mat1 = OCIO::DynamicPtrCast(opList[0]); + OCIO_REQUIRE_ASSERT(mat1); + OCIO_CHECK_EQUAL(mat1->getFileInputBitDepth(), OCIO::BIT_DEPTH_UINT8); + OCIO_CHECK_EQUAL(mat1->getFileOutputBitDepth(), OCIO::BIT_DEPTH_UINT16); + + auto lut = OCIO::DynamicPtrCast(opList[1]); + OCIO_REQUIRE_ASSERT(lut); + OCIO_CHECK_EQUAL(lut->getFileOutputBitDepth(), OCIO::BIT_DEPTH_UINT16); + + auto mat2 = OCIO::DynamicPtrCast(opList[2]); + OCIO_REQUIRE_ASSERT(mat2); + OCIO_CHECK_EQUAL(mat2->getFileInputBitDepth(), OCIO::BIT_DEPTH_UINT16); + OCIO_CHECK_EQUAL(mat2->getFileOutputBitDepth(), OCIO::BIT_DEPTH_UINT16); + + // Check identity. + // Using float bit-depths returns a Range clamping at [0,1], due to the + // LUT1D. Thus setting arbitrary integer in and out depths to avoid the + // Range and allow isIdentity to be true. + OCIO::ConstProcessorRcPtr processor; + OCIO_CHECK_NO_THROW(processor = OCIO::GetFileTransformProcessor(ctfFile)); + OCIO_REQUIRE_ASSERT(processor); + auto procOpt = processor->getOptimizedCPUProcessor( + OCIO::BIT_DEPTH_UINT10, + OCIO::BIT_DEPTH_UINT12, + OCIO::OPTIMIZATION_DEFAULT); + OCIO_CHECK_ASSERT(procOpt->isIdentity()); + + // Check the Id element + auto& meta = processor->getFormatMetadata(); + OCIO_REQUIRE_ASSERT(meta.getNumChildrenElements() == 3); + auto& idElement = meta.getChildElement(0); + OCIO_CHECK_EQUAL(std::string(idElement.getElementName()), "Id"); + OCIO_CHECK_EQUAL(std::string(idElement.getElementValue()), "urn:uuid:9d768121-0cf9-40a3-a8e3-7b49f79858a7"); +} + +OCIO_ADD_TEST(FileFormatCTF, smpte_id_bad_value) +{ + const std::string ctfFile("clf/smpte_only/illegal/id_bad_value.clf"); + + // Add a log guard to catch warnings. + OCIO::LogGuard guard; + OCIO::SetLoggingLevel(OCIO::LOGGING_LEVEL_WARNING); + + OCIO::LocalCachedFileRcPtr cachedFile; + OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); + OCIO_REQUIRE_ASSERT((bool)cachedFile); + + // Check the expected warning. + static constexpr char Warning[1024] = + "id_bad_value.clf(3): '3bae2da8' is not a SMPTE ST 2136-1 compliant Id value."; + OCIO_CHECK_NE(std::string::npos, + StringUtils::Find( StringUtils::RightTrim(guard.output()), Warning )); +} + OCIO_ADD_TEST(FileFormatCTF, info_example) { OCIO::LocalCachedFileRcPtr cachedFile; @@ -1257,13 +1343,17 @@ OCIO_ADD_TEST(FileFormatCTF, info_example) "Example of using the Info element"); OCIO_CHECK_EQUAL(cachedFile->m_transform->getDescriptions()[1], "A second description"); - OCIO_CHECK_EQUAL(cachedFile->m_transform->getInputDescriptor(), + + OCIO_REQUIRE_ASSERT(cachedFile->m_transform->getInputDescriptors().size() == 1) + OCIO_CHECK_EQUAL(cachedFile->m_transform->getInputDescriptors()[0], "input desc"); - OCIO_CHECK_EQUAL(cachedFile->m_transform->getOutputDescriptor(), + + OCIO_REQUIRE_ASSERT(cachedFile->m_transform->getOutputDescriptors().size() == 1) + OCIO_CHECK_EQUAL(cachedFile->m_transform->getOutputDescriptors()[0], "output desc"); // Ensure ops were not affected by metadata parsing. - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pMatrix = @@ -1333,6 +1423,145 @@ OCIO_ADD_TEST(FileFormatCTF, info_example) OCIO_CHECK_EQUAL(std::string(ocItems[2].getElementValue()), "1"); } +OCIO_ADD_TEST(FileFormatCTF, smpte_all_metadata) +{ + const std::string ctfFile("clf/smpte_only/broadcast_profile_lut33.clf"); + OCIO::ConstProcessorRcPtr processor; + OCIO_CHECK_NO_THROW(processor = OCIO::GetFileTransformProcessor(ctfFile)); + OCIO_REQUIRE_ASSERT(processor); + + const auto & md = dynamic_cast + (processor->getFormatMetadata()); + OCIO_REQUIRE_EQUAL(md.getNumAttributes(), 1); + + // Attributes (xmlns:clfbp is ignored, xmlns becomes version) + OCIO_CHECK_EQUAL(std::string(md.getAttributeName(0)), "name"); + OCIO_CHECK_EQUAL(std::string(md.getAttributeValue(0)), "SMPTE Example Live Broadcast LUT33 Profile"); + + // TODO: Also needs to have xmlns:clfbp in the attr list. + + // Child elements (language attributes are currently ignored) + auto & items = md.getChildrenElements(); + OCIO_REQUIRE_EQUAL(items.size(), 9); + OCIO_CHECK_EQUAL(std::string(items[0].getElementName()), "Id"); + OCIO_CHECK_EQUAL(std::string(items[0].getElementValue()), "urn:uuid:a8f91bfa-b79f-5d4d-b750-a411c476bb47"); + + OCIO_CHECK_EQUAL(std::string(items[1].getElementName()), "Description"); + OCIO_CHECK_EQUAL(std::string(items[1].getElementValue()), "Demo Advanced LUT with dummy values"); + + OCIO_CHECK_EQUAL(std::string(items[2].getElementName()), "Description"); + OCIO_CHECK_EQUAL(std::string(items[2].getElementValue()), "Démonstration d'une LUT avancée avec des valeurs factices"); + + OCIO_CHECK_EQUAL(std::string(items[3].getElementName()), "Description"); + OCIO_CHECK_EQUAL(std::string(items[3].getElementValue()), "Demo Erweiterte LUT mit Dummy-Werten"); + + OCIO_CHECK_EQUAL(std::string(items[4].getElementName()), "InputDescriptor"); + OCIO_CHECK_EQUAL(std::string(items[4].getElementValue()), "ITU-R BT.709"); + + OCIO_CHECK_EQUAL(std::string(items[5].getElementName()), "OutputDescriptor"); + OCIO_CHECK_EQUAL(std::string(items[5].getElementValue()), "Same as Input"); + + OCIO_CHECK_EQUAL(std::string(items[6].getElementName()), "OutputDescriptor"); + OCIO_CHECK_EQUAL(std::string(items[6].getElementValue()), "Identique à l'entrée"); + + OCIO_CHECK_EQUAL(std::string(items[7].getElementName()), "OutputDescriptor"); + OCIO_CHECK_EQUAL(std::string(items[7].getElementValue()), "Gleiches wie Eingabe"); + + OCIO_CHECK_EQUAL(std::string(items[8].getElementName()), "Info"); + OCIO_CHECK_EQUAL(std::string(items[8].getElementValue()), ""); + + // Info block (name spaces are retained) + auto & info = items[8].getChildrenElements(); + OCIO_REQUIRE_EQUAL(info.size(), 9); + OCIO_CHECK_EQUAL(std::string(info[0].getElementName()), "Profile"); + OCIO_CHECK_EQUAL(std::string(info[0].getElementValue()), "http://www.smpte-ra.org/ns/2136-10/2026#Live_Broadcast_LUT33"); + + OCIO_CHECK_EQUAL(std::string(info[1].getElementName()), "AppRelease"); + OCIO_CHECK_EQUAL(std::string(info[1].getElementValue()), "SMPTE_2136-10_Example"); + + OCIO_CHECK_EQUAL(std::string(info[2].getElementName()), "Copyright"); + OCIO_CHECK_EQUAL(std::string(info[2].getElementValue()), "OCIO contributors"); + + OCIO_CHECK_EQUAL(std::string(info[3].getElementName()), "Revision"); + OCIO_CHECK_EQUAL(std::string(info[3].getElementValue()), "1.0"); + + OCIO_CHECK_EQUAL(std::string(info[4].getElementName()), "clfbp:InputCharacteristics"); + OCIO_CHECK_EQUAL(std::string(info[4].getElementValue()), ""); + + OCIO_CHECK_EQUAL(std::string(info[5].getElementName()), "clfbp:OutputCharacteristics"); + OCIO_CHECK_EQUAL(std::string(info[5].getElementValue()), ""); + + OCIO_CHECK_EQUAL(std::string(info[6].getElementName()), "clfbp:OutputVideoSignalClipping"); + OCIO_CHECK_EQUAL(std::string(info[6].getElementValue()), "sdiClip"); + + OCIO_CHECK_EQUAL(std::string(info[7].getElementName()), "Keywords"); + OCIO_CHECK_EQUAL(std::string(info[7].getElementValue()), "Test, Display-light"); + + OCIO_CHECK_EQUAL(std::string(info[8].getElementName()), "clfbp:ContactEmail"); + OCIO_CHECK_EQUAL(std::string(info[8].getElementValue()), "fake-email@ocio.org"); + + // Info / InputCharacteristics + auto & input = info[4].getChildrenElements(); + OCIO_REQUIRE_EQUAL(input.size(), 3); + OCIO_CHECK_EQUAL(std::string(input[0].getElementName()), "clfbp:ColorPrimaries"); + OCIO_CHECK_EQUAL(std::string(input[0].getElementValue()), "ColorPrimaries_ITU709"); + + OCIO_CHECK_EQUAL(std::string(input[1].getElementName()), "clfbp:TransferCharacteristic"); + OCIO_CHECK_EQUAL(std::string(input[1].getElementValue()), "TransferCharacteristic_ITU709"); + + OCIO_CHECK_EQUAL(std::string(input[2].getElementName()), "clfbp:CodingEquations"); + OCIO_CHECK_EQUAL(std::string(input[2].getElementValue()), "CodingEquations_ITU709"); + + // Info / OutputCharacteristics + auto & output = info[5].getChildrenElements(); + OCIO_REQUIRE_EQUAL(output.size(), 3); + OCIO_CHECK_EQUAL(std::string(output[0].getElementName()), "clfbp:ColorPrimaries"); + OCIO_CHECK_EQUAL(std::string(output[0].getElementValue()), "ColorPrimaries_ITU2020"); + + OCIO_CHECK_EQUAL(std::string(output[1].getElementName()), "clfbp:TransferCharacteristic"); + OCIO_CHECK_EQUAL(std::string(output[1].getElementValue()), "TransferCharacteristic_SMPTEST2084"); + + OCIO_CHECK_EQUAL(std::string(output[2].getElementName()), "clfbp:CodingEquations"); + OCIO_CHECK_EQUAL(std::string(output[2].getElementValue()), "CodingEquations_ITU2100_ICtCp"); + + // TODO: Check writing retains the name spaces and attributes. +} + +OCIO_ADD_TEST(FileFormatCTF, smpte_namespaces) +{ + const std::string ctfFile("clf/smpte_only/namespaces.clf"); + + OCIO::LocalCachedFileRcPtr cachedFile; + OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); + + // Check the op. + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); + OCIO_REQUIRE_EQUAL(opList.size(), 1); + + auto lut1d = OCIO::DynamicPtrCast(opList[0]); + OCIO_CHECK_ASSERT(lut1d); + + // Check the meta data. + OCIO::ConstProcessorRcPtr processor; + OCIO_CHECK_NO_THROW(processor = OCIO::GetFileTransformProcessor(ctfFile)); + OCIO_REQUIRE_ASSERT(processor); + const auto& md = processor->getFormatMetadata(); + + // Attributes. + OCIO_REQUIRE_EQUAL(md.getNumAttributes(), 1); + OCIO_CHECK_EQUAL(std::string(md.getAttributeName(0)), "id"); + OCIO_CHECK_EQUAL(std::string(md.getAttributeValue(0)),"pl1"); + + // Name-spaced description will be available without the namespace prefix. + OCIO_REQUIRE_EQUAL(md.getNumChildrenElements(), 1); + const auto& desc = md.getChildElement(0); + OCIO_CHECK_EQUAL(std::string(desc.getElementName()), "Description"); + OCIO_CHECK_EQUAL(std::string(desc.getElementValue()),"Example CLF file using namespaces."); + + // TODO: this test generates warnings for non-defaults xmlns attribs. Those + // will be collected as attributes in the future. +} + OCIO_ADD_TEST(FileFormatCTF, difficult_syntax) { // This file contains a lot of unusual (but still legal) ways of writing the XML. @@ -1341,11 +1570,21 @@ OCIO_ADD_TEST(FileFormatCTF, difficult_syntax) OCIO::LocalCachedFileRcPtr cachedFile; const std::string ctfFile("clf/difficult_syntax.clf"); + // Add a log guard to catch warnings. + OCIO::LogGuard guard; + OCIO::SetLoggingLevel(OCIO::LOGGING_LEVEL_WARNING); + OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); + // Check the expected warning. + static constexpr char Warning[1024] = + "difficult_syntax.clf(41): Unrecognized attribute 'unknown' of 'LUT1D'."; + OCIO_CHECK_NE(std::string::npos, + StringUtils::Find( StringUtils::RightTrim(guard.output()), Warning )); + const OCIO::CTFVersion clfVersion = cachedFile->m_transform->getCLFVersion(); - const OCIO::CTFVersion ver(3, 0, 0); + const OCIO::CTFVersion ver("http://www.smpte-ra.org/ns/2136-1/2024", OCIO::CTFVersion::VERSION_SMPTE_XMLNS); OCIO_CHECK_EQUAL(clfVersion, ver); OCIO_CHECK_EQUAL(cachedFile->m_transform->getID(), "id1"); @@ -1364,7 +1603,7 @@ OCIO_ADD_TEST(FileFormatCTF, difficult_syntax) OCIO_CHECK_EQUAL(std::string(items[0].getElementValue()), "This is a \"difficult\" but 'legal' color transform file."); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 2); { auto pMatrix = std::dynamic_pointer_cast(opList[0]); @@ -1480,7 +1719,7 @@ OCIO_ADD_TEST(FileFormatCTF, difficult_xml_unknown_elements) const OCIO::CTFVersion ctfVersion = cachedFile->m_transform->getCTFVersion(); OCIO_CHECK_ASSERT(OCIO::CTF_PROCESS_LIST_VERSION_1_2 == ctfVersion); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 2); auto pMatrix = std::dynamic_pointer_cast(opList[0]); @@ -1564,7 +1803,7 @@ OCIO_ADD_TEST(FileFormatCTF, unknown_elements) } } - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 4); auto pMatrix = std::dynamic_pointer_cast(opList[0]); @@ -1673,7 +1912,7 @@ OCIO_ADD_TEST(FileFormatCTF, process_list_invalid_version) OCIO_ADD_TEST(FileFormatCTF, clf_process_list_bad_version) { - std::string fileName("clf/illegal/process_list_bad_version.clf"); + std::string fileName("clf/pre-smpte_only/illegal/process_list_bad_version.clf"); OCIO_CHECK_THROW_WHAT(LoadCLFFile(fileName), OCIO::Exception, "is not a valid version"); @@ -1684,12 +1923,29 @@ OCIO_ADD_TEST(FileFormatCTF, process_list_valid_version) OCIO::LocalCachedFileRcPtr cachedFile; const std::string ctfFile("process_list_valid_version.ctf"); OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); + OCIO_REQUIRE_ASSERT(cachedFile); const OCIO::CTFVersion ctfVersion = cachedFile->m_transform->getCTFVersion(); OCIO_CHECK_EQUAL(ctfVersion, OCIO::CTF_PROCESS_LIST_VERSION_1_4); } +OCIO_ADD_TEST(FileFormatCTF, non_smpte_xmlns) +{ + const std::string ctfFile("clf/pre-smpte_only/process_list_v3_namespace.clf"); + OCIO::LocalCachedFileRcPtr cachedFile; + OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); + + // Check the op. + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); + OCIO_REQUIRE_EQUAL(opList.size(), 1); + + auto mat = OCIO::DynamicPtrCast(opList[0]); + OCIO_REQUIRE_ASSERT(mat); + OCIO_CHECK_EQUAL(mat->getFileInputBitDepth(), OCIO::BIT_DEPTH_F32); + OCIO_CHECK_EQUAL(mat->getFileOutputBitDepth(), OCIO::BIT_DEPTH_F32); +} + OCIO_ADD_TEST(FileFormatCTF, process_list_higher_version) { const std::string ctfFile("process_list_higher_version.ctf"); @@ -1700,7 +1956,7 @@ OCIO_ADD_TEST(FileFormatCTF, process_list_higher_version) OCIO_ADD_TEST(FileFormatCTF, clf_process_list_higher_version) { - const std::string ctfFile("clf/illegal/process_list_higher_version.clf"); + const std::string ctfFile("clf/pre-smpte_only/illegal/process_list_higher_version.clf"); OCIO_CHECK_THROW_WHAT(LoadCLFFile(ctfFile), OCIO::Exception, "Unsupported transform file version"); @@ -1711,6 +1967,7 @@ OCIO_ADD_TEST(FileFormatCTF, process_list_version_revision) OCIO::LocalCachedFileRcPtr cachedFile; const std::string ctfFile("process_list_version_revision.ctf"); OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); + OCIO_REQUIRE_ASSERT(cachedFile); const OCIO::CTFVersion ctfVersion = cachedFile->m_transform->getCTFVersion(); @@ -1725,12 +1982,34 @@ OCIO_ADD_TEST(FileFormatCTF, process_list_no_version) OCIO::LocalCachedFileRcPtr cachedFile; const std::string ctfFile("process_list_no_version.ctf"); OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); + OCIO_REQUIRE_ASSERT(cachedFile); const OCIO::CTFVersion ctfVersion = cachedFile->m_transform->getCTFVersion(); OCIO_CHECK_EQUAL(ctfVersion, OCIO::CTF_PROCESS_LIST_VERSION_1_2); } +OCIO_ADD_TEST(FileFormatCTF, smpte_conflicting_version) +{ + const std::string ctfFile("process_list_conflicting_versions.ctf"); + + OCIO::LocalCachedFileRcPtr cachedFile; + OCIO_CHECK_THROW_WHAT(cachedFile = LoadCLFFile(ctfFile), + OCIO::Exception, + "SMPTE 'xmlns' version and 'Version' attribute cannot both be present.") +} + +OCIO_ADD_TEST(FileFormatCTF, smpte_higher_ns_version) +{ + const std::string ctfFile("clf/smpte_only/illegal/process_list_higher_ns_version.clf"); + + OCIO::LocalCachedFileRcPtr cachedFile; + OCIO_CHECK_THROW_WHAT(cachedFile = LoadCLFFile(ctfFile), + OCIO::Exception, + "No valid 'version', 'compCLFversion', or 'xmlns' attributes " + "were found; at least one of them is required."); +} + OCIO_ADD_TEST(FileFormatCTF, info_element_version_test) { // VALID - No Version. @@ -1788,7 +2067,7 @@ OCIO_ADD_TEST(FileFormatCTF, transform_element_end_missing) OCIO_ADD_TEST(FileFormatCTF, transform_missing_id) { - const std::string ctfFile("clf/illegal/transform_missing_id.clf"); + const std::string ctfFile("clf/pre-smpte_only/illegal/transform_missing_id.clf"); OCIO_CHECK_THROW_WHAT(LoadCLFFile(ctfFile), OCIO::Exception, "Required attribute 'id'"); @@ -1884,10 +2163,10 @@ OCIO_ADD_TEST(FileFormatCTF, transform_empty) OCIO_ADD_TEST(FileFormatCTF, transform_id_empty) { - const std::string ctfFile("clf/illegal/transform_id_empty.clf"); + const std::string ctfFile("clf/pre-smpte_only/illegal/transform_id_empty.clf"); OCIO_CHECK_THROW_WHAT(LoadCLFFile(ctfFile), OCIO::Exception, - "Required attribute 'id' does not have a value"); + "Attribute 'id' does not have a value"); } OCIO_ADD_TEST(FileFormatCTF, transform_with_bitdepth_mismatch) @@ -1920,7 +2199,7 @@ OCIO_ADD_TEST(FileFormatCTF, range_default) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pR = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pR); @@ -1945,7 +2224,7 @@ OCIO_ADD_TEST(FileFormatCTF, range_test1_clamp) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pR = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pR); @@ -1970,7 +2249,7 @@ OCIO_ADD_TEST(FileFormatCTF, range_test1_noclamp) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); // Check that the noClamp style Range became a Matrix. @@ -2018,7 +2297,7 @@ OCIO_ADD_TEST(FileFormatCTF, range_test2) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pR = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pR); @@ -2074,7 +2353,7 @@ OCIO_ADD_TEST(FileFormatCTF, indexMap_test1_clfv2) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 2); auto pR = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pR); @@ -2101,7 +2380,7 @@ OCIO_ADD_TEST(FileFormatCTF, indexMap_test2_clfv2) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 2); auto pR = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pR); @@ -2162,7 +2441,7 @@ OCIO_ADD_TEST(FileFormatCTF, gamma_test1) OCIO_CHECK_EQUAL(cachedFile->m_transform->getDescriptions().size(), 1); OCIO_CHECK_EQUAL(cachedFile->m_transform->getDescriptions()[0], "2.4 gamma"); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pG = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pG); @@ -2191,7 +2470,7 @@ OCIO_ADD_TEST(FileFormatCTF, gamma_test2) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pG = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pG); @@ -2222,7 +2501,7 @@ OCIO_ADD_TEST(FileFormatCTF, gamma_test3) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pG = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pG); @@ -2252,7 +2531,7 @@ OCIO_ADD_TEST(FileFormatCTF, gamma_test4) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pG = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pG); @@ -2299,7 +2578,7 @@ OCIO_ADD_TEST(FileFormatCTF, gamma_test6) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pG = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pG); @@ -2321,7 +2600,7 @@ OCIO_ADD_TEST(FileFormatCTF, gamma_alpha_test1) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pG = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pG); @@ -2352,7 +2631,7 @@ OCIO_ADD_TEST(FileFormatCTF, gamma_alpha_test2) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pG = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pG); @@ -2388,7 +2667,7 @@ OCIO_ADD_TEST(FileFormatCTF, gamma_alpha_test3) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pG = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pG); @@ -2420,7 +2699,7 @@ OCIO_ADD_TEST(FileFormatCTF, gamma_alpha_test4) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pG = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pG); @@ -2461,7 +2740,7 @@ OCIO_ADD_TEST(FileFormatCTF, gamma_alpha_test5) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pG = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pG); @@ -2517,7 +2796,8 @@ OCIO_ADD_TEST(FileFormatCTF, exponent_all_styles) OCIO::LocalCachedFileRcPtr cachedFile; const std::string fileName("clf/exponent_all_styles.clf"); OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(fileName)); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + OCIO_REQUIRE_ASSERT(cachedFile); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 12); { // Op 0 == basicFwd. @@ -2703,11 +2983,16 @@ OCIO_ADD_TEST(FileFormatCTF, cdl_clamp_fwd) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); - OCIO_CHECK_EQUAL(cachedFile->m_transform->getInputDescriptor(), + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); + + OCIO_REQUIRE_ASSERT(cachedFile->m_transform->getInputDescriptors().size() == 1); + OCIO_CHECK_EQUAL(cachedFile->m_transform->getInputDescriptors()[0], "inputDesc"); - OCIO_CHECK_EQUAL(cachedFile->m_transform->getOutputDescriptor(), + + OCIO_REQUIRE_ASSERT(cachedFile->m_transform->getOutputDescriptors().size() == 1); + OCIO_CHECK_EQUAL(cachedFile->m_transform->getOutputDescriptors()[0], "outputDesc"); + OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pCDL = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pCDL); @@ -2742,7 +3027,7 @@ OCIO_ADD_TEST(FileFormatCTF, cdl_missing_style) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pCDL = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pCDL); @@ -2766,7 +3051,7 @@ OCIO_ADD_TEST(FileFormatCTF, cdl_all_styles) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 4); auto pCDL = std::dynamic_pointer_cast(opList[0]); @@ -2842,7 +3127,7 @@ OCIO_ADD_TEST(FileFormatCTF, cdl_missing_sop) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pCDL = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pCDL); @@ -2863,7 +3148,7 @@ OCIO_ADD_TEST(FileFormatCTF, cdl_missing_sat) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto pCDL = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(pCDL); @@ -2886,7 +3171,7 @@ OCIO_ADD_TEST(FileFormatCTF, cdl_various_in_ctf) OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT((bool)cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 8); auto pCDL = std::dynamic_pointer_cast(opList[0]); @@ -2927,7 +3212,8 @@ OCIO_ADD_TEST(FileFormatCTF, log_all_styles) OCIO::LocalCachedFileRcPtr cachedFile; const std::string fileName("clf/log_all_styles.clf"); OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(fileName)); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + OCIO_REQUIRE_ASSERT(cachedFile); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 11); double error = 1e-9; @@ -3098,7 +3384,8 @@ OCIO_ADD_TEST(FileFormatCTF, log_logtolin) OCIO::LocalCachedFileRcPtr cachedFile; std::string fileName("log_logtolin.ctf"); OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(fileName)); - const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOps(); + OCIO_REQUIRE_ASSERT(cachedFile); + const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 1); auto op = fileOps[0]; auto log = std::dynamic_pointer_cast(op); @@ -3125,7 +3412,8 @@ OCIO_ADD_TEST(FileFormatCTF, log_logtolinv2) OCIO::LocalCachedFileRcPtr cachedFile; std::string fileName("log_logtolinv2.ctf"); OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(fileName)); - const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOps(); + OCIO_REQUIRE_ASSERT(cachedFile); + const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 1); auto op = fileOps[0]; auto log = std::dynamic_pointer_cast(op); @@ -3151,7 +3439,8 @@ OCIO_ADD_TEST(FileFormatCTF, log_lintolog_3chan) OCIO::LocalCachedFileRcPtr cachedFile; std::string fileName("log_lintolog_3chan.ctf"); OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(fileName)); - const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOps(); + OCIO_REQUIRE_ASSERT(cachedFile); + const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 1); auto op = fileOps[0]; auto log = std::dynamic_pointer_cast(op); @@ -3194,7 +3483,7 @@ OCIO_ADD_TEST(FileFormatCTF, log_bad_style) OCIO_ADD_TEST(FileFormatCTF, log_bad_version) { - std::string fileName("clf/illegal/log_bad_version.clf"); + std::string fileName("clf/pre-smpte_only/illegal/log_bad_version.clf"); OCIO_CHECK_THROW_WHAT(LoadCLFFile(fileName), OCIO::Exception, "CLF file version '2' does not support operator 'Log'"); } @@ -3227,7 +3516,7 @@ OCIO_ADD_TEST(FileFormatCTF, log_ocio_params_channels) strebuf << "\n"; OCIO::LocalCachedFileRcPtr cachedFile = ParseString(strebuf.str()); - OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOps(); + OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 1); auto op = fileOps[0]; @@ -3280,7 +3569,8 @@ OCIO_ADD_TEST(FileFormatCTF, log_default_params) OCIO::LocalCachedFileRcPtr cachedFile; OCIO_CHECK_NO_THROW(cachedFile = ParseString(strebuf.str())); - OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOps(); + OCIO_REQUIRE_ASSERT(cachedFile); + OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 2); auto op = fileOps[0]; @@ -3314,7 +3604,8 @@ OCIO_ADD_TEST(FileFormatCTF, multiple_ops) OCIO::LocalCachedFileRcPtr cachedFile; const std::string ctfFile("clf/multiple_ops.clf"); OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + OCIO_REQUIRE_ASSERT(cachedFile); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 9); { // Op 0 == CDL. @@ -3427,7 +3718,8 @@ OCIO_ADD_TEST(FileFormatCTF, reference_load_alias) OCIO::LocalCachedFileRcPtr cachedFile; std::string fileName("reference_alias.ctf"); OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(fileName)); - const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOps(); + OCIO_REQUIRE_ASSERT(cachedFile); + const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 1); OCIO::ConstOpDataRcPtr op = fileOps[0]; @@ -3446,7 +3738,8 @@ OCIO_ADD_TEST(FileFormatCTF, reference_load_path) OCIO::LocalCachedFileRcPtr cachedFile; std::string fileName("reference_path_missing_file.ctf"); OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(fileName)); - const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOps(); + OCIO_REQUIRE_ASSERT(cachedFile); + const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 1); OCIO::ConstOpDataRcPtr op = fileOps[0]; @@ -3464,7 +3757,8 @@ OCIO_ADD_TEST(FileFormatCTF, reference_load_multiple) // File contains 2 references, 1 range and 1 reference. std::string fileName("references_some_inverted.ctf"); OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(fileName)); - const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOps(); + OCIO_REQUIRE_ASSERT(cachedFile); + const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 4); OCIO::ConstOpDataRcPtr op0 = fileOps[0]; @@ -3500,7 +3794,8 @@ OCIO_ADD_TEST(FileFormatCTF, reference_load_path_utf8) OCIO::LocalCachedFileRcPtr cachedFile; std::string fileName("reference_utf8.ctf"); OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(fileName)); - const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOps(); + OCIO_REQUIRE_ASSERT(cachedFile); + const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 1); OCIO::ConstOpDataRcPtr op = fileOps[0]; OCIO::ConstReferenceOpDataRcPtr ref = std::dynamic_pointer_cast(op); @@ -3524,7 +3819,7 @@ OCIO_ADD_TEST(FileFormatCTF, exposure_contrast_video) const std::string ctfFile("exposure_contrast_video.ctf"); OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT(cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 2); @@ -3557,7 +3852,7 @@ OCIO_ADD_TEST(FileFormatCTF, exposure_contrast_log) const std::string ctfFile("exposure_contrast_log.ctf"); OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT(cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 2); @@ -3594,7 +3889,7 @@ OCIO_ADD_TEST(FileFormatCTF, exposure_contrast_linear) const std::string ctfFile("exposure_contrast_linear.ctf"); OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT(cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 2); @@ -3631,7 +3926,7 @@ OCIO_ADD_TEST(FileFormatCTF, exposure_contrast_no_gamma) const std::string ctfFile("exposure_contrast_no_gamma.ctf"); OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(ctfFile)); OCIO_REQUIRE_ASSERT(cachedFile); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); @@ -3703,7 +3998,7 @@ OCIO_ADD_TEST(FileFormatCTF, attribute_float_parse_leading_spaces) OCIO::CachedFileRcPtr file; OCIO_CHECK_NO_THROW(file = tester.read(ctf, emptyString, OCIO::INTERP_DEFAULT)); OCIO::LocalCachedFileRcPtr cachedFile = OCIO_DYNAMIC_POINTER_CAST(file); - const auto & fileOps = cachedFile->m_transform->getOps(); + const auto & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 1); const auto op = fileOps[0]; @@ -3718,7 +4013,8 @@ OCIO_ADD_TEST(FileFormatCTF, load_deprecated_ops_file) OCIO::LocalCachedFileRcPtr cachedFile; std::string fileName("deprecated_ops.ctf"); OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(fileName)); - const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOps(); + OCIO_REQUIRE_ASSERT(cachedFile); + const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 3); @@ -3761,7 +4057,8 @@ OCIO_ADD_TEST(FileFormatCTF, load_fixed_function_file) OCIO::LocalCachedFileRcPtr cachedFile; std::string fileName("fixed_function.ctf"); OCIO_CHECK_NO_THROW(cachedFile = LoadCLFFile(fileName)); - const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOps(); + OCIO_REQUIRE_ASSERT(cachedFile); + const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 2); @@ -3829,7 +4126,8 @@ void ValidateFixedFunctionStyle(OCIO::FixedFunctionOpData::Style style, // Test parsing. OCIO::LocalCachedFileRcPtr cachedFile; OCIO_CHECK_NO_THROW_FROM(cachedFile = ParseString(strebuf.str()), lineNo); - OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOps(); + OCIO_REQUIRE_ASSERT(cachedFile); + OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL_FROM(fileOps.size(), 1, lineNo); auto opData = fileOps[0]; @@ -4050,7 +4348,7 @@ OCIO_ADD_TEST(FileFormatCTF, load_grading_primary_log) OCIO_CHECK_NO_THROW(file = tester.read(ctfLog, emptyString, OCIO::INTERP_DEFAULT)); OCIO::LocalCachedFileRcPtr cachedFile = OCIO_DYNAMIC_POINTER_CAST(file); OCIO_REQUIRE_ASSERT(cachedFile); - const auto & fileOps = cachedFile->m_transform->getOps(); + const auto & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 4); const auto op0 = fileOps[0]; @@ -4154,7 +4452,7 @@ OCIO_ADD_TEST(FileFormatCTF, load_grading_primary_lin) OCIO_CHECK_NO_THROW(file = tester.read(ctfLin, emptyString, OCIO::INTERP_DEFAULT)); OCIO::LocalCachedFileRcPtr cachedFile = OCIO_DYNAMIC_POINTER_CAST(file); OCIO_REQUIRE_ASSERT(cachedFile); - const auto & fileOps = cachedFile->m_transform->getOps(); + const auto & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 4); const auto op0 = fileOps[0]; @@ -4255,7 +4553,7 @@ OCIO_ADD_TEST(FileFormatCTF, load_grading_primary_video) OCIO_CHECK_NO_THROW(file = tester.read(ctfVideo, emptyString, OCIO::INTERP_DEFAULT)); OCIO::LocalCachedFileRcPtr cachedFile = OCIO_DYNAMIC_POINTER_CAST(file); OCIO_REQUIRE_ASSERT(cachedFile); - const auto & fileOps = cachedFile->m_transform->getOps(); + const auto & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 4); const auto op0 = fileOps[0]; @@ -4454,7 +4752,7 @@ OCIO_ADD_TEST(FileFormatCTF, load_grading_rgbcurves_lin) OCIO_CHECK_NO_THROW(file = tester.read(ctfLin, emptyString, OCIO::INTERP_DEFAULT)); OCIO::LocalCachedFileRcPtr cachedFile = OCIO_DYNAMIC_POINTER_CAST(file); OCIO_REQUIRE_ASSERT(cachedFile); - const auto & fileOps = cachedFile->m_transform->getOps(); + const auto & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 3); const auto op0 = fileOps[0]; @@ -4542,7 +4840,7 @@ OCIO_ADD_TEST(FileFormatCTF, load_grading_rgbcurves_log) OCIO_CHECK_NO_THROW(file = tester.read(ctfLog, emptyString, OCIO::INTERP_DEFAULT)); OCIO::LocalCachedFileRcPtr cachedFile = OCIO_DYNAMIC_POINTER_CAST(file); OCIO_REQUIRE_ASSERT(cachedFile); - const auto & fileOps = cachedFile->m_transform->getOps(); + const auto & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 1); const auto op0 = fileOps[0]; @@ -4640,7 +4938,7 @@ OCIO_ADD_TEST(FileFormatCTF, load_grading_huecurves_log) OCIO_CHECK_NO_THROW(file = tester.read(ctfLog, emptyString, OCIO::INTERP_DEFAULT)); OCIO::LocalCachedFileRcPtr cachedFile = OCIO_DYNAMIC_POINTER_CAST(file); OCIO_REQUIRE_ASSERT(cachedFile); - const auto & fileOps = cachedFile->m_transform->getOps(); + const auto & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 1); const auto op0 = fileOps[0]; @@ -4848,7 +5146,7 @@ OCIO_ADD_TEST(CTFTransform, load_grading_tone) OCIO_CHECK_NO_THROW(file = tester.read(ctfLog, emptyString, OCIO::INTERP_DEFAULT)); OCIO::LocalCachedFileRcPtr cachedFile = OCIO_DYNAMIC_POINTER_CAST(file); OCIO_REQUIRE_ASSERT(cachedFile); - const auto & fileOps = cachedFile->m_transform->getOps(); + const auto & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 6); @@ -4937,7 +5235,7 @@ OCIO_ADD_TEST(CTFTransform, load_grading_tone_errors) OCIO_ADD_TEST(CTFTransform, load_edit_save_matrix) { - const std::string ctfFile("clf/matrix_example.clf"); + const std::string ctfFile("clf/pre-smpte_only/matrix_example.clf"); OCIO::ConstProcessorRcPtr processor; OCIO_CHECK_NO_THROW(processor = OCIO::GetFileTransformProcessor(ctfFile)); OCIO_REQUIRE_ASSERT(processor); @@ -4979,7 +5277,7 @@ OCIO_ADD_TEST(CTFTransform, load_edit_save_matrix) // Output matrix array as '3 4 3'. const std::string expectedCTF{ R"( - + Basic matrix example using CLF v2 dim syntax RGB XYZ @@ -5013,7 +5311,7 @@ OCIO_ADD_TEST(CTFTransform, load_edit_save_matrix) OCIO::CachedFileRcPtr file = tester.read(inputTransform, emptyString, OCIO::INTERP_DEFAULT); OCIO::LocalCachedFileRcPtr cachedFile = OCIO::DynamicPtrCast(file); - const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 1); OCIO::ConstOpDataRcPtr op = fileOps[0]; OCIO::ConstMatrixOpDataRcPtr mat = OCIO::DynamicPtrCast(op); @@ -5063,7 +5361,7 @@ OCIO_ADD_TEST(CTFTransform, save_matrix) matTransform->setDirection(OCIO::TRANSFORM_DIR_FORWARD); OCIO::LocalCachedFileRcPtr cachedFile = WriteRead(matTransform); - const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 1); OCIO::ConstOpDataRcPtr op = fileOps[0]; OCIO::ConstMatrixOpDataRcPtr mat = OCIO::DynamicPtrCast(op); @@ -5097,7 +5395,7 @@ OCIO_ADD_TEST(CTFTransform, save_cdl) cdlTransform->getFormatMetadata().addChildElement(OCIO::METADATA_SAT_DESCRIPTION, "Sat description 2"); OCIO::LocalCachedFileRcPtr cachedFile = WriteRead(cdlTransform); - const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 1); OCIO::ConstOpDataRcPtr op = fileOps[0]; OCIO::ConstCDLOpDataRcPtr cdl = OCIO::DynamicPtrCast(op); @@ -5145,7 +5443,7 @@ void TestSaveLog(double base, unsigned line) logT->setBase(base); OCIO::LocalCachedFileRcPtr cachedFile = WriteRead(logT); - const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL_FROM(fileOps.size(), 1, line); OCIO::ConstOpDataRcPtr op = fileOps[0]; OCIO::ConstLogOpDataRcPtr log = OCIO::DynamicPtrCast(op); @@ -5170,7 +5468,7 @@ OCIO_ADD_TEST(CTFTransform, save_log_affine) logT->setLinSideSlopeValue(vals); OCIO::LocalCachedFileRcPtr cachedFile = WriteRead(logT); - const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 1); OCIO::ConstOpDataRcPtr op = fileOps[0]; OCIO::ConstLogOpDataRcPtr log = OCIO::DynamicPtrCast(op); @@ -5193,7 +5491,7 @@ OCIO_ADD_TEST(CTFTransform, save_log_camera) logT->setLinearSlopeValue(vals_ls); OCIO::LocalCachedFileRcPtr cachedFile = WriteRead(logT); - const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 1); OCIO::ConstOpDataRcPtr op = fileOps[0]; OCIO::ConstLogOpDataRcPtr log = OCIO::DynamicPtrCast(op); @@ -5273,7 +5571,7 @@ OCIO_ADD_TEST(CTFTransform, save_lut1d_halfdomain) } OCIO::LocalCachedFileRcPtr cachedFile = WriteRead(lutT); - const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 1); OCIO::ConstOpDataRcPtr op = fileOps[0]; OCIO::ConstLut1DOpDataRcPtr lut = OCIO::DynamicPtrCast(op); @@ -5322,7 +5620,7 @@ OCIO_ADD_TEST(CTFTransform, save_lut1d_f16_raw) lutT->setValue(1, values[3], values[4], values[5]); OCIO::LocalCachedFileRcPtr cachedFile = WriteRead(lutT); - const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 1); OCIO::ConstOpDataRcPtr op = fileOps[0]; OCIO::ConstLut1DOpDataRcPtr lut = OCIO::DynamicPtrCast(op); @@ -5364,7 +5662,7 @@ OCIO_ADD_TEST(CTFTransform, save_lut1d_f32) lutT->setValue(7, values[7], values[7], values[7]); OCIO::LocalCachedFileRcPtr cachedFile = WriteRead(lutT); - const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 1); OCIO::ConstOpDataRcPtr op = fileOps[0]; OCIO::ConstLut1DOpDataRcPtr lut = OCIO::DynamicPtrCast(op); @@ -5479,7 +5777,7 @@ OCIO_ADD_TEST(CTFTransform, save_range) rangeT->setMaxOutValue(1.5); OCIO::LocalCachedFileRcPtr cachedFile = WriteRead(rangeT); - const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 1); OCIO::ConstOpDataRcPtr op = fileOps[0]; OCIO::ConstRangeOpDataRcPtr range = OCIO::DynamicPtrCast(op); @@ -5509,7 +5807,7 @@ OCIO_ADD_TEST(CTFTransform, save_group) groupT->appendTransform(matT); OCIO::LocalCachedFileRcPtr cachedFile = WriteRead(groupT); - const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & fileOps = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(fileOps.size(), 2); OCIO::ConstOpDataRcPtr op = fileOps[0]; OCIO::ConstRangeOpDataRcPtr range = OCIO::DynamicPtrCast(op); @@ -5522,7 +5820,7 @@ OCIO_ADD_TEST(CTFTransform, save_group) OCIO_ADD_TEST(CTFTransform, load_save_matrix) { - const std::string ctfFile("clf/matrix_example.clf"); + const std::string ctfFile("clf/pre-smpte_only/matrix_example.clf"); OCIO::ConstProcessorRcPtr processor; OCIO_CHECK_NO_THROW(processor = OCIO::GetFileTransformProcessor(ctfFile)); OCIO_REQUIRE_ASSERT(processor); @@ -5533,7 +5831,7 @@ OCIO_ADD_TEST(CTFTransform, load_save_matrix) // Output matrix array as '3 3 3'. const std::string expected{ R"( - + Basic matrix example using CLF v2 dim syntax RGB XYZ @@ -5580,7 +5878,7 @@ OCIO_ADD_TEST(CTFTransform, save_matrix_444) OCIO_ADD_TEST(CTFTransform, load_edit_save_matrix_clf) { - const std::string ctfFile("clf/matrix_example.clf"); + const std::string ctfFile("clf/pre-smpte_only/matrix_example.clf"); OCIO::ConstProcessorRcPtr processor; OCIO_CHECK_NO_THROW(processor = OCIO::GetFileTransformProcessor(ctfFile)); OCIO_REQUIRE_ASSERT(processor); @@ -5595,12 +5893,14 @@ OCIO_ADD_TEST(CTFTransform, load_edit_save_matrix_clf) const double offset[] = { 0.1, 1.2, 2.3, 0.0 }; matTrans->setOffset(offset); - std::ostringstream outputTransform; - OCIO_CHECK_NO_THROW(WriteGroupCLF(group, outputTransform)); + // CLF Academy + { + std::ostringstream outputTransform; + OCIO_CHECK_NO_THROW(WriteGroupCLF(group, outputTransform)); - const std::string expectedCLF{ -R"( - + const std::string expectedCLF_Academy{ + R"( + Basic matrix example using CLF v2 dim syntax RGB XYZ @@ -5615,20 +5915,23 @@ R"( -)" }; +)"}; - OCIO_CHECK_EQUAL(expectedCLF.size(), outputTransform.str().size()); - OCIO_CHECK_EQUAL(expectedCLF, outputTransform.str()); + OCIO_CHECK_EQUAL(expectedCLF_Academy.size(), outputTransform.str().size()); + OCIO_CHECK_EQUAL(expectedCLF_Academy, outputTransform.str()); + } - const double offsetAlpha[] = { 0.1, 1.2, 2.3, 0.9 }; - matTrans->setOffset(offsetAlpha); + // CTF + { + const double offsetAlpha[] = { 0.1, 1.2, 2.3, 0.9 }; + matTrans->setOffset(offsetAlpha); - std::ostringstream outputTransformCTF; - OCIO_CHECK_NO_THROW(WriteGroupCTF(group, outputTransformCTF)); + std::ostringstream outputTransformCTF; + OCIO_CHECK_NO_THROW(WriteGroupCTF(group, outputTransformCTF)); - const std::string expectedCTF{ -R"( - + const std::string expectedCTF{ + R"( + Basic matrix example using CLF v2 dim syntax RGB XYZ @@ -5644,10 +5947,13 @@ R"( -)" }; +)"}; + + OCIO_CHECK_EQUAL(expectedCTF.size(), outputTransformCTF.str().size()); + OCIO_CHECK_EQUAL(expectedCTF, outputTransformCTF.str()); + } + - OCIO_CHECK_EQUAL(expectedCTF.size(), outputTransformCTF.str().size()); - OCIO_CHECK_EQUAL(expectedCTF, outputTransformCTF.str()); } OCIO_ADD_TEST(CTFTransform, matrix3x3_clf) @@ -5671,7 +5977,7 @@ OCIO_ADD_TEST(CTFTransform, matrix3x3_clf) // In/out bit-depth equal, matrix not scaled. const std::string expected{ R"( - + 0.333333333333333 3.33333333333333 33.3333333333333 @@ -5919,7 +6225,7 @@ OCIO_ADD_TEST(CTFTransform, cdl_clf) OCIO_CHECK_NO_THROW(WriteGroupCLF(group, outputTransform)); const std::string expected{ R"( - + ProcessList description ======================= @@ -5965,7 +6271,7 @@ OCIO_ADD_TEST(CTFTransform, cdl_clf) OCIO::CachedFileRcPtr file = tester.read(ctfStream, emptyString, OCIO::INTERP_DEFAULT); auto cachedFile = OCIO::DynamicPtrCast(file); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto cdlData = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(cdlData); @@ -6084,7 +6390,7 @@ OCIO_ADD_TEST(CTFTransform, range1_clf) const std::string expected{ "\n" - "\n" + "\n" " Input descriptor\n" " Output descriptor\n" " \n" @@ -6119,7 +6425,7 @@ OCIO_ADD_TEST(CTFTransform, range2_clf) const std::string expected{ "\n" - "\n" + "\n" " \n" " 102.3 \n" " 25.5 \n" @@ -6150,7 +6456,7 @@ OCIO_ADD_TEST(CTFTransform, range3_clf) OCIO_CHECK_NO_THROW(WriteGroupCLF(group, outputTransform)); const std::string expected{ R"( - + 0 0 @@ -6185,7 +6491,7 @@ OCIO_ADD_TEST(CTFTransform, range4_clf) // Range is saved in the forward direction. const std::string expected{ R"( - + 2047.5 4095 @@ -6259,7 +6565,7 @@ OCIO_ADD_TEST(CTFTransform, gamma1_ctf) OCIO_CHECK_NO_THROW(WriteGroupCLF(group, outputTransformCLF)); const std::string expectedCLF{ R"( - + @@ -6302,7 +6608,7 @@ OCIO_ADD_TEST(CTFTransform, gamma1_mirror_ctf) OCIO_CHECK_NO_THROW(WriteGroupCLF(group, outputTransformCLF)); const std::string expectedCLF{ R"( - + @@ -6345,7 +6651,7 @@ OCIO_ADD_TEST(CTFTransform, gamma1_pass_thru_ctf) OCIO_CHECK_NO_THROW(WriteGroupCLF(group, outputTransformCLF)); const std::string expectedCLF{ R"( - + @@ -6430,7 +6736,7 @@ OCIO_ADD_TEST(CTFTransform, gamma3_ctf) OCIO_CHECK_NO_THROW(WriteGroupCLF(group, outputTransformCLF)); const std::string expectedCLF{ R"( - + @@ -7680,7 +7986,7 @@ OCIO_ADD_TEST(CTFTransform, lut1d_clf) OCIO_CHECK_NO_THROW(WriteGroupCLF(group, outputTransform)); const std::string expected{ R"( - + 0 @@ -8455,7 +8761,7 @@ OCIO_ADD_TEST(FileFormatCTF, bake_1d) const std::string expectedCLF{ R"( - + 0 @@ -8531,7 +8837,7 @@ OCIO_ADD_TEST(FileFormatCTF, bake_1d_shaper) OCIO::CachedFileRcPtr file = tester.read(outputCTF, emptyString, OCIO::INTERP_DEFAULT); auto cachedFile = OCIO::DynamicPtrCast(file); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 2); auto range = OCIO_DYNAMIC_POINTER_CAST(opList[0]); @@ -8573,7 +8879,7 @@ OCIO_ADD_TEST(FileFormatCTF, bake_1d_shaper) OCIO::CachedFileRcPtr file = tester.read(outputCTF, emptyString, OCIO::INTERP_DEFAULT); auto cachedFile = OCIO::DynamicPtrCast(file); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 1); auto lut = OCIO_DYNAMIC_POINTER_CAST(opList[0]); @@ -8625,11 +8931,12 @@ OCIO_ADD_TEST(FileFormatCTF, bake_3d) data.addChildElement(OCIO::METADATA_DESCRIPTION, "OpenColorIO Test Line 2"); data.addChildElement("Anything", "Not Saved"); - data.addChildElement(OCIO::METADATA_INPUT_DESCRIPTOR, "Input descriptor"); - data.addChildElement(OCIO::METADATA_INPUT_DESCRIPTOR, "Only first is saved"); - data.addChildElement(OCIO::METADATA_OUTPUT_DESCRIPTOR, "Output descriptor"); + data.addChildElement(OCIO::METADATA_INPUT_DESCRIPTOR, "Input descriptor 1"); + data.addChildElement(OCIO::METADATA_INPUT_DESCRIPTOR, "Input descriptor 2"); + data.addChildElement(OCIO::METADATA_OUTPUT_DESCRIPTOR, "Output descriptor 1"); + data.addChildElement(OCIO::METADATA_OUTPUT_DESCRIPTOR, "Output descriptor 2"); data.addChildElement(OCIO::METADATA_INFO, ""); - auto & info = data.getChildElement(6); + auto & info = data.getChildElement(7); info.addAttribute("attrib1", "val1"); info.addAttribute("attrib2", "val2"); info.addChildElement("anything", "is saved"); @@ -8644,11 +8951,13 @@ OCIO_ADD_TEST(FileFormatCTF, bake_3d) const std::string expectedCLF{ R"( - + OpenColorIO Test Line 1 OpenColorIO Test Line 2 - Input descriptor - Output descriptor + Input descriptor 1 + Input descriptor 2 + Output descriptor 1 + Output descriptor 2 is saved is also saved @@ -8726,7 +9035,7 @@ OCIO_ADD_TEST(FileFormatCTF, bake_1d_3d) OCIO::CachedFileRcPtr file = tester.read(output, emptyString, OCIO::INTERP_DEFAULT); auto cachedFile = OCIO::DynamicPtrCast(file); - const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOps(); + const OCIO::ConstOpDataVec & opList = cachedFile->m_transform->getOpDataVec(); OCIO_REQUIRE_EQUAL(opList.size(), 2); auto shaperLut = std::dynamic_pointer_cast(opList[0]); OCIO_REQUIRE_ASSERT(shaperLut); @@ -8776,7 +9085,7 @@ OCIO_ADD_TEST(FileFormatCTF, bake_1d_3d) const std::string expectedCLF{ R"( - + -0.125 1.125 diff --git a/tests/cpu/fileformats/ctf/CTFTransform_tests.cpp b/tests/cpu/fileformats/ctf/CTFTransform_tests.cpp index c5ec9c2e9..e9d949ed8 100644 --- a/tests/cpu/fileformats/ctf/CTFTransform_tests.cpp +++ b/tests/cpu/fileformats/ctf/CTFTransform_tests.cpp @@ -47,58 +47,114 @@ OCIO_ADD_TEST(CTFVersion, read_version) OCIO::CTFVersion versionRead; { - OCIO_CHECK_NO_THROW(OCIO::CTFVersion::ReadVersion("1.2.3", versionRead)); + OCIO_CHECK_NO_THROW(versionRead = OCIO::CTFVersion("1.2.3")); const OCIO::CTFVersion version(1, 2, 3); OCIO_CHECK_EQUAL(version, versionRead); } { - OCIO_CHECK_NO_THROW(OCIO::CTFVersion::ReadVersion("1.2", versionRead)); + OCIO_CHECK_NO_THROW(versionRead = OCIO::CTFVersion("1.2")); const OCIO::CTFVersion version(1, 2, 0); OCIO_CHECK_EQUAL(version, versionRead); } { - OCIO_CHECK_NO_THROW(OCIO::CTFVersion::ReadVersion("1", versionRead)); + OCIO_CHECK_NO_THROW(versionRead = OCIO::CTFVersion("1")); const OCIO::CTFVersion version(1, 0, 0); OCIO_CHECK_EQUAL(version, versionRead); } { - OCIO_CHECK_NO_THROW(OCIO::CTFVersion::ReadVersion("1.10", versionRead)); + OCIO_CHECK_NO_THROW(versionRead = OCIO::CTFVersion("1.10")); const OCIO::CTFVersion version(1, 10, 0); OCIO_CHECK_EQUAL(version, versionRead); } { - OCIO_CHECK_NO_THROW(OCIO::CTFVersion::ReadVersion("1.1.0", versionRead)); + OCIO_CHECK_NO_THROW(versionRead = OCIO::CTFVersion("1.1.0")); const OCIO::CTFVersion version(1, 1, 0); OCIO_CHECK_EQUAL(version, versionRead); } { - OCIO_CHECK_NO_THROW(OCIO::CTFVersion::ReadVersion("1.01", versionRead)); + OCIO_CHECK_NO_THROW(versionRead = OCIO::CTFVersion("1.01")); const OCIO::CTFVersion version(1, 1, 0); OCIO_CHECK_EQUAL(version, versionRead); } - OCIO_CHECK_THROW_WHAT(OCIO::CTFVersion::ReadVersion("", versionRead), + { + // Numeric format is always accepted. + OCIO_CHECK_NO_THROW(versionRead = OCIO::CTFVersion("2.0.0", OCIO::CTFVersion::VERSION_SMPTE_CLF)); + const OCIO::CTFVersion version(2, 0, 0); + OCIO_CHECK_EQUAL(version, versionRead); + } + + { + // Short SMPTE should be accepted only when the format is allowed. + OCIO_CHECK_THROW_WHAT(versionRead = OCIO::CTFVersion( + "ST2136-1:2024"), + OCIO::Exception, + "is not a valid version. Expecting MAJOR[.MINOR[.REVISION]]"); + } + + { + // Long SMPTE should be accepted only when the format is allowed. + OCIO_CHECK_THROW_WHAT(versionRead = OCIO::CTFVersion( + "http://www.smpte-ra.org/ns/2136-1/2024"), + OCIO::Exception, + "is not a valid version. Expecting MAJOR[.MINOR[.REVISION]]"); + } + + { + // SMPTE version is regarded as v3.0.0. + OCIO_CHECK_NO_THROW(versionRead = OCIO::CTFVersion( + "ST2136-1:2024", OCIO::CTFVersion::VERSION_SMPTE_CLF)); + const OCIO::CTFVersion version(3, 0, 0); + OCIO_CHECK_EQUAL(version, versionRead); + } + + { + // Short SMPTE string is not allowed when only the long format is accepted. + OCIO_CHECK_THROW_WHAT(versionRead = OCIO::CTFVersion( + "ST2136-1:2024", OCIO::CTFVersion::VERSION_SMPTE_XMLNS), + OCIO::Exception, + "is not a valid version. Expecting 'http://www.smpte-ra.org/ns/2136-1/2024' or MAJOR[.MINOR[.REVISION]]"); + } + + { + // Long SMPTE should be accepted only when the format is allowed and + // should be regarded as v3.0.0. + OCIO_CHECK_NO_THROW(versionRead = OCIO::CTFVersion( + "http://www.smpte-ra.org/ns/2136-1/2024", OCIO::CTFVersion::VERSION_SMPTE_XMLNS)); + const OCIO::CTFVersion version(3, 0, 0); + OCIO_CHECK_EQUAL(version, versionRead); + } + + { + // Long SMPTE string is not allowed when only the short format is accepted. + OCIO_CHECK_THROW_WHAT(versionRead = OCIO::CTFVersion( + "http://www.smpte-ra.org/ns/2136-1/2024", OCIO::CTFVersion::VERSION_SMPTE_CLF), + OCIO::Exception, + "is not a valid version. Expecting 'ST2136-1:2024' or MAJOR[.MINOR[.REVISION]]"); + } + + OCIO_CHECK_THROW_WHAT(versionRead = OCIO::CTFVersion(""), OCIO::Exception, "is not a valid version"); - OCIO_CHECK_THROW_WHAT(OCIO::CTFVersion::ReadVersion("1 2", versionRead), + OCIO_CHECK_THROW_WHAT(versionRead = OCIO::CTFVersion("1 2"), OCIO::Exception, "is not a valid version"); - OCIO_CHECK_THROW_WHAT(OCIO::CTFVersion::ReadVersion("1-2", versionRead), + OCIO_CHECK_THROW_WHAT(versionRead = OCIO::CTFVersion("1-2"), OCIO::Exception, "is not a valid version"); - OCIO_CHECK_THROW_WHAT(OCIO::CTFVersion::ReadVersion("a", versionRead), + OCIO_CHECK_THROW_WHAT(versionRead = OCIO::CTFVersion("a"), OCIO::Exception, "is not a valid version"); - OCIO_CHECK_THROW_WHAT(OCIO::CTFVersion::ReadVersion("1.", versionRead), + OCIO_CHECK_THROW_WHAT(versionRead = OCIO::CTFVersion("1."), OCIO::Exception, "is not a valid version"); - OCIO_CHECK_THROW_WHAT(OCIO::CTFVersion::ReadVersion(".2", versionRead), + OCIO_CHECK_THROW_WHAT(versionRead = OCIO::CTFVersion(".2"), OCIO::Exception, "is not a valid version"); - OCIO_CHECK_THROW_WHAT(OCIO::CTFVersion::ReadVersion("1.0 2", versionRead), + OCIO_CHECK_THROW_WHAT(versionRead = OCIO::CTFVersion("1.0 2"), OCIO::Exception, "is not a valid version"); - OCIO_CHECK_THROW_WHAT(OCIO::CTFVersion::ReadVersion("-1", versionRead), + OCIO_CHECK_THROW_WHAT(versionRead = OCIO::CTFVersion("-1"), OCIO::Exception, "is not a valid version"); } @@ -141,6 +197,23 @@ OCIO_ADD_TEST(CTFVersion, version_write) ostream << version; OCIO_CHECK_EQUAL(ostream.str(), "0"); } + { + const OCIO::CTFVersion version( + "ST2136-1:2024", + OCIO::CTFVersion::VERSION_SMPTE_CLF); + std::ostringstream ostream; + ostream << version; + OCIO_CHECK_EQUAL(ostream.str(), "ST2136-1:2024"); + } + { + const OCIO::CTFVersion version( + "http://www.smpte-ra.org/ns/2136-1/2024", + OCIO::CTFVersion::VERSION_SMPTE_XMLNS); + std::ostringstream ostream; + ostream << version; + OCIO_CHECK_EQUAL(ostream.str(), "http://www.smpte-ra.org/ns/2136-1/2024"); + } + } OCIO_ADD_TEST(CTFReaderTransform, accessors) @@ -161,28 +234,34 @@ OCIO_ADD_TEST(CTFReaderTransform, accessors) OCIO_CHECK_EQUAL(ct.getName(), ""); OCIO_CHECK_EQUAL(t.getInverseOfId(), ""); OCIO_CHECK_EQUAL(ct.getInverseOfId(), ""); - OCIO_CHECK_EQUAL(t.getInputDescriptor(), ""); - OCIO_CHECK_EQUAL(ct.getInputDescriptor(), ""); - OCIO_CHECK_EQUAL(t.getOutputDescriptor(), ""); - OCIO_CHECK_EQUAL(ct.getOutputDescriptor(), ""); - OCIO_CHECK_ASSERT(t.getOps().empty()); - OCIO_CHECK_ASSERT(ct.getOps().empty()); + OCIO_CHECK_EQUAL(ct.getIDElement(), ""); + + OCIO_CHECK_ASSERT(t.getOpDataVec().empty()); + OCIO_CHECK_ASSERT(ct.getOpDataVec().empty()); OCIO_CHECK_ASSERT(t.getDescriptions().empty()); OCIO_CHECK_ASSERT(ct.getDescriptions().empty()); + OCIO_CHECK_ASSERT(t.getInputDescriptors().empty()); + OCIO_CHECK_ASSERT(ct.getInputDescriptors().empty()); + OCIO_CHECK_ASSERT(t.getOutputDescriptors().empty()); + OCIO_CHECK_ASSERT(ct.getOutputDescriptors().empty()); } t.setName("Name"); t.setID("123"); t.setInverseOfId("654"); - t.setInputDescriptor("input"); - t.setOutputDescriptor("output"); + + t.setIDElement("urn:uuid:123e4567-e89b-12d3-a456-426655440000"); auto matrixOp = std::make_shared(); - t.getOps().push_back(matrixOp); + t.getOpDataVec().push_back(matrixOp); t.getDescriptions().push_back("One"); t.getDescriptions().push_back("Two"); + t.getInputDescriptors().push_back("input 1"); + t.getInputDescriptors().push_back("input 2"); + t.getOutputDescriptors().push_back("output 1"); + t.getOutputDescriptors().push_back("output 2"); { const OCIO::CTFReaderTransform & ct = t; @@ -193,19 +272,30 @@ OCIO_ADD_TEST(CTFReaderTransform, accessors) OCIO_CHECK_EQUAL(ct.getName(), "Name"); OCIO_CHECK_EQUAL(t.getInverseOfId(), "654"); OCIO_CHECK_EQUAL(ct.getInverseOfId(), "654"); - OCIO_CHECK_EQUAL(t.getInputDescriptor(), "input"); - OCIO_CHECK_EQUAL(ct.getInputDescriptor(), "input"); - OCIO_CHECK_EQUAL(t.getOutputDescriptor(), "output"); - OCIO_CHECK_EQUAL(ct.getOutputDescriptor(), "output"); - OCIO_CHECK_EQUAL(t.getOps().size(), 1); - OCIO_CHECK_EQUAL(ct.getOps().size(), 1); + OCIO_CHECK_EQUAL(t.getIDElement(), "urn:uuid:123e4567-e89b-12d3-a456-426655440000"); + OCIO_CHECK_EQUAL(ct.getIDElement(), "urn:uuid:123e4567-e89b-12d3-a456-426655440000"); - OCIO_CHECK_EQUAL(t.getDescriptions().size(), 2); - OCIO_CHECK_EQUAL(ct.getDescriptions().size(), 2); + OCIO_CHECK_EQUAL(t.getOpDataVec().size(), 1); + OCIO_CHECK_EQUAL(ct.getOpDataVec().size(), 1); + + // TODO: add language attribute set/get tests when implemented. + + OCIO_REQUIRE_EQUAL(t.getDescriptions().size(), 2); + OCIO_REQUIRE_EQUAL(ct.getDescriptions().size(), 2); OCIO_CHECK_EQUAL(t.getDescriptions()[0], "One"); OCIO_CHECK_EQUAL(ct.getDescriptions()[0], "One"); OCIO_CHECK_EQUAL(t.getDescriptions()[1], "Two"); OCIO_CHECK_EQUAL(ct.getDescriptions()[1], "Two"); + + OCIO_REQUIRE_EQUAL(t.getInputDescriptors().size(), 2); + OCIO_REQUIRE_EQUAL(ct.getInputDescriptors().size(), 2); + OCIO_CHECK_EQUAL(t.getInputDescriptors()[0], "input 1"); + OCIO_CHECK_EQUAL(ct.getInputDescriptors()[1], "input 2"); + + OCIO_REQUIRE_EQUAL(t.getOutputDescriptors().size(), 2); + OCIO_REQUIRE_EQUAL(ct.getOutputDescriptors().size(), 2); + OCIO_CHECK_EQUAL(t.getOutputDescriptors()[0], "output 1"); + OCIO_CHECK_EQUAL(ct.getOutputDescriptors()[1], "output 2"); } } diff --git a/tests/cpu/transforms/FileTransform_tests.cpp b/tests/cpu/transforms/FileTransform_tests.cpp index 9b78b9c50..101358f29 100644 --- a/tests/cpu/transforms/FileTransform_tests.cpp +++ b/tests/cpu/transforms/FileTransform_tests.cpp @@ -80,7 +80,7 @@ OCIO_ADD_TEST(FileTransform, load_file_ok) OCIO_CHECK_ASSERT(!proc->isNoOp()); // Academy/ASC common LUT format. - const std::string clfMatTransform("clf/matrix_example.clf"); + const std::string clfMatTransform("clf/pre-smpte_only/matrix_example.clf"); OCIO_CHECK_NO_THROW(proc = OCIO::GetFileTransformProcessor(clfMatTransform)); OCIO_CHECK_ASSERT(!proc->isNoOp()); diff --git a/tests/data/files/clf/aces_to_video_with_look.clf b/tests/data/files/clf/aces_to_video_with_look.clf index 4478c03f7..e2c428403 100644 --- a/tests/data/files/clf/aces_to_video_with_look.clf +++ b/tests/data/files/clf/aces_to_video_with_look.clf @@ -1,5 +1,5 @@ - + Converts ACES to ACEScct, applies ASC CDL, then applies a 3D-LUT to convert back to ACES and apply the RRT+ODT.Academy.Rec709_100nits_dim ACES2065-1 HD (Rec 709) video diff --git a/tests/data/files/clf/bit_depth_identity.clf b/tests/data/files/clf/bit_depth_identity.clf new file mode 100644 index 000000000..0ee6d7bb7 --- /dev/null +++ b/tests/data/files/clf/bit_depth_identity.clf @@ -0,0 +1,25 @@ + + + urn:uuid:9d768121-0cf9-40a3-a8e3-7b49f79858a7 + Identity transform illustrating Array bit depth scaling + Can be loaded by either SMPTE or CLF v3 parsers + + + 257.0 0.0 0.0 + 0.0 257.0 0.0 + 0.0 0.0 257.0 + + + + + 0.0 10922.5 21845.0 32767.5 43690.0 54612.5 65535.0 + + + + + 1.0 0.0 0.0 + 0.0 1.0 0.0 + 0.0 0.0 1.0 + + + diff --git a/tests/data/files/clf/cdl_all_styles.clf b/tests/data/files/clf/cdl_all_styles.clf index 53e1f428b..75fb4d9d8 100644 --- a/tests/data/files/clf/cdl_all_styles.clf +++ b/tests/data/files/clf/cdl_all_styles.clf @@ -1,5 +1,5 @@ - + Test all CDL style values diff --git a/tests/data/files/clf/cdl_clamp_fwd.clf b/tests/data/files/clf/cdl_clamp_fwd.clf index 3a298fa13..633d84346 100644 --- a/tests/data/files/clf/cdl_clamp_fwd.clf +++ b/tests/data/files/clf/cdl_clamp_fwd.clf @@ -1,5 +1,5 @@ - + Example of ASC CDL operation inputDesc outputDesc diff --git a/tests/data/files/clf/cdl_missing_sat.clf b/tests/data/files/clf/cdl_missing_sat.clf index 40fa7f885..f44958c6b 100644 --- a/tests/data/files/clf/cdl_missing_sat.clf +++ b/tests/data/files/clf/cdl_missing_sat.clf @@ -1,5 +1,5 @@ - + Missing Sat defaults to 1 ASC CDL operation diff --git a/tests/data/files/clf/cdl_missing_sop.clf b/tests/data/files/clf/cdl_missing_sop.clf index 99ab40eb4..3a35b2f1c 100644 --- a/tests/data/files/clf/cdl_missing_sop.clf +++ b/tests/data/files/clf/cdl_missing_sop.clf @@ -1,5 +1,5 @@ - + Missing SOP defaults to identity params inputDesc outputDesc diff --git a/tests/data/files/clf/cdl_missing_style.clf b/tests/data/files/clf/cdl_missing_style.clf index 2c407b929..a4b76ef97 100644 --- a/tests/data/files/clf/cdl_missing_style.clf +++ b/tests/data/files/clf/cdl_missing_style.clf @@ -1,5 +1,5 @@ - + Missing style defaults to "Fwd" diff --git a/tests/data/files/clf/difficult_syntax.clf b/tests/data/files/clf/difficult_syntax.clf index 4a48375b9..9e16a0170 100644 --- a/tests/data/files/clf/difficult_syntax.clf +++ b/tests/data/files/clf/difficult_syntax.clf @@ -5,7 +5,11 @@ - + + + This is the ProcessList description. + yet 'another' "valid" desc + This is a "difficult" but 'legal' color transform file. @@ -20,7 +24,7 @@ third array dim value is ignored - + 3.24000 -1.53700 -0.49850 -0.96930 1.87600 +0.04156 0.05560 -0.20400 0.105730e+1 @@ -29,12 +33,19 @@ third array dim value is ignored - This is the ProcessList description. - + name' unknown="attr"> the n–dash description + + another valid +description +element + + + + & another <valid> desc + @@ -168,16 +179,8 @@ only tabs used to separate next few triplets 1.00000 0.95000 0.90000 - another valid -description -element - - - - & another <valid> desc - yet 'another' "valid" desc diff --git a/tests/data/files/clf/exponent_all_styles.clf b/tests/data/files/clf/exponent_all_styles.clf index 157df5e41..a7a3392ca 100644 --- a/tests/data/files/clf/exponent_all_styles.clf +++ b/tests/data/files/clf/exponent_all_styles.clf @@ -1,5 +1,5 @@ - + Test all Exponent style values If there is only one Params, use it for R, G, and B. diff --git a/tests/data/files/clf/illegal/array_bad_dimension.clf b/tests/data/files/clf/illegal/array_bad_dimension.clf index 918b1720c..03305c37c 100644 --- a/tests/data/files/clf/illegal/array_bad_dimension.clf +++ b/tests/data/files/clf/illegal/array_bad_dimension.clf @@ -1,5 +1,5 @@ - + Array dim attribute is not legal. diff --git a/tests/data/files/clf/illegal/array_bad_value.clf b/tests/data/files/clf/illegal/array_bad_value.clf index 28f607b9d..7cfab661d 100644 --- a/tests/data/files/clf/illegal/array_bad_value.clf +++ b/tests/data/files/clf/illegal/array_bad_value.clf @@ -1,5 +1,5 @@ - + Array has a non-numeric character diff --git a/tests/data/files/clf/illegal/array_missing_values.clf b/tests/data/files/clf/illegal/array_missing_values.clf index fafd66361..20d0e1b11 100644 --- a/tests/data/files/clf/illegal/array_missing_values.clf +++ b/tests/data/files/clf/illegal/array_missing_values.clf @@ -1,5 +1,5 @@ - + Matrix has too few values. diff --git a/tests/data/files/clf/illegal/array_too_many_values.clf b/tests/data/files/clf/illegal/array_too_many_values.clf index 49957befd..972c2d0ca 100644 --- a/tests/data/files/clf/illegal/array_too_many_values.clf +++ b/tests/data/files/clf/illegal/array_too_many_values.clf @@ -1,5 +1,5 @@ - + Matrix has too many values. diff --git a/tests/data/files/clf/illegal/cdl_bad_power.clf b/tests/data/files/clf/illegal/cdl_bad_power.clf index e39c8a611..fc4715c16 100644 --- a/tests/data/files/clf/illegal/cdl_bad_power.clf +++ b/tests/data/files/clf/illegal/cdl_bad_power.clf @@ -1,5 +1,5 @@ - + CDL power must be > 0 diff --git a/tests/data/files/clf/illegal/cdl_bad_sat.clf b/tests/data/files/clf/illegal/cdl_bad_sat.clf index bca68a681..06a5ea145 100644 --- a/tests/data/files/clf/illegal/cdl_bad_sat.clf +++ b/tests/data/files/clf/illegal/cdl_bad_sat.clf @@ -1,5 +1,5 @@ - + Sat may only have 1 value. diff --git a/tests/data/files/clf/illegal/cdl_bad_slope.clf b/tests/data/files/clf/illegal/cdl_bad_slope.clf index b267e9cf4..582299ec3 100644 --- a/tests/data/files/clf/illegal/cdl_bad_slope.clf +++ b/tests/data/files/clf/illegal/cdl_bad_slope.clf @@ -1,5 +1,5 @@ - + Slope must have 3 values. diff --git a/tests/data/files/clf/illegal/cdl_bad_style.clf b/tests/data/files/clf/illegal/cdl_bad_style.clf index 40dc6420b..6d62bc44e 100644 --- a/tests/data/files/clf/illegal/cdl_bad_style.clf +++ b/tests/data/files/clf/illegal/cdl_bad_style.clf @@ -1,5 +1,5 @@ - + CDL style is not a legal value diff --git a/tests/data/files/clf/illegal/cdl_missing_offset.clf b/tests/data/files/clf/illegal/cdl_missing_offset.clf index 0ee0dbf2f..3a4024cd6 100644 --- a/tests/data/files/clf/illegal/cdl_missing_offset.clf +++ b/tests/data/files/clf/illegal/cdl_missing_offset.clf @@ -1,5 +1,5 @@ - + The SOPNode is optional, but if present, must contain Slope, Offset, and Power diff --git a/tests/data/files/clf/illegal/cdl_missing_power.clf b/tests/data/files/clf/illegal/cdl_missing_power.clf index a759f9057..ca3f66cad 100644 --- a/tests/data/files/clf/illegal/cdl_missing_power.clf +++ b/tests/data/files/clf/illegal/cdl_missing_power.clf @@ -1,5 +1,5 @@ - + The SOPNode is optional, but if present, must contain Slope, Offset, and Power diff --git a/tests/data/files/clf/illegal/cdl_missing_slope.clf b/tests/data/files/clf/illegal/cdl_missing_slope.clf index efd3e9d27..ded6bf15a 100644 --- a/tests/data/files/clf/illegal/cdl_missing_slope.clf +++ b/tests/data/files/clf/illegal/cdl_missing_slope.clf @@ -1,5 +1,5 @@ - + The SOPNode is optional, but if present, must contain Slope, Offset, and Power diff --git a/tests/data/files/clf/illegal/exponent_bad_param.clf b/tests/data/files/clf/illegal/exponent_bad_param.clf index 5e3094f70..8d48ba268 100644 --- a/tests/data/files/clf/illegal/exponent_bad_param.clf +++ b/tests/data/files/clf/illegal/exponent_bad_param.clf @@ -1,5 +1,5 @@ - + The basic styles may not use the offset param diff --git a/tests/data/files/clf/illegal/exponent_bad_value.clf b/tests/data/files/clf/illegal/exponent_bad_value.clf index 2a358d531..2d4e8ec29 100644 --- a/tests/data/files/clf/illegal/exponent_bad_value.clf +++ b/tests/data/files/clf/illegal/exponent_bad_value.clf @@ -1,5 +1,5 @@ - + The moncurve style requires an exponent >= 1. diff --git a/tests/data/files/clf/illegal/indexMap_test2.clf b/tests/data/files/clf/illegal/indexMap_test2.clf index 498ac6454..d0b2a10b0 100644 --- a/tests/data/files/clf/illegal/indexMap_test2.clf +++ b/tests/data/files/clf/illegal/indexMap_test2.clf @@ -1,5 +1,5 @@ - + Index map was only allowed up to CLF v2 diff --git a/tests/data/files/clf/illegal/log_bad_param.clf b/tests/data/files/clf/illegal/log_bad_param.clf index db0382047..880fa5c72 100644 --- a/tests/data/files/clf/illegal/log_bad_param.clf +++ b/tests/data/files/clf/illegal/log_bad_param.clf @@ -1,5 +1,5 @@ - + The linToLog style may not contain the linSideBreak param. diff --git a/tests/data/files/clf/illegal/log_bad_style.clf b/tests/data/files/clf/illegal/log_bad_style.clf index dbc1ac931..0e1b491b4 100644 --- a/tests/data/files/clf/illegal/log_bad_style.clf +++ b/tests/data/files/clf/illegal/log_bad_style.clf @@ -1,5 +1,5 @@ - + Illegal log style value. diff --git a/tests/data/files/clf/illegal/log_missing_breakpnt.clf b/tests/data/files/clf/illegal/log_missing_breakpnt.clf index 4282f23df..1d5e47855 100644 --- a/tests/data/files/clf/illegal/log_missing_breakpnt.clf +++ b/tests/data/files/clf/illegal/log_missing_breakpnt.clf @@ -1,5 +1,5 @@ - + The camera styles must have the linSideBreak param. - + Half-domain must have 65536 values. RGB RGB diff --git a/tests/data/files/clf/illegal/lut1d_half_domain_set_false.clf b/tests/data/files/clf/illegal/lut1d_half_domain_set_false.clf index fca07d882..d9e650d90 100644 --- a/tests/data/files/clf/illegal/lut1d_half_domain_set_false.clf +++ b/tests/data/files/clf/illegal/lut1d_half_domain_set_false.clf @@ -1,5 +1,5 @@ - + The only legal value for halfDomain is "true". RGB RGB diff --git a/tests/data/files/clf/illegal/lut1d_raw_half_set_false.clf b/tests/data/files/clf/illegal/lut1d_raw_half_set_false.clf index 94daa1e6f..3ea1d6759 100644 --- a/tests/data/files/clf/illegal/lut1d_raw_half_set_false.clf +++ b/tests/data/files/clf/illegal/lut1d_raw_half_set_false.clf @@ -1,5 +1,5 @@ - + The only legal value for rawHhalfs is "true". RGB RGB diff --git a/tests/data/files/clf/illegal/lut3d_unequal_size.clf b/tests/data/files/clf/illegal/lut3d_unequal_size.clf index 1be11cfab..3c4c11361 100644 --- a/tests/data/files/clf/illegal/lut3d_unequal_size.clf +++ b/tests/data/files/clf/illegal/lut3d_unequal_size.clf @@ -1,5 +1,5 @@ - + Lut3d must have equal grid dimensions diff --git a/tests/data/files/clf/illegal/matrix_end_missing.clf b/tests/data/files/clf/illegal/matrix_end_missing.clf index b00cddd8c..1c19332dc 100644 --- a/tests/data/files/clf/illegal/matrix_end_missing.clf +++ b/tests/data/files/clf/illegal/matrix_end_missing.clf @@ -1,5 +1,5 @@ - + The Matrix element is not complete. diff --git a/tests/data/files/clf/illegal/process_list_missing.clf b/tests/data/files/clf/illegal/process_list_missing.clf index 0dbe66c23..10e25f4e9 100644 --- a/tests/data/files/clf/illegal/process_list_missing.clf +++ b/tests/data/files/clf/illegal/process_list_missing.clf @@ -1,4 +1,4 @@ - + Missing ProcesssList element 3.24000 -1.53700 -0.49850 diff --git a/tests/data/files/clf/illegal/range_bad_noclamp.clf b/tests/data/files/clf/illegal/range_bad_noclamp.clf index 3751a6bfb..977f99697 100644 --- a/tests/data/files/clf/illegal/range_bad_noclamp.clf +++ b/tests/data/files/clf/illegal/range_bad_noclamp.clf @@ -1,8 +1,8 @@ - + The noClamp style may not be used when there are only two values. - 0.1 1e-1 + 0.1 diff --git a/tests/data/files/clf/illegal/range_bad_values.clf b/tests/data/files/clf/illegal/range_bad_values.clf index 898727290..6a2416dc8 100644 --- a/tests/data/files/clf/illegal/range_bad_values.clf +++ b/tests/data/files/clf/illegal/range_bad_values.clf @@ -1,5 +1,5 @@ - + Illegal values -- the minInValue must be less than the maxInValue. 240 diff --git a/tests/data/files/clf/illegal/range_empty.clf b/tests/data/files/clf/illegal/range_empty.clf index f4bb850cf..904436b8a 100644 --- a/tests/data/files/clf/illegal/range_empty.clf +++ b/tests/data/files/clf/illegal/range_empty.clf @@ -1,5 +1,5 @@ - + Starting in CLF v3, a Range may not be empty diff --git a/tests/data/files/clf/illegal/range_nonmatching_clamp.clf b/tests/data/files/clf/illegal/range_nonmatching_clamp.clf index b8fee78a6..5c2a9b3c8 100644 --- a/tests/data/files/clf/illegal/range_nonmatching_clamp.clf +++ b/tests/data/files/clf/illegal/range_nonmatching_clamp.clf @@ -1,5 +1,5 @@ - + If there is only a min or only a max, the InValue must equal OutValue. Since the bit-depths are different, they are not actually the same here. diff --git a/tests/data/files/clf/illegal/transform_bad_outdepth.clf b/tests/data/files/clf/illegal/transform_bad_outdepth.clf index 8d65b6db9..27ec7b433 100644 --- a/tests/data/files/clf/illegal/transform_bad_outdepth.clf +++ b/tests/data/files/clf/illegal/transform_bad_outdepth.clf @@ -1,5 +1,5 @@ - + The outBitDepth is illegal diff --git a/tests/data/files/clf/illegal/transform_bitdepth_mismatch.clf b/tests/data/files/clf/illegal/transform_bitdepth_mismatch.clf index 1153df6a4..ca5892b92 100644 --- a/tests/data/files/clf/illegal/transform_bitdepth_mismatch.clf +++ b/tests/data/files/clf/illegal/transform_bitdepth_mismatch.clf @@ -1,14 +1,14 @@ - + All bit-depths in a file must match at adjacent ops - + 3.24000 -1.53700 -0.49850 -0.96930 1.87600 0.04156 0.05560 -0.20400 1.05730 - Note in-depth does not == out-depth of previous + Note in-depth does not == out-depth of previous 0.00000 0.00000 1e-2 0.28358 0.28358 1e+2 diff --git a/tests/data/files/clf/illegal/transform_corrupted_tag.clf b/tests/data/files/clf/illegal/transform_corrupted_tag.clf index 1f82247b1..11d606530 100644 --- a/tests/data/files/clf/illegal/transform_corrupted_tag.clf +++ b/tests/data/files/clf/illegal/transform_corrupted_tag.clf @@ -1,6 +1,7 @@ - + Note closing element is bad + ProcessList is not spelled correctly 3.24000 -1.53700 -0.49850 @@ -8,5 +9,4 @@ 0.05560 -0.20400 1.05730 - ProcessList is not spelled correctly diff --git a/tests/data/files/clf/illegal/transform_element_end_missing.clf b/tests/data/files/clf/illegal/transform_element_end_missing.clf index 136c8453c..c7464ce1c 100644 --- a/tests/data/files/clf/illegal/transform_element_end_missing.clf +++ b/tests/data/files/clf/illegal/transform_element_end_missing.clf @@ -1,6 +1,7 @@ - + ProcessList must have an end tag + Note closing element is missing 3.24000 -1.53700 -0.49850 @@ -8,4 +9,3 @@ 0.05560 -0.20400 1.05730 - Note closing element is missing diff --git a/tests/data/files/clf/illegal/transform_empty.clf b/tests/data/files/clf/illegal/transform_empty.clf index b07de5aa5..2d1280994 100644 --- a/tests/data/files/clf/illegal/transform_empty.clf +++ b/tests/data/files/clf/illegal/transform_empty.clf @@ -1,4 +1,4 @@ - - There must be at least on process node + + There must be at least one process node diff --git a/tests/data/files/clf/illegal/transform_id_empty.clf b/tests/data/files/clf/illegal/transform_id_empty.clf deleted file mode 100644 index bda57d36e..000000000 --- a/tests/data/files/clf/illegal/transform_id_empty.clf +++ /dev/null @@ -1,5 +0,0 @@ - - - The id string must not be empty - - diff --git a/tests/data/files/clf/illegal/transform_missing_id.clf b/tests/data/files/clf/illegal/transform_missing_id.clf deleted file mode 100644 index a72ed5577..000000000 --- a/tests/data/files/clf/illegal/transform_missing_id.clf +++ /dev/null @@ -1,5 +0,0 @@ - - - The ProcessList id attribute is missing - - diff --git a/tests/data/files/clf/illegal/transform_missing_inbitdepth.clf b/tests/data/files/clf/illegal/transform_missing_inbitdepth.clf index 011ff246d..94fa26d73 100644 --- a/tests/data/files/clf/illegal/transform_missing_inbitdepth.clf +++ b/tests/data/files/clf/illegal/transform_missing_inbitdepth.clf @@ -1,5 +1,5 @@ - + The inBitDepth is missing diff --git a/tests/data/files/clf/illegal/transform_missing_outbitdepth.clf b/tests/data/files/clf/illegal/transform_missing_outbitdepth.clf index 26d7cd176..fdc4dfd7b 100644 --- a/tests/data/files/clf/illegal/transform_missing_outbitdepth.clf +++ b/tests/data/files/clf/illegal/transform_missing_outbitdepth.clf @@ -1,5 +1,5 @@ - + The outBitDepth is missing diff --git a/tests/data/files/clf/illegal/unknown_elements.clf b/tests/data/files/clf/illegal/unknown_elements.clf index adc9dd388..000826cfa 100644 --- a/tests/data/files/clf/illegal/unknown_elements.clf +++ b/tests/data/files/clf/illegal/unknown_elements.clf @@ -1,10 +1,10 @@ - + This example contains unknown elements See section 5.4 of the spec: Unrecognized elements that are not children of the Info element should either raise an error or at least provide a warning message - + 3.24000 -1.53700 -0.49850 -0.96930 1.87600 0.04156 0.05560 -0.20400 1.05730 diff --git a/tests/data/files/clf/info_example.clf b/tests/data/files/clf/info_example.clf index c4cf5b602..f521f15be 100644 --- a/tests/data/files/clf/info_example.clf +++ b/tests/data/files/clf/info_example.clf @@ -1,9 +1,9 @@ - + Example of using the Info element + A second description input desc output desc - A second description diff --git a/tests/data/files/clf/inverseOf_id_test.clf b/tests/data/files/clf/inverseOf_id_test.clf index 31752d8aa..dd27a8828 100644 --- a/tests/data/files/clf/inverseOf_id_test.clf +++ b/tests/data/files/clf/inverseOf_id_test.clf @@ -1,5 +1,5 @@ - + The inverseOf attribute is used to identify inverse pairs RGB RGB diff --git a/tests/data/files/clf/log_all_styles.clf b/tests/data/files/clf/log_all_styles.clf index df9f7eb44..ca80d2c3b 100644 --- a/tests/data/files/clf/log_all_styles.clf +++ b/tests/data/files/clf/log_all_styles.clf @@ -1,5 +1,5 @@ - + Test all Logarithmic style values diff --git a/tests/data/files/clf/lut1d_32f_example.clf b/tests/data/files/clf/lut1d_32f_example.clf index c8c97728c..bffd267de 100644 --- a/tests/data/files/clf/lut1d_32f_example.clf +++ b/tests/data/files/clf/lut1d_32f_example.clf @@ -1,5 +1,5 @@ - + Basic Lut1D example, formula: 1.25 - 1.5 * x^2.2 1D LUT diff --git a/tests/data/files/clf/lut1d_comp.clf b/tests/data/files/clf/lut1d_comp.clf index 41fc81de1..91d31f516 100644 --- a/tests/data/files/clf/lut1d_comp.clf +++ b/tests/data/files/clf/lut1d_comp.clf @@ -1,5 +1,5 @@ - + Two Lut1D ops Linear spacing between 64 and 196 diff --git a/tests/data/files/clf/lut1d_example.clf b/tests/data/files/clf/lut1d_example.clf index ebd767740..a6e54f9c2 100644 --- a/tests/data/files/clf/lut1d_example.clf +++ b/tests/data/files/clf/lut1d_example.clf @@ -1,5 +1,5 @@ - + 1D LUT with legal out of range values Note that the bit-depth does not constrain the legal range of values. diff --git a/tests/data/files/clf/lut1d_half_domain_raw_half_set.clf b/tests/data/files/clf/lut1d_half_domain_raw_half_set.clf index f6a35d018..288eaa61f 100644 --- a/tests/data/files/clf/lut1d_half_domain_raw_half_set.clf +++ b/tests/data/files/clf/lut1d_half_domain_raw_half_set.clf @@ -1,10 +1,10 @@ - + + Lut1D testing half-domain layout and raw-halfs value encoding + Function is sign(x)*(abs(x)^0.45) - 0.1 None - Lut1D testing half-domain layout and raw-halfs value encoding - Function is sign(x)*(abs(x)^0.45) - 0.1 44646 diff --git a/tests/data/files/clf/lut1d_long.clf b/tests/data/files/clf/lut1d_long.clf index f0c5f7ee2..3f5bcf254 100644 --- a/tests/data/files/clf/lut1d_long.clf +++ b/tests/data/files/clf/lut1d_long.clf @@ -1,5 +1,5 @@ - + Very long Lut1D test (x^2.2 * 1.3 - 0.007) Also demonstrates repeating quantized values diff --git a/tests/data/files/clf/lut1d_lut3d_lut1d.clf b/tests/data/files/clf/lut1d_lut3d_lut1d.clf index 43d014dd8..34bdc0a1d 100644 --- a/tests/data/files/clf/lut1d_lut3d_lut1d.clf +++ b/tests/data/files/clf/lut1d_lut3d_lut1d.clf @@ -1,5 +1,5 @@ - + Lut1D + Lut3D + long Lut1D Tests usage of 1D, 3D, and 2D GPU textures diff --git a/tests/data/files/clf/lut3d_17x17x17_10i_12i.clf b/tests/data/files/clf/lut3d_17x17x17_10i_12i.clf index 3a94ab78f..bdb8c39fb 100644 --- a/tests/data/files/clf/lut3d_17x17x17_10i_12i.clf +++ b/tests/data/files/clf/lut3d_17x17x17_10i_12i.clf @@ -1,5 +1,5 @@ - + Basic 3d-LUT example. diff --git a/tests/data/files/clf/lut3d_as_matrix.clf b/tests/data/files/clf/lut3d_as_matrix.clf index f772f7216..967070e22 100644 --- a/tests/data/files/clf/lut3d_as_matrix.clf +++ b/tests/data/files/clf/lut3d_as_matrix.clf @@ -1,5 +1,5 @@ - + This Lut3D is equivalent (on its limited domain) to a matrix multiply from linear ap0 to linear rec 709 ap0 rec 709 diff --git a/tests/data/files/clf/lut3d_bizarre.clf b/tests/data/files/clf/lut3d_bizarre.clf index ef6fc8b04..80de3e54f 100644 --- a/tests/data/files/clf/lut3d_bizarre.clf +++ b/tests/data/files/clf/lut3d_bizarre.clf @@ -1,5 +1,5 @@ - + Unusual 3d-LUT useful for showing interpolation errors 3d-LUT with extended range values diff --git a/tests/data/files/clf/lut3d_identity_12i_16f.clf b/tests/data/files/clf/lut3d_identity_12i_16f.clf index 463f31dcb..972fb9775 100644 --- a/tests/data/files/clf/lut3d_identity_12i_16f.clf +++ b/tests/data/files/clf/lut3d_identity_12i_16f.clf @@ -1,5 +1,5 @@ - + 3D LUT example 3D LUT diff --git a/tests/data/files/clf/lut3d_preview_tier_test.clf b/tests/data/files/clf/lut3d_preview_tier_test.clf index eae5b78a2..2bf09754c 100644 --- a/tests/data/files/clf/lut3d_preview_tier_test.clf +++ b/tests/data/files/clf/lut3d_preview_tier_test.clf @@ -1,5 +1,5 @@ - + Test LUT for Preview-tier CLF validation test suite ACEScct Rec.1886 / Rec.709 video diff --git a/tests/data/files/clf/matrix_3x4_example.clf b/tests/data/files/clf/matrix_3x4_example.clf index a5f0722a1..1d011f90c 100644 --- a/tests/data/files/clf/matrix_3x4_example.clf +++ b/tests/data/files/clf/matrix_3x4_example.clf @@ -1,5 +1,5 @@ - + Matrix example Used by unit tests diff --git a/tests/data/files/clf/matrix_example_utf8.clf b/tests/data/files/clf/matrix_example_utf8.clf index 2b5d8348a..a921d2db2 100644 --- a/tests/data/files/clf/matrix_example_utf8.clf +++ b/tests/data/files/clf/matrix_example_utf8.clf @@ -1,5 +1,5 @@ - + Test utf8 character encoding support. 標準萬國碼 diff --git a/tests/data/files/clf/matrix_no_newlines.clf b/tests/data/files/clf/matrix_no_newlines.clf index 7ed434bee..f7adde687 100644 --- a/tests/data/files/clf/matrix_no_newlines.clf +++ b/tests/data/files/clf/matrix_no_newlines.clf @@ -1 +1 @@ -Example with minimal newlinesArray values separated only by tabs3.6 0.1 -0.2 0.3 0.2 3.5 +0.1 -0.05 1E-01 -0.3 0.34e+01 -4e-1 \ No newline at end of file +Example with minimal newlinesArray values separated only by tabs3.6 0.1 -0.2 0.3 0.2 3.5 +0.1 -0.05 1E-01 -0.3 0.34e+01 -4e-1 \ No newline at end of file diff --git a/tests/data/files/clf/matrix_windows.clf b/tests/data/files/clf/matrix_windows.clf index 7e7241610..5a80b60e6 100644 --- a/tests/data/files/clf/matrix_windows.clf +++ b/tests/data/files/clf/matrix_windows.clf @@ -1,4 +1,4 @@ - + This file has Windows line-endings. Also, the file does not start with a ?xml header. @@ -8,4 +8,4 @@ 0 0 4095 - \ No newline at end of file + diff --git a/tests/data/files/clf/multiple_ops.clf b/tests/data/files/clf/multiple_ops.clf index 5e0973790..5ad43d7d0 100644 --- a/tests/data/files/clf/multiple_ops.clf +++ b/tests/data/files/clf/multiple_ops.clf @@ -1,5 +1,5 @@ - + Test with lots of different process nodes scene 1 exterior look diff --git a/tests/data/files/clf/illegal/log_bad_version.clf b/tests/data/files/clf/pre-smpte_only/illegal/log_bad_version.clf similarity index 80% rename from tests/data/files/clf/illegal/log_bad_version.clf rename to tests/data/files/clf/pre-smpte_only/illegal/log_bad_version.clf index 6aea455cd..d0ad478c1 100644 --- a/tests/data/files/clf/illegal/log_bad_version.clf +++ b/tests/data/files/clf/pre-smpte_only/illegal/log_bad_version.clf @@ -1,5 +1,5 @@ - + Version is too low to support Log. inputDesc outputDesc diff --git a/tests/data/files/clf/illegal/process_list_bad_version.clf b/tests/data/files/clf/pre-smpte_only/illegal/process_list_bad_version.clf similarity index 82% rename from tests/data/files/clf/illegal/process_list_bad_version.clf rename to tests/data/files/clf/pre-smpte_only/illegal/process_list_bad_version.clf index 11408a1c2..19aca3cd7 100644 --- a/tests/data/files/clf/illegal/process_list_bad_version.clf +++ b/tests/data/files/clf/pre-smpte_only/illegal/process_list_bad_version.clf @@ -1,6 +1,6 @@ - Not a legal compCLFversion string + Does not contain a legal compCLFversion string. 3.24000 -1.53700 -0.49850 diff --git a/tests/data/files/clf/illegal/process_list_higher_version.clf b/tests/data/files/clf/pre-smpte_only/illegal/process_list_higher_version.clf similarity index 80% rename from tests/data/files/clf/illegal/process_list_higher_version.clf rename to tests/data/files/clf/pre-smpte_only/illegal/process_list_higher_version.clf index 8e1d97bff..87c398fed 100644 --- a/tests/data/files/clf/illegal/process_list_higher_version.clf +++ b/tests/data/files/clf/pre-smpte_only/illegal/process_list_higher_version.clf @@ -1,6 +1,6 @@ - Versions higher than current version must be rejected + Versions higher than the supported version must be rejected. 3.24000 -1.53700 -0.49850 diff --git a/tests/data/files/clf/pre-smpte_only/illegal/transform_id_empty.clf b/tests/data/files/clf/pre-smpte_only/illegal/transform_id_empty.clf new file mode 100644 index 000000000..a3d6e465a --- /dev/null +++ b/tests/data/files/clf/pre-smpte_only/illegal/transform_id_empty.clf @@ -0,0 +1,5 @@ + + + The id string must not be empty in v3. + + diff --git a/tests/data/files/clf/pre-smpte_only/illegal/transform_missing_id.clf b/tests/data/files/clf/pre-smpte_only/illegal/transform_missing_id.clf new file mode 100644 index 000000000..fdf173532 --- /dev/null +++ b/tests/data/files/clf/pre-smpte_only/illegal/transform_missing_id.clf @@ -0,0 +1,5 @@ + + + The ProcessList id attribute may not be missing in v3. + + diff --git a/tests/data/files/clf/matrix_example.clf b/tests/data/files/clf/pre-smpte_only/matrix_example.clf similarity index 83% rename from tests/data/files/clf/matrix_example.clf rename to tests/data/files/clf/pre-smpte_only/matrix_example.clf index 7d2c83346..04041bdd1 100644 --- a/tests/data/files/clf/matrix_example.clf +++ b/tests/data/files/clf/pre-smpte_only/matrix_example.clf @@ -1,5 +1,5 @@ - + Basic matrix example using CLF v2 dim syntax RGB XYZ diff --git a/tests/data/files/clf/pre-smpte_only/process_list_v3_namespace.clf b/tests/data/files/clf/pre-smpte_only/process_list_v3_namespace.clf new file mode 100644 index 000000000..086bfc86d --- /dev/null +++ b/tests/data/files/clf/pre-smpte_only/process_list_v3_namespace.clf @@ -0,0 +1,11 @@ + + + Uses the v3 namespace. + + + 3.24000 -1.53700 -0.49850 +-0.96930 1.87600 0.04156 + 0.05560 -0.20400 1.05730 + + + diff --git a/tests/data/files/clf/range.clf b/tests/data/files/clf/range.clf index 88c38cded..467787dc4 100644 --- a/tests/data/files/clf/range.clf +++ b/tests/data/files/clf/range.clf @@ -1,5 +1,5 @@ - + Basic range example with no style attribute RGB RGB diff --git a/tests/data/files/clf/range_test1_clamp.clf b/tests/data/files/clf/range_test1_clamp.clf index f7e436dee..ec5f9edbd 100644 --- a/tests/data/files/clf/range_test1_clamp.clf +++ b/tests/data/files/clf/range_test1_clamp.clf @@ -1,5 +1,5 @@ - + Basic range example 16 diff --git a/tests/data/files/clf/range_test1_noclamp.clf b/tests/data/files/clf/range_test1_noclamp.clf index f5872bd5b..3e79f25ea 100644 --- a/tests/data/files/clf/range_test1_noclamp.clf +++ b/tests/data/files/clf/range_test1_noclamp.clf @@ -1,5 +1,5 @@ - + Basic range with noClamp style Note that the 8i bit-depth does not constrain the legal range of values diff --git a/tests/data/files/clf/range_test2.clf b/tests/data/files/clf/range_test2.clf index 7ae54b15c..6a46eb075 100644 --- a/tests/data/files/clf/range_test2.clf +++ b/tests/data/files/clf/range_test2.clf @@ -1,10 +1,10 @@ - + Range that clamps on the low side - 0.1 1e-1 + 0.1 diff --git a/tests/data/files/clf/smpte_only/broadcast_profile_lut33.clf b/tests/data/files/clf/smpte_only/broadcast_profile_lut33.clf new file mode 100644 index 000000000..266a53e44 --- /dev/null +++ b/tests/data/files/clf/smpte_only/broadcast_profile_lut33.clf @@ -0,0 +1,35996 @@ + + + + urn:uuid:a8f91bfa-b79f-5d4d-b750-a411c476bb47 + + Demo Advanced LUT with dummy values + Démonstration d'une LUT avancée avec des valeurs factices + Demo Erweiterte LUT mit Dummy-Werten + + ITU-R BT.709 + + Same as Input + Identique à l'entrée + Gleiches wie Eingabe + + + http://www.smpte-ra.org/ns/2136-10/2026#Live_Broadcast_LUT33 + SMPTE_2136-10_Example + OCIO contributors + 1.0 + + ColorPrimaries_ITU709 + TransferCharacteristic_ITU709 + CodingEquations_ITU709 + + + ColorPrimaries_ITU2020 + TransferCharacteristic_SMPTEST2084 + CodingEquations_ITU2100_ICtCp + + sdiClip + Test, Display-light + fake-email@ocio.org + + + + Input Scaling - only used for full-range signals + 0. + 1. + 0.06256109481915934 + 0.91886608015640270 + + + + +0 0 0 +0 0 0.03125 +0 0 0.0625 +0 0 0.09375 +0 0 0.125 +0 0 0.1562 +0 0 0.1875 +0 0 0.2188 +0 0 0.25 +0 0 0.2812 +0 0 0.3125 +0 0 0.3438 +0 0 0.375 +0 0 0.4062 +0 0 0.4375 +0 0 0.4688 +0 0 0.5 +0 0 0.5312 +0 0 0.5625 +0 0 0.5938 +0 0 0.625 +0 0 0.6562 +0 0 0.6875 +0 0 0.7188 +0 0 0.75 +0 0 0.7812 +0 0 0.8125 +0 0 0.8438 +0 0 0.875 +0 0 0.9062 +0 0 0.9375 +0 0 0.9688 +0 0 1 +0 0.03125 0 +0 0.03125 0.03125 +0 0.03125 0.0625 +0 0.03125 0.09375 +0 0.03125 0.125 +0 0.03125 0.1562 +0 0.03125 0.1875 +0 0.03125 0.2188 +0 0.03125 0.25 +0 0.03125 0.2812 +0 0.03125 0.3125 +0 0.03125 0.3438 +0 0.03125 0.375 +0 0.03125 0.4062 +0 0.03125 0.4375 +0 0.03125 0.4688 +0 0.03125 0.5 +0 0.03125 0.5312 +0 0.03125 0.5625 +0 0.03125 0.5938 +0 0.03125 0.625 +0 0.03125 0.6562 +0 0.03125 0.6875 +0 0.03125 0.7188 +0 0.03125 0.75 +0 0.03125 0.7812 +0 0.03125 0.8125 +0 0.03125 0.8438 +0 0.03125 0.875 +0 0.03125 0.9062 +0 0.03125 0.9375 +0 0.03125 0.9688 +0 0.03125 1 +0 0.0625 0 +0 0.0625 0.03125 +0 0.0625 0.0625 +0 0.0625 0.09375 +0 0.0625 0.125 +0 0.0625 0.1562 +0 0.0625 0.1875 +0 0.0625 0.2188 +0 0.0625 0.25 +0 0.0625 0.2812 +0 0.0625 0.3125 +0 0.0625 0.3438 +0 0.0625 0.375 +0 0.0625 0.4062 +0 0.0625 0.4375 +0 0.0625 0.4688 +0 0.0625 0.5 +0 0.0625 0.5312 +0 0.0625 0.5625 +0 0.0625 0.5938 +0 0.0625 0.625 +0 0.0625 0.6562 +0 0.0625 0.6875 +0 0.0625 0.7188 +0 0.0625 0.75 +0 0.0625 0.7812 +0 0.0625 0.8125 +0 0.0625 0.8438 +0 0.0625 0.875 +0 0.0625 0.9062 +0 0.0625 0.9375 +0 0.0625 0.9688 +0 0.0625 1 +0 0.09375 0 +0 0.09375 0.03125 +0 0.09375 0.0625 +0 0.09375 0.09375 +0 0.09375 0.125 +0 0.09375 0.1562 +0 0.09375 0.1875 +0 0.09375 0.2188 +0 0.09375 0.25 +0 0.09375 0.2812 +0 0.09375 0.3125 +0 0.09375 0.3438 +0 0.09375 0.375 +0 0.09375 0.4062 +0 0.09375 0.4375 +0 0.09375 0.4688 +0 0.09375 0.5 +0 0.09375 0.5312 +0 0.09375 0.5625 +0 0.09375 0.5938 +0 0.09375 0.625 +0 0.09375 0.6562 +0 0.09375 0.6875 +0 0.09375 0.7188 +0 0.09375 0.75 +0 0.09375 0.7812 +0 0.09375 0.8125 +0 0.09375 0.8438 +0 0.09375 0.875 +0 0.09375 0.9062 +0 0.09375 0.9375 +0 0.09375 0.9688 +0 0.09375 1 +0 0.125 0 +0 0.125 0.03125 +0 0.125 0.0625 +0 0.125 0.09375 +0 0.125 0.125 +0 0.125 0.1562 +0 0.125 0.1875 +0 0.125 0.2188 +0 0.125 0.25 +0 0.125 0.2812 +0 0.125 0.3125 +0 0.125 0.3438 +0 0.125 0.375 +0 0.125 0.4062 +0 0.125 0.4375 +0 0.125 0.4688 +0 0.125 0.5 +0 0.125 0.5312 +0 0.125 0.5625 +0 0.125 0.5938 +0 0.125 0.625 +0 0.125 0.6562 +0 0.125 0.6875 +0 0.125 0.7188 +0 0.125 0.75 +0 0.125 0.7812 +0 0.125 0.8125 +0 0.125 0.8438 +0 0.125 0.875 +0 0.125 0.9062 +0 0.125 0.9375 +0 0.125 0.9688 +0 0.125 1 +0 0.1562 0 +0 0.1562 0.03125 +0 0.1562 0.0625 +0 0.1562 0.09375 +0 0.1562 0.125 +0 0.1562 0.1562 +0 0.1562 0.1875 +0 0.1562 0.2188 +0 0.1562 0.25 +0 0.1562 0.2812 +0 0.1562 0.3125 +0 0.1562 0.3438 +0 0.1562 0.375 +0 0.1562 0.4062 +0 0.1562 0.4375 +0 0.1562 0.4688 +0 0.1562 0.5 +0 0.1562 0.5312 +0 0.1562 0.5625 +0 0.1562 0.5938 +0 0.1562 0.625 +0 0.1562 0.6562 +0 0.1562 0.6875 +0 0.1562 0.7188 +0 0.1562 0.75 +0 0.1562 0.7812 +0 0.1562 0.8125 +0 0.1562 0.8438 +0 0.1562 0.875 +0 0.1562 0.9062 +0 0.1562 0.9375 +0 0.1562 0.9688 +0 0.1562 1 +0 0.1875 0 +0 0.1875 0.03125 +0 0.1875 0.0625 +0 0.1875 0.09375 +0 0.1875 0.125 +0 0.1875 0.1562 +0 0.1875 0.1875 +0 0.1875 0.2188 +0 0.1875 0.25 +0 0.1875 0.2812 +0 0.1875 0.3125 +0 0.1875 0.3438 +0 0.1875 0.375 +0 0.1875 0.4062 +0 0.1875 0.4375 +0 0.1875 0.4688 +0 0.1875 0.5 +0 0.1875 0.5312 +0 0.1875 0.5625 +0 0.1875 0.5938 +0 0.1875 0.625 +0 0.1875 0.6562 +0 0.1875 0.6875 +0 0.1875 0.7188 +0 0.1875 0.75 +0 0.1875 0.7812 +0 0.1875 0.8125 +0 0.1875 0.8438 +0 0.1875 0.875 +0 0.1875 0.9062 +0 0.1875 0.9375 +0 0.1875 0.9688 +0 0.1875 1 +0 0.2188 0 +0 0.2188 0.03125 +0 0.2188 0.0625 +0 0.2188 0.09375 +0 0.2188 0.125 +0 0.2188 0.1562 +0 0.2188 0.1875 +0 0.2188 0.2188 +0 0.2188 0.25 +0 0.2188 0.2812 +0 0.2188 0.3125 +0 0.2188 0.3438 +0 0.2188 0.375 +0 0.2188 0.4062 +0 0.2188 0.4375 +0 0.2188 0.4688 +0 0.2188 0.5 +0 0.2188 0.5312 +0 0.2188 0.5625 +0 0.2188 0.5938 +0 0.2188 0.625 +0 0.2188 0.6562 +0 0.2188 0.6875 +0 0.2188 0.7188 +0 0.2188 0.75 +0 0.2188 0.7812 +0 0.2188 0.8125 +0 0.2188 0.8438 +0 0.2188 0.875 +0 0.2188 0.9062 +0 0.2188 0.9375 +0 0.2188 0.9688 +0 0.2188 1 +0 0.25 0 +0 0.25 0.03125 +0 0.25 0.0625 +0 0.25 0.09375 +0 0.25 0.125 +0 0.25 0.1562 +0 0.25 0.1875 +0 0.25 0.2188 +0 0.25 0.25 +0 0.25 0.2812 +0 0.25 0.3125 +0 0.25 0.3438 +0 0.25 0.375 +0 0.25 0.4062 +0 0.25 0.4375 +0 0.25 0.4688 +0 0.25 0.5 +0 0.25 0.5312 +0 0.25 0.5625 +0 0.25 0.5938 +0 0.25 0.625 +0 0.25 0.6562 +0 0.25 0.6875 +0 0.25 0.7188 +0 0.25 0.75 +0 0.25 0.7812 +0 0.25 0.8125 +0 0.25 0.8438 +0 0.25 0.875 +0 0.25 0.9062 +0 0.25 0.9375 +0 0.25 0.9688 +0 0.25 1 +0 0.2812 0 +0 0.2812 0.03125 +0 0.2812 0.0625 +0 0.2812 0.09375 +0 0.2812 0.125 +0 0.2812 0.1562 +0 0.2812 0.1875 +0 0.2812 0.2188 +0 0.2812 0.25 +0 0.2812 0.2812 +0 0.2812 0.3125 +0 0.2812 0.3438 +0 0.2812 0.375 +0 0.2812 0.4062 +0 0.2812 0.4375 +0 0.2812 0.4688 +0 0.2812 0.5 +0 0.2812 0.5312 +0 0.2812 0.5625 +0 0.2812 0.5938 +0 0.2812 0.625 +0 0.2812 0.6562 +0 0.2812 0.6875 +0 0.2812 0.7188 +0 0.2812 0.75 +0 0.2812 0.7812 +0 0.2812 0.8125 +0 0.2812 0.8438 +0 0.2812 0.875 +0 0.2812 0.9062 +0 0.2812 0.9375 +0 0.2812 0.9688 +0 0.2812 1 +0 0.3125 0 +0 0.3125 0.03125 +0 0.3125 0.0625 +0 0.3125 0.09375 +0 0.3125 0.125 +0 0.3125 0.1562 +0 0.3125 0.1875 +0 0.3125 0.2188 +0 0.3125 0.25 +0 0.3125 0.2812 +0 0.3125 0.3125 +0 0.3125 0.3438 +0 0.3125 0.375 +0 0.3125 0.4062 +0 0.3125 0.4375 +0 0.3125 0.4688 +0 0.3125 0.5 +0 0.3125 0.5312 +0 0.3125 0.5625 +0 0.3125 0.5938 +0 0.3125 0.625 +0 0.3125 0.6562 +0 0.3125 0.6875 +0 0.3125 0.7188 +0 0.3125 0.75 +0 0.3125 0.7812 +0 0.3125 0.8125 +0 0.3125 0.8438 +0 0.3125 0.875 +0 0.3125 0.9062 +0 0.3125 0.9375 +0 0.3125 0.9688 +0 0.3125 1 +0 0.3438 0 +0 0.3438 0.03125 +0 0.3438 0.0625 +0 0.3438 0.09375 +0 0.3438 0.125 +0 0.3438 0.1562 +0 0.3438 0.1875 +0 0.3438 0.2188 +0 0.3438 0.25 +0 0.3438 0.2812 +0 0.3438 0.3125 +0 0.3438 0.3438 +0 0.3438 0.375 +0 0.3438 0.4062 +0 0.3438 0.4375 +0 0.3438 0.4688 +0 0.3438 0.5 +0 0.3438 0.5312 +0 0.3438 0.5625 +0 0.3438 0.5938 +0 0.3438 0.625 +0 0.3438 0.6562 +0 0.3438 0.6875 +0 0.3438 0.7188 +0 0.3438 0.75 +0 0.3438 0.7812 +0 0.3438 0.8125 +0 0.3438 0.8438 +0 0.3438 0.875 +0 0.3438 0.9062 +0 0.3438 0.9375 +0 0.3438 0.9688 +0 0.3438 1 +0 0.375 0 +0 0.375 0.03125 +0 0.375 0.0625 +0 0.375 0.09375 +0 0.375 0.125 +0 0.375 0.1562 +0 0.375 0.1875 +0 0.375 0.2188 +0 0.375 0.25 +0 0.375 0.2812 +0 0.375 0.3125 +0 0.375 0.3438 +0 0.375 0.375 +0 0.375 0.4062 +0 0.375 0.4375 +0 0.375 0.4688 +0 0.375 0.5 +0 0.375 0.5312 +0 0.375 0.5625 +0 0.375 0.5938 +0 0.375 0.625 +0 0.375 0.6562 +0 0.375 0.6875 +0 0.375 0.7188 +0 0.375 0.75 +0 0.375 0.7812 +0 0.375 0.8125 +0 0.375 0.8438 +0 0.375 0.875 +0 0.375 0.9062 +0 0.375 0.9375 +0 0.375 0.9688 +0 0.375 1 +0 0.4062 0 +0 0.4062 0.03125 +0 0.4062 0.0625 +0 0.4062 0.09375 +0 0.4062 0.125 +0 0.4062 0.1562 +0 0.4062 0.1875 +0 0.4062 0.2188 +0 0.4062 0.25 +0 0.4062 0.2812 +0 0.4062 0.3125 +0 0.4062 0.3438 +0 0.4062 0.375 +0 0.4062 0.4062 +0 0.4062 0.4375 +0 0.4062 0.4688 +0 0.4062 0.5 +0 0.4062 0.5312 +0 0.4062 0.5625 +0 0.4062 0.5938 +0 0.4062 0.625 +0 0.4062 0.6562 +0 0.4062 0.6875 +0 0.4062 0.7188 +0 0.4062 0.75 +0 0.4062 0.7812 +0 0.4062 0.8125 +0 0.4062 0.8438 +0 0.4062 0.875 +0 0.4062 0.9062 +0 0.4062 0.9375 +0 0.4062 0.9688 +0 0.4062 1 +0 0.4375 0 +0 0.4375 0.03125 +0 0.4375 0.0625 +0 0.4375 0.09375 +0 0.4375 0.125 +0 0.4375 0.1562 +0 0.4375 0.1875 +0 0.4375 0.2188 +0 0.4375 0.25 +0 0.4375 0.2812 +0 0.4375 0.3125 +0 0.4375 0.3438 +0 0.4375 0.375 +0 0.4375 0.4062 +0 0.4375 0.4375 +0 0.4375 0.4688 +0 0.4375 0.5 +0 0.4375 0.5312 +0 0.4375 0.5625 +0 0.4375 0.5938 +0 0.4375 0.625 +0 0.4375 0.6562 +0 0.4375 0.6875 +0 0.4375 0.7188 +0 0.4375 0.75 +0 0.4375 0.7812 +0 0.4375 0.8125 +0 0.4375 0.8438 +0 0.4375 0.875 +0 0.4375 0.9062 +0 0.4375 0.9375 +0 0.4375 0.9688 +0 0.4375 1 +0 0.4688 0 +0 0.4688 0.03125 +0 0.4688 0.0625 +0 0.4688 0.09375 +0 0.4688 0.125 +0 0.4688 0.1562 +0 0.4688 0.1875 +0 0.4688 0.2188 +0 0.4688 0.25 +0 0.4688 0.2812 +0 0.4688 0.3125 +0 0.4688 0.3438 +0 0.4688 0.375 +0 0.4688 0.4062 +0 0.4688 0.4375 +0 0.4688 0.4688 +0 0.4688 0.5 +0 0.4688 0.5312 +0 0.4688 0.5625 +0 0.4688 0.5938 +0 0.4688 0.625 +0 0.4688 0.6562 +0 0.4688 0.6875 +0 0.4688 0.7188 +0 0.4688 0.75 +0 0.4688 0.7812 +0 0.4688 0.8125 +0 0.4688 0.8438 +0 0.4688 0.875 +0 0.4688 0.9062 +0 0.4688 0.9375 +0 0.4688 0.9688 +0 0.4688 1 +0 0.5 0 +0 0.5 0.03125 +0 0.5 0.0625 +0 0.5 0.09375 +0 0.5 0.125 +0 0.5 0.1562 +0 0.5 0.1875 +0 0.5 0.2188 +0 0.5 0.25 +0 0.5 0.2812 +0 0.5 0.3125 +0 0.5 0.3438 +0 0.5 0.375 +0 0.5 0.4062 +0 0.5 0.4375 +0 0.5 0.4688 +0 0.5 0.5 +0 0.5 0.5312 +0 0.5 0.5625 +0 0.5 0.5938 +0 0.5 0.625 +0 0.5 0.6562 +0 0.5 0.6875 +0 0.5 0.7188 +0 0.5 0.75 +0 0.5 0.7812 +0 0.5 0.8125 +0 0.5 0.8438 +0 0.5 0.875 +0 0.5 0.9062 +0 0.5 0.9375 +0 0.5 0.9688 +0 0.5 1 +0 0.5312 0 +0 0.5312 0.03125 +0 0.5312 0.0625 +0 0.5312 0.09375 +0 0.5312 0.125 +0 0.5312 0.1562 +0 0.5312 0.1875 +0 0.5312 0.2188 +0 0.5312 0.25 +0 0.5312 0.2812 +0 0.5312 0.3125 +0 0.5312 0.3438 +0 0.5312 0.375 +0 0.5312 0.4062 +0 0.5312 0.4375 +0 0.5312 0.4688 +0 0.5312 0.5 +0 0.5312 0.5312 +0 0.5312 0.5625 +0 0.5312 0.5938 +0 0.5312 0.625 +0 0.5312 0.6562 +0 0.5312 0.6875 +0 0.5312 0.7188 +0 0.5312 0.75 +0 0.5312 0.7812 +0 0.5312 0.8125 +0 0.5312 0.8438 +0 0.5312 0.875 +0 0.5312 0.9062 +0 0.5312 0.9375 +0 0.5312 0.9688 +0 0.5312 1 +0 0.5625 0 +0 0.5625 0.03125 +0 0.5625 0.0625 +0 0.5625 0.09375 +0 0.5625 0.125 +0 0.5625 0.1562 +0 0.5625 0.1875 +0 0.5625 0.2188 +0 0.5625 0.25 +0 0.5625 0.2812 +0 0.5625 0.3125 +0 0.5625 0.3438 +0 0.5625 0.375 +0 0.5625 0.4062 +0 0.5625 0.4375 +0 0.5625 0.4688 +0 0.5625 0.5 +0 0.5625 0.5312 +0 0.5625 0.5625 +0 0.5625 0.5938 +0 0.5625 0.625 +0 0.5625 0.6562 +0 0.5625 0.6875 +0 0.5625 0.7188 +0 0.5625 0.75 +0 0.5625 0.7812 +0 0.5625 0.8125 +0 0.5625 0.8438 +0 0.5625 0.875 +0 0.5625 0.9062 +0 0.5625 0.9375 +0 0.5625 0.9688 +0 0.5625 1 +0 0.5938 0 +0 0.5938 0.03125 +0 0.5938 0.0625 +0 0.5938 0.09375 +0 0.5938 0.125 +0 0.5938 0.1562 +0 0.5938 0.1875 +0 0.5938 0.2188 +0 0.5938 0.25 +0 0.5938 0.2812 +0 0.5938 0.3125 +0 0.5938 0.3438 +0 0.5938 0.375 +0 0.5938 0.4062 +0 0.5938 0.4375 +0 0.5938 0.4688 +0 0.5938 0.5 +0 0.5938 0.5312 +0 0.5938 0.5625 +0 0.5938 0.5938 +0 0.5938 0.625 +0 0.5938 0.6562 +0 0.5938 0.6875 +0 0.5938 0.7188 +0 0.5938 0.75 +0 0.5938 0.7812 +0 0.5938 0.8125 +0 0.5938 0.8438 +0 0.5938 0.875 +0 0.5938 0.9062 +0 0.5938 0.9375 +0 0.5938 0.9688 +0 0.5938 1 +0 0.625 0 +0 0.625 0.03125 +0 0.625 0.0625 +0 0.625 0.09375 +0 0.625 0.125 +0 0.625 0.1562 +0 0.625 0.1875 +0 0.625 0.2188 +0 0.625 0.25 +0 0.625 0.2812 +0 0.625 0.3125 +0 0.625 0.3438 +0 0.625 0.375 +0 0.625 0.4062 +0 0.625 0.4375 +0 0.625 0.4688 +0 0.625 0.5 +0 0.625 0.5312 +0 0.625 0.5625 +0 0.625 0.5938 +0 0.625 0.625 +0 0.625 0.6562 +0 0.625 0.6875 +0 0.625 0.7188 +0 0.625 0.75 +0 0.625 0.7812 +0 0.625 0.8125 +0 0.625 0.8438 +0 0.625 0.875 +0 0.625 0.9062 +0 0.625 0.9375 +0 0.625 0.9688 +0 0.625 1 +0 0.6562 0 +0 0.6562 0.03125 +0 0.6562 0.0625 +0 0.6562 0.09375 +0 0.6562 0.125 +0 0.6562 0.1562 +0 0.6562 0.1875 +0 0.6562 0.2188 +0 0.6562 0.25 +0 0.6562 0.2812 +0 0.6562 0.3125 +0 0.6562 0.3438 +0 0.6562 0.375 +0 0.6562 0.4062 +0 0.6562 0.4375 +0 0.6562 0.4688 +0 0.6562 0.5 +0 0.6562 0.5312 +0 0.6562 0.5625 +0 0.6562 0.5938 +0 0.6562 0.625 +0 0.6562 0.6562 +0 0.6562 0.6875 +0 0.6562 0.7188 +0 0.6562 0.75 +0 0.6562 0.7812 +0 0.6562 0.8125 +0 0.6562 0.8438 +0 0.6562 0.875 +0 0.6562 0.9062 +0 0.6562 0.9375 +0 0.6562 0.9688 +0 0.6562 1 +0 0.6875 0 +0 0.6875 0.03125 +0 0.6875 0.0625 +0 0.6875 0.09375 +0 0.6875 0.125 +0 0.6875 0.1562 +0 0.6875 0.1875 +0 0.6875 0.2188 +0 0.6875 0.25 +0 0.6875 0.2812 +0 0.6875 0.3125 +0 0.6875 0.3438 +0 0.6875 0.375 +0 0.6875 0.4062 +0 0.6875 0.4375 +0 0.6875 0.4688 +0 0.6875 0.5 +0 0.6875 0.5312 +0 0.6875 0.5625 +0 0.6875 0.5938 +0 0.6875 0.625 +0 0.6875 0.6562 +0 0.6875 0.6875 +0 0.6875 0.7188 +0 0.6875 0.75 +0 0.6875 0.7812 +0 0.6875 0.8125 +0 0.6875 0.8438 +0 0.6875 0.875 +0 0.6875 0.9062 +0 0.6875 0.9375 +0 0.6875 0.9688 +0 0.6875 1 +0 0.7188 0 +0 0.7188 0.03125 +0 0.7188 0.0625 +0 0.7188 0.09375 +0 0.7188 0.125 +0 0.7188 0.1562 +0 0.7188 0.1875 +0 0.7188 0.2188 +0 0.7188 0.25 +0 0.7188 0.2812 +0 0.7188 0.3125 +0 0.7188 0.3438 +0 0.7188 0.375 +0 0.7188 0.4062 +0 0.7188 0.4375 +0 0.7188 0.4688 +0 0.7188 0.5 +0 0.7188 0.5312 +0 0.7188 0.5625 +0 0.7188 0.5938 +0 0.7188 0.625 +0 0.7188 0.6562 +0 0.7188 0.6875 +0 0.7188 0.7188 +0 0.7188 0.75 +0 0.7188 0.7812 +0 0.7188 0.8125 +0 0.7188 0.8438 +0 0.7188 0.875 +0 0.7188 0.9062 +0 0.7188 0.9375 +0 0.7188 0.9688 +0 0.7188 1 +0 0.75 0 +0 0.75 0.03125 +0 0.75 0.0625 +0 0.75 0.09375 +0 0.75 0.125 +0 0.75 0.1562 +0 0.75 0.1875 +0 0.75 0.2188 +0 0.75 0.25 +0 0.75 0.2812 +0 0.75 0.3125 +0 0.75 0.3438 +0 0.75 0.375 +0 0.75 0.4062 +0 0.75 0.4375 +0 0.75 0.4688 +0 0.75 0.5 +0 0.75 0.5312 +0 0.75 0.5625 +0 0.75 0.5938 +0 0.75 0.625 +0 0.75 0.6562 +0 0.75 0.6875 +0 0.75 0.7188 +0 0.75 0.75 +0 0.75 0.7812 +0 0.75 0.8125 +0 0.75 0.8438 +0 0.75 0.875 +0 0.75 0.9062 +0 0.75 0.9375 +0 0.75 0.9688 +0 0.75 1 +0 0.7812 0 +0 0.7812 0.03125 +0 0.7812 0.0625 +0 0.7812 0.09375 +0 0.7812 0.125 +0 0.7812 0.1562 +0 0.7812 0.1875 +0 0.7812 0.2188 +0 0.7812 0.25 +0 0.7812 0.2812 +0 0.7812 0.3125 +0 0.7812 0.3438 +0 0.7812 0.375 +0 0.7812 0.4062 +0 0.7812 0.4375 +0 0.7812 0.4688 +0 0.7812 0.5 +0 0.7812 0.5312 +0 0.7812 0.5625 +0 0.7812 0.5938 +0 0.7812 0.625 +0 0.7812 0.6562 +0 0.7812 0.6875 +0 0.7812 0.7188 +0 0.7812 0.75 +0 0.7812 0.7812 +0 0.7812 0.8125 +0 0.7812 0.8438 +0 0.7812 0.875 +0 0.7812 0.9062 +0 0.7812 0.9375 +0 0.7812 0.9688 +0 0.7812 1 +0 0.8125 0 +0 0.8125 0.03125 +0 0.8125 0.0625 +0 0.8125 0.09375 +0 0.8125 0.125 +0 0.8125 0.1562 +0 0.8125 0.1875 +0 0.8125 0.2188 +0 0.8125 0.25 +0 0.8125 0.2812 +0 0.8125 0.3125 +0 0.8125 0.3438 +0 0.8125 0.375 +0 0.8125 0.4062 +0 0.8125 0.4375 +0 0.8125 0.4688 +0 0.8125 0.5 +0 0.8125 0.5312 +0 0.8125 0.5625 +0 0.8125 0.5938 +0 0.8125 0.625 +0 0.8125 0.6562 +0 0.8125 0.6875 +0 0.8125 0.7188 +0 0.8125 0.75 +0 0.8125 0.7812 +0 0.8125 0.8125 +0 0.8125 0.8438 +0 0.8125 0.875 +0 0.8125 0.9062 +0 0.8125 0.9375 +0 0.8125 0.9688 +0 0.8125 1 +0 0.8438 0 +0 0.8438 0.03125 +0 0.8438 0.0625 +0 0.8438 0.09375 +0 0.8438 0.125 +0 0.8438 0.1562 +0 0.8438 0.1875 +0 0.8438 0.2188 +0 0.8438 0.25 +0 0.8438 0.2812 +0 0.8438 0.3125 +0 0.8438 0.3438 +0 0.8438 0.375 +0 0.8438 0.4062 +0 0.8438 0.4375 +0 0.8438 0.4688 +0 0.8438 0.5 +0 0.8438 0.5312 +0 0.8438 0.5625 +0 0.8438 0.5938 +0 0.8438 0.625 +0 0.8438 0.6562 +0 0.8438 0.6875 +0 0.8438 0.7188 +0 0.8438 0.75 +0 0.8438 0.7812 +0 0.8438 0.8125 +0 0.8438 0.8438 +0 0.8438 0.875 +0 0.8438 0.9062 +0 0.8438 0.9375 +0 0.8438 0.9688 +0 0.8438 1 +0 0.875 0 +0 0.875 0.03125 +0 0.875 0.0625 +0 0.875 0.09375 +0 0.875 0.125 +0 0.875 0.1562 +0 0.875 0.1875 +0 0.875 0.2188 +0 0.875 0.25 +0 0.875 0.2812 +0 0.875 0.3125 +0 0.875 0.3438 +0 0.875 0.375 +0 0.875 0.4062 +0 0.875 0.4375 +0 0.875 0.4688 +0 0.875 0.5 +0 0.875 0.5312 +0 0.875 0.5625 +0 0.875 0.5938 +0 0.875 0.625 +0 0.875 0.6562 +0 0.875 0.6875 +0 0.875 0.7188 +0 0.875 0.75 +0 0.875 0.7812 +0 0.875 0.8125 +0 0.875 0.8438 +0 0.875 0.875 +0 0.875 0.9062 +0 0.875 0.9375 +0 0.875 0.9688 +0 0.875 1 +0 0.9062 0 +0 0.9062 0.03125 +0 0.9062 0.0625 +0 0.9062 0.09375 +0 0.9062 0.125 +0 0.9062 0.1562 +0 0.9062 0.1875 +0 0.9062 0.2188 +0 0.9062 0.25 +0 0.9062 0.2812 +0 0.9062 0.3125 +0 0.9062 0.3438 +0 0.9062 0.375 +0 0.9062 0.4062 +0 0.9062 0.4375 +0 0.9062 0.4688 +0 0.9062 0.5 +0 0.9062 0.5312 +0 0.9062 0.5625 +0 0.9062 0.5938 +0 0.9062 0.625 +0 0.9062 0.6562 +0 0.9062 0.6875 +0 0.9062 0.7188 +0 0.9062 0.75 +0 0.9062 0.7812 +0 0.9062 0.8125 +0 0.9062 0.8438 +0 0.9062 0.875 +0 0.9062 0.9062 +0 0.9062 0.9375 +0 0.9062 0.9688 +0 0.9062 1 +0 0.9375 0 +0 0.9375 0.03125 +0 0.9375 0.0625 +0 0.9375 0.09375 +0 0.9375 0.125 +0 0.9375 0.1562 +0 0.9375 0.1875 +0 0.9375 0.2188 +0 0.9375 0.25 +0 0.9375 0.2812 +0 0.9375 0.3125 +0 0.9375 0.3438 +0 0.9375 0.375 +0 0.9375 0.4062 +0 0.9375 0.4375 +0 0.9375 0.4688 +0 0.9375 0.5 +0 0.9375 0.5312 +0 0.9375 0.5625 +0 0.9375 0.5938 +0 0.9375 0.625 +0 0.9375 0.6562 +0 0.9375 0.6875 +0 0.9375 0.7188 +0 0.9375 0.75 +0 0.9375 0.7812 +0 0.9375 0.8125 +0 0.9375 0.8438 +0 0.9375 0.875 +0 0.9375 0.9062 +0 0.9375 0.9375 +0 0.9375 0.9688 +0 0.9375 1 +0 0.9688 0 +0 0.9688 0.03125 +0 0.9688 0.0625 +0 0.9688 0.09375 +0 0.9688 0.125 +0 0.9688 0.1562 +0 0.9688 0.1875 +0 0.9688 0.2188 +0 0.9688 0.25 +0 0.9688 0.2812 +0 0.9688 0.3125 +0 0.9688 0.3438 +0 0.9688 0.375 +0 0.9688 0.4062 +0 0.9688 0.4375 +0 0.9688 0.4688 +0 0.9688 0.5 +0 0.9688 0.5312 +0 0.9688 0.5625 +0 0.9688 0.5938 +0 0.9688 0.625 +0 0.9688 0.6562 +0 0.9688 0.6875 +0 0.9688 0.7188 +0 0.9688 0.75 +0 0.9688 0.7812 +0 0.9688 0.8125 +0 0.9688 0.8438 +0 0.9688 0.875 +0 0.9688 0.9062 +0 0.9688 0.9375 +0 0.9688 0.9688 +0 0.9688 1 +0 1 0 +0 1 0.03125 +0 1 0.0625 +0 1 0.09375 +0 1 0.125 +0 1 0.1562 +0 1 0.1875 +0 1 0.2188 +0 1 0.25 +0 1 0.2812 +0 1 0.3125 +0 1 0.3438 +0 1 0.375 +0 1 0.4062 +0 1 0.4375 +0 1 0.4688 +0 1 0.5 +0 1 0.5312 +0 1 0.5625 +0 1 0.5938 +0 1 0.625 +0 1 0.6562 +0 1 0.6875 +0 1 0.7188 +0 1 0.75 +0 1 0.7812 +0 1 0.8125 +0 1 0.8438 +0 1 0.875 +0 1 0.9062 +0 1 0.9375 +0 1 0.9688 +0 1 1 +0.03125 0 0 +0.03125 0 0.03125 +0.03125 0 0.0625 +0.03125 0 0.09375 +0.03125 0 0.125 +0.03125 0 0.1562 +0.03125 0 0.1875 +0.03125 0 0.2188 +0.03125 0 0.25 +0.03125 0 0.2812 +0.03125 0 0.3125 +0.03125 0 0.3438 +0.03125 0 0.375 +0.03125 0 0.4062 +0.03125 0 0.4375 +0.03125 0 0.4688 +0.03125 0 0.5 +0.03125 0 0.5312 +0.03125 0 0.5625 +0.03125 0 0.5938 +0.03125 0 0.625 +0.03125 0 0.6562 +0.03125 0 0.6875 +0.03125 0 0.7188 +0.03125 0 0.75 +0.03125 0 0.7812 +0.03125 0 0.8125 +0.03125 0 0.8438 +0.03125 0 0.875 +0.03125 0 0.9062 +0.03125 0 0.9375 +0.03125 0 0.9688 +0.03125 0 1 +0.03125 0.03125 0 +0.03125 0.03125 0.03125 +0.03125 0.03125 0.0625 +0.03125 0.03125 0.09375 +0.03125 0.03125 0.125 +0.03125 0.03125 0.1562 +0.03125 0.03125 0.1875 +0.03125 0.03125 0.2188 +0.03125 0.03125 0.25 +0.03125 0.03125 0.2812 +0.03125 0.03125 0.3125 +0.03125 0.03125 0.3438 +0.03125 0.03125 0.375 +0.03125 0.03125 0.4062 +0.03125 0.03125 0.4375 +0.03125 0.03125 0.4688 +0.03125 0.03125 0.5 +0.03125 0.03125 0.5312 +0.03125 0.03125 0.5625 +0.03125 0.03125 0.5938 +0.03125 0.03125 0.625 +0.03125 0.03125 0.6562 +0.03125 0.03125 0.6875 +0.03125 0.03125 0.7188 +0.03125 0.03125 0.75 +0.03125 0.03125 0.7812 +0.03125 0.03125 0.8125 +0.03125 0.03125 0.8438 +0.03125 0.03125 0.875 +0.03125 0.03125 0.9062 +0.03125 0.03125 0.9375 +0.03125 0.03125 0.9688 +0.03125 0.03125 1 +0.03125 0.0625 0 +0.03125 0.0625 0.03125 +0.03125 0.0625 0.0625 +0.03125 0.0625 0.09375 +0.03125 0.0625 0.125 +0.03125 0.0625 0.1562 +0.03125 0.0625 0.1875 +0.03125 0.0625 0.2188 +0.03125 0.0625 0.25 +0.03125 0.0625 0.2812 +0.03125 0.0625 0.3125 +0.03125 0.0625 0.3438 +0.03125 0.0625 0.375 +0.03125 0.0625 0.4062 +0.03125 0.0625 0.4375 +0.03125 0.0625 0.4688 +0.03125 0.0625 0.5 +0.03125 0.0625 0.5312 +0.03125 0.0625 0.5625 +0.03125 0.0625 0.5938 +0.03125 0.0625 0.625 +0.03125 0.0625 0.6562 +0.03125 0.0625 0.6875 +0.03125 0.0625 0.7188 +0.03125 0.0625 0.75 +0.03125 0.0625 0.7812 +0.03125 0.0625 0.8125 +0.03125 0.0625 0.8438 +0.03125 0.0625 0.875 +0.03125 0.0625 0.9062 +0.03125 0.0625 0.9375 +0.03125 0.0625 0.9688 +0.03125 0.0625 1 +0.03125 0.09375 0 +0.03125 0.09375 0.03125 +0.03125 0.09375 0.0625 +0.03125 0.09375 0.09375 +0.03125 0.09375 0.125 +0.03125 0.09375 0.1562 +0.03125 0.09375 0.1875 +0.03125 0.09375 0.2188 +0.03125 0.09375 0.25 +0.03125 0.09375 0.2812 +0.03125 0.09375 0.3125 +0.03125 0.09375 0.3438 +0.03125 0.09375 0.375 +0.03125 0.09375 0.4062 +0.03125 0.09375 0.4375 +0.03125 0.09375 0.4688 +0.03125 0.09375 0.5 +0.03125 0.09375 0.5312 +0.03125 0.09375 0.5625 +0.03125 0.09375 0.5938 +0.03125 0.09375 0.625 +0.03125 0.09375 0.6562 +0.03125 0.09375 0.6875 +0.03125 0.09375 0.7188 +0.03125 0.09375 0.75 +0.03125 0.09375 0.7812 +0.03125 0.09375 0.8125 +0.03125 0.09375 0.8438 +0.03125 0.09375 0.875 +0.03125 0.09375 0.9062 +0.03125 0.09375 0.9375 +0.03125 0.09375 0.9688 +0.03125 0.09375 1 +0.03125 0.125 0 +0.03125 0.125 0.03125 +0.03125 0.125 0.0625 +0.03125 0.125 0.09375 +0.03125 0.125 0.125 +0.03125 0.125 0.1562 +0.03125 0.125 0.1875 +0.03125 0.125 0.2188 +0.03125 0.125 0.25 +0.03125 0.125 0.2812 +0.03125 0.125 0.3125 +0.03125 0.125 0.3438 +0.03125 0.125 0.375 +0.03125 0.125 0.4062 +0.03125 0.125 0.4375 +0.03125 0.125 0.4688 +0.03125 0.125 0.5 +0.03125 0.125 0.5312 +0.03125 0.125 0.5625 +0.03125 0.125 0.5938 +0.03125 0.125 0.625 +0.03125 0.125 0.6562 +0.03125 0.125 0.6875 +0.03125 0.125 0.7188 +0.03125 0.125 0.75 +0.03125 0.125 0.7812 +0.03125 0.125 0.8125 +0.03125 0.125 0.8438 +0.03125 0.125 0.875 +0.03125 0.125 0.9062 +0.03125 0.125 0.9375 +0.03125 0.125 0.9688 +0.03125 0.125 1 +0.03125 0.1562 0 +0.03125 0.1562 0.03125 +0.03125 0.1562 0.0625 +0.03125 0.1562 0.09375 +0.03125 0.1562 0.125 +0.03125 0.1562 0.1562 +0.03125 0.1562 0.1875 +0.03125 0.1562 0.2188 +0.03125 0.1562 0.25 +0.03125 0.1562 0.2812 +0.03125 0.1562 0.3125 +0.03125 0.1562 0.3438 +0.03125 0.1562 0.375 +0.03125 0.1562 0.4062 +0.03125 0.1562 0.4375 +0.03125 0.1562 0.4688 +0.03125 0.1562 0.5 +0.03125 0.1562 0.5312 +0.03125 0.1562 0.5625 +0.03125 0.1562 0.5938 +0.03125 0.1562 0.625 +0.03125 0.1562 0.6562 +0.03125 0.1562 0.6875 +0.03125 0.1562 0.7188 +0.03125 0.1562 0.75 +0.03125 0.1562 0.7812 +0.03125 0.1562 0.8125 +0.03125 0.1562 0.8438 +0.03125 0.1562 0.875 +0.03125 0.1562 0.9062 +0.03125 0.1562 0.9375 +0.03125 0.1562 0.9688 +0.03125 0.1562 1 +0.03125 0.1875 0 +0.03125 0.1875 0.03125 +0.03125 0.1875 0.0625 +0.03125 0.1875 0.09375 +0.03125 0.1875 0.125 +0.03125 0.1875 0.1562 +0.03125 0.1875 0.1875 +0.03125 0.1875 0.2188 +0.03125 0.1875 0.25 +0.03125 0.1875 0.2812 +0.03125 0.1875 0.3125 +0.03125 0.1875 0.3438 +0.03125 0.1875 0.375 +0.03125 0.1875 0.4062 +0.03125 0.1875 0.4375 +0.03125 0.1875 0.4688 +0.03125 0.1875 0.5 +0.03125 0.1875 0.5312 +0.03125 0.1875 0.5625 +0.03125 0.1875 0.5938 +0.03125 0.1875 0.625 +0.03125 0.1875 0.6562 +0.03125 0.1875 0.6875 +0.03125 0.1875 0.7188 +0.03125 0.1875 0.75 +0.03125 0.1875 0.7812 +0.03125 0.1875 0.8125 +0.03125 0.1875 0.8438 +0.03125 0.1875 0.875 +0.03125 0.1875 0.9062 +0.03125 0.1875 0.9375 +0.03125 0.1875 0.9688 +0.03125 0.1875 1 +0.03125 0.2188 0 +0.03125 0.2188 0.03125 +0.03125 0.2188 0.0625 +0.03125 0.2188 0.09375 +0.03125 0.2188 0.125 +0.03125 0.2188 0.1562 +0.03125 0.2188 0.1875 +0.03125 0.2188 0.2188 +0.03125 0.2188 0.25 +0.03125 0.2188 0.2812 +0.03125 0.2188 0.3125 +0.03125 0.2188 0.3438 +0.03125 0.2188 0.375 +0.03125 0.2188 0.4062 +0.03125 0.2188 0.4375 +0.03125 0.2188 0.4688 +0.03125 0.2188 0.5 +0.03125 0.2188 0.5312 +0.03125 0.2188 0.5625 +0.03125 0.2188 0.5938 +0.03125 0.2188 0.625 +0.03125 0.2188 0.6562 +0.03125 0.2188 0.6875 +0.03125 0.2188 0.7188 +0.03125 0.2188 0.75 +0.03125 0.2188 0.7812 +0.03125 0.2188 0.8125 +0.03125 0.2188 0.8438 +0.03125 0.2188 0.875 +0.03125 0.2188 0.9062 +0.03125 0.2188 0.9375 +0.03125 0.2188 0.9688 +0.03125 0.2188 1 +0.03125 0.25 0 +0.03125 0.25 0.03125 +0.03125 0.25 0.0625 +0.03125 0.25 0.09375 +0.03125 0.25 0.125 +0.03125 0.25 0.1562 +0.03125 0.25 0.1875 +0.03125 0.25 0.2188 +0.03125 0.25 0.25 +0.03125 0.25 0.2812 +0.03125 0.25 0.3125 +0.03125 0.25 0.3438 +0.03125 0.25 0.375 +0.03125 0.25 0.4062 +0.03125 0.25 0.4375 +0.03125 0.25 0.4688 +0.03125 0.25 0.5 +0.03125 0.25 0.5312 +0.03125 0.25 0.5625 +0.03125 0.25 0.5938 +0.03125 0.25 0.625 +0.03125 0.25 0.6562 +0.03125 0.25 0.6875 +0.03125 0.25 0.7188 +0.03125 0.25 0.75 +0.03125 0.25 0.7812 +0.03125 0.25 0.8125 +0.03125 0.25 0.8438 +0.03125 0.25 0.875 +0.03125 0.25 0.9062 +0.03125 0.25 0.9375 +0.03125 0.25 0.9688 +0.03125 0.25 1 +0.03125 0.2812 0 +0.03125 0.2812 0.03125 +0.03125 0.2812 0.0625 +0.03125 0.2812 0.09375 +0.03125 0.2812 0.125 +0.03125 0.2812 0.1562 +0.03125 0.2812 0.1875 +0.03125 0.2812 0.2188 +0.03125 0.2812 0.25 +0.03125 0.2812 0.2812 +0.03125 0.2812 0.3125 +0.03125 0.2812 0.3438 +0.03125 0.2812 0.375 +0.03125 0.2812 0.4062 +0.03125 0.2812 0.4375 +0.03125 0.2812 0.4688 +0.03125 0.2812 0.5 +0.03125 0.2812 0.5312 +0.03125 0.2812 0.5625 +0.03125 0.2812 0.5938 +0.03125 0.2812 0.625 +0.03125 0.2812 0.6562 +0.03125 0.2812 0.6875 +0.03125 0.2812 0.7188 +0.03125 0.2812 0.75 +0.03125 0.2812 0.7812 +0.03125 0.2812 0.8125 +0.03125 0.2812 0.8438 +0.03125 0.2812 0.875 +0.03125 0.2812 0.9062 +0.03125 0.2812 0.9375 +0.03125 0.2812 0.9688 +0.03125 0.2812 1 +0.03125 0.3125 0 +0.03125 0.3125 0.03125 +0.03125 0.3125 0.0625 +0.03125 0.3125 0.09375 +0.03125 0.3125 0.125 +0.03125 0.3125 0.1562 +0.03125 0.3125 0.1875 +0.03125 0.3125 0.2188 +0.03125 0.3125 0.25 +0.03125 0.3125 0.2812 +0.03125 0.3125 0.3125 +0.03125 0.3125 0.3438 +0.03125 0.3125 0.375 +0.03125 0.3125 0.4062 +0.03125 0.3125 0.4375 +0.03125 0.3125 0.4688 +0.03125 0.3125 0.5 +0.03125 0.3125 0.5312 +0.03125 0.3125 0.5625 +0.03125 0.3125 0.5938 +0.03125 0.3125 0.625 +0.03125 0.3125 0.6562 +0.03125 0.3125 0.6875 +0.03125 0.3125 0.7188 +0.03125 0.3125 0.75 +0.03125 0.3125 0.7812 +0.03125 0.3125 0.8125 +0.03125 0.3125 0.8438 +0.03125 0.3125 0.875 +0.03125 0.3125 0.9062 +0.03125 0.3125 0.9375 +0.03125 0.3125 0.9688 +0.03125 0.3125 1 +0.03125 0.3438 0 +0.03125 0.3438 0.03125 +0.03125 0.3438 0.0625 +0.03125 0.3438 0.09375 +0.03125 0.3438 0.125 +0.03125 0.3438 0.1562 +0.03125 0.3438 0.1875 +0.03125 0.3438 0.2188 +0.03125 0.3438 0.25 +0.03125 0.3438 0.2812 +0.03125 0.3438 0.3125 +0.03125 0.3438 0.3438 +0.03125 0.3438 0.375 +0.03125 0.3438 0.4062 +0.03125 0.3438 0.4375 +0.03125 0.3438 0.4688 +0.03125 0.3438 0.5 +0.03125 0.3438 0.5312 +0.03125 0.3438 0.5625 +0.03125 0.3438 0.5938 +0.03125 0.3438 0.625 +0.03125 0.3438 0.6562 +0.03125 0.3438 0.6875 +0.03125 0.3438 0.7188 +0.03125 0.3438 0.75 +0.03125 0.3438 0.7812 +0.03125 0.3438 0.8125 +0.03125 0.3438 0.8438 +0.03125 0.3438 0.875 +0.03125 0.3438 0.9062 +0.03125 0.3438 0.9375 +0.03125 0.3438 0.9688 +0.03125 0.3438 1 +0.03125 0.375 0 +0.03125 0.375 0.03125 +0.03125 0.375 0.0625 +0.03125 0.375 0.09375 +0.03125 0.375 0.125 +0.03125 0.375 0.1562 +0.03125 0.375 0.1875 +0.03125 0.375 0.2188 +0.03125 0.375 0.25 +0.03125 0.375 0.2812 +0.03125 0.375 0.3125 +0.03125 0.375 0.3438 +0.03125 0.375 0.375 +0.03125 0.375 0.4062 +0.03125 0.375 0.4375 +0.03125 0.375 0.4688 +0.03125 0.375 0.5 +0.03125 0.375 0.5312 +0.03125 0.375 0.5625 +0.03125 0.375 0.5938 +0.03125 0.375 0.625 +0.03125 0.375 0.6562 +0.03125 0.375 0.6875 +0.03125 0.375 0.7188 +0.03125 0.375 0.75 +0.03125 0.375 0.7812 +0.03125 0.375 0.8125 +0.03125 0.375 0.8438 +0.03125 0.375 0.875 +0.03125 0.375 0.9062 +0.03125 0.375 0.9375 +0.03125 0.375 0.9688 +0.03125 0.375 1 +0.03125 0.4062 0 +0.03125 0.4062 0.03125 +0.03125 0.4062 0.0625 +0.03125 0.4062 0.09375 +0.03125 0.4062 0.125 +0.03125 0.4062 0.1562 +0.03125 0.4062 0.1875 +0.03125 0.4062 0.2188 +0.03125 0.4062 0.25 +0.03125 0.4062 0.2812 +0.03125 0.4062 0.3125 +0.03125 0.4062 0.3438 +0.03125 0.4062 0.375 +0.03125 0.4062 0.4062 +0.03125 0.4062 0.4375 +0.03125 0.4062 0.4688 +0.03125 0.4062 0.5 +0.03125 0.4062 0.5312 +0.03125 0.4062 0.5625 +0.03125 0.4062 0.5938 +0.03125 0.4062 0.625 +0.03125 0.4062 0.6562 +0.03125 0.4062 0.6875 +0.03125 0.4062 0.7188 +0.03125 0.4062 0.75 +0.03125 0.4062 0.7812 +0.03125 0.4062 0.8125 +0.03125 0.4062 0.8438 +0.03125 0.4062 0.875 +0.03125 0.4062 0.9062 +0.03125 0.4062 0.9375 +0.03125 0.4062 0.9688 +0.03125 0.4062 1 +0.03125 0.4375 0 +0.03125 0.4375 0.03125 +0.03125 0.4375 0.0625 +0.03125 0.4375 0.09375 +0.03125 0.4375 0.125 +0.03125 0.4375 0.1562 +0.03125 0.4375 0.1875 +0.03125 0.4375 0.2188 +0.03125 0.4375 0.25 +0.03125 0.4375 0.2812 +0.03125 0.4375 0.3125 +0.03125 0.4375 0.3438 +0.03125 0.4375 0.375 +0.03125 0.4375 0.4062 +0.03125 0.4375 0.4375 +0.03125 0.4375 0.4688 +0.03125 0.4375 0.5 +0.03125 0.4375 0.5312 +0.03125 0.4375 0.5625 +0.03125 0.4375 0.5938 +0.03125 0.4375 0.625 +0.03125 0.4375 0.6562 +0.03125 0.4375 0.6875 +0.03125 0.4375 0.7188 +0.03125 0.4375 0.75 +0.03125 0.4375 0.7812 +0.03125 0.4375 0.8125 +0.03125 0.4375 0.8438 +0.03125 0.4375 0.875 +0.03125 0.4375 0.9062 +0.03125 0.4375 0.9375 +0.03125 0.4375 0.9688 +0.03125 0.4375 1 +0.03125 0.4688 0 +0.03125 0.4688 0.03125 +0.03125 0.4688 0.0625 +0.03125 0.4688 0.09375 +0.03125 0.4688 0.125 +0.03125 0.4688 0.1562 +0.03125 0.4688 0.1875 +0.03125 0.4688 0.2188 +0.03125 0.4688 0.25 +0.03125 0.4688 0.2812 +0.03125 0.4688 0.3125 +0.03125 0.4688 0.3438 +0.03125 0.4688 0.375 +0.03125 0.4688 0.4062 +0.03125 0.4688 0.4375 +0.03125 0.4688 0.4688 +0.03125 0.4688 0.5 +0.03125 0.4688 0.5312 +0.03125 0.4688 0.5625 +0.03125 0.4688 0.5938 +0.03125 0.4688 0.625 +0.03125 0.4688 0.6562 +0.03125 0.4688 0.6875 +0.03125 0.4688 0.7188 +0.03125 0.4688 0.75 +0.03125 0.4688 0.7812 +0.03125 0.4688 0.8125 +0.03125 0.4688 0.8438 +0.03125 0.4688 0.875 +0.03125 0.4688 0.9062 +0.03125 0.4688 0.9375 +0.03125 0.4688 0.9688 +0.03125 0.4688 1 +0.03125 0.5 0 +0.03125 0.5 0.03125 +0.03125 0.5 0.0625 +0.03125 0.5 0.09375 +0.03125 0.5 0.125 +0.03125 0.5 0.1562 +0.03125 0.5 0.1875 +0.03125 0.5 0.2188 +0.03125 0.5 0.25 +0.03125 0.5 0.2812 +0.03125 0.5 0.3125 +0.03125 0.5 0.3438 +0.03125 0.5 0.375 +0.03125 0.5 0.4062 +0.03125 0.5 0.4375 +0.03125 0.5 0.4688 +0.03125 0.5 0.5 +0.03125 0.5 0.5312 +0.03125 0.5 0.5625 +0.03125 0.5 0.5938 +0.03125 0.5 0.625 +0.03125 0.5 0.6562 +0.03125 0.5 0.6875 +0.03125 0.5 0.7188 +0.03125 0.5 0.75 +0.03125 0.5 0.7812 +0.03125 0.5 0.8125 +0.03125 0.5 0.8438 +0.03125 0.5 0.875 +0.03125 0.5 0.9062 +0.03125 0.5 0.9375 +0.03125 0.5 0.9688 +0.03125 0.5 1 +0.03125 0.5312 0 +0.03125 0.5312 0.03125 +0.03125 0.5312 0.0625 +0.03125 0.5312 0.09375 +0.03125 0.5312 0.125 +0.03125 0.5312 0.1562 +0.03125 0.5312 0.1875 +0.03125 0.5312 0.2188 +0.03125 0.5312 0.25 +0.03125 0.5312 0.2812 +0.03125 0.5312 0.3125 +0.03125 0.5312 0.3438 +0.03125 0.5312 0.375 +0.03125 0.5312 0.4062 +0.03125 0.5312 0.4375 +0.03125 0.5312 0.4688 +0.03125 0.5312 0.5 +0.03125 0.5312 0.5312 +0.03125 0.5312 0.5625 +0.03125 0.5312 0.5938 +0.03125 0.5312 0.625 +0.03125 0.5312 0.6562 +0.03125 0.5312 0.6875 +0.03125 0.5312 0.7188 +0.03125 0.5312 0.75 +0.03125 0.5312 0.7812 +0.03125 0.5312 0.8125 +0.03125 0.5312 0.8438 +0.03125 0.5312 0.875 +0.03125 0.5312 0.9062 +0.03125 0.5312 0.9375 +0.03125 0.5312 0.9688 +0.03125 0.5312 1 +0.03125 0.5625 0 +0.03125 0.5625 0.03125 +0.03125 0.5625 0.0625 +0.03125 0.5625 0.09375 +0.03125 0.5625 0.125 +0.03125 0.5625 0.1562 +0.03125 0.5625 0.1875 +0.03125 0.5625 0.2188 +0.03125 0.5625 0.25 +0.03125 0.5625 0.2812 +0.03125 0.5625 0.3125 +0.03125 0.5625 0.3438 +0.03125 0.5625 0.375 +0.03125 0.5625 0.4062 +0.03125 0.5625 0.4375 +0.03125 0.5625 0.4688 +0.03125 0.5625 0.5 +0.03125 0.5625 0.5312 +0.03125 0.5625 0.5625 +0.03125 0.5625 0.5938 +0.03125 0.5625 0.625 +0.03125 0.5625 0.6562 +0.03125 0.5625 0.6875 +0.03125 0.5625 0.7188 +0.03125 0.5625 0.75 +0.03125 0.5625 0.7812 +0.03125 0.5625 0.8125 +0.03125 0.5625 0.8438 +0.03125 0.5625 0.875 +0.03125 0.5625 0.9062 +0.03125 0.5625 0.9375 +0.03125 0.5625 0.9688 +0.03125 0.5625 1 +0.03125 0.5938 0 +0.03125 0.5938 0.03125 +0.03125 0.5938 0.0625 +0.03125 0.5938 0.09375 +0.03125 0.5938 0.125 +0.03125 0.5938 0.1562 +0.03125 0.5938 0.1875 +0.03125 0.5938 0.2188 +0.03125 0.5938 0.25 +0.03125 0.5938 0.2812 +0.03125 0.5938 0.3125 +0.03125 0.5938 0.3438 +0.03125 0.5938 0.375 +0.03125 0.5938 0.4062 +0.03125 0.5938 0.4375 +0.03125 0.5938 0.4688 +0.03125 0.5938 0.5 +0.03125 0.5938 0.5312 +0.03125 0.5938 0.5625 +0.03125 0.5938 0.5938 +0.03125 0.5938 0.625 +0.03125 0.5938 0.6562 +0.03125 0.5938 0.6875 +0.03125 0.5938 0.7188 +0.03125 0.5938 0.75 +0.03125 0.5938 0.7812 +0.03125 0.5938 0.8125 +0.03125 0.5938 0.8438 +0.03125 0.5938 0.875 +0.03125 0.5938 0.9062 +0.03125 0.5938 0.9375 +0.03125 0.5938 0.9688 +0.03125 0.5938 1 +0.03125 0.625 0 +0.03125 0.625 0.03125 +0.03125 0.625 0.0625 +0.03125 0.625 0.09375 +0.03125 0.625 0.125 +0.03125 0.625 0.1562 +0.03125 0.625 0.1875 +0.03125 0.625 0.2188 +0.03125 0.625 0.25 +0.03125 0.625 0.2812 +0.03125 0.625 0.3125 +0.03125 0.625 0.3438 +0.03125 0.625 0.375 +0.03125 0.625 0.4062 +0.03125 0.625 0.4375 +0.03125 0.625 0.4688 +0.03125 0.625 0.5 +0.03125 0.625 0.5312 +0.03125 0.625 0.5625 +0.03125 0.625 0.5938 +0.03125 0.625 0.625 +0.03125 0.625 0.6562 +0.03125 0.625 0.6875 +0.03125 0.625 0.7188 +0.03125 0.625 0.75 +0.03125 0.625 0.7812 +0.03125 0.625 0.8125 +0.03125 0.625 0.8438 +0.03125 0.625 0.875 +0.03125 0.625 0.9062 +0.03125 0.625 0.9375 +0.03125 0.625 0.9688 +0.03125 0.625 1 +0.03125 0.6562 0 +0.03125 0.6562 0.03125 +0.03125 0.6562 0.0625 +0.03125 0.6562 0.09375 +0.03125 0.6562 0.125 +0.03125 0.6562 0.1562 +0.03125 0.6562 0.1875 +0.03125 0.6562 0.2188 +0.03125 0.6562 0.25 +0.03125 0.6562 0.2812 +0.03125 0.6562 0.3125 +0.03125 0.6562 0.3438 +0.03125 0.6562 0.375 +0.03125 0.6562 0.4062 +0.03125 0.6562 0.4375 +0.03125 0.6562 0.4688 +0.03125 0.6562 0.5 +0.03125 0.6562 0.5312 +0.03125 0.6562 0.5625 +0.03125 0.6562 0.5938 +0.03125 0.6562 0.625 +0.03125 0.6562 0.6562 +0.03125 0.6562 0.6875 +0.03125 0.6562 0.7188 +0.03125 0.6562 0.75 +0.03125 0.6562 0.7812 +0.03125 0.6562 0.8125 +0.03125 0.6562 0.8438 +0.03125 0.6562 0.875 +0.03125 0.6562 0.9062 +0.03125 0.6562 0.9375 +0.03125 0.6562 0.9688 +0.03125 0.6562 1 +0.03125 0.6875 0 +0.03125 0.6875 0.03125 +0.03125 0.6875 0.0625 +0.03125 0.6875 0.09375 +0.03125 0.6875 0.125 +0.03125 0.6875 0.1562 +0.03125 0.6875 0.1875 +0.03125 0.6875 0.2188 +0.03125 0.6875 0.25 +0.03125 0.6875 0.2812 +0.03125 0.6875 0.3125 +0.03125 0.6875 0.3438 +0.03125 0.6875 0.375 +0.03125 0.6875 0.4062 +0.03125 0.6875 0.4375 +0.03125 0.6875 0.4688 +0.03125 0.6875 0.5 +0.03125 0.6875 0.5312 +0.03125 0.6875 0.5625 +0.03125 0.6875 0.5938 +0.03125 0.6875 0.625 +0.03125 0.6875 0.6562 +0.03125 0.6875 0.6875 +0.03125 0.6875 0.7188 +0.03125 0.6875 0.75 +0.03125 0.6875 0.7812 +0.03125 0.6875 0.8125 +0.03125 0.6875 0.8438 +0.03125 0.6875 0.875 +0.03125 0.6875 0.9062 +0.03125 0.6875 0.9375 +0.03125 0.6875 0.9688 +0.03125 0.6875 1 +0.03125 0.7188 0 +0.03125 0.7188 0.03125 +0.03125 0.7188 0.0625 +0.03125 0.7188 0.09375 +0.03125 0.7188 0.125 +0.03125 0.7188 0.1562 +0.03125 0.7188 0.1875 +0.03125 0.7188 0.2188 +0.03125 0.7188 0.25 +0.03125 0.7188 0.2812 +0.03125 0.7188 0.3125 +0.03125 0.7188 0.3438 +0.03125 0.7188 0.375 +0.03125 0.7188 0.4062 +0.03125 0.7188 0.4375 +0.03125 0.7188 0.4688 +0.03125 0.7188 0.5 +0.03125 0.7188 0.5312 +0.03125 0.7188 0.5625 +0.03125 0.7188 0.5938 +0.03125 0.7188 0.625 +0.03125 0.7188 0.6562 +0.03125 0.7188 0.6875 +0.03125 0.7188 0.7188 +0.03125 0.7188 0.75 +0.03125 0.7188 0.7812 +0.03125 0.7188 0.8125 +0.03125 0.7188 0.8438 +0.03125 0.7188 0.875 +0.03125 0.7188 0.9062 +0.03125 0.7188 0.9375 +0.03125 0.7188 0.9688 +0.03125 0.7188 1 +0.03125 0.75 0 +0.03125 0.75 0.03125 +0.03125 0.75 0.0625 +0.03125 0.75 0.09375 +0.03125 0.75 0.125 +0.03125 0.75 0.1562 +0.03125 0.75 0.1875 +0.03125 0.75 0.2188 +0.03125 0.75 0.25 +0.03125 0.75 0.2812 +0.03125 0.75 0.3125 +0.03125 0.75 0.3438 +0.03125 0.75 0.375 +0.03125 0.75 0.4062 +0.03125 0.75 0.4375 +0.03125 0.75 0.4688 +0.03125 0.75 0.5 +0.03125 0.75 0.5312 +0.03125 0.75 0.5625 +0.03125 0.75 0.5938 +0.03125 0.75 0.625 +0.03125 0.75 0.6562 +0.03125 0.75 0.6875 +0.03125 0.75 0.7188 +0.03125 0.75 0.75 +0.03125 0.75 0.7812 +0.03125 0.75 0.8125 +0.03125 0.75 0.8438 +0.03125 0.75 0.875 +0.03125 0.75 0.9062 +0.03125 0.75 0.9375 +0.03125 0.75 0.9688 +0.03125 0.75 1 +0.03125 0.7812 0 +0.03125 0.7812 0.03125 +0.03125 0.7812 0.0625 +0.03125 0.7812 0.09375 +0.03125 0.7812 0.125 +0.03125 0.7812 0.1562 +0.03125 0.7812 0.1875 +0.03125 0.7812 0.2188 +0.03125 0.7812 0.25 +0.03125 0.7812 0.2812 +0.03125 0.7812 0.3125 +0.03125 0.7812 0.3438 +0.03125 0.7812 0.375 +0.03125 0.7812 0.4062 +0.03125 0.7812 0.4375 +0.03125 0.7812 0.4688 +0.03125 0.7812 0.5 +0.03125 0.7812 0.5312 +0.03125 0.7812 0.5625 +0.03125 0.7812 0.5938 +0.03125 0.7812 0.625 +0.03125 0.7812 0.6562 +0.03125 0.7812 0.6875 +0.03125 0.7812 0.7188 +0.03125 0.7812 0.75 +0.03125 0.7812 0.7812 +0.03125 0.7812 0.8125 +0.03125 0.7812 0.8438 +0.03125 0.7812 0.875 +0.03125 0.7812 0.9062 +0.03125 0.7812 0.9375 +0.03125 0.7812 0.9688 +0.03125 0.7812 1 +0.03125 0.8125 0 +0.03125 0.8125 0.03125 +0.03125 0.8125 0.0625 +0.03125 0.8125 0.09375 +0.03125 0.8125 0.125 +0.03125 0.8125 0.1562 +0.03125 0.8125 0.1875 +0.03125 0.8125 0.2188 +0.03125 0.8125 0.25 +0.03125 0.8125 0.2812 +0.03125 0.8125 0.3125 +0.03125 0.8125 0.3438 +0.03125 0.8125 0.375 +0.03125 0.8125 0.4062 +0.03125 0.8125 0.4375 +0.03125 0.8125 0.4688 +0.03125 0.8125 0.5 +0.03125 0.8125 0.5312 +0.03125 0.8125 0.5625 +0.03125 0.8125 0.5938 +0.03125 0.8125 0.625 +0.03125 0.8125 0.6562 +0.03125 0.8125 0.6875 +0.03125 0.8125 0.7188 +0.03125 0.8125 0.75 +0.03125 0.8125 0.7812 +0.03125 0.8125 0.8125 +0.03125 0.8125 0.8438 +0.03125 0.8125 0.875 +0.03125 0.8125 0.9062 +0.03125 0.8125 0.9375 +0.03125 0.8125 0.9688 +0.03125 0.8125 1 +0.03125 0.8438 0 +0.03125 0.8438 0.03125 +0.03125 0.8438 0.0625 +0.03125 0.8438 0.09375 +0.03125 0.8438 0.125 +0.03125 0.8438 0.1562 +0.03125 0.8438 0.1875 +0.03125 0.8438 0.2188 +0.03125 0.8438 0.25 +0.03125 0.8438 0.2812 +0.03125 0.8438 0.3125 +0.03125 0.8438 0.3438 +0.03125 0.8438 0.375 +0.03125 0.8438 0.4062 +0.03125 0.8438 0.4375 +0.03125 0.8438 0.4688 +0.03125 0.8438 0.5 +0.03125 0.8438 0.5312 +0.03125 0.8438 0.5625 +0.03125 0.8438 0.5938 +0.03125 0.8438 0.625 +0.03125 0.8438 0.6562 +0.03125 0.8438 0.6875 +0.03125 0.8438 0.7188 +0.03125 0.8438 0.75 +0.03125 0.8438 0.7812 +0.03125 0.8438 0.8125 +0.03125 0.8438 0.8438 +0.03125 0.8438 0.875 +0.03125 0.8438 0.9062 +0.03125 0.8438 0.9375 +0.03125 0.8438 0.9688 +0.03125 0.8438 1 +0.03125 0.875 0 +0.03125 0.875 0.03125 +0.03125 0.875 0.0625 +0.03125 0.875 0.09375 +0.03125 0.875 0.125 +0.03125 0.875 0.1562 +0.03125 0.875 0.1875 +0.03125 0.875 0.2188 +0.03125 0.875 0.25 +0.03125 0.875 0.2812 +0.03125 0.875 0.3125 +0.03125 0.875 0.3438 +0.03125 0.875 0.375 +0.03125 0.875 0.4062 +0.03125 0.875 0.4375 +0.03125 0.875 0.4688 +0.03125 0.875 0.5 +0.03125 0.875 0.5312 +0.03125 0.875 0.5625 +0.03125 0.875 0.5938 +0.03125 0.875 0.625 +0.03125 0.875 0.6562 +0.03125 0.875 0.6875 +0.03125 0.875 0.7188 +0.03125 0.875 0.75 +0.03125 0.875 0.7812 +0.03125 0.875 0.8125 +0.03125 0.875 0.8438 +0.03125 0.875 0.875 +0.03125 0.875 0.9062 +0.03125 0.875 0.9375 +0.03125 0.875 0.9688 +0.03125 0.875 1 +0.03125 0.9062 0 +0.03125 0.9062 0.03125 +0.03125 0.9062 0.0625 +0.03125 0.9062 0.09375 +0.03125 0.9062 0.125 +0.03125 0.9062 0.1562 +0.03125 0.9062 0.1875 +0.03125 0.9062 0.2188 +0.03125 0.9062 0.25 +0.03125 0.9062 0.2812 +0.03125 0.9062 0.3125 +0.03125 0.9062 0.3438 +0.03125 0.9062 0.375 +0.03125 0.9062 0.4062 +0.03125 0.9062 0.4375 +0.03125 0.9062 0.4688 +0.03125 0.9062 0.5 +0.03125 0.9062 0.5312 +0.03125 0.9062 0.5625 +0.03125 0.9062 0.5938 +0.03125 0.9062 0.625 +0.03125 0.9062 0.6562 +0.03125 0.9062 0.6875 +0.03125 0.9062 0.7188 +0.03125 0.9062 0.75 +0.03125 0.9062 0.7812 +0.03125 0.9062 0.8125 +0.03125 0.9062 0.8438 +0.03125 0.9062 0.875 +0.03125 0.9062 0.9062 +0.03125 0.9062 0.9375 +0.03125 0.9062 0.9688 +0.03125 0.9062 1 +0.03125 0.9375 0 +0.03125 0.9375 0.03125 +0.03125 0.9375 0.0625 +0.03125 0.9375 0.09375 +0.03125 0.9375 0.125 +0.03125 0.9375 0.1562 +0.03125 0.9375 0.1875 +0.03125 0.9375 0.2188 +0.03125 0.9375 0.25 +0.03125 0.9375 0.2812 +0.03125 0.9375 0.3125 +0.03125 0.9375 0.3438 +0.03125 0.9375 0.375 +0.03125 0.9375 0.4062 +0.03125 0.9375 0.4375 +0.03125 0.9375 0.4688 +0.03125 0.9375 0.5 +0.03125 0.9375 0.5312 +0.03125 0.9375 0.5625 +0.03125 0.9375 0.5938 +0.03125 0.9375 0.625 +0.03125 0.9375 0.6562 +0.03125 0.9375 0.6875 +0.03125 0.9375 0.7188 +0.03125 0.9375 0.75 +0.03125 0.9375 0.7812 +0.03125 0.9375 0.8125 +0.03125 0.9375 0.8438 +0.03125 0.9375 0.875 +0.03125 0.9375 0.9062 +0.03125 0.9375 0.9375 +0.03125 0.9375 0.9688 +0.03125 0.9375 1 +0.03125 0.9688 0 +0.03125 0.9688 0.03125 +0.03125 0.9688 0.0625 +0.03125 0.9688 0.09375 +0.03125 0.9688 0.125 +0.03125 0.9688 0.1562 +0.03125 0.9688 0.1875 +0.03125 0.9688 0.2188 +0.03125 0.9688 0.25 +0.03125 0.9688 0.2812 +0.03125 0.9688 0.3125 +0.03125 0.9688 0.3438 +0.03125 0.9688 0.375 +0.03125 0.9688 0.4062 +0.03125 0.9688 0.4375 +0.03125 0.9688 0.4688 +0.03125 0.9688 0.5 +0.03125 0.9688 0.5312 +0.03125 0.9688 0.5625 +0.03125 0.9688 0.5938 +0.03125 0.9688 0.625 +0.03125 0.9688 0.6562 +0.03125 0.9688 0.6875 +0.03125 0.9688 0.7188 +0.03125 0.9688 0.75 +0.03125 0.9688 0.7812 +0.03125 0.9688 0.8125 +0.03125 0.9688 0.8438 +0.03125 0.9688 0.875 +0.03125 0.9688 0.9062 +0.03125 0.9688 0.9375 +0.03125 0.9688 0.9688 +0.03125 0.9688 1 +0.03125 1 0 +0.03125 1 0.03125 +0.03125 1 0.0625 +0.03125 1 0.09375 +0.03125 1 0.125 +0.03125 1 0.1562 +0.03125 1 0.1875 +0.03125 1 0.2188 +0.03125 1 0.25 +0.03125 1 0.2812 +0.03125 1 0.3125 +0.03125 1 0.3438 +0.03125 1 0.375 +0.03125 1 0.4062 +0.03125 1 0.4375 +0.03125 1 0.4688 +0.03125 1 0.5 +0.03125 1 0.5312 +0.03125 1 0.5625 +0.03125 1 0.5938 +0.03125 1 0.625 +0.03125 1 0.6562 +0.03125 1 0.6875 +0.03125 1 0.7188 +0.03125 1 0.75 +0.03125 1 0.7812 +0.03125 1 0.8125 +0.03125 1 0.8438 +0.03125 1 0.875 +0.03125 1 0.9062 +0.03125 1 0.9375 +0.03125 1 0.9688 +0.03125 1 1 +0.0625 0 0 +0.0625 0 0.03125 +0.0625 0 0.0625 +0.0625 0 0.09375 +0.0625 0 0.125 +0.0625 0 0.1562 +0.0625 0 0.1875 +0.0625 0 0.2188 +0.0625 0 0.25 +0.0625 0 0.2812 +0.0625 0 0.3125 +0.0625 0 0.3438 +0.0625 0 0.375 +0.0625 0 0.4062 +0.0625 0 0.4375 +0.0625 0 0.4688 +0.0625 0 0.5 +0.0625 0 0.5312 +0.0625 0 0.5625 +0.0625 0 0.5938 +0.0625 0 0.625 +0.0625 0 0.6562 +0.0625 0 0.6875 +0.0625 0 0.7188 +0.0625 0 0.75 +0.0625 0 0.7812 +0.0625 0 0.8125 +0.0625 0 0.8438 +0.0625 0 0.875 +0.0625 0 0.9062 +0.0625 0 0.9375 +0.0625 0 0.9688 +0.0625 0 1 +0.0625 0.03125 0 +0.0625 0.03125 0.03125 +0.0625 0.03125 0.0625 +0.0625 0.03125 0.09375 +0.0625 0.03125 0.125 +0.0625 0.03125 0.1562 +0.0625 0.03125 0.1875 +0.0625 0.03125 0.2188 +0.0625 0.03125 0.25 +0.0625 0.03125 0.2812 +0.0625 0.03125 0.3125 +0.0625 0.03125 0.3438 +0.0625 0.03125 0.375 +0.0625 0.03125 0.4062 +0.0625 0.03125 0.4375 +0.0625 0.03125 0.4688 +0.0625 0.03125 0.5 +0.0625 0.03125 0.5312 +0.0625 0.03125 0.5625 +0.0625 0.03125 0.5938 +0.0625 0.03125 0.625 +0.0625 0.03125 0.6562 +0.0625 0.03125 0.6875 +0.0625 0.03125 0.7188 +0.0625 0.03125 0.75 +0.0625 0.03125 0.7812 +0.0625 0.03125 0.8125 +0.0625 0.03125 0.8438 +0.0625 0.03125 0.875 +0.0625 0.03125 0.9062 +0.0625 0.03125 0.9375 +0.0625 0.03125 0.9688 +0.0625 0.03125 1 +0.0625 0.0625 0 +0.0625 0.0625 0.03125 +0.0625 0.0625 0.0625 +0.0625 0.0625 0.09375 +0.0625 0.0625 0.125 +0.0625 0.0625 0.1562 +0.0625 0.0625 0.1875 +0.0625 0.0625 0.2188 +0.0625 0.0625 0.25 +0.0625 0.0625 0.2812 +0.0625 0.0625 0.3125 +0.0625 0.0625 0.3438 +0.0625 0.0625 0.375 +0.0625 0.0625 0.4062 +0.0625 0.0625 0.4375 +0.0625 0.0625 0.4688 +0.0625 0.0625 0.5 +0.0625 0.0625 0.5312 +0.0625 0.0625 0.5625 +0.0625 0.0625 0.5938 +0.0625 0.0625 0.625 +0.0625 0.0625 0.6562 +0.0625 0.0625 0.6875 +0.0625 0.0625 0.7188 +0.0625 0.0625 0.75 +0.0625 0.0625 0.7812 +0.0625 0.0625 0.8125 +0.0625 0.0625 0.8438 +0.0625 0.0625 0.875 +0.0625 0.0625 0.9062 +0.0625 0.0625 0.9375 +0.0625 0.0625 0.9688 +0.0625 0.0625 1 +0.0625 0.09375 0 +0.0625 0.09375 0.03125 +0.0625 0.09375 0.0625 +0.0625 0.09375 0.09375 +0.0625 0.09375 0.125 +0.0625 0.09375 0.1562 +0.0625 0.09375 0.1875 +0.0625 0.09375 0.2188 +0.0625 0.09375 0.25 +0.0625 0.09375 0.2812 +0.0625 0.09375 0.3125 +0.0625 0.09375 0.3438 +0.0625 0.09375 0.375 +0.0625 0.09375 0.4062 +0.0625 0.09375 0.4375 +0.0625 0.09375 0.4688 +0.0625 0.09375 0.5 +0.0625 0.09375 0.5312 +0.0625 0.09375 0.5625 +0.0625 0.09375 0.5938 +0.0625 0.09375 0.625 +0.0625 0.09375 0.6562 +0.0625 0.09375 0.6875 +0.0625 0.09375 0.7188 +0.0625 0.09375 0.75 +0.0625 0.09375 0.7812 +0.0625 0.09375 0.8125 +0.0625 0.09375 0.8438 +0.0625 0.09375 0.875 +0.0625 0.09375 0.9062 +0.0625 0.09375 0.9375 +0.0625 0.09375 0.9688 +0.0625 0.09375 1 +0.0625 0.125 0 +0.0625 0.125 0.03125 +0.0625 0.125 0.0625 +0.0625 0.125 0.09375 +0.0625 0.125 0.125 +0.0625 0.125 0.1562 +0.0625 0.125 0.1875 +0.0625 0.125 0.2188 +0.0625 0.125 0.25 +0.0625 0.125 0.2812 +0.0625 0.125 0.3125 +0.0625 0.125 0.3438 +0.0625 0.125 0.375 +0.0625 0.125 0.4062 +0.0625 0.125 0.4375 +0.0625 0.125 0.4688 +0.0625 0.125 0.5 +0.0625 0.125 0.5312 +0.0625 0.125 0.5625 +0.0625 0.125 0.5938 +0.0625 0.125 0.625 +0.0625 0.125 0.6562 +0.0625 0.125 0.6875 +0.0625 0.125 0.7188 +0.0625 0.125 0.75 +0.0625 0.125 0.7812 +0.0625 0.125 0.8125 +0.0625 0.125 0.8438 +0.0625 0.125 0.875 +0.0625 0.125 0.9062 +0.0625 0.125 0.9375 +0.0625 0.125 0.9688 +0.0625 0.125 1 +0.0625 0.1562 0 +0.0625 0.1562 0.03125 +0.0625 0.1562 0.0625 +0.0625 0.1562 0.09375 +0.0625 0.1562 0.125 +0.0625 0.1562 0.1562 +0.0625 0.1562 0.1875 +0.0625 0.1562 0.2188 +0.0625 0.1562 0.25 +0.0625 0.1562 0.2812 +0.0625 0.1562 0.3125 +0.0625 0.1562 0.3438 +0.0625 0.1562 0.375 +0.0625 0.1562 0.4062 +0.0625 0.1562 0.4375 +0.0625 0.1562 0.4688 +0.0625 0.1562 0.5 +0.0625 0.1562 0.5312 +0.0625 0.1562 0.5625 +0.0625 0.1562 0.5938 +0.0625 0.1562 0.625 +0.0625 0.1562 0.6562 +0.0625 0.1562 0.6875 +0.0625 0.1562 0.7188 +0.0625 0.1562 0.75 +0.0625 0.1562 0.7812 +0.0625 0.1562 0.8125 +0.0625 0.1562 0.8438 +0.0625 0.1562 0.875 +0.0625 0.1562 0.9062 +0.0625 0.1562 0.9375 +0.0625 0.1562 0.9688 +0.0625 0.1562 1 +0.0625 0.1875 0 +0.0625 0.1875 0.03125 +0.0625 0.1875 0.0625 +0.0625 0.1875 0.09375 +0.0625 0.1875 0.125 +0.0625 0.1875 0.1562 +0.0625 0.1875 0.1875 +0.0625 0.1875 0.2188 +0.0625 0.1875 0.25 +0.0625 0.1875 0.2812 +0.0625 0.1875 0.3125 +0.0625 0.1875 0.3438 +0.0625 0.1875 0.375 +0.0625 0.1875 0.4062 +0.0625 0.1875 0.4375 +0.0625 0.1875 0.4688 +0.0625 0.1875 0.5 +0.0625 0.1875 0.5312 +0.0625 0.1875 0.5625 +0.0625 0.1875 0.5938 +0.0625 0.1875 0.625 +0.0625 0.1875 0.6562 +0.0625 0.1875 0.6875 +0.0625 0.1875 0.7188 +0.0625 0.1875 0.75 +0.0625 0.1875 0.7812 +0.0625 0.1875 0.8125 +0.0625 0.1875 0.8438 +0.0625 0.1875 0.875 +0.0625 0.1875 0.9062 +0.0625 0.1875 0.9375 +0.0625 0.1875 0.9688 +0.0625 0.1875 1 +0.0625 0.2188 0 +0.0625 0.2188 0.03125 +0.0625 0.2188 0.0625 +0.0625 0.2188 0.09375 +0.0625 0.2188 0.125 +0.0625 0.2188 0.1562 +0.0625 0.2188 0.1875 +0.0625 0.2188 0.2188 +0.0625 0.2188 0.25 +0.0625 0.2188 0.2812 +0.0625 0.2188 0.3125 +0.0625 0.2188 0.3438 +0.0625 0.2188 0.375 +0.0625 0.2188 0.4062 +0.0625 0.2188 0.4375 +0.0625 0.2188 0.4688 +0.0625 0.2188 0.5 +0.0625 0.2188 0.5312 +0.0625 0.2188 0.5625 +0.0625 0.2188 0.5938 +0.0625 0.2188 0.625 +0.0625 0.2188 0.6562 +0.0625 0.2188 0.6875 +0.0625 0.2188 0.7188 +0.0625 0.2188 0.75 +0.0625 0.2188 0.7812 +0.0625 0.2188 0.8125 +0.0625 0.2188 0.8438 +0.0625 0.2188 0.875 +0.0625 0.2188 0.9062 +0.0625 0.2188 0.9375 +0.0625 0.2188 0.9688 +0.0625 0.2188 1 +0.0625 0.25 0 +0.0625 0.25 0.03125 +0.0625 0.25 0.0625 +0.0625 0.25 0.09375 +0.0625 0.25 0.125 +0.0625 0.25 0.1562 +0.0625 0.25 0.1875 +0.0625 0.25 0.2188 +0.0625 0.25 0.25 +0.0625 0.25 0.2812 +0.0625 0.25 0.3125 +0.0625 0.25 0.3438 +0.0625 0.25 0.375 +0.0625 0.25 0.4062 +0.0625 0.25 0.4375 +0.0625 0.25 0.4688 +0.0625 0.25 0.5 +0.0625 0.25 0.5312 +0.0625 0.25 0.5625 +0.0625 0.25 0.5938 +0.0625 0.25 0.625 +0.0625 0.25 0.6562 +0.0625 0.25 0.6875 +0.0625 0.25 0.7188 +0.0625 0.25 0.75 +0.0625 0.25 0.7812 +0.0625 0.25 0.8125 +0.0625 0.25 0.8438 +0.0625 0.25 0.875 +0.0625 0.25 0.9062 +0.0625 0.25 0.9375 +0.0625 0.25 0.9688 +0.0625 0.25 1 +0.0625 0.2812 0 +0.0625 0.2812 0.03125 +0.0625 0.2812 0.0625 +0.0625 0.2812 0.09375 +0.0625 0.2812 0.125 +0.0625 0.2812 0.1562 +0.0625 0.2812 0.1875 +0.0625 0.2812 0.2188 +0.0625 0.2812 0.25 +0.0625 0.2812 0.2812 +0.0625 0.2812 0.3125 +0.0625 0.2812 0.3438 +0.0625 0.2812 0.375 +0.0625 0.2812 0.4062 +0.0625 0.2812 0.4375 +0.0625 0.2812 0.4688 +0.0625 0.2812 0.5 +0.0625 0.2812 0.5312 +0.0625 0.2812 0.5625 +0.0625 0.2812 0.5938 +0.0625 0.2812 0.625 +0.0625 0.2812 0.6562 +0.0625 0.2812 0.6875 +0.0625 0.2812 0.7188 +0.0625 0.2812 0.75 +0.0625 0.2812 0.7812 +0.0625 0.2812 0.8125 +0.0625 0.2812 0.8438 +0.0625 0.2812 0.875 +0.0625 0.2812 0.9062 +0.0625 0.2812 0.9375 +0.0625 0.2812 0.9688 +0.0625 0.2812 1 +0.0625 0.3125 0 +0.0625 0.3125 0.03125 +0.0625 0.3125 0.0625 +0.0625 0.3125 0.09375 +0.0625 0.3125 0.125 +0.0625 0.3125 0.1562 +0.0625 0.3125 0.1875 +0.0625 0.3125 0.2188 +0.0625 0.3125 0.25 +0.0625 0.3125 0.2812 +0.0625 0.3125 0.3125 +0.0625 0.3125 0.3438 +0.0625 0.3125 0.375 +0.0625 0.3125 0.4062 +0.0625 0.3125 0.4375 +0.0625 0.3125 0.4688 +0.0625 0.3125 0.5 +0.0625 0.3125 0.5312 +0.0625 0.3125 0.5625 +0.0625 0.3125 0.5938 +0.0625 0.3125 0.625 +0.0625 0.3125 0.6562 +0.0625 0.3125 0.6875 +0.0625 0.3125 0.7188 +0.0625 0.3125 0.75 +0.0625 0.3125 0.7812 +0.0625 0.3125 0.8125 +0.0625 0.3125 0.8438 +0.0625 0.3125 0.875 +0.0625 0.3125 0.9062 +0.0625 0.3125 0.9375 +0.0625 0.3125 0.9688 +0.0625 0.3125 1 +0.0625 0.3438 0 +0.0625 0.3438 0.03125 +0.0625 0.3438 0.0625 +0.0625 0.3438 0.09375 +0.0625 0.3438 0.125 +0.0625 0.3438 0.1562 +0.0625 0.3438 0.1875 +0.0625 0.3438 0.2188 +0.0625 0.3438 0.25 +0.0625 0.3438 0.2812 +0.0625 0.3438 0.3125 +0.0625 0.3438 0.3438 +0.0625 0.3438 0.375 +0.0625 0.3438 0.4062 +0.0625 0.3438 0.4375 +0.0625 0.3438 0.4688 +0.0625 0.3438 0.5 +0.0625 0.3438 0.5312 +0.0625 0.3438 0.5625 +0.0625 0.3438 0.5938 +0.0625 0.3438 0.625 +0.0625 0.3438 0.6562 +0.0625 0.3438 0.6875 +0.0625 0.3438 0.7188 +0.0625 0.3438 0.75 +0.0625 0.3438 0.7812 +0.0625 0.3438 0.8125 +0.0625 0.3438 0.8438 +0.0625 0.3438 0.875 +0.0625 0.3438 0.9062 +0.0625 0.3438 0.9375 +0.0625 0.3438 0.9688 +0.0625 0.3438 1 +0.0625 0.375 0 +0.0625 0.375 0.03125 +0.0625 0.375 0.0625 +0.0625 0.375 0.09375 +0.0625 0.375 0.125 +0.0625 0.375 0.1562 +0.0625 0.375 0.1875 +0.0625 0.375 0.2188 +0.0625 0.375 0.25 +0.0625 0.375 0.2812 +0.0625 0.375 0.3125 +0.0625 0.375 0.3438 +0.0625 0.375 0.375 +0.0625 0.375 0.4062 +0.0625 0.375 0.4375 +0.0625 0.375 0.4688 +0.0625 0.375 0.5 +0.0625 0.375 0.5312 +0.0625 0.375 0.5625 +0.0625 0.375 0.5938 +0.0625 0.375 0.625 +0.0625 0.375 0.6562 +0.0625 0.375 0.6875 +0.0625 0.375 0.7188 +0.0625 0.375 0.75 +0.0625 0.375 0.7812 +0.0625 0.375 0.8125 +0.0625 0.375 0.8438 +0.0625 0.375 0.875 +0.0625 0.375 0.9062 +0.0625 0.375 0.9375 +0.0625 0.375 0.9688 +0.0625 0.375 1 +0.0625 0.4062 0 +0.0625 0.4062 0.03125 +0.0625 0.4062 0.0625 +0.0625 0.4062 0.09375 +0.0625 0.4062 0.125 +0.0625 0.4062 0.1562 +0.0625 0.4062 0.1875 +0.0625 0.4062 0.2188 +0.0625 0.4062 0.25 +0.0625 0.4062 0.2812 +0.0625 0.4062 0.3125 +0.0625 0.4062 0.3438 +0.0625 0.4062 0.375 +0.0625 0.4062 0.4062 +0.0625 0.4062 0.4375 +0.0625 0.4062 0.4688 +0.0625 0.4062 0.5 +0.0625 0.4062 0.5312 +0.0625 0.4062 0.5625 +0.0625 0.4062 0.5938 +0.0625 0.4062 0.625 +0.0625 0.4062 0.6562 +0.0625 0.4062 0.6875 +0.0625 0.4062 0.7188 +0.0625 0.4062 0.75 +0.0625 0.4062 0.7812 +0.0625 0.4062 0.8125 +0.0625 0.4062 0.8438 +0.0625 0.4062 0.875 +0.0625 0.4062 0.9062 +0.0625 0.4062 0.9375 +0.0625 0.4062 0.9688 +0.0625 0.4062 1 +0.0625 0.4375 0 +0.0625 0.4375 0.03125 +0.0625 0.4375 0.0625 +0.0625 0.4375 0.09375 +0.0625 0.4375 0.125 +0.0625 0.4375 0.1562 +0.0625 0.4375 0.1875 +0.0625 0.4375 0.2188 +0.0625 0.4375 0.25 +0.0625 0.4375 0.2812 +0.0625 0.4375 0.3125 +0.0625 0.4375 0.3438 +0.0625 0.4375 0.375 +0.0625 0.4375 0.4062 +0.0625 0.4375 0.4375 +0.0625 0.4375 0.4688 +0.0625 0.4375 0.5 +0.0625 0.4375 0.5312 +0.0625 0.4375 0.5625 +0.0625 0.4375 0.5938 +0.0625 0.4375 0.625 +0.0625 0.4375 0.6562 +0.0625 0.4375 0.6875 +0.0625 0.4375 0.7188 +0.0625 0.4375 0.75 +0.0625 0.4375 0.7812 +0.0625 0.4375 0.8125 +0.0625 0.4375 0.8438 +0.0625 0.4375 0.875 +0.0625 0.4375 0.9062 +0.0625 0.4375 0.9375 +0.0625 0.4375 0.9688 +0.0625 0.4375 1 +0.0625 0.4688 0 +0.0625 0.4688 0.03125 +0.0625 0.4688 0.0625 +0.0625 0.4688 0.09375 +0.0625 0.4688 0.125 +0.0625 0.4688 0.1562 +0.0625 0.4688 0.1875 +0.0625 0.4688 0.2188 +0.0625 0.4688 0.25 +0.0625 0.4688 0.2812 +0.0625 0.4688 0.3125 +0.0625 0.4688 0.3438 +0.0625 0.4688 0.375 +0.0625 0.4688 0.4062 +0.0625 0.4688 0.4375 +0.0625 0.4688 0.4688 +0.0625 0.4688 0.5 +0.0625 0.4688 0.5312 +0.0625 0.4688 0.5625 +0.0625 0.4688 0.5938 +0.0625 0.4688 0.625 +0.0625 0.4688 0.6562 +0.0625 0.4688 0.6875 +0.0625 0.4688 0.7188 +0.0625 0.4688 0.75 +0.0625 0.4688 0.7812 +0.0625 0.4688 0.8125 +0.0625 0.4688 0.8438 +0.0625 0.4688 0.875 +0.0625 0.4688 0.9062 +0.0625 0.4688 0.9375 +0.0625 0.4688 0.9688 +0.0625 0.4688 1 +0.0625 0.5 0 +0.0625 0.5 0.03125 +0.0625 0.5 0.0625 +0.0625 0.5 0.09375 +0.0625 0.5 0.125 +0.0625 0.5 0.1562 +0.0625 0.5 0.1875 +0.0625 0.5 0.2188 +0.0625 0.5 0.25 +0.0625 0.5 0.2812 +0.0625 0.5 0.3125 +0.0625 0.5 0.3438 +0.0625 0.5 0.375 +0.0625 0.5 0.4062 +0.0625 0.5 0.4375 +0.0625 0.5 0.4688 +0.0625 0.5 0.5 +0.0625 0.5 0.5312 +0.0625 0.5 0.5625 +0.0625 0.5 0.5938 +0.0625 0.5 0.625 +0.0625 0.5 0.6562 +0.0625 0.5 0.6875 +0.0625 0.5 0.7188 +0.0625 0.5 0.75 +0.0625 0.5 0.7812 +0.0625 0.5 0.8125 +0.0625 0.5 0.8438 +0.0625 0.5 0.875 +0.0625 0.5 0.9062 +0.0625 0.5 0.9375 +0.0625 0.5 0.9688 +0.0625 0.5 1 +0.0625 0.5312 0 +0.0625 0.5312 0.03125 +0.0625 0.5312 0.0625 +0.0625 0.5312 0.09375 +0.0625 0.5312 0.125 +0.0625 0.5312 0.1562 +0.0625 0.5312 0.1875 +0.0625 0.5312 0.2188 +0.0625 0.5312 0.25 +0.0625 0.5312 0.2812 +0.0625 0.5312 0.3125 +0.0625 0.5312 0.3438 +0.0625 0.5312 0.375 +0.0625 0.5312 0.4062 +0.0625 0.5312 0.4375 +0.0625 0.5312 0.4688 +0.0625 0.5312 0.5 +0.0625 0.5312 0.5312 +0.0625 0.5312 0.5625 +0.0625 0.5312 0.5938 +0.0625 0.5312 0.625 +0.0625 0.5312 0.6562 +0.0625 0.5312 0.6875 +0.0625 0.5312 0.7188 +0.0625 0.5312 0.75 +0.0625 0.5312 0.7812 +0.0625 0.5312 0.8125 +0.0625 0.5312 0.8438 +0.0625 0.5312 0.875 +0.0625 0.5312 0.9062 +0.0625 0.5312 0.9375 +0.0625 0.5312 0.9688 +0.0625 0.5312 1 +0.0625 0.5625 0 +0.0625 0.5625 0.03125 +0.0625 0.5625 0.0625 +0.0625 0.5625 0.09375 +0.0625 0.5625 0.125 +0.0625 0.5625 0.1562 +0.0625 0.5625 0.1875 +0.0625 0.5625 0.2188 +0.0625 0.5625 0.25 +0.0625 0.5625 0.2812 +0.0625 0.5625 0.3125 +0.0625 0.5625 0.3438 +0.0625 0.5625 0.375 +0.0625 0.5625 0.4062 +0.0625 0.5625 0.4375 +0.0625 0.5625 0.4688 +0.0625 0.5625 0.5 +0.0625 0.5625 0.5312 +0.0625 0.5625 0.5625 +0.0625 0.5625 0.5938 +0.0625 0.5625 0.625 +0.0625 0.5625 0.6562 +0.0625 0.5625 0.6875 +0.0625 0.5625 0.7188 +0.0625 0.5625 0.75 +0.0625 0.5625 0.7812 +0.0625 0.5625 0.8125 +0.0625 0.5625 0.8438 +0.0625 0.5625 0.875 +0.0625 0.5625 0.9062 +0.0625 0.5625 0.9375 +0.0625 0.5625 0.9688 +0.0625 0.5625 1 +0.0625 0.5938 0 +0.0625 0.5938 0.03125 +0.0625 0.5938 0.0625 +0.0625 0.5938 0.09375 +0.0625 0.5938 0.125 +0.0625 0.5938 0.1562 +0.0625 0.5938 0.1875 +0.0625 0.5938 0.2188 +0.0625 0.5938 0.25 +0.0625 0.5938 0.2812 +0.0625 0.5938 0.3125 +0.0625 0.5938 0.3438 +0.0625 0.5938 0.375 +0.0625 0.5938 0.4062 +0.0625 0.5938 0.4375 +0.0625 0.5938 0.4688 +0.0625 0.5938 0.5 +0.0625 0.5938 0.5312 +0.0625 0.5938 0.5625 +0.0625 0.5938 0.5938 +0.0625 0.5938 0.625 +0.0625 0.5938 0.6562 +0.0625 0.5938 0.6875 +0.0625 0.5938 0.7188 +0.0625 0.5938 0.75 +0.0625 0.5938 0.7812 +0.0625 0.5938 0.8125 +0.0625 0.5938 0.8438 +0.0625 0.5938 0.875 +0.0625 0.5938 0.9062 +0.0625 0.5938 0.9375 +0.0625 0.5938 0.9688 +0.0625 0.5938 1 +0.0625 0.625 0 +0.0625 0.625 0.03125 +0.0625 0.625 0.0625 +0.0625 0.625 0.09375 +0.0625 0.625 0.125 +0.0625 0.625 0.1562 +0.0625 0.625 0.1875 +0.0625 0.625 0.2188 +0.0625 0.625 0.25 +0.0625 0.625 0.2812 +0.0625 0.625 0.3125 +0.0625 0.625 0.3438 +0.0625 0.625 0.375 +0.0625 0.625 0.4062 +0.0625 0.625 0.4375 +0.0625 0.625 0.4688 +0.0625 0.625 0.5 +0.0625 0.625 0.5312 +0.0625 0.625 0.5625 +0.0625 0.625 0.5938 +0.0625 0.625 0.625 +0.0625 0.625 0.6562 +0.0625 0.625 0.6875 +0.0625 0.625 0.7188 +0.0625 0.625 0.75 +0.0625 0.625 0.7812 +0.0625 0.625 0.8125 +0.0625 0.625 0.8438 +0.0625 0.625 0.875 +0.0625 0.625 0.9062 +0.0625 0.625 0.9375 +0.0625 0.625 0.9688 +0.0625 0.625 1 +0.0625 0.6562 0 +0.0625 0.6562 0.03125 +0.0625 0.6562 0.0625 +0.0625 0.6562 0.09375 +0.0625 0.6562 0.125 +0.0625 0.6562 0.1562 +0.0625 0.6562 0.1875 +0.0625 0.6562 0.2188 +0.0625 0.6562 0.25 +0.0625 0.6562 0.2812 +0.0625 0.6562 0.3125 +0.0625 0.6562 0.3438 +0.0625 0.6562 0.375 +0.0625 0.6562 0.4062 +0.0625 0.6562 0.4375 +0.0625 0.6562 0.4688 +0.0625 0.6562 0.5 +0.0625 0.6562 0.5312 +0.0625 0.6562 0.5625 +0.0625 0.6562 0.5938 +0.0625 0.6562 0.625 +0.0625 0.6562 0.6562 +0.0625 0.6562 0.6875 +0.0625 0.6562 0.7188 +0.0625 0.6562 0.75 +0.0625 0.6562 0.7812 +0.0625 0.6562 0.8125 +0.0625 0.6562 0.8438 +0.0625 0.6562 0.875 +0.0625 0.6562 0.9062 +0.0625 0.6562 0.9375 +0.0625 0.6562 0.9688 +0.0625 0.6562 1 +0.0625 0.6875 0 +0.0625 0.6875 0.03125 +0.0625 0.6875 0.0625 +0.0625 0.6875 0.09375 +0.0625 0.6875 0.125 +0.0625 0.6875 0.1562 +0.0625 0.6875 0.1875 +0.0625 0.6875 0.2188 +0.0625 0.6875 0.25 +0.0625 0.6875 0.2812 +0.0625 0.6875 0.3125 +0.0625 0.6875 0.3438 +0.0625 0.6875 0.375 +0.0625 0.6875 0.4062 +0.0625 0.6875 0.4375 +0.0625 0.6875 0.4688 +0.0625 0.6875 0.5 +0.0625 0.6875 0.5312 +0.0625 0.6875 0.5625 +0.0625 0.6875 0.5938 +0.0625 0.6875 0.625 +0.0625 0.6875 0.6562 +0.0625 0.6875 0.6875 +0.0625 0.6875 0.7188 +0.0625 0.6875 0.75 +0.0625 0.6875 0.7812 +0.0625 0.6875 0.8125 +0.0625 0.6875 0.8438 +0.0625 0.6875 0.875 +0.0625 0.6875 0.9062 +0.0625 0.6875 0.9375 +0.0625 0.6875 0.9688 +0.0625 0.6875 1 +0.0625 0.7188 0 +0.0625 0.7188 0.03125 +0.0625 0.7188 0.0625 +0.0625 0.7188 0.09375 +0.0625 0.7188 0.125 +0.0625 0.7188 0.1562 +0.0625 0.7188 0.1875 +0.0625 0.7188 0.2188 +0.0625 0.7188 0.25 +0.0625 0.7188 0.2812 +0.0625 0.7188 0.3125 +0.0625 0.7188 0.3438 +0.0625 0.7188 0.375 +0.0625 0.7188 0.4062 +0.0625 0.7188 0.4375 +0.0625 0.7188 0.4688 +0.0625 0.7188 0.5 +0.0625 0.7188 0.5312 +0.0625 0.7188 0.5625 +0.0625 0.7188 0.5938 +0.0625 0.7188 0.625 +0.0625 0.7188 0.6562 +0.0625 0.7188 0.6875 +0.0625 0.7188 0.7188 +0.0625 0.7188 0.75 +0.0625 0.7188 0.7812 +0.0625 0.7188 0.8125 +0.0625 0.7188 0.8438 +0.0625 0.7188 0.875 +0.0625 0.7188 0.9062 +0.0625 0.7188 0.9375 +0.0625 0.7188 0.9688 +0.0625 0.7188 1 +0.0625 0.75 0 +0.0625 0.75 0.03125 +0.0625 0.75 0.0625 +0.0625 0.75 0.09375 +0.0625 0.75 0.125 +0.0625 0.75 0.1562 +0.0625 0.75 0.1875 +0.0625 0.75 0.2188 +0.0625 0.75 0.25 +0.0625 0.75 0.2812 +0.0625 0.75 0.3125 +0.0625 0.75 0.3438 +0.0625 0.75 0.375 +0.0625 0.75 0.4062 +0.0625 0.75 0.4375 +0.0625 0.75 0.4688 +0.0625 0.75 0.5 +0.0625 0.75 0.5312 +0.0625 0.75 0.5625 +0.0625 0.75 0.5938 +0.0625 0.75 0.625 +0.0625 0.75 0.6562 +0.0625 0.75 0.6875 +0.0625 0.75 0.7188 +0.0625 0.75 0.75 +0.0625 0.75 0.7812 +0.0625 0.75 0.8125 +0.0625 0.75 0.8438 +0.0625 0.75 0.875 +0.0625 0.75 0.9062 +0.0625 0.75 0.9375 +0.0625 0.75 0.9688 +0.0625 0.75 1 +0.0625 0.7812 0 +0.0625 0.7812 0.03125 +0.0625 0.7812 0.0625 +0.0625 0.7812 0.09375 +0.0625 0.7812 0.125 +0.0625 0.7812 0.1562 +0.0625 0.7812 0.1875 +0.0625 0.7812 0.2188 +0.0625 0.7812 0.25 +0.0625 0.7812 0.2812 +0.0625 0.7812 0.3125 +0.0625 0.7812 0.3438 +0.0625 0.7812 0.375 +0.0625 0.7812 0.4062 +0.0625 0.7812 0.4375 +0.0625 0.7812 0.4688 +0.0625 0.7812 0.5 +0.0625 0.7812 0.5312 +0.0625 0.7812 0.5625 +0.0625 0.7812 0.5938 +0.0625 0.7812 0.625 +0.0625 0.7812 0.6562 +0.0625 0.7812 0.6875 +0.0625 0.7812 0.7188 +0.0625 0.7812 0.75 +0.0625 0.7812 0.7812 +0.0625 0.7812 0.8125 +0.0625 0.7812 0.8438 +0.0625 0.7812 0.875 +0.0625 0.7812 0.9062 +0.0625 0.7812 0.9375 +0.0625 0.7812 0.9688 +0.0625 0.7812 1 +0.0625 0.8125 0 +0.0625 0.8125 0.03125 +0.0625 0.8125 0.0625 +0.0625 0.8125 0.09375 +0.0625 0.8125 0.125 +0.0625 0.8125 0.1562 +0.0625 0.8125 0.1875 +0.0625 0.8125 0.2188 +0.0625 0.8125 0.25 +0.0625 0.8125 0.2812 +0.0625 0.8125 0.3125 +0.0625 0.8125 0.3438 +0.0625 0.8125 0.375 +0.0625 0.8125 0.4062 +0.0625 0.8125 0.4375 +0.0625 0.8125 0.4688 +0.0625 0.8125 0.5 +0.0625 0.8125 0.5312 +0.0625 0.8125 0.5625 +0.0625 0.8125 0.5938 +0.0625 0.8125 0.625 +0.0625 0.8125 0.6562 +0.0625 0.8125 0.6875 +0.0625 0.8125 0.7188 +0.0625 0.8125 0.75 +0.0625 0.8125 0.7812 +0.0625 0.8125 0.8125 +0.0625 0.8125 0.8438 +0.0625 0.8125 0.875 +0.0625 0.8125 0.9062 +0.0625 0.8125 0.9375 +0.0625 0.8125 0.9688 +0.0625 0.8125 1 +0.0625 0.8438 0 +0.0625 0.8438 0.03125 +0.0625 0.8438 0.0625 +0.0625 0.8438 0.09375 +0.0625 0.8438 0.125 +0.0625 0.8438 0.1562 +0.0625 0.8438 0.1875 +0.0625 0.8438 0.2188 +0.0625 0.8438 0.25 +0.0625 0.8438 0.2812 +0.0625 0.8438 0.3125 +0.0625 0.8438 0.3438 +0.0625 0.8438 0.375 +0.0625 0.8438 0.4062 +0.0625 0.8438 0.4375 +0.0625 0.8438 0.4688 +0.0625 0.8438 0.5 +0.0625 0.8438 0.5312 +0.0625 0.8438 0.5625 +0.0625 0.8438 0.5938 +0.0625 0.8438 0.625 +0.0625 0.8438 0.6562 +0.0625 0.8438 0.6875 +0.0625 0.8438 0.7188 +0.0625 0.8438 0.75 +0.0625 0.8438 0.7812 +0.0625 0.8438 0.8125 +0.0625 0.8438 0.8438 +0.0625 0.8438 0.875 +0.0625 0.8438 0.9062 +0.0625 0.8438 0.9375 +0.0625 0.8438 0.9688 +0.0625 0.8438 1 +0.0625 0.875 0 +0.0625 0.875 0.03125 +0.0625 0.875 0.0625 +0.0625 0.875 0.09375 +0.0625 0.875 0.125 +0.0625 0.875 0.1562 +0.0625 0.875 0.1875 +0.0625 0.875 0.2188 +0.0625 0.875 0.25 +0.0625 0.875 0.2812 +0.0625 0.875 0.3125 +0.0625 0.875 0.3438 +0.0625 0.875 0.375 +0.0625 0.875 0.4062 +0.0625 0.875 0.4375 +0.0625 0.875 0.4688 +0.0625 0.875 0.5 +0.0625 0.875 0.5312 +0.0625 0.875 0.5625 +0.0625 0.875 0.5938 +0.0625 0.875 0.625 +0.0625 0.875 0.6562 +0.0625 0.875 0.6875 +0.0625 0.875 0.7188 +0.0625 0.875 0.75 +0.0625 0.875 0.7812 +0.0625 0.875 0.8125 +0.0625 0.875 0.8438 +0.0625 0.875 0.875 +0.0625 0.875 0.9062 +0.0625 0.875 0.9375 +0.0625 0.875 0.9688 +0.0625 0.875 1 +0.0625 0.9062 0 +0.0625 0.9062 0.03125 +0.0625 0.9062 0.0625 +0.0625 0.9062 0.09375 +0.0625 0.9062 0.125 +0.0625 0.9062 0.1562 +0.0625 0.9062 0.1875 +0.0625 0.9062 0.2188 +0.0625 0.9062 0.25 +0.0625 0.9062 0.2812 +0.0625 0.9062 0.3125 +0.0625 0.9062 0.3438 +0.0625 0.9062 0.375 +0.0625 0.9062 0.4062 +0.0625 0.9062 0.4375 +0.0625 0.9062 0.4688 +0.0625 0.9062 0.5 +0.0625 0.9062 0.5312 +0.0625 0.9062 0.5625 +0.0625 0.9062 0.5938 +0.0625 0.9062 0.625 +0.0625 0.9062 0.6562 +0.0625 0.9062 0.6875 +0.0625 0.9062 0.7188 +0.0625 0.9062 0.75 +0.0625 0.9062 0.7812 +0.0625 0.9062 0.8125 +0.0625 0.9062 0.8438 +0.0625 0.9062 0.875 +0.0625 0.9062 0.9062 +0.0625 0.9062 0.9375 +0.0625 0.9062 0.9688 +0.0625 0.9062 1 +0.0625 0.9375 0 +0.0625 0.9375 0.03125 +0.0625 0.9375 0.0625 +0.0625 0.9375 0.09375 +0.0625 0.9375 0.125 +0.0625 0.9375 0.1562 +0.0625 0.9375 0.1875 +0.0625 0.9375 0.2188 +0.0625 0.9375 0.25 +0.0625 0.9375 0.2812 +0.0625 0.9375 0.3125 +0.0625 0.9375 0.3438 +0.0625 0.9375 0.375 +0.0625 0.9375 0.4062 +0.0625 0.9375 0.4375 +0.0625 0.9375 0.4688 +0.0625 0.9375 0.5 +0.0625 0.9375 0.5312 +0.0625 0.9375 0.5625 +0.0625 0.9375 0.5938 +0.0625 0.9375 0.625 +0.0625 0.9375 0.6562 +0.0625 0.9375 0.6875 +0.0625 0.9375 0.7188 +0.0625 0.9375 0.75 +0.0625 0.9375 0.7812 +0.0625 0.9375 0.8125 +0.0625 0.9375 0.8438 +0.0625 0.9375 0.875 +0.0625 0.9375 0.9062 +0.0625 0.9375 0.9375 +0.0625 0.9375 0.9688 +0.0625 0.9375 1 +0.0625 0.9688 0 +0.0625 0.9688 0.03125 +0.0625 0.9688 0.0625 +0.0625 0.9688 0.09375 +0.0625 0.9688 0.125 +0.0625 0.9688 0.1562 +0.0625 0.9688 0.1875 +0.0625 0.9688 0.2188 +0.0625 0.9688 0.25 +0.0625 0.9688 0.2812 +0.0625 0.9688 0.3125 +0.0625 0.9688 0.3438 +0.0625 0.9688 0.375 +0.0625 0.9688 0.4062 +0.0625 0.9688 0.4375 +0.0625 0.9688 0.4688 +0.0625 0.9688 0.5 +0.0625 0.9688 0.5312 +0.0625 0.9688 0.5625 +0.0625 0.9688 0.5938 +0.0625 0.9688 0.625 +0.0625 0.9688 0.6562 +0.0625 0.9688 0.6875 +0.0625 0.9688 0.7188 +0.0625 0.9688 0.75 +0.0625 0.9688 0.7812 +0.0625 0.9688 0.8125 +0.0625 0.9688 0.8438 +0.0625 0.9688 0.875 +0.0625 0.9688 0.9062 +0.0625 0.9688 0.9375 +0.0625 0.9688 0.9688 +0.0625 0.9688 1 +0.0625 1 0 +0.0625 1 0.03125 +0.0625 1 0.0625 +0.0625 1 0.09375 +0.0625 1 0.125 +0.0625 1 0.1562 +0.0625 1 0.1875 +0.0625 1 0.2188 +0.0625 1 0.25 +0.0625 1 0.2812 +0.0625 1 0.3125 +0.0625 1 0.3438 +0.0625 1 0.375 +0.0625 1 0.4062 +0.0625 1 0.4375 +0.0625 1 0.4688 +0.0625 1 0.5 +0.0625 1 0.5312 +0.0625 1 0.5625 +0.0625 1 0.5938 +0.0625 1 0.625 +0.0625 1 0.6562 +0.0625 1 0.6875 +0.0625 1 0.7188 +0.0625 1 0.75 +0.0625 1 0.7812 +0.0625 1 0.8125 +0.0625 1 0.8438 +0.0625 1 0.875 +0.0625 1 0.9062 +0.0625 1 0.9375 +0.0625 1 0.9688 +0.0625 1 1 +0.09375 0 0 +0.09375 0 0.03125 +0.09375 0 0.0625 +0.09375 0 0.09375 +0.09375 0 0.125 +0.09375 0 0.1562 +0.09375 0 0.1875 +0.09375 0 0.2188 +0.09375 0 0.25 +0.09375 0 0.2812 +0.09375 0 0.3125 +0.09375 0 0.3438 +0.09375 0 0.375 +0.09375 0 0.4062 +0.09375 0 0.4375 +0.09375 0 0.4688 +0.09375 0 0.5 +0.09375 0 0.5312 +0.09375 0 0.5625 +0.09375 0 0.5938 +0.09375 0 0.625 +0.09375 0 0.6562 +0.09375 0 0.6875 +0.09375 0 0.7188 +0.09375 0 0.75 +0.09375 0 0.7812 +0.09375 0 0.8125 +0.09375 0 0.8438 +0.09375 0 0.875 +0.09375 0 0.9062 +0.09375 0 0.9375 +0.09375 0 0.9688 +0.09375 0 1 +0.09375 0.03125 0 +0.09375 0.03125 0.03125 +0.09375 0.03125 0.0625 +0.09375 0.03125 0.09375 +0.09375 0.03125 0.125 +0.09375 0.03125 0.1562 +0.09375 0.03125 0.1875 +0.09375 0.03125 0.2188 +0.09375 0.03125 0.25 +0.09375 0.03125 0.2812 +0.09375 0.03125 0.3125 +0.09375 0.03125 0.3438 +0.09375 0.03125 0.375 +0.09375 0.03125 0.4062 +0.09375 0.03125 0.4375 +0.09375 0.03125 0.4688 +0.09375 0.03125 0.5 +0.09375 0.03125 0.5312 +0.09375 0.03125 0.5625 +0.09375 0.03125 0.5938 +0.09375 0.03125 0.625 +0.09375 0.03125 0.6562 +0.09375 0.03125 0.6875 +0.09375 0.03125 0.7188 +0.09375 0.03125 0.75 +0.09375 0.03125 0.7812 +0.09375 0.03125 0.8125 +0.09375 0.03125 0.8438 +0.09375 0.03125 0.875 +0.09375 0.03125 0.9062 +0.09375 0.03125 0.9375 +0.09375 0.03125 0.9688 +0.09375 0.03125 1 +0.09375 0.0625 0 +0.09375 0.0625 0.03125 +0.09375 0.0625 0.0625 +0.09375 0.0625 0.09375 +0.09375 0.0625 0.125 +0.09375 0.0625 0.1562 +0.09375 0.0625 0.1875 +0.09375 0.0625 0.2188 +0.09375 0.0625 0.25 +0.09375 0.0625 0.2812 +0.09375 0.0625 0.3125 +0.09375 0.0625 0.3438 +0.09375 0.0625 0.375 +0.09375 0.0625 0.4062 +0.09375 0.0625 0.4375 +0.09375 0.0625 0.4688 +0.09375 0.0625 0.5 +0.09375 0.0625 0.5312 +0.09375 0.0625 0.5625 +0.09375 0.0625 0.5938 +0.09375 0.0625 0.625 +0.09375 0.0625 0.6562 +0.09375 0.0625 0.6875 +0.09375 0.0625 0.7188 +0.09375 0.0625 0.75 +0.09375 0.0625 0.7812 +0.09375 0.0625 0.8125 +0.09375 0.0625 0.8438 +0.09375 0.0625 0.875 +0.09375 0.0625 0.9062 +0.09375 0.0625 0.9375 +0.09375 0.0625 0.9688 +0.09375 0.0625 1 +0.09375 0.09375 0 +0.09375 0.09375 0.03125 +0.09375 0.09375 0.0625 +0.09375 0.09375 0.09375 +0.09375 0.09375 0.125 +0.09375 0.09375 0.1562 +0.09375 0.09375 0.1875 +0.09375 0.09375 0.2188 +0.09375 0.09375 0.25 +0.09375 0.09375 0.2812 +0.09375 0.09375 0.3125 +0.09375 0.09375 0.3438 +0.09375 0.09375 0.375 +0.09375 0.09375 0.4062 +0.09375 0.09375 0.4375 +0.09375 0.09375 0.4688 +0.09375 0.09375 0.5 +0.09375 0.09375 0.5312 +0.09375 0.09375 0.5625 +0.09375 0.09375 0.5938 +0.09375 0.09375 0.625 +0.09375 0.09375 0.6562 +0.09375 0.09375 0.6875 +0.09375 0.09375 0.7188 +0.09375 0.09375 0.75 +0.09375 0.09375 0.7812 +0.09375 0.09375 0.8125 +0.09375 0.09375 0.8438 +0.09375 0.09375 0.875 +0.09375 0.09375 0.9062 +0.09375 0.09375 0.9375 +0.09375 0.09375 0.9688 +0.09375 0.09375 1 +0.09375 0.125 0 +0.09375 0.125 0.03125 +0.09375 0.125 0.0625 +0.09375 0.125 0.09375 +0.09375 0.125 0.125 +0.09375 0.125 0.1562 +0.09375 0.125 0.1875 +0.09375 0.125 0.2188 +0.09375 0.125 0.25 +0.09375 0.125 0.2812 +0.09375 0.125 0.3125 +0.09375 0.125 0.3438 +0.09375 0.125 0.375 +0.09375 0.125 0.4062 +0.09375 0.125 0.4375 +0.09375 0.125 0.4688 +0.09375 0.125 0.5 +0.09375 0.125 0.5312 +0.09375 0.125 0.5625 +0.09375 0.125 0.5938 +0.09375 0.125 0.625 +0.09375 0.125 0.6562 +0.09375 0.125 0.6875 +0.09375 0.125 0.7188 +0.09375 0.125 0.75 +0.09375 0.125 0.7812 +0.09375 0.125 0.8125 +0.09375 0.125 0.8438 +0.09375 0.125 0.875 +0.09375 0.125 0.9062 +0.09375 0.125 0.9375 +0.09375 0.125 0.9688 +0.09375 0.125 1 +0.09375 0.1562 0 +0.09375 0.1562 0.03125 +0.09375 0.1562 0.0625 +0.09375 0.1562 0.09375 +0.09375 0.1562 0.125 +0.09375 0.1562 0.1562 +0.09375 0.1562 0.1875 +0.09375 0.1562 0.2188 +0.09375 0.1562 0.25 +0.09375 0.1562 0.2812 +0.09375 0.1562 0.3125 +0.09375 0.1562 0.3438 +0.09375 0.1562 0.375 +0.09375 0.1562 0.4062 +0.09375 0.1562 0.4375 +0.09375 0.1562 0.4688 +0.09375 0.1562 0.5 +0.09375 0.1562 0.5312 +0.09375 0.1562 0.5625 +0.09375 0.1562 0.5938 +0.09375 0.1562 0.625 +0.09375 0.1562 0.6562 +0.09375 0.1562 0.6875 +0.09375 0.1562 0.7188 +0.09375 0.1562 0.75 +0.09375 0.1562 0.7812 +0.09375 0.1562 0.8125 +0.09375 0.1562 0.8438 +0.09375 0.1562 0.875 +0.09375 0.1562 0.9062 +0.09375 0.1562 0.9375 +0.09375 0.1562 0.9688 +0.09375 0.1562 1 +0.09375 0.1875 0 +0.09375 0.1875 0.03125 +0.09375 0.1875 0.0625 +0.09375 0.1875 0.09375 +0.09375 0.1875 0.125 +0.09375 0.1875 0.1562 +0.09375 0.1875 0.1875 +0.09375 0.1875 0.2188 +0.09375 0.1875 0.25 +0.09375 0.1875 0.2812 +0.09375 0.1875 0.3125 +0.09375 0.1875 0.3438 +0.09375 0.1875 0.375 +0.09375 0.1875 0.4062 +0.09375 0.1875 0.4375 +0.09375 0.1875 0.4688 +0.09375 0.1875 0.5 +0.09375 0.1875 0.5312 +0.09375 0.1875 0.5625 +0.09375 0.1875 0.5938 +0.09375 0.1875 0.625 +0.09375 0.1875 0.6562 +0.09375 0.1875 0.6875 +0.09375 0.1875 0.7188 +0.09375 0.1875 0.75 +0.09375 0.1875 0.7812 +0.09375 0.1875 0.8125 +0.09375 0.1875 0.8438 +0.09375 0.1875 0.875 +0.09375 0.1875 0.9062 +0.09375 0.1875 0.9375 +0.09375 0.1875 0.9688 +0.09375 0.1875 1 +0.09375 0.2188 0 +0.09375 0.2188 0.03125 +0.09375 0.2188 0.0625 +0.09375 0.2188 0.09375 +0.09375 0.2188 0.125 +0.09375 0.2188 0.1562 +0.09375 0.2188 0.1875 +0.09375 0.2188 0.2188 +0.09375 0.2188 0.25 +0.09375 0.2188 0.2812 +0.09375 0.2188 0.3125 +0.09375 0.2188 0.3438 +0.09375 0.2188 0.375 +0.09375 0.2188 0.4062 +0.09375 0.2188 0.4375 +0.09375 0.2188 0.4688 +0.09375 0.2188 0.5 +0.09375 0.2188 0.5312 +0.09375 0.2188 0.5625 +0.09375 0.2188 0.5938 +0.09375 0.2188 0.625 +0.09375 0.2188 0.6562 +0.09375 0.2188 0.6875 +0.09375 0.2188 0.7188 +0.09375 0.2188 0.75 +0.09375 0.2188 0.7812 +0.09375 0.2188 0.8125 +0.09375 0.2188 0.8438 +0.09375 0.2188 0.875 +0.09375 0.2188 0.9062 +0.09375 0.2188 0.9375 +0.09375 0.2188 0.9688 +0.09375 0.2188 1 +0.09375 0.25 0 +0.09375 0.25 0.03125 +0.09375 0.25 0.0625 +0.09375 0.25 0.09375 +0.09375 0.25 0.125 +0.09375 0.25 0.1562 +0.09375 0.25 0.1875 +0.09375 0.25 0.2188 +0.09375 0.25 0.25 +0.09375 0.25 0.2812 +0.09375 0.25 0.3125 +0.09375 0.25 0.3438 +0.09375 0.25 0.375 +0.09375 0.25 0.4062 +0.09375 0.25 0.4375 +0.09375 0.25 0.4688 +0.09375 0.25 0.5 +0.09375 0.25 0.5312 +0.09375 0.25 0.5625 +0.09375 0.25 0.5938 +0.09375 0.25 0.625 +0.09375 0.25 0.6562 +0.09375 0.25 0.6875 +0.09375 0.25 0.7188 +0.09375 0.25 0.75 +0.09375 0.25 0.7812 +0.09375 0.25 0.8125 +0.09375 0.25 0.8438 +0.09375 0.25 0.875 +0.09375 0.25 0.9062 +0.09375 0.25 0.9375 +0.09375 0.25 0.9688 +0.09375 0.25 1 +0.09375 0.2812 0 +0.09375 0.2812 0.03125 +0.09375 0.2812 0.0625 +0.09375 0.2812 0.09375 +0.09375 0.2812 0.125 +0.09375 0.2812 0.1562 +0.09375 0.2812 0.1875 +0.09375 0.2812 0.2188 +0.09375 0.2812 0.25 +0.09375 0.2812 0.2812 +0.09375 0.2812 0.3125 +0.09375 0.2812 0.3438 +0.09375 0.2812 0.375 +0.09375 0.2812 0.4062 +0.09375 0.2812 0.4375 +0.09375 0.2812 0.4688 +0.09375 0.2812 0.5 +0.09375 0.2812 0.5312 +0.09375 0.2812 0.5625 +0.09375 0.2812 0.5938 +0.09375 0.2812 0.625 +0.09375 0.2812 0.6562 +0.09375 0.2812 0.6875 +0.09375 0.2812 0.7188 +0.09375 0.2812 0.75 +0.09375 0.2812 0.7812 +0.09375 0.2812 0.8125 +0.09375 0.2812 0.8438 +0.09375 0.2812 0.875 +0.09375 0.2812 0.9062 +0.09375 0.2812 0.9375 +0.09375 0.2812 0.9688 +0.09375 0.2812 1 +0.09375 0.3125 0 +0.09375 0.3125 0.03125 +0.09375 0.3125 0.0625 +0.09375 0.3125 0.09375 +0.09375 0.3125 0.125 +0.09375 0.3125 0.1562 +0.09375 0.3125 0.1875 +0.09375 0.3125 0.2188 +0.09375 0.3125 0.25 +0.09375 0.3125 0.2812 +0.09375 0.3125 0.3125 +0.09375 0.3125 0.3438 +0.09375 0.3125 0.375 +0.09375 0.3125 0.4062 +0.09375 0.3125 0.4375 +0.09375 0.3125 0.4688 +0.09375 0.3125 0.5 +0.09375 0.3125 0.5312 +0.09375 0.3125 0.5625 +0.09375 0.3125 0.5938 +0.09375 0.3125 0.625 +0.09375 0.3125 0.6562 +0.09375 0.3125 0.6875 +0.09375 0.3125 0.7188 +0.09375 0.3125 0.75 +0.09375 0.3125 0.7812 +0.09375 0.3125 0.8125 +0.09375 0.3125 0.8438 +0.09375 0.3125 0.875 +0.09375 0.3125 0.9062 +0.09375 0.3125 0.9375 +0.09375 0.3125 0.9688 +0.09375 0.3125 1 +0.09375 0.3438 0 +0.09375 0.3438 0.03125 +0.09375 0.3438 0.0625 +0.09375 0.3438 0.09375 +0.09375 0.3438 0.125 +0.09375 0.3438 0.1562 +0.09375 0.3438 0.1875 +0.09375 0.3438 0.2188 +0.09375 0.3438 0.25 +0.09375 0.3438 0.2812 +0.09375 0.3438 0.3125 +0.09375 0.3438 0.3438 +0.09375 0.3438 0.375 +0.09375 0.3438 0.4062 +0.09375 0.3438 0.4375 +0.09375 0.3438 0.4688 +0.09375 0.3438 0.5 +0.09375 0.3438 0.5312 +0.09375 0.3438 0.5625 +0.09375 0.3438 0.5938 +0.09375 0.3438 0.625 +0.09375 0.3438 0.6562 +0.09375 0.3438 0.6875 +0.09375 0.3438 0.7188 +0.09375 0.3438 0.75 +0.09375 0.3438 0.7812 +0.09375 0.3438 0.8125 +0.09375 0.3438 0.8438 +0.09375 0.3438 0.875 +0.09375 0.3438 0.9062 +0.09375 0.3438 0.9375 +0.09375 0.3438 0.9688 +0.09375 0.3438 1 +0.09375 0.375 0 +0.09375 0.375 0.03125 +0.09375 0.375 0.0625 +0.09375 0.375 0.09375 +0.09375 0.375 0.125 +0.09375 0.375 0.1562 +0.09375 0.375 0.1875 +0.09375 0.375 0.2188 +0.09375 0.375 0.25 +0.09375 0.375 0.2812 +0.09375 0.375 0.3125 +0.09375 0.375 0.3438 +0.09375 0.375 0.375 +0.09375 0.375 0.4062 +0.09375 0.375 0.4375 +0.09375 0.375 0.4688 +0.09375 0.375 0.5 +0.09375 0.375 0.5312 +0.09375 0.375 0.5625 +0.09375 0.375 0.5938 +0.09375 0.375 0.625 +0.09375 0.375 0.6562 +0.09375 0.375 0.6875 +0.09375 0.375 0.7188 +0.09375 0.375 0.75 +0.09375 0.375 0.7812 +0.09375 0.375 0.8125 +0.09375 0.375 0.8438 +0.09375 0.375 0.875 +0.09375 0.375 0.9062 +0.09375 0.375 0.9375 +0.09375 0.375 0.9688 +0.09375 0.375 1 +0.09375 0.4062 0 +0.09375 0.4062 0.03125 +0.09375 0.4062 0.0625 +0.09375 0.4062 0.09375 +0.09375 0.4062 0.125 +0.09375 0.4062 0.1562 +0.09375 0.4062 0.1875 +0.09375 0.4062 0.2188 +0.09375 0.4062 0.25 +0.09375 0.4062 0.2812 +0.09375 0.4062 0.3125 +0.09375 0.4062 0.3438 +0.09375 0.4062 0.375 +0.09375 0.4062 0.4062 +0.09375 0.4062 0.4375 +0.09375 0.4062 0.4688 +0.09375 0.4062 0.5 +0.09375 0.4062 0.5312 +0.09375 0.4062 0.5625 +0.09375 0.4062 0.5938 +0.09375 0.4062 0.625 +0.09375 0.4062 0.6562 +0.09375 0.4062 0.6875 +0.09375 0.4062 0.7188 +0.09375 0.4062 0.75 +0.09375 0.4062 0.7812 +0.09375 0.4062 0.8125 +0.09375 0.4062 0.8438 +0.09375 0.4062 0.875 +0.09375 0.4062 0.9062 +0.09375 0.4062 0.9375 +0.09375 0.4062 0.9688 +0.09375 0.4062 1 +0.09375 0.4375 0 +0.09375 0.4375 0.03125 +0.09375 0.4375 0.0625 +0.09375 0.4375 0.09375 +0.09375 0.4375 0.125 +0.09375 0.4375 0.1562 +0.09375 0.4375 0.1875 +0.09375 0.4375 0.2188 +0.09375 0.4375 0.25 +0.09375 0.4375 0.2812 +0.09375 0.4375 0.3125 +0.09375 0.4375 0.3438 +0.09375 0.4375 0.375 +0.09375 0.4375 0.4062 +0.09375 0.4375 0.4375 +0.09375 0.4375 0.4688 +0.09375 0.4375 0.5 +0.09375 0.4375 0.5312 +0.09375 0.4375 0.5625 +0.09375 0.4375 0.5938 +0.09375 0.4375 0.625 +0.09375 0.4375 0.6562 +0.09375 0.4375 0.6875 +0.09375 0.4375 0.7188 +0.09375 0.4375 0.75 +0.09375 0.4375 0.7812 +0.09375 0.4375 0.8125 +0.09375 0.4375 0.8438 +0.09375 0.4375 0.875 +0.09375 0.4375 0.9062 +0.09375 0.4375 0.9375 +0.09375 0.4375 0.9688 +0.09375 0.4375 1 +0.09375 0.4688 0 +0.09375 0.4688 0.03125 +0.09375 0.4688 0.0625 +0.09375 0.4688 0.09375 +0.09375 0.4688 0.125 +0.09375 0.4688 0.1562 +0.09375 0.4688 0.1875 +0.09375 0.4688 0.2188 +0.09375 0.4688 0.25 +0.09375 0.4688 0.2812 +0.09375 0.4688 0.3125 +0.09375 0.4688 0.3438 +0.09375 0.4688 0.375 +0.09375 0.4688 0.4062 +0.09375 0.4688 0.4375 +0.09375 0.4688 0.4688 +0.09375 0.4688 0.5 +0.09375 0.4688 0.5312 +0.09375 0.4688 0.5625 +0.09375 0.4688 0.5938 +0.09375 0.4688 0.625 +0.09375 0.4688 0.6562 +0.09375 0.4688 0.6875 +0.09375 0.4688 0.7188 +0.09375 0.4688 0.75 +0.09375 0.4688 0.7812 +0.09375 0.4688 0.8125 +0.09375 0.4688 0.8438 +0.09375 0.4688 0.875 +0.09375 0.4688 0.9062 +0.09375 0.4688 0.9375 +0.09375 0.4688 0.9688 +0.09375 0.4688 1 +0.09375 0.5 0 +0.09375 0.5 0.03125 +0.09375 0.5 0.0625 +0.09375 0.5 0.09375 +0.09375 0.5 0.125 +0.09375 0.5 0.1562 +0.09375 0.5 0.1875 +0.09375 0.5 0.2188 +0.09375 0.5 0.25 +0.09375 0.5 0.2812 +0.09375 0.5 0.3125 +0.09375 0.5 0.3438 +0.09375 0.5 0.375 +0.09375 0.5 0.4062 +0.09375 0.5 0.4375 +0.09375 0.5 0.4688 +0.09375 0.5 0.5 +0.09375 0.5 0.5312 +0.09375 0.5 0.5625 +0.09375 0.5 0.5938 +0.09375 0.5 0.625 +0.09375 0.5 0.6562 +0.09375 0.5 0.6875 +0.09375 0.5 0.7188 +0.09375 0.5 0.75 +0.09375 0.5 0.7812 +0.09375 0.5 0.8125 +0.09375 0.5 0.8438 +0.09375 0.5 0.875 +0.09375 0.5 0.9062 +0.09375 0.5 0.9375 +0.09375 0.5 0.9688 +0.09375 0.5 1 +0.09375 0.5312 0 +0.09375 0.5312 0.03125 +0.09375 0.5312 0.0625 +0.09375 0.5312 0.09375 +0.09375 0.5312 0.125 +0.09375 0.5312 0.1562 +0.09375 0.5312 0.1875 +0.09375 0.5312 0.2188 +0.09375 0.5312 0.25 +0.09375 0.5312 0.2812 +0.09375 0.5312 0.3125 +0.09375 0.5312 0.3438 +0.09375 0.5312 0.375 +0.09375 0.5312 0.4062 +0.09375 0.5312 0.4375 +0.09375 0.5312 0.4688 +0.09375 0.5312 0.5 +0.09375 0.5312 0.5312 +0.09375 0.5312 0.5625 +0.09375 0.5312 0.5938 +0.09375 0.5312 0.625 +0.09375 0.5312 0.6562 +0.09375 0.5312 0.6875 +0.09375 0.5312 0.7188 +0.09375 0.5312 0.75 +0.09375 0.5312 0.7812 +0.09375 0.5312 0.8125 +0.09375 0.5312 0.8438 +0.09375 0.5312 0.875 +0.09375 0.5312 0.9062 +0.09375 0.5312 0.9375 +0.09375 0.5312 0.9688 +0.09375 0.5312 1 +0.09375 0.5625 0 +0.09375 0.5625 0.03125 +0.09375 0.5625 0.0625 +0.09375 0.5625 0.09375 +0.09375 0.5625 0.125 +0.09375 0.5625 0.1562 +0.09375 0.5625 0.1875 +0.09375 0.5625 0.2188 +0.09375 0.5625 0.25 +0.09375 0.5625 0.2812 +0.09375 0.5625 0.3125 +0.09375 0.5625 0.3438 +0.09375 0.5625 0.375 +0.09375 0.5625 0.4062 +0.09375 0.5625 0.4375 +0.09375 0.5625 0.4688 +0.09375 0.5625 0.5 +0.09375 0.5625 0.5312 +0.09375 0.5625 0.5625 +0.09375 0.5625 0.5938 +0.09375 0.5625 0.625 +0.09375 0.5625 0.6562 +0.09375 0.5625 0.6875 +0.09375 0.5625 0.7188 +0.09375 0.5625 0.75 +0.09375 0.5625 0.7812 +0.09375 0.5625 0.8125 +0.09375 0.5625 0.8438 +0.09375 0.5625 0.875 +0.09375 0.5625 0.9062 +0.09375 0.5625 0.9375 +0.09375 0.5625 0.9688 +0.09375 0.5625 1 +0.09375 0.5938 0 +0.09375 0.5938 0.03125 +0.09375 0.5938 0.0625 +0.09375 0.5938 0.09375 +0.09375 0.5938 0.125 +0.09375 0.5938 0.1562 +0.09375 0.5938 0.1875 +0.09375 0.5938 0.2188 +0.09375 0.5938 0.25 +0.09375 0.5938 0.2812 +0.09375 0.5938 0.3125 +0.09375 0.5938 0.3438 +0.09375 0.5938 0.375 +0.09375 0.5938 0.4062 +0.09375 0.5938 0.4375 +0.09375 0.5938 0.4688 +0.09375 0.5938 0.5 +0.09375 0.5938 0.5312 +0.09375 0.5938 0.5625 +0.09375 0.5938 0.5938 +0.09375 0.5938 0.625 +0.09375 0.5938 0.6562 +0.09375 0.5938 0.6875 +0.09375 0.5938 0.7188 +0.09375 0.5938 0.75 +0.09375 0.5938 0.7812 +0.09375 0.5938 0.8125 +0.09375 0.5938 0.8438 +0.09375 0.5938 0.875 +0.09375 0.5938 0.9062 +0.09375 0.5938 0.9375 +0.09375 0.5938 0.9688 +0.09375 0.5938 1 +0.09375 0.625 0 +0.09375 0.625 0.03125 +0.09375 0.625 0.0625 +0.09375 0.625 0.09375 +0.09375 0.625 0.125 +0.09375 0.625 0.1562 +0.09375 0.625 0.1875 +0.09375 0.625 0.2188 +0.09375 0.625 0.25 +0.09375 0.625 0.2812 +0.09375 0.625 0.3125 +0.09375 0.625 0.3438 +0.09375 0.625 0.375 +0.09375 0.625 0.4062 +0.09375 0.625 0.4375 +0.09375 0.625 0.4688 +0.09375 0.625 0.5 +0.09375 0.625 0.5312 +0.09375 0.625 0.5625 +0.09375 0.625 0.5938 +0.09375 0.625 0.625 +0.09375 0.625 0.6562 +0.09375 0.625 0.6875 +0.09375 0.625 0.7188 +0.09375 0.625 0.75 +0.09375 0.625 0.7812 +0.09375 0.625 0.8125 +0.09375 0.625 0.8438 +0.09375 0.625 0.875 +0.09375 0.625 0.9062 +0.09375 0.625 0.9375 +0.09375 0.625 0.9688 +0.09375 0.625 1 +0.09375 0.6562 0 +0.09375 0.6562 0.03125 +0.09375 0.6562 0.0625 +0.09375 0.6562 0.09375 +0.09375 0.6562 0.125 +0.09375 0.6562 0.1562 +0.09375 0.6562 0.1875 +0.09375 0.6562 0.2188 +0.09375 0.6562 0.25 +0.09375 0.6562 0.2812 +0.09375 0.6562 0.3125 +0.09375 0.6562 0.3438 +0.09375 0.6562 0.375 +0.09375 0.6562 0.4062 +0.09375 0.6562 0.4375 +0.09375 0.6562 0.4688 +0.09375 0.6562 0.5 +0.09375 0.6562 0.5312 +0.09375 0.6562 0.5625 +0.09375 0.6562 0.5938 +0.09375 0.6562 0.625 +0.09375 0.6562 0.6562 +0.09375 0.6562 0.6875 +0.09375 0.6562 0.7188 +0.09375 0.6562 0.75 +0.09375 0.6562 0.7812 +0.09375 0.6562 0.8125 +0.09375 0.6562 0.8438 +0.09375 0.6562 0.875 +0.09375 0.6562 0.9062 +0.09375 0.6562 0.9375 +0.09375 0.6562 0.9688 +0.09375 0.6562 1 +0.09375 0.6875 0 +0.09375 0.6875 0.03125 +0.09375 0.6875 0.0625 +0.09375 0.6875 0.09375 +0.09375 0.6875 0.125 +0.09375 0.6875 0.1562 +0.09375 0.6875 0.1875 +0.09375 0.6875 0.2188 +0.09375 0.6875 0.25 +0.09375 0.6875 0.2812 +0.09375 0.6875 0.3125 +0.09375 0.6875 0.3438 +0.09375 0.6875 0.375 +0.09375 0.6875 0.4062 +0.09375 0.6875 0.4375 +0.09375 0.6875 0.4688 +0.09375 0.6875 0.5 +0.09375 0.6875 0.5312 +0.09375 0.6875 0.5625 +0.09375 0.6875 0.5938 +0.09375 0.6875 0.625 +0.09375 0.6875 0.6562 +0.09375 0.6875 0.6875 +0.09375 0.6875 0.7188 +0.09375 0.6875 0.75 +0.09375 0.6875 0.7812 +0.09375 0.6875 0.8125 +0.09375 0.6875 0.8438 +0.09375 0.6875 0.875 +0.09375 0.6875 0.9062 +0.09375 0.6875 0.9375 +0.09375 0.6875 0.9688 +0.09375 0.6875 1 +0.09375 0.7188 0 +0.09375 0.7188 0.03125 +0.09375 0.7188 0.0625 +0.09375 0.7188 0.09375 +0.09375 0.7188 0.125 +0.09375 0.7188 0.1562 +0.09375 0.7188 0.1875 +0.09375 0.7188 0.2188 +0.09375 0.7188 0.25 +0.09375 0.7188 0.2812 +0.09375 0.7188 0.3125 +0.09375 0.7188 0.3438 +0.09375 0.7188 0.375 +0.09375 0.7188 0.4062 +0.09375 0.7188 0.4375 +0.09375 0.7188 0.4688 +0.09375 0.7188 0.5 +0.09375 0.7188 0.5312 +0.09375 0.7188 0.5625 +0.09375 0.7188 0.5938 +0.09375 0.7188 0.625 +0.09375 0.7188 0.6562 +0.09375 0.7188 0.6875 +0.09375 0.7188 0.7188 +0.09375 0.7188 0.75 +0.09375 0.7188 0.7812 +0.09375 0.7188 0.8125 +0.09375 0.7188 0.8438 +0.09375 0.7188 0.875 +0.09375 0.7188 0.9062 +0.09375 0.7188 0.9375 +0.09375 0.7188 0.9688 +0.09375 0.7188 1 +0.09375 0.75 0 +0.09375 0.75 0.03125 +0.09375 0.75 0.0625 +0.09375 0.75 0.09375 +0.09375 0.75 0.125 +0.09375 0.75 0.1562 +0.09375 0.75 0.1875 +0.09375 0.75 0.2188 +0.09375 0.75 0.25 +0.09375 0.75 0.2812 +0.09375 0.75 0.3125 +0.09375 0.75 0.3438 +0.09375 0.75 0.375 +0.09375 0.75 0.4062 +0.09375 0.75 0.4375 +0.09375 0.75 0.4688 +0.09375 0.75 0.5 +0.09375 0.75 0.5312 +0.09375 0.75 0.5625 +0.09375 0.75 0.5938 +0.09375 0.75 0.625 +0.09375 0.75 0.6562 +0.09375 0.75 0.6875 +0.09375 0.75 0.7188 +0.09375 0.75 0.75 +0.09375 0.75 0.7812 +0.09375 0.75 0.8125 +0.09375 0.75 0.8438 +0.09375 0.75 0.875 +0.09375 0.75 0.9062 +0.09375 0.75 0.9375 +0.09375 0.75 0.9688 +0.09375 0.75 1 +0.09375 0.7812 0 +0.09375 0.7812 0.03125 +0.09375 0.7812 0.0625 +0.09375 0.7812 0.09375 +0.09375 0.7812 0.125 +0.09375 0.7812 0.1562 +0.09375 0.7812 0.1875 +0.09375 0.7812 0.2188 +0.09375 0.7812 0.25 +0.09375 0.7812 0.2812 +0.09375 0.7812 0.3125 +0.09375 0.7812 0.3438 +0.09375 0.7812 0.375 +0.09375 0.7812 0.4062 +0.09375 0.7812 0.4375 +0.09375 0.7812 0.4688 +0.09375 0.7812 0.5 +0.09375 0.7812 0.5312 +0.09375 0.7812 0.5625 +0.09375 0.7812 0.5938 +0.09375 0.7812 0.625 +0.09375 0.7812 0.6562 +0.09375 0.7812 0.6875 +0.09375 0.7812 0.7188 +0.09375 0.7812 0.75 +0.09375 0.7812 0.7812 +0.09375 0.7812 0.8125 +0.09375 0.7812 0.8438 +0.09375 0.7812 0.875 +0.09375 0.7812 0.9062 +0.09375 0.7812 0.9375 +0.09375 0.7812 0.9688 +0.09375 0.7812 1 +0.09375 0.8125 0 +0.09375 0.8125 0.03125 +0.09375 0.8125 0.0625 +0.09375 0.8125 0.09375 +0.09375 0.8125 0.125 +0.09375 0.8125 0.1562 +0.09375 0.8125 0.1875 +0.09375 0.8125 0.2188 +0.09375 0.8125 0.25 +0.09375 0.8125 0.2812 +0.09375 0.8125 0.3125 +0.09375 0.8125 0.3438 +0.09375 0.8125 0.375 +0.09375 0.8125 0.4062 +0.09375 0.8125 0.4375 +0.09375 0.8125 0.4688 +0.09375 0.8125 0.5 +0.09375 0.8125 0.5312 +0.09375 0.8125 0.5625 +0.09375 0.8125 0.5938 +0.09375 0.8125 0.625 +0.09375 0.8125 0.6562 +0.09375 0.8125 0.6875 +0.09375 0.8125 0.7188 +0.09375 0.8125 0.75 +0.09375 0.8125 0.7812 +0.09375 0.8125 0.8125 +0.09375 0.8125 0.8438 +0.09375 0.8125 0.875 +0.09375 0.8125 0.9062 +0.09375 0.8125 0.9375 +0.09375 0.8125 0.9688 +0.09375 0.8125 1 +0.09375 0.8438 0 +0.09375 0.8438 0.03125 +0.09375 0.8438 0.0625 +0.09375 0.8438 0.09375 +0.09375 0.8438 0.125 +0.09375 0.8438 0.1562 +0.09375 0.8438 0.1875 +0.09375 0.8438 0.2188 +0.09375 0.8438 0.25 +0.09375 0.8438 0.2812 +0.09375 0.8438 0.3125 +0.09375 0.8438 0.3438 +0.09375 0.8438 0.375 +0.09375 0.8438 0.4062 +0.09375 0.8438 0.4375 +0.09375 0.8438 0.4688 +0.09375 0.8438 0.5 +0.09375 0.8438 0.5312 +0.09375 0.8438 0.5625 +0.09375 0.8438 0.5938 +0.09375 0.8438 0.625 +0.09375 0.8438 0.6562 +0.09375 0.8438 0.6875 +0.09375 0.8438 0.7188 +0.09375 0.8438 0.75 +0.09375 0.8438 0.7812 +0.09375 0.8438 0.8125 +0.09375 0.8438 0.8438 +0.09375 0.8438 0.875 +0.09375 0.8438 0.9062 +0.09375 0.8438 0.9375 +0.09375 0.8438 0.9688 +0.09375 0.8438 1 +0.09375 0.875 0 +0.09375 0.875 0.03125 +0.09375 0.875 0.0625 +0.09375 0.875 0.09375 +0.09375 0.875 0.125 +0.09375 0.875 0.1562 +0.09375 0.875 0.1875 +0.09375 0.875 0.2188 +0.09375 0.875 0.25 +0.09375 0.875 0.2812 +0.09375 0.875 0.3125 +0.09375 0.875 0.3438 +0.09375 0.875 0.375 +0.09375 0.875 0.4062 +0.09375 0.875 0.4375 +0.09375 0.875 0.4688 +0.09375 0.875 0.5 +0.09375 0.875 0.5312 +0.09375 0.875 0.5625 +0.09375 0.875 0.5938 +0.09375 0.875 0.625 +0.09375 0.875 0.6562 +0.09375 0.875 0.6875 +0.09375 0.875 0.7188 +0.09375 0.875 0.75 +0.09375 0.875 0.7812 +0.09375 0.875 0.8125 +0.09375 0.875 0.8438 +0.09375 0.875 0.875 +0.09375 0.875 0.9062 +0.09375 0.875 0.9375 +0.09375 0.875 0.9688 +0.09375 0.875 1 +0.09375 0.9062 0 +0.09375 0.9062 0.03125 +0.09375 0.9062 0.0625 +0.09375 0.9062 0.09375 +0.09375 0.9062 0.125 +0.09375 0.9062 0.1562 +0.09375 0.9062 0.1875 +0.09375 0.9062 0.2188 +0.09375 0.9062 0.25 +0.09375 0.9062 0.2812 +0.09375 0.9062 0.3125 +0.09375 0.9062 0.3438 +0.09375 0.9062 0.375 +0.09375 0.9062 0.4062 +0.09375 0.9062 0.4375 +0.09375 0.9062 0.4688 +0.09375 0.9062 0.5 +0.09375 0.9062 0.5312 +0.09375 0.9062 0.5625 +0.09375 0.9062 0.5938 +0.09375 0.9062 0.625 +0.09375 0.9062 0.6562 +0.09375 0.9062 0.6875 +0.09375 0.9062 0.7188 +0.09375 0.9062 0.75 +0.09375 0.9062 0.7812 +0.09375 0.9062 0.8125 +0.09375 0.9062 0.8438 +0.09375 0.9062 0.875 +0.09375 0.9062 0.9062 +0.09375 0.9062 0.9375 +0.09375 0.9062 0.9688 +0.09375 0.9062 1 +0.09375 0.9375 0 +0.09375 0.9375 0.03125 +0.09375 0.9375 0.0625 +0.09375 0.9375 0.09375 +0.09375 0.9375 0.125 +0.09375 0.9375 0.1562 +0.09375 0.9375 0.1875 +0.09375 0.9375 0.2188 +0.09375 0.9375 0.25 +0.09375 0.9375 0.2812 +0.09375 0.9375 0.3125 +0.09375 0.9375 0.3438 +0.09375 0.9375 0.375 +0.09375 0.9375 0.4062 +0.09375 0.9375 0.4375 +0.09375 0.9375 0.4688 +0.09375 0.9375 0.5 +0.09375 0.9375 0.5312 +0.09375 0.9375 0.5625 +0.09375 0.9375 0.5938 +0.09375 0.9375 0.625 +0.09375 0.9375 0.6562 +0.09375 0.9375 0.6875 +0.09375 0.9375 0.7188 +0.09375 0.9375 0.75 +0.09375 0.9375 0.7812 +0.09375 0.9375 0.8125 +0.09375 0.9375 0.8438 +0.09375 0.9375 0.875 +0.09375 0.9375 0.9062 +0.09375 0.9375 0.9375 +0.09375 0.9375 0.9688 +0.09375 0.9375 1 +0.09375 0.9688 0 +0.09375 0.9688 0.03125 +0.09375 0.9688 0.0625 +0.09375 0.9688 0.09375 +0.09375 0.9688 0.125 +0.09375 0.9688 0.1562 +0.09375 0.9688 0.1875 +0.09375 0.9688 0.2188 +0.09375 0.9688 0.25 +0.09375 0.9688 0.2812 +0.09375 0.9688 0.3125 +0.09375 0.9688 0.3438 +0.09375 0.9688 0.375 +0.09375 0.9688 0.4062 +0.09375 0.9688 0.4375 +0.09375 0.9688 0.4688 +0.09375 0.9688 0.5 +0.09375 0.9688 0.5312 +0.09375 0.9688 0.5625 +0.09375 0.9688 0.5938 +0.09375 0.9688 0.625 +0.09375 0.9688 0.6562 +0.09375 0.9688 0.6875 +0.09375 0.9688 0.7188 +0.09375 0.9688 0.75 +0.09375 0.9688 0.7812 +0.09375 0.9688 0.8125 +0.09375 0.9688 0.8438 +0.09375 0.9688 0.875 +0.09375 0.9688 0.9062 +0.09375 0.9688 0.9375 +0.09375 0.9688 0.9688 +0.09375 0.9688 1 +0.09375 1 0 +0.09375 1 0.03125 +0.09375 1 0.0625 +0.09375 1 0.09375 +0.09375 1 0.125 +0.09375 1 0.1562 +0.09375 1 0.1875 +0.09375 1 0.2188 +0.09375 1 0.25 +0.09375 1 0.2812 +0.09375 1 0.3125 +0.09375 1 0.3438 +0.09375 1 0.375 +0.09375 1 0.4062 +0.09375 1 0.4375 +0.09375 1 0.4688 +0.09375 1 0.5 +0.09375 1 0.5312 +0.09375 1 0.5625 +0.09375 1 0.5938 +0.09375 1 0.625 +0.09375 1 0.6562 +0.09375 1 0.6875 +0.09375 1 0.7188 +0.09375 1 0.75 +0.09375 1 0.7812 +0.09375 1 0.8125 +0.09375 1 0.8438 +0.09375 1 0.875 +0.09375 1 0.9062 +0.09375 1 0.9375 +0.09375 1 0.9688 +0.09375 1 1 +0.125 0 0 +0.125 0 0.03125 +0.125 0 0.0625 +0.125 0 0.09375 +0.125 0 0.125 +0.125 0 0.1562 +0.125 0 0.1875 +0.125 0 0.2188 +0.125 0 0.25 +0.125 0 0.2812 +0.125 0 0.3125 +0.125 0 0.3438 +0.125 0 0.375 +0.125 0 0.4062 +0.125 0 0.4375 +0.125 0 0.4688 +0.125 0 0.5 +0.125 0 0.5312 +0.125 0 0.5625 +0.125 0 0.5938 +0.125 0 0.625 +0.125 0 0.6562 +0.125 0 0.6875 +0.125 0 0.7188 +0.125 0 0.75 +0.125 0 0.7812 +0.125 0 0.8125 +0.125 0 0.8438 +0.125 0 0.875 +0.125 0 0.9062 +0.125 0 0.9375 +0.125 0 0.9688 +0.125 0 1 +0.125 0.03125 0 +0.125 0.03125 0.03125 +0.125 0.03125 0.0625 +0.125 0.03125 0.09375 +0.125 0.03125 0.125 +0.125 0.03125 0.1562 +0.125 0.03125 0.1875 +0.125 0.03125 0.2188 +0.125 0.03125 0.25 +0.125 0.03125 0.2812 +0.125 0.03125 0.3125 +0.125 0.03125 0.3438 +0.125 0.03125 0.375 +0.125 0.03125 0.4062 +0.125 0.03125 0.4375 +0.125 0.03125 0.4688 +0.125 0.03125 0.5 +0.125 0.03125 0.5312 +0.125 0.03125 0.5625 +0.125 0.03125 0.5938 +0.125 0.03125 0.625 +0.125 0.03125 0.6562 +0.125 0.03125 0.6875 +0.125 0.03125 0.7188 +0.125 0.03125 0.75 +0.125 0.03125 0.7812 +0.125 0.03125 0.8125 +0.125 0.03125 0.8438 +0.125 0.03125 0.875 +0.125 0.03125 0.9062 +0.125 0.03125 0.9375 +0.125 0.03125 0.9688 +0.125 0.03125 1 +0.125 0.0625 0 +0.125 0.0625 0.03125 +0.125 0.0625 0.0625 +0.125 0.0625 0.09375 +0.125 0.0625 0.125 +0.125 0.0625 0.1562 +0.125 0.0625 0.1875 +0.125 0.0625 0.2188 +0.125 0.0625 0.25 +0.125 0.0625 0.2812 +0.125 0.0625 0.3125 +0.125 0.0625 0.3438 +0.125 0.0625 0.375 +0.125 0.0625 0.4062 +0.125 0.0625 0.4375 +0.125 0.0625 0.4688 +0.125 0.0625 0.5 +0.125 0.0625 0.5312 +0.125 0.0625 0.5625 +0.125 0.0625 0.5938 +0.125 0.0625 0.625 +0.125 0.0625 0.6562 +0.125 0.0625 0.6875 +0.125 0.0625 0.7188 +0.125 0.0625 0.75 +0.125 0.0625 0.7812 +0.125 0.0625 0.8125 +0.125 0.0625 0.8438 +0.125 0.0625 0.875 +0.125 0.0625 0.9062 +0.125 0.0625 0.9375 +0.125 0.0625 0.9688 +0.125 0.0625 1 +0.125 0.09375 0 +0.125 0.09375 0.03125 +0.125 0.09375 0.0625 +0.125 0.09375 0.09375 +0.125 0.09375 0.125 +0.125 0.09375 0.1562 +0.125 0.09375 0.1875 +0.125 0.09375 0.2188 +0.125 0.09375 0.25 +0.125 0.09375 0.2812 +0.125 0.09375 0.3125 +0.125 0.09375 0.3438 +0.125 0.09375 0.375 +0.125 0.09375 0.4062 +0.125 0.09375 0.4375 +0.125 0.09375 0.4688 +0.125 0.09375 0.5 +0.125 0.09375 0.5312 +0.125 0.09375 0.5625 +0.125 0.09375 0.5938 +0.125 0.09375 0.625 +0.125 0.09375 0.6562 +0.125 0.09375 0.6875 +0.125 0.09375 0.7188 +0.125 0.09375 0.75 +0.125 0.09375 0.7812 +0.125 0.09375 0.8125 +0.125 0.09375 0.8438 +0.125 0.09375 0.875 +0.125 0.09375 0.9062 +0.125 0.09375 0.9375 +0.125 0.09375 0.9688 +0.125 0.09375 1 +0.125 0.125 0 +0.125 0.125 0.03125 +0.125 0.125 0.0625 +0.125 0.125 0.09375 +0.125 0.125 0.125 +0.125 0.125 0.1562 +0.125 0.125 0.1875 +0.125 0.125 0.2188 +0.125 0.125 0.25 +0.125 0.125 0.2812 +0.125 0.125 0.3125 +0.125 0.125 0.3438 +0.125 0.125 0.375 +0.125 0.125 0.4062 +0.125 0.125 0.4375 +0.125 0.125 0.4688 +0.125 0.125 0.5 +0.125 0.125 0.5312 +0.125 0.125 0.5625 +0.125 0.125 0.5938 +0.125 0.125 0.625 +0.125 0.125 0.6562 +0.125 0.125 0.6875 +0.125 0.125 0.7188 +0.125 0.125 0.75 +0.125 0.125 0.7812 +0.125 0.125 0.8125 +0.125 0.125 0.8438 +0.125 0.125 0.875 +0.125 0.125 0.9062 +0.125 0.125 0.9375 +0.125 0.125 0.9688 +0.125 0.125 1 +0.125 0.1562 0 +0.125 0.1562 0.03125 +0.125 0.1562 0.0625 +0.125 0.1562 0.09375 +0.125 0.1562 0.125 +0.125 0.1562 0.1562 +0.125 0.1562 0.1875 +0.125 0.1562 0.2188 +0.125 0.1562 0.25 +0.125 0.1562 0.2812 +0.125 0.1562 0.3125 +0.125 0.1562 0.3438 +0.125 0.1562 0.375 +0.125 0.1562 0.4062 +0.125 0.1562 0.4375 +0.125 0.1562 0.4688 +0.125 0.1562 0.5 +0.125 0.1562 0.5312 +0.125 0.1562 0.5625 +0.125 0.1562 0.5938 +0.125 0.1562 0.625 +0.125 0.1562 0.6562 +0.125 0.1562 0.6875 +0.125 0.1562 0.7188 +0.125 0.1562 0.75 +0.125 0.1562 0.7812 +0.125 0.1562 0.8125 +0.125 0.1562 0.8438 +0.125 0.1562 0.875 +0.125 0.1562 0.9062 +0.125 0.1562 0.9375 +0.125 0.1562 0.9688 +0.125 0.1562 1 +0.125 0.1875 0 +0.125 0.1875 0.03125 +0.125 0.1875 0.0625 +0.125 0.1875 0.09375 +0.125 0.1875 0.125 +0.125 0.1875 0.1562 +0.125 0.1875 0.1875 +0.125 0.1875 0.2188 +0.125 0.1875 0.25 +0.125 0.1875 0.2812 +0.125 0.1875 0.3125 +0.125 0.1875 0.3438 +0.125 0.1875 0.375 +0.125 0.1875 0.4062 +0.125 0.1875 0.4375 +0.125 0.1875 0.4688 +0.125 0.1875 0.5 +0.125 0.1875 0.5312 +0.125 0.1875 0.5625 +0.125 0.1875 0.5938 +0.125 0.1875 0.625 +0.125 0.1875 0.6562 +0.125 0.1875 0.6875 +0.125 0.1875 0.7188 +0.125 0.1875 0.75 +0.125 0.1875 0.7812 +0.125 0.1875 0.8125 +0.125 0.1875 0.8438 +0.125 0.1875 0.875 +0.125 0.1875 0.9062 +0.125 0.1875 0.9375 +0.125 0.1875 0.9688 +0.125 0.1875 1 +0.125 0.2188 0 +0.125 0.2188 0.03125 +0.125 0.2188 0.0625 +0.125 0.2188 0.09375 +0.125 0.2188 0.125 +0.125 0.2188 0.1562 +0.125 0.2188 0.1875 +0.125 0.2188 0.2188 +0.125 0.2188 0.25 +0.125 0.2188 0.2812 +0.125 0.2188 0.3125 +0.125 0.2188 0.3438 +0.125 0.2188 0.375 +0.125 0.2188 0.4062 +0.125 0.2188 0.4375 +0.125 0.2188 0.4688 +0.125 0.2188 0.5 +0.125 0.2188 0.5312 +0.125 0.2188 0.5625 +0.125 0.2188 0.5938 +0.125 0.2188 0.625 +0.125 0.2188 0.6562 +0.125 0.2188 0.6875 +0.125 0.2188 0.7188 +0.125 0.2188 0.75 +0.125 0.2188 0.7812 +0.125 0.2188 0.8125 +0.125 0.2188 0.8438 +0.125 0.2188 0.875 +0.125 0.2188 0.9062 +0.125 0.2188 0.9375 +0.125 0.2188 0.9688 +0.125 0.2188 1 +0.125 0.25 0 +0.125 0.25 0.03125 +0.125 0.25 0.0625 +0.125 0.25 0.09375 +0.125 0.25 0.125 +0.125 0.25 0.1562 +0.125 0.25 0.1875 +0.125 0.25 0.2188 +0.125 0.25 0.25 +0.125 0.25 0.2812 +0.125 0.25 0.3125 +0.125 0.25 0.3438 +0.125 0.25 0.375 +0.125 0.25 0.4062 +0.125 0.25 0.4375 +0.125 0.25 0.4688 +0.125 0.25 0.5 +0.125 0.25 0.5312 +0.125 0.25 0.5625 +0.125 0.25 0.5938 +0.125 0.25 0.625 +0.125 0.25 0.6562 +0.125 0.25 0.6875 +0.125 0.25 0.7188 +0.125 0.25 0.75 +0.125 0.25 0.7812 +0.125 0.25 0.8125 +0.125 0.25 0.8438 +0.125 0.25 0.875 +0.125 0.25 0.9062 +0.125 0.25 0.9375 +0.125 0.25 0.9688 +0.125 0.25 1 +0.125 0.2812 0 +0.125 0.2812 0.03125 +0.125 0.2812 0.0625 +0.125 0.2812 0.09375 +0.125 0.2812 0.125 +0.125 0.2812 0.1562 +0.125 0.2812 0.1875 +0.125 0.2812 0.2188 +0.125 0.2812 0.25 +0.125 0.2812 0.2812 +0.125 0.2812 0.3125 +0.125 0.2812 0.3438 +0.125 0.2812 0.375 +0.125 0.2812 0.4062 +0.125 0.2812 0.4375 +0.125 0.2812 0.4688 +0.125 0.2812 0.5 +0.125 0.2812 0.5312 +0.125 0.2812 0.5625 +0.125 0.2812 0.5938 +0.125 0.2812 0.625 +0.125 0.2812 0.6562 +0.125 0.2812 0.6875 +0.125 0.2812 0.7188 +0.125 0.2812 0.75 +0.125 0.2812 0.7812 +0.125 0.2812 0.8125 +0.125 0.2812 0.8438 +0.125 0.2812 0.875 +0.125 0.2812 0.9062 +0.125 0.2812 0.9375 +0.125 0.2812 0.9688 +0.125 0.2812 1 +0.125 0.3125 0 +0.125 0.3125 0.03125 +0.125 0.3125 0.0625 +0.125 0.3125 0.09375 +0.125 0.3125 0.125 +0.125 0.3125 0.1562 +0.125 0.3125 0.1875 +0.125 0.3125 0.2188 +0.125 0.3125 0.25 +0.125 0.3125 0.2812 +0.125 0.3125 0.3125 +0.125 0.3125 0.3438 +0.125 0.3125 0.375 +0.125 0.3125 0.4062 +0.125 0.3125 0.4375 +0.125 0.3125 0.4688 +0.125 0.3125 0.5 +0.125 0.3125 0.5312 +0.125 0.3125 0.5625 +0.125 0.3125 0.5938 +0.125 0.3125 0.625 +0.125 0.3125 0.6562 +0.125 0.3125 0.6875 +0.125 0.3125 0.7188 +0.125 0.3125 0.75 +0.125 0.3125 0.7812 +0.125 0.3125 0.8125 +0.125 0.3125 0.8438 +0.125 0.3125 0.875 +0.125 0.3125 0.9062 +0.125 0.3125 0.9375 +0.125 0.3125 0.9688 +0.125 0.3125 1 +0.125 0.3438 0 +0.125 0.3438 0.03125 +0.125 0.3438 0.0625 +0.125 0.3438 0.09375 +0.125 0.3438 0.125 +0.125 0.3438 0.1562 +0.125 0.3438 0.1875 +0.125 0.3438 0.2188 +0.125 0.3438 0.25 +0.125 0.3438 0.2812 +0.125 0.3438 0.3125 +0.125 0.3438 0.3438 +0.125 0.3438 0.375 +0.125 0.3438 0.4062 +0.125 0.3438 0.4375 +0.125 0.3438 0.4688 +0.125 0.3438 0.5 +0.125 0.3438 0.5312 +0.125 0.3438 0.5625 +0.125 0.3438 0.5938 +0.125 0.3438 0.625 +0.125 0.3438 0.6562 +0.125 0.3438 0.6875 +0.125 0.3438 0.7188 +0.125 0.3438 0.75 +0.125 0.3438 0.7812 +0.125 0.3438 0.8125 +0.125 0.3438 0.8438 +0.125 0.3438 0.875 +0.125 0.3438 0.9062 +0.125 0.3438 0.9375 +0.125 0.3438 0.9688 +0.125 0.3438 1 +0.125 0.375 0 +0.125 0.375 0.03125 +0.125 0.375 0.0625 +0.125 0.375 0.09375 +0.125 0.375 0.125 +0.125 0.375 0.1562 +0.125 0.375 0.1875 +0.125 0.375 0.2188 +0.125 0.375 0.25 +0.125 0.375 0.2812 +0.125 0.375 0.3125 +0.125 0.375 0.3438 +0.125 0.375 0.375 +0.125 0.375 0.4062 +0.125 0.375 0.4375 +0.125 0.375 0.4688 +0.125 0.375 0.5 +0.125 0.375 0.5312 +0.125 0.375 0.5625 +0.125 0.375 0.5938 +0.125 0.375 0.625 +0.125 0.375 0.6562 +0.125 0.375 0.6875 +0.125 0.375 0.7188 +0.125 0.375 0.75 +0.125 0.375 0.7812 +0.125 0.375 0.8125 +0.125 0.375 0.8438 +0.125 0.375 0.875 +0.125 0.375 0.9062 +0.125 0.375 0.9375 +0.125 0.375 0.9688 +0.125 0.375 1 +0.125 0.4062 0 +0.125 0.4062 0.03125 +0.125 0.4062 0.0625 +0.125 0.4062 0.09375 +0.125 0.4062 0.125 +0.125 0.4062 0.1562 +0.125 0.4062 0.1875 +0.125 0.4062 0.2188 +0.125 0.4062 0.25 +0.125 0.4062 0.2812 +0.125 0.4062 0.3125 +0.125 0.4062 0.3438 +0.125 0.4062 0.375 +0.125 0.4062 0.4062 +0.125 0.4062 0.4375 +0.125 0.4062 0.4688 +0.125 0.4062 0.5 +0.125 0.4062 0.5312 +0.125 0.4062 0.5625 +0.125 0.4062 0.5938 +0.125 0.4062 0.625 +0.125 0.4062 0.6562 +0.125 0.4062 0.6875 +0.125 0.4062 0.7188 +0.125 0.4062 0.75 +0.125 0.4062 0.7812 +0.125 0.4062 0.8125 +0.125 0.4062 0.8438 +0.125 0.4062 0.875 +0.125 0.4062 0.9062 +0.125 0.4062 0.9375 +0.125 0.4062 0.9688 +0.125 0.4062 1 +0.125 0.4375 0 +0.125 0.4375 0.03125 +0.125 0.4375 0.0625 +0.125 0.4375 0.09375 +0.125 0.4375 0.125 +0.125 0.4375 0.1562 +0.125 0.4375 0.1875 +0.125 0.4375 0.2188 +0.125 0.4375 0.25 +0.125 0.4375 0.2812 +0.125 0.4375 0.3125 +0.125 0.4375 0.3438 +0.125 0.4375 0.375 +0.125 0.4375 0.4062 +0.125 0.4375 0.4375 +0.125 0.4375 0.4688 +0.125 0.4375 0.5 +0.125 0.4375 0.5312 +0.125 0.4375 0.5625 +0.125 0.4375 0.5938 +0.125 0.4375 0.625 +0.125 0.4375 0.6562 +0.125 0.4375 0.6875 +0.125 0.4375 0.7188 +0.125 0.4375 0.75 +0.125 0.4375 0.7812 +0.125 0.4375 0.8125 +0.125 0.4375 0.8438 +0.125 0.4375 0.875 +0.125 0.4375 0.9062 +0.125 0.4375 0.9375 +0.125 0.4375 0.9688 +0.125 0.4375 1 +0.125 0.4688 0 +0.125 0.4688 0.03125 +0.125 0.4688 0.0625 +0.125 0.4688 0.09375 +0.125 0.4688 0.125 +0.125 0.4688 0.1562 +0.125 0.4688 0.1875 +0.125 0.4688 0.2188 +0.125 0.4688 0.25 +0.125 0.4688 0.2812 +0.125 0.4688 0.3125 +0.125 0.4688 0.3438 +0.125 0.4688 0.375 +0.125 0.4688 0.4062 +0.125 0.4688 0.4375 +0.125 0.4688 0.4688 +0.125 0.4688 0.5 +0.125 0.4688 0.5312 +0.125 0.4688 0.5625 +0.125 0.4688 0.5938 +0.125 0.4688 0.625 +0.125 0.4688 0.6562 +0.125 0.4688 0.6875 +0.125 0.4688 0.7188 +0.125 0.4688 0.75 +0.125 0.4688 0.7812 +0.125 0.4688 0.8125 +0.125 0.4688 0.8438 +0.125 0.4688 0.875 +0.125 0.4688 0.9062 +0.125 0.4688 0.9375 +0.125 0.4688 0.9688 +0.125 0.4688 1 +0.125 0.5 0 +0.125 0.5 0.03125 +0.125 0.5 0.0625 +0.125 0.5 0.09375 +0.125 0.5 0.125 +0.125 0.5 0.1562 +0.125 0.5 0.1875 +0.125 0.5 0.2188 +0.125 0.5 0.25 +0.125 0.5 0.2812 +0.125 0.5 0.3125 +0.125 0.5 0.3438 +0.125 0.5 0.375 +0.125 0.5 0.4062 +0.125 0.5 0.4375 +0.125 0.5 0.4688 +0.125 0.5 0.5 +0.125 0.5 0.5312 +0.125 0.5 0.5625 +0.125 0.5 0.5938 +0.125 0.5 0.625 +0.125 0.5 0.6562 +0.125 0.5 0.6875 +0.125 0.5 0.7188 +0.125 0.5 0.75 +0.125 0.5 0.7812 +0.125 0.5 0.8125 +0.125 0.5 0.8438 +0.125 0.5 0.875 +0.125 0.5 0.9062 +0.125 0.5 0.9375 +0.125 0.5 0.9688 +0.125 0.5 1 +0.125 0.5312 0 +0.125 0.5312 0.03125 +0.125 0.5312 0.0625 +0.125 0.5312 0.09375 +0.125 0.5312 0.125 +0.125 0.5312 0.1562 +0.125 0.5312 0.1875 +0.125 0.5312 0.2188 +0.125 0.5312 0.25 +0.125 0.5312 0.2812 +0.125 0.5312 0.3125 +0.125 0.5312 0.3438 +0.125 0.5312 0.375 +0.125 0.5312 0.4062 +0.125 0.5312 0.4375 +0.125 0.5312 0.4688 +0.125 0.5312 0.5 +0.125 0.5312 0.5312 +0.125 0.5312 0.5625 +0.125 0.5312 0.5938 +0.125 0.5312 0.625 +0.125 0.5312 0.6562 +0.125 0.5312 0.6875 +0.125 0.5312 0.7188 +0.125 0.5312 0.75 +0.125 0.5312 0.7812 +0.125 0.5312 0.8125 +0.125 0.5312 0.8438 +0.125 0.5312 0.875 +0.125 0.5312 0.9062 +0.125 0.5312 0.9375 +0.125 0.5312 0.9688 +0.125 0.5312 1 +0.125 0.5625 0 +0.125 0.5625 0.03125 +0.125 0.5625 0.0625 +0.125 0.5625 0.09375 +0.125 0.5625 0.125 +0.125 0.5625 0.1562 +0.125 0.5625 0.1875 +0.125 0.5625 0.2188 +0.125 0.5625 0.25 +0.125 0.5625 0.2812 +0.125 0.5625 0.3125 +0.125 0.5625 0.3438 +0.125 0.5625 0.375 +0.125 0.5625 0.4062 +0.125 0.5625 0.4375 +0.125 0.5625 0.4688 +0.125 0.5625 0.5 +0.125 0.5625 0.5312 +0.125 0.5625 0.5625 +0.125 0.5625 0.5938 +0.125 0.5625 0.625 +0.125 0.5625 0.6562 +0.125 0.5625 0.6875 +0.125 0.5625 0.7188 +0.125 0.5625 0.75 +0.125 0.5625 0.7812 +0.125 0.5625 0.8125 +0.125 0.5625 0.8438 +0.125 0.5625 0.875 +0.125 0.5625 0.9062 +0.125 0.5625 0.9375 +0.125 0.5625 0.9688 +0.125 0.5625 1 +0.125 0.5938 0 +0.125 0.5938 0.03125 +0.125 0.5938 0.0625 +0.125 0.5938 0.09375 +0.125 0.5938 0.125 +0.125 0.5938 0.1562 +0.125 0.5938 0.1875 +0.125 0.5938 0.2188 +0.125 0.5938 0.25 +0.125 0.5938 0.2812 +0.125 0.5938 0.3125 +0.125 0.5938 0.3438 +0.125 0.5938 0.375 +0.125 0.5938 0.4062 +0.125 0.5938 0.4375 +0.125 0.5938 0.4688 +0.125 0.5938 0.5 +0.125 0.5938 0.5312 +0.125 0.5938 0.5625 +0.125 0.5938 0.5938 +0.125 0.5938 0.625 +0.125 0.5938 0.6562 +0.125 0.5938 0.6875 +0.125 0.5938 0.7188 +0.125 0.5938 0.75 +0.125 0.5938 0.7812 +0.125 0.5938 0.8125 +0.125 0.5938 0.8438 +0.125 0.5938 0.875 +0.125 0.5938 0.9062 +0.125 0.5938 0.9375 +0.125 0.5938 0.9688 +0.125 0.5938 1 +0.125 0.625 0 +0.125 0.625 0.03125 +0.125 0.625 0.0625 +0.125 0.625 0.09375 +0.125 0.625 0.125 +0.125 0.625 0.1562 +0.125 0.625 0.1875 +0.125 0.625 0.2188 +0.125 0.625 0.25 +0.125 0.625 0.2812 +0.125 0.625 0.3125 +0.125 0.625 0.3438 +0.125 0.625 0.375 +0.125 0.625 0.4062 +0.125 0.625 0.4375 +0.125 0.625 0.4688 +0.125 0.625 0.5 +0.125 0.625 0.5312 +0.125 0.625 0.5625 +0.125 0.625 0.5938 +0.125 0.625 0.625 +0.125 0.625 0.6562 +0.125 0.625 0.6875 +0.125 0.625 0.7188 +0.125 0.625 0.75 +0.125 0.625 0.7812 +0.125 0.625 0.8125 +0.125 0.625 0.8438 +0.125 0.625 0.875 +0.125 0.625 0.9062 +0.125 0.625 0.9375 +0.125 0.625 0.9688 +0.125 0.625 1 +0.125 0.6562 0 +0.125 0.6562 0.03125 +0.125 0.6562 0.0625 +0.125 0.6562 0.09375 +0.125 0.6562 0.125 +0.125 0.6562 0.1562 +0.125 0.6562 0.1875 +0.125 0.6562 0.2188 +0.125 0.6562 0.25 +0.125 0.6562 0.2812 +0.125 0.6562 0.3125 +0.125 0.6562 0.3438 +0.125 0.6562 0.375 +0.125 0.6562 0.4062 +0.125 0.6562 0.4375 +0.125 0.6562 0.4688 +0.125 0.6562 0.5 +0.125 0.6562 0.5312 +0.125 0.6562 0.5625 +0.125 0.6562 0.5938 +0.125 0.6562 0.625 +0.125 0.6562 0.6562 +0.125 0.6562 0.6875 +0.125 0.6562 0.7188 +0.125 0.6562 0.75 +0.125 0.6562 0.7812 +0.125 0.6562 0.8125 +0.125 0.6562 0.8438 +0.125 0.6562 0.875 +0.125 0.6562 0.9062 +0.125 0.6562 0.9375 +0.125 0.6562 0.9688 +0.125 0.6562 1 +0.125 0.6875 0 +0.125 0.6875 0.03125 +0.125 0.6875 0.0625 +0.125 0.6875 0.09375 +0.125 0.6875 0.125 +0.125 0.6875 0.1562 +0.125 0.6875 0.1875 +0.125 0.6875 0.2188 +0.125 0.6875 0.25 +0.125 0.6875 0.2812 +0.125 0.6875 0.3125 +0.125 0.6875 0.3438 +0.125 0.6875 0.375 +0.125 0.6875 0.4062 +0.125 0.6875 0.4375 +0.125 0.6875 0.4688 +0.125 0.6875 0.5 +0.125 0.6875 0.5312 +0.125 0.6875 0.5625 +0.125 0.6875 0.5938 +0.125 0.6875 0.625 +0.125 0.6875 0.6562 +0.125 0.6875 0.6875 +0.125 0.6875 0.7188 +0.125 0.6875 0.75 +0.125 0.6875 0.7812 +0.125 0.6875 0.8125 +0.125 0.6875 0.8438 +0.125 0.6875 0.875 +0.125 0.6875 0.9062 +0.125 0.6875 0.9375 +0.125 0.6875 0.9688 +0.125 0.6875 1 +0.125 0.7188 0 +0.125 0.7188 0.03125 +0.125 0.7188 0.0625 +0.125 0.7188 0.09375 +0.125 0.7188 0.125 +0.125 0.7188 0.1562 +0.125 0.7188 0.1875 +0.125 0.7188 0.2188 +0.125 0.7188 0.25 +0.125 0.7188 0.2812 +0.125 0.7188 0.3125 +0.125 0.7188 0.3438 +0.125 0.7188 0.375 +0.125 0.7188 0.4062 +0.125 0.7188 0.4375 +0.125 0.7188 0.4688 +0.125 0.7188 0.5 +0.125 0.7188 0.5312 +0.125 0.7188 0.5625 +0.125 0.7188 0.5938 +0.125 0.7188 0.625 +0.125 0.7188 0.6562 +0.125 0.7188 0.6875 +0.125 0.7188 0.7188 +0.125 0.7188 0.75 +0.125 0.7188 0.7812 +0.125 0.7188 0.8125 +0.125 0.7188 0.8438 +0.125 0.7188 0.875 +0.125 0.7188 0.9062 +0.125 0.7188 0.9375 +0.125 0.7188 0.9688 +0.125 0.7188 1 +0.125 0.75 0 +0.125 0.75 0.03125 +0.125 0.75 0.0625 +0.125 0.75 0.09375 +0.125 0.75 0.125 +0.125 0.75 0.1562 +0.125 0.75 0.1875 +0.125 0.75 0.2188 +0.125 0.75 0.25 +0.125 0.75 0.2812 +0.125 0.75 0.3125 +0.125 0.75 0.3438 +0.125 0.75 0.375 +0.125 0.75 0.4062 +0.125 0.75 0.4375 +0.125 0.75 0.4688 +0.125 0.75 0.5 +0.125 0.75 0.5312 +0.125 0.75 0.5625 +0.125 0.75 0.5938 +0.125 0.75 0.625 +0.125 0.75 0.6562 +0.125 0.75 0.6875 +0.125 0.75 0.7188 +0.125 0.75 0.75 +0.125 0.75 0.7812 +0.125 0.75 0.8125 +0.125 0.75 0.8438 +0.125 0.75 0.875 +0.125 0.75 0.9062 +0.125 0.75 0.9375 +0.125 0.75 0.9688 +0.125 0.75 1 +0.125 0.7812 0 +0.125 0.7812 0.03125 +0.125 0.7812 0.0625 +0.125 0.7812 0.09375 +0.125 0.7812 0.125 +0.125 0.7812 0.1562 +0.125 0.7812 0.1875 +0.125 0.7812 0.2188 +0.125 0.7812 0.25 +0.125 0.7812 0.2812 +0.125 0.7812 0.3125 +0.125 0.7812 0.3438 +0.125 0.7812 0.375 +0.125 0.7812 0.4062 +0.125 0.7812 0.4375 +0.125 0.7812 0.4688 +0.125 0.7812 0.5 +0.125 0.7812 0.5312 +0.125 0.7812 0.5625 +0.125 0.7812 0.5938 +0.125 0.7812 0.625 +0.125 0.7812 0.6562 +0.125 0.7812 0.6875 +0.125 0.7812 0.7188 +0.125 0.7812 0.75 +0.125 0.7812 0.7812 +0.125 0.7812 0.8125 +0.125 0.7812 0.8438 +0.125 0.7812 0.875 +0.125 0.7812 0.9062 +0.125 0.7812 0.9375 +0.125 0.7812 0.9688 +0.125 0.7812 1 +0.125 0.8125 0 +0.125 0.8125 0.03125 +0.125 0.8125 0.0625 +0.125 0.8125 0.09375 +0.125 0.8125 0.125 +0.125 0.8125 0.1562 +0.125 0.8125 0.1875 +0.125 0.8125 0.2188 +0.125 0.8125 0.25 +0.125 0.8125 0.2812 +0.125 0.8125 0.3125 +0.125 0.8125 0.3438 +0.125 0.8125 0.375 +0.125 0.8125 0.4062 +0.125 0.8125 0.4375 +0.125 0.8125 0.4688 +0.125 0.8125 0.5 +0.125 0.8125 0.5312 +0.125 0.8125 0.5625 +0.125 0.8125 0.5938 +0.125 0.8125 0.625 +0.125 0.8125 0.6562 +0.125 0.8125 0.6875 +0.125 0.8125 0.7188 +0.125 0.8125 0.75 +0.125 0.8125 0.7812 +0.125 0.8125 0.8125 +0.125 0.8125 0.8438 +0.125 0.8125 0.875 +0.125 0.8125 0.9062 +0.125 0.8125 0.9375 +0.125 0.8125 0.9688 +0.125 0.8125 1 +0.125 0.8438 0 +0.125 0.8438 0.03125 +0.125 0.8438 0.0625 +0.125 0.8438 0.09375 +0.125 0.8438 0.125 +0.125 0.8438 0.1562 +0.125 0.8438 0.1875 +0.125 0.8438 0.2188 +0.125 0.8438 0.25 +0.125 0.8438 0.2812 +0.125 0.8438 0.3125 +0.125 0.8438 0.3438 +0.125 0.8438 0.375 +0.125 0.8438 0.4062 +0.125 0.8438 0.4375 +0.125 0.8438 0.4688 +0.125 0.8438 0.5 +0.125 0.8438 0.5312 +0.125 0.8438 0.5625 +0.125 0.8438 0.5938 +0.125 0.8438 0.625 +0.125 0.8438 0.6562 +0.125 0.8438 0.6875 +0.125 0.8438 0.7188 +0.125 0.8438 0.75 +0.125 0.8438 0.7812 +0.125 0.8438 0.8125 +0.125 0.8438 0.8438 +0.125 0.8438 0.875 +0.125 0.8438 0.9062 +0.125 0.8438 0.9375 +0.125 0.8438 0.9688 +0.125 0.8438 1 +0.125 0.875 0 +0.125 0.875 0.03125 +0.125 0.875 0.0625 +0.125 0.875 0.09375 +0.125 0.875 0.125 +0.125 0.875 0.1562 +0.125 0.875 0.1875 +0.125 0.875 0.2188 +0.125 0.875 0.25 +0.125 0.875 0.2812 +0.125 0.875 0.3125 +0.125 0.875 0.3438 +0.125 0.875 0.375 +0.125 0.875 0.4062 +0.125 0.875 0.4375 +0.125 0.875 0.4688 +0.125 0.875 0.5 +0.125 0.875 0.5312 +0.125 0.875 0.5625 +0.125 0.875 0.5938 +0.125 0.875 0.625 +0.125 0.875 0.6562 +0.125 0.875 0.6875 +0.125 0.875 0.7188 +0.125 0.875 0.75 +0.125 0.875 0.7812 +0.125 0.875 0.8125 +0.125 0.875 0.8438 +0.125 0.875 0.875 +0.125 0.875 0.9062 +0.125 0.875 0.9375 +0.125 0.875 0.9688 +0.125 0.875 1 +0.125 0.9062 0 +0.125 0.9062 0.03125 +0.125 0.9062 0.0625 +0.125 0.9062 0.09375 +0.125 0.9062 0.125 +0.125 0.9062 0.1562 +0.125 0.9062 0.1875 +0.125 0.9062 0.2188 +0.125 0.9062 0.25 +0.125 0.9062 0.2812 +0.125 0.9062 0.3125 +0.125 0.9062 0.3438 +0.125 0.9062 0.375 +0.125 0.9062 0.4062 +0.125 0.9062 0.4375 +0.125 0.9062 0.4688 +0.125 0.9062 0.5 +0.125 0.9062 0.5312 +0.125 0.9062 0.5625 +0.125 0.9062 0.5938 +0.125 0.9062 0.625 +0.125 0.9062 0.6562 +0.125 0.9062 0.6875 +0.125 0.9062 0.7188 +0.125 0.9062 0.75 +0.125 0.9062 0.7812 +0.125 0.9062 0.8125 +0.125 0.9062 0.8438 +0.125 0.9062 0.875 +0.125 0.9062 0.9062 +0.125 0.9062 0.9375 +0.125 0.9062 0.9688 +0.125 0.9062 1 +0.125 0.9375 0 +0.125 0.9375 0.03125 +0.125 0.9375 0.0625 +0.125 0.9375 0.09375 +0.125 0.9375 0.125 +0.125 0.9375 0.1562 +0.125 0.9375 0.1875 +0.125 0.9375 0.2188 +0.125 0.9375 0.25 +0.125 0.9375 0.2812 +0.125 0.9375 0.3125 +0.125 0.9375 0.3438 +0.125 0.9375 0.375 +0.125 0.9375 0.4062 +0.125 0.9375 0.4375 +0.125 0.9375 0.4688 +0.125 0.9375 0.5 +0.125 0.9375 0.5312 +0.125 0.9375 0.5625 +0.125 0.9375 0.5938 +0.125 0.9375 0.625 +0.125 0.9375 0.6562 +0.125 0.9375 0.6875 +0.125 0.9375 0.7188 +0.125 0.9375 0.75 +0.125 0.9375 0.7812 +0.125 0.9375 0.8125 +0.125 0.9375 0.8438 +0.125 0.9375 0.875 +0.125 0.9375 0.9062 +0.125 0.9375 0.9375 +0.125 0.9375 0.9688 +0.125 0.9375 1 +0.125 0.9688 0 +0.125 0.9688 0.03125 +0.125 0.9688 0.0625 +0.125 0.9688 0.09375 +0.125 0.9688 0.125 +0.125 0.9688 0.1562 +0.125 0.9688 0.1875 +0.125 0.9688 0.2188 +0.125 0.9688 0.25 +0.125 0.9688 0.2812 +0.125 0.9688 0.3125 +0.125 0.9688 0.3438 +0.125 0.9688 0.375 +0.125 0.9688 0.4062 +0.125 0.9688 0.4375 +0.125 0.9688 0.4688 +0.125 0.9688 0.5 +0.125 0.9688 0.5312 +0.125 0.9688 0.5625 +0.125 0.9688 0.5938 +0.125 0.9688 0.625 +0.125 0.9688 0.6562 +0.125 0.9688 0.6875 +0.125 0.9688 0.7188 +0.125 0.9688 0.75 +0.125 0.9688 0.7812 +0.125 0.9688 0.8125 +0.125 0.9688 0.8438 +0.125 0.9688 0.875 +0.125 0.9688 0.9062 +0.125 0.9688 0.9375 +0.125 0.9688 0.9688 +0.125 0.9688 1 +0.125 1 0 +0.125 1 0.03125 +0.125 1 0.0625 +0.125 1 0.09375 +0.125 1 0.125 +0.125 1 0.1562 +0.125 1 0.1875 +0.125 1 0.2188 +0.125 1 0.25 +0.125 1 0.2812 +0.125 1 0.3125 +0.125 1 0.3438 +0.125 1 0.375 +0.125 1 0.4062 +0.125 1 0.4375 +0.125 1 0.4688 +0.125 1 0.5 +0.125 1 0.5312 +0.125 1 0.5625 +0.125 1 0.5938 +0.125 1 0.625 +0.125 1 0.6562 +0.125 1 0.6875 +0.125 1 0.7188 +0.125 1 0.75 +0.125 1 0.7812 +0.125 1 0.8125 +0.125 1 0.8438 +0.125 1 0.875 +0.125 1 0.9062 +0.125 1 0.9375 +0.125 1 0.9688 +0.125 1 1 +0.1562 0 0 +0.1562 0 0.03125 +0.1562 0 0.0625 +0.1562 0 0.09375 +0.1562 0 0.125 +0.1562 0 0.1562 +0.1562 0 0.1875 +0.1562 0 0.2188 +0.1562 0 0.25 +0.1562 0 0.2812 +0.1562 0 0.3125 +0.1562 0 0.3438 +0.1562 0 0.375 +0.1562 0 0.4062 +0.1562 0 0.4375 +0.1562 0 0.4688 +0.1562 0 0.5 +0.1562 0 0.5312 +0.1562 0 0.5625 +0.1562 0 0.5938 +0.1562 0 0.625 +0.1562 0 0.6562 +0.1562 0 0.6875 +0.1562 0 0.7188 +0.1562 0 0.75 +0.1562 0 0.7812 +0.1562 0 0.8125 +0.1562 0 0.8438 +0.1562 0 0.875 +0.1562 0 0.9062 +0.1562 0 0.9375 +0.1562 0 0.9688 +0.1562 0 1 +0.1562 0.03125 0 +0.1562 0.03125 0.03125 +0.1562 0.03125 0.0625 +0.1562 0.03125 0.09375 +0.1562 0.03125 0.125 +0.1562 0.03125 0.1562 +0.1562 0.03125 0.1875 +0.1562 0.03125 0.2188 +0.1562 0.03125 0.25 +0.1562 0.03125 0.2812 +0.1562 0.03125 0.3125 +0.1562 0.03125 0.3438 +0.1562 0.03125 0.375 +0.1562 0.03125 0.4062 +0.1562 0.03125 0.4375 +0.1562 0.03125 0.4688 +0.1562 0.03125 0.5 +0.1562 0.03125 0.5312 +0.1562 0.03125 0.5625 +0.1562 0.03125 0.5938 +0.1562 0.03125 0.625 +0.1562 0.03125 0.6562 +0.1562 0.03125 0.6875 +0.1562 0.03125 0.7188 +0.1562 0.03125 0.75 +0.1562 0.03125 0.7812 +0.1562 0.03125 0.8125 +0.1562 0.03125 0.8438 +0.1562 0.03125 0.875 +0.1562 0.03125 0.9062 +0.1562 0.03125 0.9375 +0.1562 0.03125 0.9688 +0.1562 0.03125 1 +0.1562 0.0625 0 +0.1562 0.0625 0.03125 +0.1562 0.0625 0.0625 +0.1562 0.0625 0.09375 +0.1562 0.0625 0.125 +0.1562 0.0625 0.1562 +0.1562 0.0625 0.1875 +0.1562 0.0625 0.2188 +0.1562 0.0625 0.25 +0.1562 0.0625 0.2812 +0.1562 0.0625 0.3125 +0.1562 0.0625 0.3438 +0.1562 0.0625 0.375 +0.1562 0.0625 0.4062 +0.1562 0.0625 0.4375 +0.1562 0.0625 0.4688 +0.1562 0.0625 0.5 +0.1562 0.0625 0.5312 +0.1562 0.0625 0.5625 +0.1562 0.0625 0.5938 +0.1562 0.0625 0.625 +0.1562 0.0625 0.6562 +0.1562 0.0625 0.6875 +0.1562 0.0625 0.7188 +0.1562 0.0625 0.75 +0.1562 0.0625 0.7812 +0.1562 0.0625 0.8125 +0.1562 0.0625 0.8438 +0.1562 0.0625 0.875 +0.1562 0.0625 0.9062 +0.1562 0.0625 0.9375 +0.1562 0.0625 0.9688 +0.1562 0.0625 1 +0.1562 0.09375 0 +0.1562 0.09375 0.03125 +0.1562 0.09375 0.0625 +0.1562 0.09375 0.09375 +0.1562 0.09375 0.125 +0.1562 0.09375 0.1562 +0.1562 0.09375 0.1875 +0.1562 0.09375 0.2188 +0.1562 0.09375 0.25 +0.1562 0.09375 0.2812 +0.1562 0.09375 0.3125 +0.1562 0.09375 0.3438 +0.1562 0.09375 0.375 +0.1562 0.09375 0.4062 +0.1562 0.09375 0.4375 +0.1562 0.09375 0.4688 +0.1562 0.09375 0.5 +0.1562 0.09375 0.5312 +0.1562 0.09375 0.5625 +0.1562 0.09375 0.5938 +0.1562 0.09375 0.625 +0.1562 0.09375 0.6562 +0.1562 0.09375 0.6875 +0.1562 0.09375 0.7188 +0.1562 0.09375 0.75 +0.1562 0.09375 0.7812 +0.1562 0.09375 0.8125 +0.1562 0.09375 0.8438 +0.1562 0.09375 0.875 +0.1562 0.09375 0.9062 +0.1562 0.09375 0.9375 +0.1562 0.09375 0.9688 +0.1562 0.09375 1 +0.1562 0.125 0 +0.1562 0.125 0.03125 +0.1562 0.125 0.0625 +0.1562 0.125 0.09375 +0.1562 0.125 0.125 +0.1562 0.125 0.1562 +0.1562 0.125 0.1875 +0.1562 0.125 0.2188 +0.1562 0.125 0.25 +0.1562 0.125 0.2812 +0.1562 0.125 0.3125 +0.1562 0.125 0.3438 +0.1562 0.125 0.375 +0.1562 0.125 0.4062 +0.1562 0.125 0.4375 +0.1562 0.125 0.4688 +0.1562 0.125 0.5 +0.1562 0.125 0.5312 +0.1562 0.125 0.5625 +0.1562 0.125 0.5938 +0.1562 0.125 0.625 +0.1562 0.125 0.6562 +0.1562 0.125 0.6875 +0.1562 0.125 0.7188 +0.1562 0.125 0.75 +0.1562 0.125 0.7812 +0.1562 0.125 0.8125 +0.1562 0.125 0.8438 +0.1562 0.125 0.875 +0.1562 0.125 0.9062 +0.1562 0.125 0.9375 +0.1562 0.125 0.9688 +0.1562 0.125 1 +0.1562 0.1562 0 +0.1562 0.1562 0.03125 +0.1562 0.1562 0.0625 +0.1562 0.1562 0.09375 +0.1562 0.1562 0.125 +0.1562 0.1562 0.1562 +0.1562 0.1562 0.1875 +0.1562 0.1562 0.2188 +0.1562 0.1562 0.25 +0.1562 0.1562 0.2812 +0.1562 0.1562 0.3125 +0.1562 0.1562 0.3438 +0.1562 0.1562 0.375 +0.1562 0.1562 0.4062 +0.1562 0.1562 0.4375 +0.1562 0.1562 0.4688 +0.1562 0.1562 0.5 +0.1562 0.1562 0.5312 +0.1562 0.1562 0.5625 +0.1562 0.1562 0.5938 +0.1562 0.1562 0.625 +0.1562 0.1562 0.6562 +0.1562 0.1562 0.6875 +0.1562 0.1562 0.7188 +0.1562 0.1562 0.75 +0.1562 0.1562 0.7812 +0.1562 0.1562 0.8125 +0.1562 0.1562 0.8438 +0.1562 0.1562 0.875 +0.1562 0.1562 0.9062 +0.1562 0.1562 0.9375 +0.1562 0.1562 0.9688 +0.1562 0.1562 1 +0.1562 0.1875 0 +0.1562 0.1875 0.03125 +0.1562 0.1875 0.0625 +0.1562 0.1875 0.09375 +0.1562 0.1875 0.125 +0.1562 0.1875 0.1562 +0.1562 0.1875 0.1875 +0.1562 0.1875 0.2188 +0.1562 0.1875 0.25 +0.1562 0.1875 0.2812 +0.1562 0.1875 0.3125 +0.1562 0.1875 0.3438 +0.1562 0.1875 0.375 +0.1562 0.1875 0.4062 +0.1562 0.1875 0.4375 +0.1562 0.1875 0.4688 +0.1562 0.1875 0.5 +0.1562 0.1875 0.5312 +0.1562 0.1875 0.5625 +0.1562 0.1875 0.5938 +0.1562 0.1875 0.625 +0.1562 0.1875 0.6562 +0.1562 0.1875 0.6875 +0.1562 0.1875 0.7188 +0.1562 0.1875 0.75 +0.1562 0.1875 0.7812 +0.1562 0.1875 0.8125 +0.1562 0.1875 0.8438 +0.1562 0.1875 0.875 +0.1562 0.1875 0.9062 +0.1562 0.1875 0.9375 +0.1562 0.1875 0.9688 +0.1562 0.1875 1 +0.1562 0.2188 0 +0.1562 0.2188 0.03125 +0.1562 0.2188 0.0625 +0.1562 0.2188 0.09375 +0.1562 0.2188 0.125 +0.1562 0.2188 0.1562 +0.1562 0.2188 0.1875 +0.1562 0.2188 0.2188 +0.1562 0.2188 0.25 +0.1562 0.2188 0.2812 +0.1562 0.2188 0.3125 +0.1562 0.2188 0.3438 +0.1562 0.2188 0.375 +0.1562 0.2188 0.4062 +0.1562 0.2188 0.4375 +0.1562 0.2188 0.4688 +0.1562 0.2188 0.5 +0.1562 0.2188 0.5312 +0.1562 0.2188 0.5625 +0.1562 0.2188 0.5938 +0.1562 0.2188 0.625 +0.1562 0.2188 0.6562 +0.1562 0.2188 0.6875 +0.1562 0.2188 0.7188 +0.1562 0.2188 0.75 +0.1562 0.2188 0.7812 +0.1562 0.2188 0.8125 +0.1562 0.2188 0.8438 +0.1562 0.2188 0.875 +0.1562 0.2188 0.9062 +0.1562 0.2188 0.9375 +0.1562 0.2188 0.9688 +0.1562 0.2188 1 +0.1562 0.25 0 +0.1562 0.25 0.03125 +0.1562 0.25 0.0625 +0.1562 0.25 0.09375 +0.1562 0.25 0.125 +0.1562 0.25 0.1562 +0.1562 0.25 0.1875 +0.1562 0.25 0.2188 +0.1562 0.25 0.25 +0.1562 0.25 0.2812 +0.1562 0.25 0.3125 +0.1562 0.25 0.3438 +0.1562 0.25 0.375 +0.1562 0.25 0.4062 +0.1562 0.25 0.4375 +0.1562 0.25 0.4688 +0.1562 0.25 0.5 +0.1562 0.25 0.5312 +0.1562 0.25 0.5625 +0.1562 0.25 0.5938 +0.1562 0.25 0.625 +0.1562 0.25 0.6562 +0.1562 0.25 0.6875 +0.1562 0.25 0.7188 +0.1562 0.25 0.75 +0.1562 0.25 0.7812 +0.1562 0.25 0.8125 +0.1562 0.25 0.8438 +0.1562 0.25 0.875 +0.1562 0.25 0.9062 +0.1562 0.25 0.9375 +0.1562 0.25 0.9688 +0.1562 0.25 1 +0.1562 0.2812 0 +0.1562 0.2812 0.03125 +0.1562 0.2812 0.0625 +0.1562 0.2812 0.09375 +0.1562 0.2812 0.125 +0.1562 0.2812 0.1562 +0.1562 0.2812 0.1875 +0.1562 0.2812 0.2188 +0.1562 0.2812 0.25 +0.1562 0.2812 0.2812 +0.1562 0.2812 0.3125 +0.1562 0.2812 0.3438 +0.1562 0.2812 0.375 +0.1562 0.2812 0.4062 +0.1562 0.2812 0.4375 +0.1562 0.2812 0.4688 +0.1562 0.2812 0.5 +0.1562 0.2812 0.5312 +0.1562 0.2812 0.5625 +0.1562 0.2812 0.5938 +0.1562 0.2812 0.625 +0.1562 0.2812 0.6562 +0.1562 0.2812 0.6875 +0.1562 0.2812 0.7188 +0.1562 0.2812 0.75 +0.1562 0.2812 0.7812 +0.1562 0.2812 0.8125 +0.1562 0.2812 0.8438 +0.1562 0.2812 0.875 +0.1562 0.2812 0.9062 +0.1562 0.2812 0.9375 +0.1562 0.2812 0.9688 +0.1562 0.2812 1 +0.1562 0.3125 0 +0.1562 0.3125 0.03125 +0.1562 0.3125 0.0625 +0.1562 0.3125 0.09375 +0.1562 0.3125 0.125 +0.1562 0.3125 0.1562 +0.1562 0.3125 0.1875 +0.1562 0.3125 0.2188 +0.1562 0.3125 0.25 +0.1562 0.3125 0.2812 +0.1562 0.3125 0.3125 +0.1562 0.3125 0.3438 +0.1562 0.3125 0.375 +0.1562 0.3125 0.4062 +0.1562 0.3125 0.4375 +0.1562 0.3125 0.4688 +0.1562 0.3125 0.5 +0.1562 0.3125 0.5312 +0.1562 0.3125 0.5625 +0.1562 0.3125 0.5938 +0.1562 0.3125 0.625 +0.1562 0.3125 0.6562 +0.1562 0.3125 0.6875 +0.1562 0.3125 0.7188 +0.1562 0.3125 0.75 +0.1562 0.3125 0.7812 +0.1562 0.3125 0.8125 +0.1562 0.3125 0.8438 +0.1562 0.3125 0.875 +0.1562 0.3125 0.9062 +0.1562 0.3125 0.9375 +0.1562 0.3125 0.9688 +0.1562 0.3125 1 +0.1562 0.3438 0 +0.1562 0.3438 0.03125 +0.1562 0.3438 0.0625 +0.1562 0.3438 0.09375 +0.1562 0.3438 0.125 +0.1562 0.3438 0.1562 +0.1562 0.3438 0.1875 +0.1562 0.3438 0.2188 +0.1562 0.3438 0.25 +0.1562 0.3438 0.2812 +0.1562 0.3438 0.3125 +0.1562 0.3438 0.3438 +0.1562 0.3438 0.375 +0.1562 0.3438 0.4062 +0.1562 0.3438 0.4375 +0.1562 0.3438 0.4688 +0.1562 0.3438 0.5 +0.1562 0.3438 0.5312 +0.1562 0.3438 0.5625 +0.1562 0.3438 0.5938 +0.1562 0.3438 0.625 +0.1562 0.3438 0.6562 +0.1562 0.3438 0.6875 +0.1562 0.3438 0.7188 +0.1562 0.3438 0.75 +0.1562 0.3438 0.7812 +0.1562 0.3438 0.8125 +0.1562 0.3438 0.8438 +0.1562 0.3438 0.875 +0.1562 0.3438 0.9062 +0.1562 0.3438 0.9375 +0.1562 0.3438 0.9688 +0.1562 0.3438 1 +0.1562 0.375 0 +0.1562 0.375 0.03125 +0.1562 0.375 0.0625 +0.1562 0.375 0.09375 +0.1562 0.375 0.125 +0.1562 0.375 0.1562 +0.1562 0.375 0.1875 +0.1562 0.375 0.2188 +0.1562 0.375 0.25 +0.1562 0.375 0.2812 +0.1562 0.375 0.3125 +0.1562 0.375 0.3438 +0.1562 0.375 0.375 +0.1562 0.375 0.4062 +0.1562 0.375 0.4375 +0.1562 0.375 0.4688 +0.1562 0.375 0.5 +0.1562 0.375 0.5312 +0.1562 0.375 0.5625 +0.1562 0.375 0.5938 +0.1562 0.375 0.625 +0.1562 0.375 0.6562 +0.1562 0.375 0.6875 +0.1562 0.375 0.7188 +0.1562 0.375 0.75 +0.1562 0.375 0.7812 +0.1562 0.375 0.8125 +0.1562 0.375 0.8438 +0.1562 0.375 0.875 +0.1562 0.375 0.9062 +0.1562 0.375 0.9375 +0.1562 0.375 0.9688 +0.1562 0.375 1 +0.1562 0.4062 0 +0.1562 0.4062 0.03125 +0.1562 0.4062 0.0625 +0.1562 0.4062 0.09375 +0.1562 0.4062 0.125 +0.1562 0.4062 0.1562 +0.1562 0.4062 0.1875 +0.1562 0.4062 0.2188 +0.1562 0.4062 0.25 +0.1562 0.4062 0.2812 +0.1562 0.4062 0.3125 +0.1562 0.4062 0.3438 +0.1562 0.4062 0.375 +0.1562 0.4062 0.4062 +0.1562 0.4062 0.4375 +0.1562 0.4062 0.4688 +0.1562 0.4062 0.5 +0.1562 0.4062 0.5312 +0.1562 0.4062 0.5625 +0.1562 0.4062 0.5938 +0.1562 0.4062 0.625 +0.1562 0.4062 0.6562 +0.1562 0.4062 0.6875 +0.1562 0.4062 0.7188 +0.1562 0.4062 0.75 +0.1562 0.4062 0.7812 +0.1562 0.4062 0.8125 +0.1562 0.4062 0.8438 +0.1562 0.4062 0.875 +0.1562 0.4062 0.9062 +0.1562 0.4062 0.9375 +0.1562 0.4062 0.9688 +0.1562 0.4062 1 +0.1562 0.4375 0 +0.1562 0.4375 0.03125 +0.1562 0.4375 0.0625 +0.1562 0.4375 0.09375 +0.1562 0.4375 0.125 +0.1562 0.4375 0.1562 +0.1562 0.4375 0.1875 +0.1562 0.4375 0.2188 +0.1562 0.4375 0.25 +0.1562 0.4375 0.2812 +0.1562 0.4375 0.3125 +0.1562 0.4375 0.3438 +0.1562 0.4375 0.375 +0.1562 0.4375 0.4062 +0.1562 0.4375 0.4375 +0.1562 0.4375 0.4688 +0.1562 0.4375 0.5 +0.1562 0.4375 0.5312 +0.1562 0.4375 0.5625 +0.1562 0.4375 0.5938 +0.1562 0.4375 0.625 +0.1562 0.4375 0.6562 +0.1562 0.4375 0.6875 +0.1562 0.4375 0.7188 +0.1562 0.4375 0.75 +0.1562 0.4375 0.7812 +0.1562 0.4375 0.8125 +0.1562 0.4375 0.8438 +0.1562 0.4375 0.875 +0.1562 0.4375 0.9062 +0.1562 0.4375 0.9375 +0.1562 0.4375 0.9688 +0.1562 0.4375 1 +0.1562 0.4688 0 +0.1562 0.4688 0.03125 +0.1562 0.4688 0.0625 +0.1562 0.4688 0.09375 +0.1562 0.4688 0.125 +0.1562 0.4688 0.1562 +0.1562 0.4688 0.1875 +0.1562 0.4688 0.2188 +0.1562 0.4688 0.25 +0.1562 0.4688 0.2812 +0.1562 0.4688 0.3125 +0.1562 0.4688 0.3438 +0.1562 0.4688 0.375 +0.1562 0.4688 0.4062 +0.1562 0.4688 0.4375 +0.1562 0.4688 0.4688 +0.1562 0.4688 0.5 +0.1562 0.4688 0.5312 +0.1562 0.4688 0.5625 +0.1562 0.4688 0.5938 +0.1562 0.4688 0.625 +0.1562 0.4688 0.6562 +0.1562 0.4688 0.6875 +0.1562 0.4688 0.7188 +0.1562 0.4688 0.75 +0.1562 0.4688 0.7812 +0.1562 0.4688 0.8125 +0.1562 0.4688 0.8438 +0.1562 0.4688 0.875 +0.1562 0.4688 0.9062 +0.1562 0.4688 0.9375 +0.1562 0.4688 0.9688 +0.1562 0.4688 1 +0.1562 0.5 0 +0.1562 0.5 0.03125 +0.1562 0.5 0.0625 +0.1562 0.5 0.09375 +0.1562 0.5 0.125 +0.1562 0.5 0.1562 +0.1562 0.5 0.1875 +0.1562 0.5 0.2188 +0.1562 0.5 0.25 +0.1562 0.5 0.2812 +0.1562 0.5 0.3125 +0.1562 0.5 0.3438 +0.1562 0.5 0.375 +0.1562 0.5 0.4062 +0.1562 0.5 0.4375 +0.1562 0.5 0.4688 +0.1562 0.5 0.5 +0.1562 0.5 0.5312 +0.1562 0.5 0.5625 +0.1562 0.5 0.5938 +0.1562 0.5 0.625 +0.1562 0.5 0.6562 +0.1562 0.5 0.6875 +0.1562 0.5 0.7188 +0.1562 0.5 0.75 +0.1562 0.5 0.7812 +0.1562 0.5 0.8125 +0.1562 0.5 0.8438 +0.1562 0.5 0.875 +0.1562 0.5 0.9062 +0.1562 0.5 0.9375 +0.1562 0.5 0.9688 +0.1562 0.5 1 +0.1562 0.5312 0 +0.1562 0.5312 0.03125 +0.1562 0.5312 0.0625 +0.1562 0.5312 0.09375 +0.1562 0.5312 0.125 +0.1562 0.5312 0.1562 +0.1562 0.5312 0.1875 +0.1562 0.5312 0.2188 +0.1562 0.5312 0.25 +0.1562 0.5312 0.2812 +0.1562 0.5312 0.3125 +0.1562 0.5312 0.3438 +0.1562 0.5312 0.375 +0.1562 0.5312 0.4062 +0.1562 0.5312 0.4375 +0.1562 0.5312 0.4688 +0.1562 0.5312 0.5 +0.1562 0.5312 0.5312 +0.1562 0.5312 0.5625 +0.1562 0.5312 0.5938 +0.1562 0.5312 0.625 +0.1562 0.5312 0.6562 +0.1562 0.5312 0.6875 +0.1562 0.5312 0.7188 +0.1562 0.5312 0.75 +0.1562 0.5312 0.7812 +0.1562 0.5312 0.8125 +0.1562 0.5312 0.8438 +0.1562 0.5312 0.875 +0.1562 0.5312 0.9062 +0.1562 0.5312 0.9375 +0.1562 0.5312 0.9688 +0.1562 0.5312 1 +0.1562 0.5625 0 +0.1562 0.5625 0.03125 +0.1562 0.5625 0.0625 +0.1562 0.5625 0.09375 +0.1562 0.5625 0.125 +0.1562 0.5625 0.1562 +0.1562 0.5625 0.1875 +0.1562 0.5625 0.2188 +0.1562 0.5625 0.25 +0.1562 0.5625 0.2812 +0.1562 0.5625 0.3125 +0.1562 0.5625 0.3438 +0.1562 0.5625 0.375 +0.1562 0.5625 0.4062 +0.1562 0.5625 0.4375 +0.1562 0.5625 0.4688 +0.1562 0.5625 0.5 +0.1562 0.5625 0.5312 +0.1562 0.5625 0.5625 +0.1562 0.5625 0.5938 +0.1562 0.5625 0.625 +0.1562 0.5625 0.6562 +0.1562 0.5625 0.6875 +0.1562 0.5625 0.7188 +0.1562 0.5625 0.75 +0.1562 0.5625 0.7812 +0.1562 0.5625 0.8125 +0.1562 0.5625 0.8438 +0.1562 0.5625 0.875 +0.1562 0.5625 0.9062 +0.1562 0.5625 0.9375 +0.1562 0.5625 0.9688 +0.1562 0.5625 1 +0.1562 0.5938 0 +0.1562 0.5938 0.03125 +0.1562 0.5938 0.0625 +0.1562 0.5938 0.09375 +0.1562 0.5938 0.125 +0.1562 0.5938 0.1562 +0.1562 0.5938 0.1875 +0.1562 0.5938 0.2188 +0.1562 0.5938 0.25 +0.1562 0.5938 0.2812 +0.1562 0.5938 0.3125 +0.1562 0.5938 0.3438 +0.1562 0.5938 0.375 +0.1562 0.5938 0.4062 +0.1562 0.5938 0.4375 +0.1562 0.5938 0.4688 +0.1562 0.5938 0.5 +0.1562 0.5938 0.5312 +0.1562 0.5938 0.5625 +0.1562 0.5938 0.5938 +0.1562 0.5938 0.625 +0.1562 0.5938 0.6562 +0.1562 0.5938 0.6875 +0.1562 0.5938 0.7188 +0.1562 0.5938 0.75 +0.1562 0.5938 0.7812 +0.1562 0.5938 0.8125 +0.1562 0.5938 0.8438 +0.1562 0.5938 0.875 +0.1562 0.5938 0.9062 +0.1562 0.5938 0.9375 +0.1562 0.5938 0.9688 +0.1562 0.5938 1 +0.1562 0.625 0 +0.1562 0.625 0.03125 +0.1562 0.625 0.0625 +0.1562 0.625 0.09375 +0.1562 0.625 0.125 +0.1562 0.625 0.1562 +0.1562 0.625 0.1875 +0.1562 0.625 0.2188 +0.1562 0.625 0.25 +0.1562 0.625 0.2812 +0.1562 0.625 0.3125 +0.1562 0.625 0.3438 +0.1562 0.625 0.375 +0.1562 0.625 0.4062 +0.1562 0.625 0.4375 +0.1562 0.625 0.4688 +0.1562 0.625 0.5 +0.1562 0.625 0.5312 +0.1562 0.625 0.5625 +0.1562 0.625 0.5938 +0.1562 0.625 0.625 +0.1562 0.625 0.6562 +0.1562 0.625 0.6875 +0.1562 0.625 0.7188 +0.1562 0.625 0.75 +0.1562 0.625 0.7812 +0.1562 0.625 0.8125 +0.1562 0.625 0.8438 +0.1562 0.625 0.875 +0.1562 0.625 0.9062 +0.1562 0.625 0.9375 +0.1562 0.625 0.9688 +0.1562 0.625 1 +0.1562 0.6562 0 +0.1562 0.6562 0.03125 +0.1562 0.6562 0.0625 +0.1562 0.6562 0.09375 +0.1562 0.6562 0.125 +0.1562 0.6562 0.1562 +0.1562 0.6562 0.1875 +0.1562 0.6562 0.2188 +0.1562 0.6562 0.25 +0.1562 0.6562 0.2812 +0.1562 0.6562 0.3125 +0.1562 0.6562 0.3438 +0.1562 0.6562 0.375 +0.1562 0.6562 0.4062 +0.1562 0.6562 0.4375 +0.1562 0.6562 0.4688 +0.1562 0.6562 0.5 +0.1562 0.6562 0.5312 +0.1562 0.6562 0.5625 +0.1562 0.6562 0.5938 +0.1562 0.6562 0.625 +0.1562 0.6562 0.6562 +0.1562 0.6562 0.6875 +0.1562 0.6562 0.7188 +0.1562 0.6562 0.75 +0.1562 0.6562 0.7812 +0.1562 0.6562 0.8125 +0.1562 0.6562 0.8438 +0.1562 0.6562 0.875 +0.1562 0.6562 0.9062 +0.1562 0.6562 0.9375 +0.1562 0.6562 0.9688 +0.1562 0.6562 1 +0.1562 0.6875 0 +0.1562 0.6875 0.03125 +0.1562 0.6875 0.0625 +0.1562 0.6875 0.09375 +0.1562 0.6875 0.125 +0.1562 0.6875 0.1562 +0.1562 0.6875 0.1875 +0.1562 0.6875 0.2188 +0.1562 0.6875 0.25 +0.1562 0.6875 0.2812 +0.1562 0.6875 0.3125 +0.1562 0.6875 0.3438 +0.1562 0.6875 0.375 +0.1562 0.6875 0.4062 +0.1562 0.6875 0.4375 +0.1562 0.6875 0.4688 +0.1562 0.6875 0.5 +0.1562 0.6875 0.5312 +0.1562 0.6875 0.5625 +0.1562 0.6875 0.5938 +0.1562 0.6875 0.625 +0.1562 0.6875 0.6562 +0.1562 0.6875 0.6875 +0.1562 0.6875 0.7188 +0.1562 0.6875 0.75 +0.1562 0.6875 0.7812 +0.1562 0.6875 0.8125 +0.1562 0.6875 0.8438 +0.1562 0.6875 0.875 +0.1562 0.6875 0.9062 +0.1562 0.6875 0.9375 +0.1562 0.6875 0.9688 +0.1562 0.6875 1 +0.1562 0.7188 0 +0.1562 0.7188 0.03125 +0.1562 0.7188 0.0625 +0.1562 0.7188 0.09375 +0.1562 0.7188 0.125 +0.1562 0.7188 0.1562 +0.1562 0.7188 0.1875 +0.1562 0.7188 0.2188 +0.1562 0.7188 0.25 +0.1562 0.7188 0.2812 +0.1562 0.7188 0.3125 +0.1562 0.7188 0.3438 +0.1562 0.7188 0.375 +0.1562 0.7188 0.4062 +0.1562 0.7188 0.4375 +0.1562 0.7188 0.4688 +0.1562 0.7188 0.5 +0.1562 0.7188 0.5312 +0.1562 0.7188 0.5625 +0.1562 0.7188 0.5938 +0.1562 0.7188 0.625 +0.1562 0.7188 0.6562 +0.1562 0.7188 0.6875 +0.1562 0.7188 0.7188 +0.1562 0.7188 0.75 +0.1562 0.7188 0.7812 +0.1562 0.7188 0.8125 +0.1562 0.7188 0.8438 +0.1562 0.7188 0.875 +0.1562 0.7188 0.9062 +0.1562 0.7188 0.9375 +0.1562 0.7188 0.9688 +0.1562 0.7188 1 +0.1562 0.75 0 +0.1562 0.75 0.03125 +0.1562 0.75 0.0625 +0.1562 0.75 0.09375 +0.1562 0.75 0.125 +0.1562 0.75 0.1562 +0.1562 0.75 0.1875 +0.1562 0.75 0.2188 +0.1562 0.75 0.25 +0.1562 0.75 0.2812 +0.1562 0.75 0.3125 +0.1562 0.75 0.3438 +0.1562 0.75 0.375 +0.1562 0.75 0.4062 +0.1562 0.75 0.4375 +0.1562 0.75 0.4688 +0.1562 0.75 0.5 +0.1562 0.75 0.5312 +0.1562 0.75 0.5625 +0.1562 0.75 0.5938 +0.1562 0.75 0.625 +0.1562 0.75 0.6562 +0.1562 0.75 0.6875 +0.1562 0.75 0.7188 +0.1562 0.75 0.75 +0.1562 0.75 0.7812 +0.1562 0.75 0.8125 +0.1562 0.75 0.8438 +0.1562 0.75 0.875 +0.1562 0.75 0.9062 +0.1562 0.75 0.9375 +0.1562 0.75 0.9688 +0.1562 0.75 1 +0.1562 0.7812 0 +0.1562 0.7812 0.03125 +0.1562 0.7812 0.0625 +0.1562 0.7812 0.09375 +0.1562 0.7812 0.125 +0.1562 0.7812 0.1562 +0.1562 0.7812 0.1875 +0.1562 0.7812 0.2188 +0.1562 0.7812 0.25 +0.1562 0.7812 0.2812 +0.1562 0.7812 0.3125 +0.1562 0.7812 0.3438 +0.1562 0.7812 0.375 +0.1562 0.7812 0.4062 +0.1562 0.7812 0.4375 +0.1562 0.7812 0.4688 +0.1562 0.7812 0.5 +0.1562 0.7812 0.5312 +0.1562 0.7812 0.5625 +0.1562 0.7812 0.5938 +0.1562 0.7812 0.625 +0.1562 0.7812 0.6562 +0.1562 0.7812 0.6875 +0.1562 0.7812 0.7188 +0.1562 0.7812 0.75 +0.1562 0.7812 0.7812 +0.1562 0.7812 0.8125 +0.1562 0.7812 0.8438 +0.1562 0.7812 0.875 +0.1562 0.7812 0.9062 +0.1562 0.7812 0.9375 +0.1562 0.7812 0.9688 +0.1562 0.7812 1 +0.1562 0.8125 0 +0.1562 0.8125 0.03125 +0.1562 0.8125 0.0625 +0.1562 0.8125 0.09375 +0.1562 0.8125 0.125 +0.1562 0.8125 0.1562 +0.1562 0.8125 0.1875 +0.1562 0.8125 0.2188 +0.1562 0.8125 0.25 +0.1562 0.8125 0.2812 +0.1562 0.8125 0.3125 +0.1562 0.8125 0.3438 +0.1562 0.8125 0.375 +0.1562 0.8125 0.4062 +0.1562 0.8125 0.4375 +0.1562 0.8125 0.4688 +0.1562 0.8125 0.5 +0.1562 0.8125 0.5312 +0.1562 0.8125 0.5625 +0.1562 0.8125 0.5938 +0.1562 0.8125 0.625 +0.1562 0.8125 0.6562 +0.1562 0.8125 0.6875 +0.1562 0.8125 0.7188 +0.1562 0.8125 0.75 +0.1562 0.8125 0.7812 +0.1562 0.8125 0.8125 +0.1562 0.8125 0.8438 +0.1562 0.8125 0.875 +0.1562 0.8125 0.9062 +0.1562 0.8125 0.9375 +0.1562 0.8125 0.9688 +0.1562 0.8125 1 +0.1562 0.8438 0 +0.1562 0.8438 0.03125 +0.1562 0.8438 0.0625 +0.1562 0.8438 0.09375 +0.1562 0.8438 0.125 +0.1562 0.8438 0.1562 +0.1562 0.8438 0.1875 +0.1562 0.8438 0.2188 +0.1562 0.8438 0.25 +0.1562 0.8438 0.2812 +0.1562 0.8438 0.3125 +0.1562 0.8438 0.3438 +0.1562 0.8438 0.375 +0.1562 0.8438 0.4062 +0.1562 0.8438 0.4375 +0.1562 0.8438 0.4688 +0.1562 0.8438 0.5 +0.1562 0.8438 0.5312 +0.1562 0.8438 0.5625 +0.1562 0.8438 0.5938 +0.1562 0.8438 0.625 +0.1562 0.8438 0.6562 +0.1562 0.8438 0.6875 +0.1562 0.8438 0.7188 +0.1562 0.8438 0.75 +0.1562 0.8438 0.7812 +0.1562 0.8438 0.8125 +0.1562 0.8438 0.8438 +0.1562 0.8438 0.875 +0.1562 0.8438 0.9062 +0.1562 0.8438 0.9375 +0.1562 0.8438 0.9688 +0.1562 0.8438 1 +0.1562 0.875 0 +0.1562 0.875 0.03125 +0.1562 0.875 0.0625 +0.1562 0.875 0.09375 +0.1562 0.875 0.125 +0.1562 0.875 0.1562 +0.1562 0.875 0.1875 +0.1562 0.875 0.2188 +0.1562 0.875 0.25 +0.1562 0.875 0.2812 +0.1562 0.875 0.3125 +0.1562 0.875 0.3438 +0.1562 0.875 0.375 +0.1562 0.875 0.4062 +0.1562 0.875 0.4375 +0.1562 0.875 0.4688 +0.1562 0.875 0.5 +0.1562 0.875 0.5312 +0.1562 0.875 0.5625 +0.1562 0.875 0.5938 +0.1562 0.875 0.625 +0.1562 0.875 0.6562 +0.1562 0.875 0.6875 +0.1562 0.875 0.7188 +0.1562 0.875 0.75 +0.1562 0.875 0.7812 +0.1562 0.875 0.8125 +0.1562 0.875 0.8438 +0.1562 0.875 0.875 +0.1562 0.875 0.9062 +0.1562 0.875 0.9375 +0.1562 0.875 0.9688 +0.1562 0.875 1 +0.1562 0.9062 0 +0.1562 0.9062 0.03125 +0.1562 0.9062 0.0625 +0.1562 0.9062 0.09375 +0.1562 0.9062 0.125 +0.1562 0.9062 0.1562 +0.1562 0.9062 0.1875 +0.1562 0.9062 0.2188 +0.1562 0.9062 0.25 +0.1562 0.9062 0.2812 +0.1562 0.9062 0.3125 +0.1562 0.9062 0.3438 +0.1562 0.9062 0.375 +0.1562 0.9062 0.4062 +0.1562 0.9062 0.4375 +0.1562 0.9062 0.4688 +0.1562 0.9062 0.5 +0.1562 0.9062 0.5312 +0.1562 0.9062 0.5625 +0.1562 0.9062 0.5938 +0.1562 0.9062 0.625 +0.1562 0.9062 0.6562 +0.1562 0.9062 0.6875 +0.1562 0.9062 0.7188 +0.1562 0.9062 0.75 +0.1562 0.9062 0.7812 +0.1562 0.9062 0.8125 +0.1562 0.9062 0.8438 +0.1562 0.9062 0.875 +0.1562 0.9062 0.9062 +0.1562 0.9062 0.9375 +0.1562 0.9062 0.9688 +0.1562 0.9062 1 +0.1562 0.9375 0 +0.1562 0.9375 0.03125 +0.1562 0.9375 0.0625 +0.1562 0.9375 0.09375 +0.1562 0.9375 0.125 +0.1562 0.9375 0.1562 +0.1562 0.9375 0.1875 +0.1562 0.9375 0.2188 +0.1562 0.9375 0.25 +0.1562 0.9375 0.2812 +0.1562 0.9375 0.3125 +0.1562 0.9375 0.3438 +0.1562 0.9375 0.375 +0.1562 0.9375 0.4062 +0.1562 0.9375 0.4375 +0.1562 0.9375 0.4688 +0.1562 0.9375 0.5 +0.1562 0.9375 0.5312 +0.1562 0.9375 0.5625 +0.1562 0.9375 0.5938 +0.1562 0.9375 0.625 +0.1562 0.9375 0.6562 +0.1562 0.9375 0.6875 +0.1562 0.9375 0.7188 +0.1562 0.9375 0.75 +0.1562 0.9375 0.7812 +0.1562 0.9375 0.8125 +0.1562 0.9375 0.8438 +0.1562 0.9375 0.875 +0.1562 0.9375 0.9062 +0.1562 0.9375 0.9375 +0.1562 0.9375 0.9688 +0.1562 0.9375 1 +0.1562 0.9688 0 +0.1562 0.9688 0.03125 +0.1562 0.9688 0.0625 +0.1562 0.9688 0.09375 +0.1562 0.9688 0.125 +0.1562 0.9688 0.1562 +0.1562 0.9688 0.1875 +0.1562 0.9688 0.2188 +0.1562 0.9688 0.25 +0.1562 0.9688 0.2812 +0.1562 0.9688 0.3125 +0.1562 0.9688 0.3438 +0.1562 0.9688 0.375 +0.1562 0.9688 0.4062 +0.1562 0.9688 0.4375 +0.1562 0.9688 0.4688 +0.1562 0.9688 0.5 +0.1562 0.9688 0.5312 +0.1562 0.9688 0.5625 +0.1562 0.9688 0.5938 +0.1562 0.9688 0.625 +0.1562 0.9688 0.6562 +0.1562 0.9688 0.6875 +0.1562 0.9688 0.7188 +0.1562 0.9688 0.75 +0.1562 0.9688 0.7812 +0.1562 0.9688 0.8125 +0.1562 0.9688 0.8438 +0.1562 0.9688 0.875 +0.1562 0.9688 0.9062 +0.1562 0.9688 0.9375 +0.1562 0.9688 0.9688 +0.1562 0.9688 1 +0.1562 1 0 +0.1562 1 0.03125 +0.1562 1 0.0625 +0.1562 1 0.09375 +0.1562 1 0.125 +0.1562 1 0.1562 +0.1562 1 0.1875 +0.1562 1 0.2188 +0.1562 1 0.25 +0.1562 1 0.2812 +0.1562 1 0.3125 +0.1562 1 0.3438 +0.1562 1 0.375 +0.1562 1 0.4062 +0.1562 1 0.4375 +0.1562 1 0.4688 +0.1562 1 0.5 +0.1562 1 0.5312 +0.1562 1 0.5625 +0.1562 1 0.5938 +0.1562 1 0.625 +0.1562 1 0.6562 +0.1562 1 0.6875 +0.1562 1 0.7188 +0.1562 1 0.75 +0.1562 1 0.7812 +0.1562 1 0.8125 +0.1562 1 0.8438 +0.1562 1 0.875 +0.1562 1 0.9062 +0.1562 1 0.9375 +0.1562 1 0.9688 +0.1562 1 1 +0.1875 0 0 +0.1875 0 0.03125 +0.1875 0 0.0625 +0.1875 0 0.09375 +0.1875 0 0.125 +0.1875 0 0.1562 +0.1875 0 0.1875 +0.1875 0 0.2188 +0.1875 0 0.25 +0.1875 0 0.2812 +0.1875 0 0.3125 +0.1875 0 0.3438 +0.1875 0 0.375 +0.1875 0 0.4062 +0.1875 0 0.4375 +0.1875 0 0.4688 +0.1875 0 0.5 +0.1875 0 0.5312 +0.1875 0 0.5625 +0.1875 0 0.5938 +0.1875 0 0.625 +0.1875 0 0.6562 +0.1875 0 0.6875 +0.1875 0 0.7188 +0.1875 0 0.75 +0.1875 0 0.7812 +0.1875 0 0.8125 +0.1875 0 0.8438 +0.1875 0 0.875 +0.1875 0 0.9062 +0.1875 0 0.9375 +0.1875 0 0.9688 +0.1875 0 1 +0.1875 0.03125 0 +0.1875 0.03125 0.03125 +0.1875 0.03125 0.0625 +0.1875 0.03125 0.09375 +0.1875 0.03125 0.125 +0.1875 0.03125 0.1562 +0.1875 0.03125 0.1875 +0.1875 0.03125 0.2188 +0.1875 0.03125 0.25 +0.1875 0.03125 0.2812 +0.1875 0.03125 0.3125 +0.1875 0.03125 0.3438 +0.1875 0.03125 0.375 +0.1875 0.03125 0.4062 +0.1875 0.03125 0.4375 +0.1875 0.03125 0.4688 +0.1875 0.03125 0.5 +0.1875 0.03125 0.5312 +0.1875 0.03125 0.5625 +0.1875 0.03125 0.5938 +0.1875 0.03125 0.625 +0.1875 0.03125 0.6562 +0.1875 0.03125 0.6875 +0.1875 0.03125 0.7188 +0.1875 0.03125 0.75 +0.1875 0.03125 0.7812 +0.1875 0.03125 0.8125 +0.1875 0.03125 0.8438 +0.1875 0.03125 0.875 +0.1875 0.03125 0.9062 +0.1875 0.03125 0.9375 +0.1875 0.03125 0.9688 +0.1875 0.03125 1 +0.1875 0.0625 0 +0.1875 0.0625 0.03125 +0.1875 0.0625 0.0625 +0.1875 0.0625 0.09375 +0.1875 0.0625 0.125 +0.1875 0.0625 0.1562 +0.1875 0.0625 0.1875 +0.1875 0.0625 0.2188 +0.1875 0.0625 0.25 +0.1875 0.0625 0.2812 +0.1875 0.0625 0.3125 +0.1875 0.0625 0.3438 +0.1875 0.0625 0.375 +0.1875 0.0625 0.4062 +0.1875 0.0625 0.4375 +0.1875 0.0625 0.4688 +0.1875 0.0625 0.5 +0.1875 0.0625 0.5312 +0.1875 0.0625 0.5625 +0.1875 0.0625 0.5938 +0.1875 0.0625 0.625 +0.1875 0.0625 0.6562 +0.1875 0.0625 0.6875 +0.1875 0.0625 0.7188 +0.1875 0.0625 0.75 +0.1875 0.0625 0.7812 +0.1875 0.0625 0.8125 +0.1875 0.0625 0.8438 +0.1875 0.0625 0.875 +0.1875 0.0625 0.9062 +0.1875 0.0625 0.9375 +0.1875 0.0625 0.9688 +0.1875 0.0625 1 +0.1875 0.09375 0 +0.1875 0.09375 0.03125 +0.1875 0.09375 0.0625 +0.1875 0.09375 0.09375 +0.1875 0.09375 0.125 +0.1875 0.09375 0.1562 +0.1875 0.09375 0.1875 +0.1875 0.09375 0.2188 +0.1875 0.09375 0.25 +0.1875 0.09375 0.2812 +0.1875 0.09375 0.3125 +0.1875 0.09375 0.3438 +0.1875 0.09375 0.375 +0.1875 0.09375 0.4062 +0.1875 0.09375 0.4375 +0.1875 0.09375 0.4688 +0.1875 0.09375 0.5 +0.1875 0.09375 0.5312 +0.1875 0.09375 0.5625 +0.1875 0.09375 0.5938 +0.1875 0.09375 0.625 +0.1875 0.09375 0.6562 +0.1875 0.09375 0.6875 +0.1875 0.09375 0.7188 +0.1875 0.09375 0.75 +0.1875 0.09375 0.7812 +0.1875 0.09375 0.8125 +0.1875 0.09375 0.8438 +0.1875 0.09375 0.875 +0.1875 0.09375 0.9062 +0.1875 0.09375 0.9375 +0.1875 0.09375 0.9688 +0.1875 0.09375 1 +0.1875 0.125 0 +0.1875 0.125 0.03125 +0.1875 0.125 0.0625 +0.1875 0.125 0.09375 +0.1875 0.125 0.125 +0.1875 0.125 0.1562 +0.1875 0.125 0.1875 +0.1875 0.125 0.2188 +0.1875 0.125 0.25 +0.1875 0.125 0.2812 +0.1875 0.125 0.3125 +0.1875 0.125 0.3438 +0.1875 0.125 0.375 +0.1875 0.125 0.4062 +0.1875 0.125 0.4375 +0.1875 0.125 0.4688 +0.1875 0.125 0.5 +0.1875 0.125 0.5312 +0.1875 0.125 0.5625 +0.1875 0.125 0.5938 +0.1875 0.125 0.625 +0.1875 0.125 0.6562 +0.1875 0.125 0.6875 +0.1875 0.125 0.7188 +0.1875 0.125 0.75 +0.1875 0.125 0.7812 +0.1875 0.125 0.8125 +0.1875 0.125 0.8438 +0.1875 0.125 0.875 +0.1875 0.125 0.9062 +0.1875 0.125 0.9375 +0.1875 0.125 0.9688 +0.1875 0.125 1 +0.1875 0.1562 0 +0.1875 0.1562 0.03125 +0.1875 0.1562 0.0625 +0.1875 0.1562 0.09375 +0.1875 0.1562 0.125 +0.1875 0.1562 0.1562 +0.1875 0.1562 0.1875 +0.1875 0.1562 0.2188 +0.1875 0.1562 0.25 +0.1875 0.1562 0.2812 +0.1875 0.1562 0.3125 +0.1875 0.1562 0.3438 +0.1875 0.1562 0.375 +0.1875 0.1562 0.4062 +0.1875 0.1562 0.4375 +0.1875 0.1562 0.4688 +0.1875 0.1562 0.5 +0.1875 0.1562 0.5312 +0.1875 0.1562 0.5625 +0.1875 0.1562 0.5938 +0.1875 0.1562 0.625 +0.1875 0.1562 0.6562 +0.1875 0.1562 0.6875 +0.1875 0.1562 0.7188 +0.1875 0.1562 0.75 +0.1875 0.1562 0.7812 +0.1875 0.1562 0.8125 +0.1875 0.1562 0.8438 +0.1875 0.1562 0.875 +0.1875 0.1562 0.9062 +0.1875 0.1562 0.9375 +0.1875 0.1562 0.9688 +0.1875 0.1562 1 +0.1875 0.1875 0 +0.1875 0.1875 0.03125 +0.1875 0.1875 0.0625 +0.1875 0.1875 0.09375 +0.1875 0.1875 0.125 +0.1875 0.1875 0.1562 +0.1875 0.1875 0.1875 +0.1875 0.1875 0.2188 +0.1875 0.1875 0.25 +0.1875 0.1875 0.2812 +0.1875 0.1875 0.3125 +0.1875 0.1875 0.3438 +0.1875 0.1875 0.375 +0.1875 0.1875 0.4062 +0.1875 0.1875 0.4375 +0.1875 0.1875 0.4688 +0.1875 0.1875 0.5 +0.1875 0.1875 0.5312 +0.1875 0.1875 0.5625 +0.1875 0.1875 0.5938 +0.1875 0.1875 0.625 +0.1875 0.1875 0.6562 +0.1875 0.1875 0.6875 +0.1875 0.1875 0.7188 +0.1875 0.1875 0.75 +0.1875 0.1875 0.7812 +0.1875 0.1875 0.8125 +0.1875 0.1875 0.8438 +0.1875 0.1875 0.875 +0.1875 0.1875 0.9062 +0.1875 0.1875 0.9375 +0.1875 0.1875 0.9688 +0.1875 0.1875 1 +0.1875 0.2188 0 +0.1875 0.2188 0.03125 +0.1875 0.2188 0.0625 +0.1875 0.2188 0.09375 +0.1875 0.2188 0.125 +0.1875 0.2188 0.1562 +0.1875 0.2188 0.1875 +0.1875 0.2188 0.2188 +0.1875 0.2188 0.25 +0.1875 0.2188 0.2812 +0.1875 0.2188 0.3125 +0.1875 0.2188 0.3438 +0.1875 0.2188 0.375 +0.1875 0.2188 0.4062 +0.1875 0.2188 0.4375 +0.1875 0.2188 0.4688 +0.1875 0.2188 0.5 +0.1875 0.2188 0.5312 +0.1875 0.2188 0.5625 +0.1875 0.2188 0.5938 +0.1875 0.2188 0.625 +0.1875 0.2188 0.6562 +0.1875 0.2188 0.6875 +0.1875 0.2188 0.7188 +0.1875 0.2188 0.75 +0.1875 0.2188 0.7812 +0.1875 0.2188 0.8125 +0.1875 0.2188 0.8438 +0.1875 0.2188 0.875 +0.1875 0.2188 0.9062 +0.1875 0.2188 0.9375 +0.1875 0.2188 0.9688 +0.1875 0.2188 1 +0.1875 0.25 0 +0.1875 0.25 0.03125 +0.1875 0.25 0.0625 +0.1875 0.25 0.09375 +0.1875 0.25 0.125 +0.1875 0.25 0.1562 +0.1875 0.25 0.1875 +0.1875 0.25 0.2188 +0.1875 0.25 0.25 +0.1875 0.25 0.2812 +0.1875 0.25 0.3125 +0.1875 0.25 0.3438 +0.1875 0.25 0.375 +0.1875 0.25 0.4062 +0.1875 0.25 0.4375 +0.1875 0.25 0.4688 +0.1875 0.25 0.5 +0.1875 0.25 0.5312 +0.1875 0.25 0.5625 +0.1875 0.25 0.5938 +0.1875 0.25 0.625 +0.1875 0.25 0.6562 +0.1875 0.25 0.6875 +0.1875 0.25 0.7188 +0.1875 0.25 0.75 +0.1875 0.25 0.7812 +0.1875 0.25 0.8125 +0.1875 0.25 0.8438 +0.1875 0.25 0.875 +0.1875 0.25 0.9062 +0.1875 0.25 0.9375 +0.1875 0.25 0.9688 +0.1875 0.25 1 +0.1875 0.2812 0 +0.1875 0.2812 0.03125 +0.1875 0.2812 0.0625 +0.1875 0.2812 0.09375 +0.1875 0.2812 0.125 +0.1875 0.2812 0.1562 +0.1875 0.2812 0.1875 +0.1875 0.2812 0.2188 +0.1875 0.2812 0.25 +0.1875 0.2812 0.2812 +0.1875 0.2812 0.3125 +0.1875 0.2812 0.3438 +0.1875 0.2812 0.375 +0.1875 0.2812 0.4062 +0.1875 0.2812 0.4375 +0.1875 0.2812 0.4688 +0.1875 0.2812 0.5 +0.1875 0.2812 0.5312 +0.1875 0.2812 0.5625 +0.1875 0.2812 0.5938 +0.1875 0.2812 0.625 +0.1875 0.2812 0.6562 +0.1875 0.2812 0.6875 +0.1875 0.2812 0.7188 +0.1875 0.2812 0.75 +0.1875 0.2812 0.7812 +0.1875 0.2812 0.8125 +0.1875 0.2812 0.8438 +0.1875 0.2812 0.875 +0.1875 0.2812 0.9062 +0.1875 0.2812 0.9375 +0.1875 0.2812 0.9688 +0.1875 0.2812 1 +0.1875 0.3125 0 +0.1875 0.3125 0.03125 +0.1875 0.3125 0.0625 +0.1875 0.3125 0.09375 +0.1875 0.3125 0.125 +0.1875 0.3125 0.1562 +0.1875 0.3125 0.1875 +0.1875 0.3125 0.2188 +0.1875 0.3125 0.25 +0.1875 0.3125 0.2812 +0.1875 0.3125 0.3125 +0.1875 0.3125 0.3438 +0.1875 0.3125 0.375 +0.1875 0.3125 0.4062 +0.1875 0.3125 0.4375 +0.1875 0.3125 0.4688 +0.1875 0.3125 0.5 +0.1875 0.3125 0.5312 +0.1875 0.3125 0.5625 +0.1875 0.3125 0.5938 +0.1875 0.3125 0.625 +0.1875 0.3125 0.6562 +0.1875 0.3125 0.6875 +0.1875 0.3125 0.7188 +0.1875 0.3125 0.75 +0.1875 0.3125 0.7812 +0.1875 0.3125 0.8125 +0.1875 0.3125 0.8438 +0.1875 0.3125 0.875 +0.1875 0.3125 0.9062 +0.1875 0.3125 0.9375 +0.1875 0.3125 0.9688 +0.1875 0.3125 1 +0.1875 0.3438 0 +0.1875 0.3438 0.03125 +0.1875 0.3438 0.0625 +0.1875 0.3438 0.09375 +0.1875 0.3438 0.125 +0.1875 0.3438 0.1562 +0.1875 0.3438 0.1875 +0.1875 0.3438 0.2188 +0.1875 0.3438 0.25 +0.1875 0.3438 0.2812 +0.1875 0.3438 0.3125 +0.1875 0.3438 0.3438 +0.1875 0.3438 0.375 +0.1875 0.3438 0.4062 +0.1875 0.3438 0.4375 +0.1875 0.3438 0.4688 +0.1875 0.3438 0.5 +0.1875 0.3438 0.5312 +0.1875 0.3438 0.5625 +0.1875 0.3438 0.5938 +0.1875 0.3438 0.625 +0.1875 0.3438 0.6562 +0.1875 0.3438 0.6875 +0.1875 0.3438 0.7188 +0.1875 0.3438 0.75 +0.1875 0.3438 0.7812 +0.1875 0.3438 0.8125 +0.1875 0.3438 0.8438 +0.1875 0.3438 0.875 +0.1875 0.3438 0.9062 +0.1875 0.3438 0.9375 +0.1875 0.3438 0.9688 +0.1875 0.3438 1 +0.1875 0.375 0 +0.1875 0.375 0.03125 +0.1875 0.375 0.0625 +0.1875 0.375 0.09375 +0.1875 0.375 0.125 +0.1875 0.375 0.1562 +0.1875 0.375 0.1875 +0.1875 0.375 0.2188 +0.1875 0.375 0.25 +0.1875 0.375 0.2812 +0.1875 0.375 0.3125 +0.1875 0.375 0.3438 +0.1875 0.375 0.375 +0.1875 0.375 0.4062 +0.1875 0.375 0.4375 +0.1875 0.375 0.4688 +0.1875 0.375 0.5 +0.1875 0.375 0.5312 +0.1875 0.375 0.5625 +0.1875 0.375 0.5938 +0.1875 0.375 0.625 +0.1875 0.375 0.6562 +0.1875 0.375 0.6875 +0.1875 0.375 0.7188 +0.1875 0.375 0.75 +0.1875 0.375 0.7812 +0.1875 0.375 0.8125 +0.1875 0.375 0.8438 +0.1875 0.375 0.875 +0.1875 0.375 0.9062 +0.1875 0.375 0.9375 +0.1875 0.375 0.9688 +0.1875 0.375 1 +0.1875 0.4062 0 +0.1875 0.4062 0.03125 +0.1875 0.4062 0.0625 +0.1875 0.4062 0.09375 +0.1875 0.4062 0.125 +0.1875 0.4062 0.1562 +0.1875 0.4062 0.1875 +0.1875 0.4062 0.2188 +0.1875 0.4062 0.25 +0.1875 0.4062 0.2812 +0.1875 0.4062 0.3125 +0.1875 0.4062 0.3438 +0.1875 0.4062 0.375 +0.1875 0.4062 0.4062 +0.1875 0.4062 0.4375 +0.1875 0.4062 0.4688 +0.1875 0.4062 0.5 +0.1875 0.4062 0.5312 +0.1875 0.4062 0.5625 +0.1875 0.4062 0.5938 +0.1875 0.4062 0.625 +0.1875 0.4062 0.6562 +0.1875 0.4062 0.6875 +0.1875 0.4062 0.7188 +0.1875 0.4062 0.75 +0.1875 0.4062 0.7812 +0.1875 0.4062 0.8125 +0.1875 0.4062 0.8438 +0.1875 0.4062 0.875 +0.1875 0.4062 0.9062 +0.1875 0.4062 0.9375 +0.1875 0.4062 0.9688 +0.1875 0.4062 1 +0.1875 0.4375 0 +0.1875 0.4375 0.03125 +0.1875 0.4375 0.0625 +0.1875 0.4375 0.09375 +0.1875 0.4375 0.125 +0.1875 0.4375 0.1562 +0.1875 0.4375 0.1875 +0.1875 0.4375 0.2188 +0.1875 0.4375 0.25 +0.1875 0.4375 0.2812 +0.1875 0.4375 0.3125 +0.1875 0.4375 0.3438 +0.1875 0.4375 0.375 +0.1875 0.4375 0.4062 +0.1875 0.4375 0.4375 +0.1875 0.4375 0.4688 +0.1875 0.4375 0.5 +0.1875 0.4375 0.5312 +0.1875 0.4375 0.5625 +0.1875 0.4375 0.5938 +0.1875 0.4375 0.625 +0.1875 0.4375 0.6562 +0.1875 0.4375 0.6875 +0.1875 0.4375 0.7188 +0.1875 0.4375 0.75 +0.1875 0.4375 0.7812 +0.1875 0.4375 0.8125 +0.1875 0.4375 0.8438 +0.1875 0.4375 0.875 +0.1875 0.4375 0.9062 +0.1875 0.4375 0.9375 +0.1875 0.4375 0.9688 +0.1875 0.4375 1 +0.1875 0.4688 0 +0.1875 0.4688 0.03125 +0.1875 0.4688 0.0625 +0.1875 0.4688 0.09375 +0.1875 0.4688 0.125 +0.1875 0.4688 0.1562 +0.1875 0.4688 0.1875 +0.1875 0.4688 0.2188 +0.1875 0.4688 0.25 +0.1875 0.4688 0.2812 +0.1875 0.4688 0.3125 +0.1875 0.4688 0.3438 +0.1875 0.4688 0.375 +0.1875 0.4688 0.4062 +0.1875 0.4688 0.4375 +0.1875 0.4688 0.4688 +0.1875 0.4688 0.5 +0.1875 0.4688 0.5312 +0.1875 0.4688 0.5625 +0.1875 0.4688 0.5938 +0.1875 0.4688 0.625 +0.1875 0.4688 0.6562 +0.1875 0.4688 0.6875 +0.1875 0.4688 0.7188 +0.1875 0.4688 0.75 +0.1875 0.4688 0.7812 +0.1875 0.4688 0.8125 +0.1875 0.4688 0.8438 +0.1875 0.4688 0.875 +0.1875 0.4688 0.9062 +0.1875 0.4688 0.9375 +0.1875 0.4688 0.9688 +0.1875 0.4688 1 +0.1875 0.5 0 +0.1875 0.5 0.03125 +0.1875 0.5 0.0625 +0.1875 0.5 0.09375 +0.1875 0.5 0.125 +0.1875 0.5 0.1562 +0.1875 0.5 0.1875 +0.1875 0.5 0.2188 +0.1875 0.5 0.25 +0.1875 0.5 0.2812 +0.1875 0.5 0.3125 +0.1875 0.5 0.3438 +0.1875 0.5 0.375 +0.1875 0.5 0.4062 +0.1875 0.5 0.4375 +0.1875 0.5 0.4688 +0.1875 0.5 0.5 +0.1875 0.5 0.5312 +0.1875 0.5 0.5625 +0.1875 0.5 0.5938 +0.1875 0.5 0.625 +0.1875 0.5 0.6562 +0.1875 0.5 0.6875 +0.1875 0.5 0.7188 +0.1875 0.5 0.75 +0.1875 0.5 0.7812 +0.1875 0.5 0.8125 +0.1875 0.5 0.8438 +0.1875 0.5 0.875 +0.1875 0.5 0.9062 +0.1875 0.5 0.9375 +0.1875 0.5 0.9688 +0.1875 0.5 1 +0.1875 0.5312 0 +0.1875 0.5312 0.03125 +0.1875 0.5312 0.0625 +0.1875 0.5312 0.09375 +0.1875 0.5312 0.125 +0.1875 0.5312 0.1562 +0.1875 0.5312 0.1875 +0.1875 0.5312 0.2188 +0.1875 0.5312 0.25 +0.1875 0.5312 0.2812 +0.1875 0.5312 0.3125 +0.1875 0.5312 0.3438 +0.1875 0.5312 0.375 +0.1875 0.5312 0.4062 +0.1875 0.5312 0.4375 +0.1875 0.5312 0.4688 +0.1875 0.5312 0.5 +0.1875 0.5312 0.5312 +0.1875 0.5312 0.5625 +0.1875 0.5312 0.5938 +0.1875 0.5312 0.625 +0.1875 0.5312 0.6562 +0.1875 0.5312 0.6875 +0.1875 0.5312 0.7188 +0.1875 0.5312 0.75 +0.1875 0.5312 0.7812 +0.1875 0.5312 0.8125 +0.1875 0.5312 0.8438 +0.1875 0.5312 0.875 +0.1875 0.5312 0.9062 +0.1875 0.5312 0.9375 +0.1875 0.5312 0.9688 +0.1875 0.5312 1 +0.1875 0.5625 0 +0.1875 0.5625 0.03125 +0.1875 0.5625 0.0625 +0.1875 0.5625 0.09375 +0.1875 0.5625 0.125 +0.1875 0.5625 0.1562 +0.1875 0.5625 0.1875 +0.1875 0.5625 0.2188 +0.1875 0.5625 0.25 +0.1875 0.5625 0.2812 +0.1875 0.5625 0.3125 +0.1875 0.5625 0.3438 +0.1875 0.5625 0.375 +0.1875 0.5625 0.4062 +0.1875 0.5625 0.4375 +0.1875 0.5625 0.4688 +0.1875 0.5625 0.5 +0.1875 0.5625 0.5312 +0.1875 0.5625 0.5625 +0.1875 0.5625 0.5938 +0.1875 0.5625 0.625 +0.1875 0.5625 0.6562 +0.1875 0.5625 0.6875 +0.1875 0.5625 0.7188 +0.1875 0.5625 0.75 +0.1875 0.5625 0.7812 +0.1875 0.5625 0.8125 +0.1875 0.5625 0.8438 +0.1875 0.5625 0.875 +0.1875 0.5625 0.9062 +0.1875 0.5625 0.9375 +0.1875 0.5625 0.9688 +0.1875 0.5625 1 +0.1875 0.5938 0 +0.1875 0.5938 0.03125 +0.1875 0.5938 0.0625 +0.1875 0.5938 0.09375 +0.1875 0.5938 0.125 +0.1875 0.5938 0.1562 +0.1875 0.5938 0.1875 +0.1875 0.5938 0.2188 +0.1875 0.5938 0.25 +0.1875 0.5938 0.2812 +0.1875 0.5938 0.3125 +0.1875 0.5938 0.3438 +0.1875 0.5938 0.375 +0.1875 0.5938 0.4062 +0.1875 0.5938 0.4375 +0.1875 0.5938 0.4688 +0.1875 0.5938 0.5 +0.1875 0.5938 0.5312 +0.1875 0.5938 0.5625 +0.1875 0.5938 0.5938 +0.1875 0.5938 0.625 +0.1875 0.5938 0.6562 +0.1875 0.5938 0.6875 +0.1875 0.5938 0.7188 +0.1875 0.5938 0.75 +0.1875 0.5938 0.7812 +0.1875 0.5938 0.8125 +0.1875 0.5938 0.8438 +0.1875 0.5938 0.875 +0.1875 0.5938 0.9062 +0.1875 0.5938 0.9375 +0.1875 0.5938 0.9688 +0.1875 0.5938 1 +0.1875 0.625 0 +0.1875 0.625 0.03125 +0.1875 0.625 0.0625 +0.1875 0.625 0.09375 +0.1875 0.625 0.125 +0.1875 0.625 0.1562 +0.1875 0.625 0.1875 +0.1875 0.625 0.2188 +0.1875 0.625 0.25 +0.1875 0.625 0.2812 +0.1875 0.625 0.3125 +0.1875 0.625 0.3438 +0.1875 0.625 0.375 +0.1875 0.625 0.4062 +0.1875 0.625 0.4375 +0.1875 0.625 0.4688 +0.1875 0.625 0.5 +0.1875 0.625 0.5312 +0.1875 0.625 0.5625 +0.1875 0.625 0.5938 +0.1875 0.625 0.625 +0.1875 0.625 0.6562 +0.1875 0.625 0.6875 +0.1875 0.625 0.7188 +0.1875 0.625 0.75 +0.1875 0.625 0.7812 +0.1875 0.625 0.8125 +0.1875 0.625 0.8438 +0.1875 0.625 0.875 +0.1875 0.625 0.9062 +0.1875 0.625 0.9375 +0.1875 0.625 0.9688 +0.1875 0.625 1 +0.1875 0.6562 0 +0.1875 0.6562 0.03125 +0.1875 0.6562 0.0625 +0.1875 0.6562 0.09375 +0.1875 0.6562 0.125 +0.1875 0.6562 0.1562 +0.1875 0.6562 0.1875 +0.1875 0.6562 0.2188 +0.1875 0.6562 0.25 +0.1875 0.6562 0.2812 +0.1875 0.6562 0.3125 +0.1875 0.6562 0.3438 +0.1875 0.6562 0.375 +0.1875 0.6562 0.4062 +0.1875 0.6562 0.4375 +0.1875 0.6562 0.4688 +0.1875 0.6562 0.5 +0.1875 0.6562 0.5312 +0.1875 0.6562 0.5625 +0.1875 0.6562 0.5938 +0.1875 0.6562 0.625 +0.1875 0.6562 0.6562 +0.1875 0.6562 0.6875 +0.1875 0.6562 0.7188 +0.1875 0.6562 0.75 +0.1875 0.6562 0.7812 +0.1875 0.6562 0.8125 +0.1875 0.6562 0.8438 +0.1875 0.6562 0.875 +0.1875 0.6562 0.9062 +0.1875 0.6562 0.9375 +0.1875 0.6562 0.9688 +0.1875 0.6562 1 +0.1875 0.6875 0 +0.1875 0.6875 0.03125 +0.1875 0.6875 0.0625 +0.1875 0.6875 0.09375 +0.1875 0.6875 0.125 +0.1875 0.6875 0.1562 +0.1875 0.6875 0.1875 +0.1875 0.6875 0.2188 +0.1875 0.6875 0.25 +0.1875 0.6875 0.2812 +0.1875 0.6875 0.3125 +0.1875 0.6875 0.3438 +0.1875 0.6875 0.375 +0.1875 0.6875 0.4062 +0.1875 0.6875 0.4375 +0.1875 0.6875 0.4688 +0.1875 0.6875 0.5 +0.1875 0.6875 0.5312 +0.1875 0.6875 0.5625 +0.1875 0.6875 0.5938 +0.1875 0.6875 0.625 +0.1875 0.6875 0.6562 +0.1875 0.6875 0.6875 +0.1875 0.6875 0.7188 +0.1875 0.6875 0.75 +0.1875 0.6875 0.7812 +0.1875 0.6875 0.8125 +0.1875 0.6875 0.8438 +0.1875 0.6875 0.875 +0.1875 0.6875 0.9062 +0.1875 0.6875 0.9375 +0.1875 0.6875 0.9688 +0.1875 0.6875 1 +0.1875 0.7188 0 +0.1875 0.7188 0.03125 +0.1875 0.7188 0.0625 +0.1875 0.7188 0.09375 +0.1875 0.7188 0.125 +0.1875 0.7188 0.1562 +0.1875 0.7188 0.1875 +0.1875 0.7188 0.2188 +0.1875 0.7188 0.25 +0.1875 0.7188 0.2812 +0.1875 0.7188 0.3125 +0.1875 0.7188 0.3438 +0.1875 0.7188 0.375 +0.1875 0.7188 0.4062 +0.1875 0.7188 0.4375 +0.1875 0.7188 0.4688 +0.1875 0.7188 0.5 +0.1875 0.7188 0.5312 +0.1875 0.7188 0.5625 +0.1875 0.7188 0.5938 +0.1875 0.7188 0.625 +0.1875 0.7188 0.6562 +0.1875 0.7188 0.6875 +0.1875 0.7188 0.7188 +0.1875 0.7188 0.75 +0.1875 0.7188 0.7812 +0.1875 0.7188 0.8125 +0.1875 0.7188 0.8438 +0.1875 0.7188 0.875 +0.1875 0.7188 0.9062 +0.1875 0.7188 0.9375 +0.1875 0.7188 0.9688 +0.1875 0.7188 1 +0.1875 0.75 0 +0.1875 0.75 0.03125 +0.1875 0.75 0.0625 +0.1875 0.75 0.09375 +0.1875 0.75 0.125 +0.1875 0.75 0.1562 +0.1875 0.75 0.1875 +0.1875 0.75 0.2188 +0.1875 0.75 0.25 +0.1875 0.75 0.2812 +0.1875 0.75 0.3125 +0.1875 0.75 0.3438 +0.1875 0.75 0.375 +0.1875 0.75 0.4062 +0.1875 0.75 0.4375 +0.1875 0.75 0.4688 +0.1875 0.75 0.5 +0.1875 0.75 0.5312 +0.1875 0.75 0.5625 +0.1875 0.75 0.5938 +0.1875 0.75 0.625 +0.1875 0.75 0.6562 +0.1875 0.75 0.6875 +0.1875 0.75 0.7188 +0.1875 0.75 0.75 +0.1875 0.75 0.7812 +0.1875 0.75 0.8125 +0.1875 0.75 0.8438 +0.1875 0.75 0.875 +0.1875 0.75 0.9062 +0.1875 0.75 0.9375 +0.1875 0.75 0.9688 +0.1875 0.75 1 +0.1875 0.7812 0 +0.1875 0.7812 0.03125 +0.1875 0.7812 0.0625 +0.1875 0.7812 0.09375 +0.1875 0.7812 0.125 +0.1875 0.7812 0.1562 +0.1875 0.7812 0.1875 +0.1875 0.7812 0.2188 +0.1875 0.7812 0.25 +0.1875 0.7812 0.2812 +0.1875 0.7812 0.3125 +0.1875 0.7812 0.3438 +0.1875 0.7812 0.375 +0.1875 0.7812 0.4062 +0.1875 0.7812 0.4375 +0.1875 0.7812 0.4688 +0.1875 0.7812 0.5 +0.1875 0.7812 0.5312 +0.1875 0.7812 0.5625 +0.1875 0.7812 0.5938 +0.1875 0.7812 0.625 +0.1875 0.7812 0.6562 +0.1875 0.7812 0.6875 +0.1875 0.7812 0.7188 +0.1875 0.7812 0.75 +0.1875 0.7812 0.7812 +0.1875 0.7812 0.8125 +0.1875 0.7812 0.8438 +0.1875 0.7812 0.875 +0.1875 0.7812 0.9062 +0.1875 0.7812 0.9375 +0.1875 0.7812 0.9688 +0.1875 0.7812 1 +0.1875 0.8125 0 +0.1875 0.8125 0.03125 +0.1875 0.8125 0.0625 +0.1875 0.8125 0.09375 +0.1875 0.8125 0.125 +0.1875 0.8125 0.1562 +0.1875 0.8125 0.1875 +0.1875 0.8125 0.2188 +0.1875 0.8125 0.25 +0.1875 0.8125 0.2812 +0.1875 0.8125 0.3125 +0.1875 0.8125 0.3438 +0.1875 0.8125 0.375 +0.1875 0.8125 0.4062 +0.1875 0.8125 0.4375 +0.1875 0.8125 0.4688 +0.1875 0.8125 0.5 +0.1875 0.8125 0.5312 +0.1875 0.8125 0.5625 +0.1875 0.8125 0.5938 +0.1875 0.8125 0.625 +0.1875 0.8125 0.6562 +0.1875 0.8125 0.6875 +0.1875 0.8125 0.7188 +0.1875 0.8125 0.75 +0.1875 0.8125 0.7812 +0.1875 0.8125 0.8125 +0.1875 0.8125 0.8438 +0.1875 0.8125 0.875 +0.1875 0.8125 0.9062 +0.1875 0.8125 0.9375 +0.1875 0.8125 0.9688 +0.1875 0.8125 1 +0.1875 0.8438 0 +0.1875 0.8438 0.03125 +0.1875 0.8438 0.0625 +0.1875 0.8438 0.09375 +0.1875 0.8438 0.125 +0.1875 0.8438 0.1562 +0.1875 0.8438 0.1875 +0.1875 0.8438 0.2188 +0.1875 0.8438 0.25 +0.1875 0.8438 0.2812 +0.1875 0.8438 0.3125 +0.1875 0.8438 0.3438 +0.1875 0.8438 0.375 +0.1875 0.8438 0.4062 +0.1875 0.8438 0.4375 +0.1875 0.8438 0.4688 +0.1875 0.8438 0.5 +0.1875 0.8438 0.5312 +0.1875 0.8438 0.5625 +0.1875 0.8438 0.5938 +0.1875 0.8438 0.625 +0.1875 0.8438 0.6562 +0.1875 0.8438 0.6875 +0.1875 0.8438 0.7188 +0.1875 0.8438 0.75 +0.1875 0.8438 0.7812 +0.1875 0.8438 0.8125 +0.1875 0.8438 0.8438 +0.1875 0.8438 0.875 +0.1875 0.8438 0.9062 +0.1875 0.8438 0.9375 +0.1875 0.8438 0.9688 +0.1875 0.8438 1 +0.1875 0.875 0 +0.1875 0.875 0.03125 +0.1875 0.875 0.0625 +0.1875 0.875 0.09375 +0.1875 0.875 0.125 +0.1875 0.875 0.1562 +0.1875 0.875 0.1875 +0.1875 0.875 0.2188 +0.1875 0.875 0.25 +0.1875 0.875 0.2812 +0.1875 0.875 0.3125 +0.1875 0.875 0.3438 +0.1875 0.875 0.375 +0.1875 0.875 0.4062 +0.1875 0.875 0.4375 +0.1875 0.875 0.4688 +0.1875 0.875 0.5 +0.1875 0.875 0.5312 +0.1875 0.875 0.5625 +0.1875 0.875 0.5938 +0.1875 0.875 0.625 +0.1875 0.875 0.6562 +0.1875 0.875 0.6875 +0.1875 0.875 0.7188 +0.1875 0.875 0.75 +0.1875 0.875 0.7812 +0.1875 0.875 0.8125 +0.1875 0.875 0.8438 +0.1875 0.875 0.875 +0.1875 0.875 0.9062 +0.1875 0.875 0.9375 +0.1875 0.875 0.9688 +0.1875 0.875 1 +0.1875 0.9062 0 +0.1875 0.9062 0.03125 +0.1875 0.9062 0.0625 +0.1875 0.9062 0.09375 +0.1875 0.9062 0.125 +0.1875 0.9062 0.1562 +0.1875 0.9062 0.1875 +0.1875 0.9062 0.2188 +0.1875 0.9062 0.25 +0.1875 0.9062 0.2812 +0.1875 0.9062 0.3125 +0.1875 0.9062 0.3438 +0.1875 0.9062 0.375 +0.1875 0.9062 0.4062 +0.1875 0.9062 0.4375 +0.1875 0.9062 0.4688 +0.1875 0.9062 0.5 +0.1875 0.9062 0.5312 +0.1875 0.9062 0.5625 +0.1875 0.9062 0.5938 +0.1875 0.9062 0.625 +0.1875 0.9062 0.6562 +0.1875 0.9062 0.6875 +0.1875 0.9062 0.7188 +0.1875 0.9062 0.75 +0.1875 0.9062 0.7812 +0.1875 0.9062 0.8125 +0.1875 0.9062 0.8438 +0.1875 0.9062 0.875 +0.1875 0.9062 0.9062 +0.1875 0.9062 0.9375 +0.1875 0.9062 0.9688 +0.1875 0.9062 1 +0.1875 0.9375 0 +0.1875 0.9375 0.03125 +0.1875 0.9375 0.0625 +0.1875 0.9375 0.09375 +0.1875 0.9375 0.125 +0.1875 0.9375 0.1562 +0.1875 0.9375 0.1875 +0.1875 0.9375 0.2188 +0.1875 0.9375 0.25 +0.1875 0.9375 0.2812 +0.1875 0.9375 0.3125 +0.1875 0.9375 0.3438 +0.1875 0.9375 0.375 +0.1875 0.9375 0.4062 +0.1875 0.9375 0.4375 +0.1875 0.9375 0.4688 +0.1875 0.9375 0.5 +0.1875 0.9375 0.5312 +0.1875 0.9375 0.5625 +0.1875 0.9375 0.5938 +0.1875 0.9375 0.625 +0.1875 0.9375 0.6562 +0.1875 0.9375 0.6875 +0.1875 0.9375 0.7188 +0.1875 0.9375 0.75 +0.1875 0.9375 0.7812 +0.1875 0.9375 0.8125 +0.1875 0.9375 0.8438 +0.1875 0.9375 0.875 +0.1875 0.9375 0.9062 +0.1875 0.9375 0.9375 +0.1875 0.9375 0.9688 +0.1875 0.9375 1 +0.1875 0.9688 0 +0.1875 0.9688 0.03125 +0.1875 0.9688 0.0625 +0.1875 0.9688 0.09375 +0.1875 0.9688 0.125 +0.1875 0.9688 0.1562 +0.1875 0.9688 0.1875 +0.1875 0.9688 0.2188 +0.1875 0.9688 0.25 +0.1875 0.9688 0.2812 +0.1875 0.9688 0.3125 +0.1875 0.9688 0.3438 +0.1875 0.9688 0.375 +0.1875 0.9688 0.4062 +0.1875 0.9688 0.4375 +0.1875 0.9688 0.4688 +0.1875 0.9688 0.5 +0.1875 0.9688 0.5312 +0.1875 0.9688 0.5625 +0.1875 0.9688 0.5938 +0.1875 0.9688 0.625 +0.1875 0.9688 0.6562 +0.1875 0.9688 0.6875 +0.1875 0.9688 0.7188 +0.1875 0.9688 0.75 +0.1875 0.9688 0.7812 +0.1875 0.9688 0.8125 +0.1875 0.9688 0.8438 +0.1875 0.9688 0.875 +0.1875 0.9688 0.9062 +0.1875 0.9688 0.9375 +0.1875 0.9688 0.9688 +0.1875 0.9688 1 +0.1875 1 0 +0.1875 1 0.03125 +0.1875 1 0.0625 +0.1875 1 0.09375 +0.1875 1 0.125 +0.1875 1 0.1562 +0.1875 1 0.1875 +0.1875 1 0.2188 +0.1875 1 0.25 +0.1875 1 0.2812 +0.1875 1 0.3125 +0.1875 1 0.3438 +0.1875 1 0.375 +0.1875 1 0.4062 +0.1875 1 0.4375 +0.1875 1 0.4688 +0.1875 1 0.5 +0.1875 1 0.5312 +0.1875 1 0.5625 +0.1875 1 0.5938 +0.1875 1 0.625 +0.1875 1 0.6562 +0.1875 1 0.6875 +0.1875 1 0.7188 +0.1875 1 0.75 +0.1875 1 0.7812 +0.1875 1 0.8125 +0.1875 1 0.8438 +0.1875 1 0.875 +0.1875 1 0.9062 +0.1875 1 0.9375 +0.1875 1 0.9688 +0.1875 1 1 +0.2188 0 0 +0.2188 0 0.03125 +0.2188 0 0.0625 +0.2188 0 0.09375 +0.2188 0 0.125 +0.2188 0 0.1562 +0.2188 0 0.1875 +0.2188 0 0.2188 +0.2188 0 0.25 +0.2188 0 0.2812 +0.2188 0 0.3125 +0.2188 0 0.3438 +0.2188 0 0.375 +0.2188 0 0.4062 +0.2188 0 0.4375 +0.2188 0 0.4688 +0.2188 0 0.5 +0.2188 0 0.5312 +0.2188 0 0.5625 +0.2188 0 0.5938 +0.2188 0 0.625 +0.2188 0 0.6562 +0.2188 0 0.6875 +0.2188 0 0.7188 +0.2188 0 0.75 +0.2188 0 0.7812 +0.2188 0 0.8125 +0.2188 0 0.8438 +0.2188 0 0.875 +0.2188 0 0.9062 +0.2188 0 0.9375 +0.2188 0 0.9688 +0.2188 0 1 +0.2188 0.03125 0 +0.2188 0.03125 0.03125 +0.2188 0.03125 0.0625 +0.2188 0.03125 0.09375 +0.2188 0.03125 0.125 +0.2188 0.03125 0.1562 +0.2188 0.03125 0.1875 +0.2188 0.03125 0.2188 +0.2188 0.03125 0.25 +0.2188 0.03125 0.2812 +0.2188 0.03125 0.3125 +0.2188 0.03125 0.3438 +0.2188 0.03125 0.375 +0.2188 0.03125 0.4062 +0.2188 0.03125 0.4375 +0.2188 0.03125 0.4688 +0.2188 0.03125 0.5 +0.2188 0.03125 0.5312 +0.2188 0.03125 0.5625 +0.2188 0.03125 0.5938 +0.2188 0.03125 0.625 +0.2188 0.03125 0.6562 +0.2188 0.03125 0.6875 +0.2188 0.03125 0.7188 +0.2188 0.03125 0.75 +0.2188 0.03125 0.7812 +0.2188 0.03125 0.8125 +0.2188 0.03125 0.8438 +0.2188 0.03125 0.875 +0.2188 0.03125 0.9062 +0.2188 0.03125 0.9375 +0.2188 0.03125 0.9688 +0.2188 0.03125 1 +0.2188 0.0625 0 +0.2188 0.0625 0.03125 +0.2188 0.0625 0.0625 +0.2188 0.0625 0.09375 +0.2188 0.0625 0.125 +0.2188 0.0625 0.1562 +0.2188 0.0625 0.1875 +0.2188 0.0625 0.2188 +0.2188 0.0625 0.25 +0.2188 0.0625 0.2812 +0.2188 0.0625 0.3125 +0.2188 0.0625 0.3438 +0.2188 0.0625 0.375 +0.2188 0.0625 0.4062 +0.2188 0.0625 0.4375 +0.2188 0.0625 0.4688 +0.2188 0.0625 0.5 +0.2188 0.0625 0.5312 +0.2188 0.0625 0.5625 +0.2188 0.0625 0.5938 +0.2188 0.0625 0.625 +0.2188 0.0625 0.6562 +0.2188 0.0625 0.6875 +0.2188 0.0625 0.7188 +0.2188 0.0625 0.75 +0.2188 0.0625 0.7812 +0.2188 0.0625 0.8125 +0.2188 0.0625 0.8438 +0.2188 0.0625 0.875 +0.2188 0.0625 0.9062 +0.2188 0.0625 0.9375 +0.2188 0.0625 0.9688 +0.2188 0.0625 1 +0.2188 0.09375 0 +0.2188 0.09375 0.03125 +0.2188 0.09375 0.0625 +0.2188 0.09375 0.09375 +0.2188 0.09375 0.125 +0.2188 0.09375 0.1562 +0.2188 0.09375 0.1875 +0.2188 0.09375 0.2188 +0.2188 0.09375 0.25 +0.2188 0.09375 0.2812 +0.2188 0.09375 0.3125 +0.2188 0.09375 0.3438 +0.2188 0.09375 0.375 +0.2188 0.09375 0.4062 +0.2188 0.09375 0.4375 +0.2188 0.09375 0.4688 +0.2188 0.09375 0.5 +0.2188 0.09375 0.5312 +0.2188 0.09375 0.5625 +0.2188 0.09375 0.5938 +0.2188 0.09375 0.625 +0.2188 0.09375 0.6562 +0.2188 0.09375 0.6875 +0.2188 0.09375 0.7188 +0.2188 0.09375 0.75 +0.2188 0.09375 0.7812 +0.2188 0.09375 0.8125 +0.2188 0.09375 0.8438 +0.2188 0.09375 0.875 +0.2188 0.09375 0.9062 +0.2188 0.09375 0.9375 +0.2188 0.09375 0.9688 +0.2188 0.09375 1 +0.2188 0.125 0 +0.2188 0.125 0.03125 +0.2188 0.125 0.0625 +0.2188 0.125 0.09375 +0.2188 0.125 0.125 +0.2188 0.125 0.1562 +0.2188 0.125 0.1875 +0.2188 0.125 0.2188 +0.2188 0.125 0.25 +0.2188 0.125 0.2812 +0.2188 0.125 0.3125 +0.2188 0.125 0.3438 +0.2188 0.125 0.375 +0.2188 0.125 0.4062 +0.2188 0.125 0.4375 +0.2188 0.125 0.4688 +0.2188 0.125 0.5 +0.2188 0.125 0.5312 +0.2188 0.125 0.5625 +0.2188 0.125 0.5938 +0.2188 0.125 0.625 +0.2188 0.125 0.6562 +0.2188 0.125 0.6875 +0.2188 0.125 0.7188 +0.2188 0.125 0.75 +0.2188 0.125 0.7812 +0.2188 0.125 0.8125 +0.2188 0.125 0.8438 +0.2188 0.125 0.875 +0.2188 0.125 0.9062 +0.2188 0.125 0.9375 +0.2188 0.125 0.9688 +0.2188 0.125 1 +0.2188 0.1562 0 +0.2188 0.1562 0.03125 +0.2188 0.1562 0.0625 +0.2188 0.1562 0.09375 +0.2188 0.1562 0.125 +0.2188 0.1562 0.1562 +0.2188 0.1562 0.1875 +0.2188 0.1562 0.2188 +0.2188 0.1562 0.25 +0.2188 0.1562 0.2812 +0.2188 0.1562 0.3125 +0.2188 0.1562 0.3438 +0.2188 0.1562 0.375 +0.2188 0.1562 0.4062 +0.2188 0.1562 0.4375 +0.2188 0.1562 0.4688 +0.2188 0.1562 0.5 +0.2188 0.1562 0.5312 +0.2188 0.1562 0.5625 +0.2188 0.1562 0.5938 +0.2188 0.1562 0.625 +0.2188 0.1562 0.6562 +0.2188 0.1562 0.6875 +0.2188 0.1562 0.7188 +0.2188 0.1562 0.75 +0.2188 0.1562 0.7812 +0.2188 0.1562 0.8125 +0.2188 0.1562 0.8438 +0.2188 0.1562 0.875 +0.2188 0.1562 0.9062 +0.2188 0.1562 0.9375 +0.2188 0.1562 0.9688 +0.2188 0.1562 1 +0.2188 0.1875 0 +0.2188 0.1875 0.03125 +0.2188 0.1875 0.0625 +0.2188 0.1875 0.09375 +0.2188 0.1875 0.125 +0.2188 0.1875 0.1562 +0.2188 0.1875 0.1875 +0.2188 0.1875 0.2188 +0.2188 0.1875 0.25 +0.2188 0.1875 0.2812 +0.2188 0.1875 0.3125 +0.2188 0.1875 0.3438 +0.2188 0.1875 0.375 +0.2188 0.1875 0.4062 +0.2188 0.1875 0.4375 +0.2188 0.1875 0.4688 +0.2188 0.1875 0.5 +0.2188 0.1875 0.5312 +0.2188 0.1875 0.5625 +0.2188 0.1875 0.5938 +0.2188 0.1875 0.625 +0.2188 0.1875 0.6562 +0.2188 0.1875 0.6875 +0.2188 0.1875 0.7188 +0.2188 0.1875 0.75 +0.2188 0.1875 0.7812 +0.2188 0.1875 0.8125 +0.2188 0.1875 0.8438 +0.2188 0.1875 0.875 +0.2188 0.1875 0.9062 +0.2188 0.1875 0.9375 +0.2188 0.1875 0.9688 +0.2188 0.1875 1 +0.2188 0.2188 0 +0.2188 0.2188 0.03125 +0.2188 0.2188 0.0625 +0.2188 0.2188 0.09375 +0.2188 0.2188 0.125 +0.2188 0.2188 0.1562 +0.2188 0.2188 0.1875 +0.2188 0.2188 0.2188 +0.2188 0.2188 0.25 +0.2188 0.2188 0.2812 +0.2188 0.2188 0.3125 +0.2188 0.2188 0.3438 +0.2188 0.2188 0.375 +0.2188 0.2188 0.4062 +0.2188 0.2188 0.4375 +0.2188 0.2188 0.4688 +0.2188 0.2188 0.5 +0.2188 0.2188 0.5312 +0.2188 0.2188 0.5625 +0.2188 0.2188 0.5938 +0.2188 0.2188 0.625 +0.2188 0.2188 0.6562 +0.2188 0.2188 0.6875 +0.2188 0.2188 0.7188 +0.2188 0.2188 0.75 +0.2188 0.2188 0.7812 +0.2188 0.2188 0.8125 +0.2188 0.2188 0.8438 +0.2188 0.2188 0.875 +0.2188 0.2188 0.9062 +0.2188 0.2188 0.9375 +0.2188 0.2188 0.9688 +0.2188 0.2188 1 +0.2188 0.25 0 +0.2188 0.25 0.03125 +0.2188 0.25 0.0625 +0.2188 0.25 0.09375 +0.2188 0.25 0.125 +0.2188 0.25 0.1562 +0.2188 0.25 0.1875 +0.2188 0.25 0.2188 +0.2188 0.25 0.25 +0.2188 0.25 0.2812 +0.2188 0.25 0.3125 +0.2188 0.25 0.3438 +0.2188 0.25 0.375 +0.2188 0.25 0.4062 +0.2188 0.25 0.4375 +0.2188 0.25 0.4688 +0.2188 0.25 0.5 +0.2188 0.25 0.5312 +0.2188 0.25 0.5625 +0.2188 0.25 0.5938 +0.2188 0.25 0.625 +0.2188 0.25 0.6562 +0.2188 0.25 0.6875 +0.2188 0.25 0.7188 +0.2188 0.25 0.75 +0.2188 0.25 0.7812 +0.2188 0.25 0.8125 +0.2188 0.25 0.8438 +0.2188 0.25 0.875 +0.2188 0.25 0.9062 +0.2188 0.25 0.9375 +0.2188 0.25 0.9688 +0.2188 0.25 1 +0.2188 0.2812 0 +0.2188 0.2812 0.03125 +0.2188 0.2812 0.0625 +0.2188 0.2812 0.09375 +0.2188 0.2812 0.125 +0.2188 0.2812 0.1562 +0.2188 0.2812 0.1875 +0.2188 0.2812 0.2188 +0.2188 0.2812 0.25 +0.2188 0.2812 0.2812 +0.2188 0.2812 0.3125 +0.2188 0.2812 0.3438 +0.2188 0.2812 0.375 +0.2188 0.2812 0.4062 +0.2188 0.2812 0.4375 +0.2188 0.2812 0.4688 +0.2188 0.2812 0.5 +0.2188 0.2812 0.5312 +0.2188 0.2812 0.5625 +0.2188 0.2812 0.5938 +0.2188 0.2812 0.625 +0.2188 0.2812 0.6562 +0.2188 0.2812 0.6875 +0.2188 0.2812 0.7188 +0.2188 0.2812 0.75 +0.2188 0.2812 0.7812 +0.2188 0.2812 0.8125 +0.2188 0.2812 0.8438 +0.2188 0.2812 0.875 +0.2188 0.2812 0.9062 +0.2188 0.2812 0.9375 +0.2188 0.2812 0.9688 +0.2188 0.2812 1 +0.2188 0.3125 0 +0.2188 0.3125 0.03125 +0.2188 0.3125 0.0625 +0.2188 0.3125 0.09375 +0.2188 0.3125 0.125 +0.2188 0.3125 0.1562 +0.2188 0.3125 0.1875 +0.2188 0.3125 0.2188 +0.2188 0.3125 0.25 +0.2188 0.3125 0.2812 +0.2188 0.3125 0.3125 +0.2188 0.3125 0.3438 +0.2188 0.3125 0.375 +0.2188 0.3125 0.4062 +0.2188 0.3125 0.4375 +0.2188 0.3125 0.4688 +0.2188 0.3125 0.5 +0.2188 0.3125 0.5312 +0.2188 0.3125 0.5625 +0.2188 0.3125 0.5938 +0.2188 0.3125 0.625 +0.2188 0.3125 0.6562 +0.2188 0.3125 0.6875 +0.2188 0.3125 0.7188 +0.2188 0.3125 0.75 +0.2188 0.3125 0.7812 +0.2188 0.3125 0.8125 +0.2188 0.3125 0.8438 +0.2188 0.3125 0.875 +0.2188 0.3125 0.9062 +0.2188 0.3125 0.9375 +0.2188 0.3125 0.9688 +0.2188 0.3125 1 +0.2188 0.3438 0 +0.2188 0.3438 0.03125 +0.2188 0.3438 0.0625 +0.2188 0.3438 0.09375 +0.2188 0.3438 0.125 +0.2188 0.3438 0.1562 +0.2188 0.3438 0.1875 +0.2188 0.3438 0.2188 +0.2188 0.3438 0.25 +0.2188 0.3438 0.2812 +0.2188 0.3438 0.3125 +0.2188 0.3438 0.3438 +0.2188 0.3438 0.375 +0.2188 0.3438 0.4062 +0.2188 0.3438 0.4375 +0.2188 0.3438 0.4688 +0.2188 0.3438 0.5 +0.2188 0.3438 0.5312 +0.2188 0.3438 0.5625 +0.2188 0.3438 0.5938 +0.2188 0.3438 0.625 +0.2188 0.3438 0.6562 +0.2188 0.3438 0.6875 +0.2188 0.3438 0.7188 +0.2188 0.3438 0.75 +0.2188 0.3438 0.7812 +0.2188 0.3438 0.8125 +0.2188 0.3438 0.8438 +0.2188 0.3438 0.875 +0.2188 0.3438 0.9062 +0.2188 0.3438 0.9375 +0.2188 0.3438 0.9688 +0.2188 0.3438 1 +0.2188 0.375 0 +0.2188 0.375 0.03125 +0.2188 0.375 0.0625 +0.2188 0.375 0.09375 +0.2188 0.375 0.125 +0.2188 0.375 0.1562 +0.2188 0.375 0.1875 +0.2188 0.375 0.2188 +0.2188 0.375 0.25 +0.2188 0.375 0.2812 +0.2188 0.375 0.3125 +0.2188 0.375 0.3438 +0.2188 0.375 0.375 +0.2188 0.375 0.4062 +0.2188 0.375 0.4375 +0.2188 0.375 0.4688 +0.2188 0.375 0.5 +0.2188 0.375 0.5312 +0.2188 0.375 0.5625 +0.2188 0.375 0.5938 +0.2188 0.375 0.625 +0.2188 0.375 0.6562 +0.2188 0.375 0.6875 +0.2188 0.375 0.7188 +0.2188 0.375 0.75 +0.2188 0.375 0.7812 +0.2188 0.375 0.8125 +0.2188 0.375 0.8438 +0.2188 0.375 0.875 +0.2188 0.375 0.9062 +0.2188 0.375 0.9375 +0.2188 0.375 0.9688 +0.2188 0.375 1 +0.2188 0.4062 0 +0.2188 0.4062 0.03125 +0.2188 0.4062 0.0625 +0.2188 0.4062 0.09375 +0.2188 0.4062 0.125 +0.2188 0.4062 0.1562 +0.2188 0.4062 0.1875 +0.2188 0.4062 0.2188 +0.2188 0.4062 0.25 +0.2188 0.4062 0.2812 +0.2188 0.4062 0.3125 +0.2188 0.4062 0.3438 +0.2188 0.4062 0.375 +0.2188 0.4062 0.4062 +0.2188 0.4062 0.4375 +0.2188 0.4062 0.4688 +0.2188 0.4062 0.5 +0.2188 0.4062 0.5312 +0.2188 0.4062 0.5625 +0.2188 0.4062 0.5938 +0.2188 0.4062 0.625 +0.2188 0.4062 0.6562 +0.2188 0.4062 0.6875 +0.2188 0.4062 0.7188 +0.2188 0.4062 0.75 +0.2188 0.4062 0.7812 +0.2188 0.4062 0.8125 +0.2188 0.4062 0.8438 +0.2188 0.4062 0.875 +0.2188 0.4062 0.9062 +0.2188 0.4062 0.9375 +0.2188 0.4062 0.9688 +0.2188 0.4062 1 +0.2188 0.4375 0 +0.2188 0.4375 0.03125 +0.2188 0.4375 0.0625 +0.2188 0.4375 0.09375 +0.2188 0.4375 0.125 +0.2188 0.4375 0.1562 +0.2188 0.4375 0.1875 +0.2188 0.4375 0.2188 +0.2188 0.4375 0.25 +0.2188 0.4375 0.2812 +0.2188 0.4375 0.3125 +0.2188 0.4375 0.3438 +0.2188 0.4375 0.375 +0.2188 0.4375 0.4062 +0.2188 0.4375 0.4375 +0.2188 0.4375 0.4688 +0.2188 0.4375 0.5 +0.2188 0.4375 0.5312 +0.2188 0.4375 0.5625 +0.2188 0.4375 0.5938 +0.2188 0.4375 0.625 +0.2188 0.4375 0.6562 +0.2188 0.4375 0.6875 +0.2188 0.4375 0.7188 +0.2188 0.4375 0.75 +0.2188 0.4375 0.7812 +0.2188 0.4375 0.8125 +0.2188 0.4375 0.8438 +0.2188 0.4375 0.875 +0.2188 0.4375 0.9062 +0.2188 0.4375 0.9375 +0.2188 0.4375 0.9688 +0.2188 0.4375 1 +0.2188 0.4688 0 +0.2188 0.4688 0.03125 +0.2188 0.4688 0.0625 +0.2188 0.4688 0.09375 +0.2188 0.4688 0.125 +0.2188 0.4688 0.1562 +0.2188 0.4688 0.1875 +0.2188 0.4688 0.2188 +0.2188 0.4688 0.25 +0.2188 0.4688 0.2812 +0.2188 0.4688 0.3125 +0.2188 0.4688 0.3438 +0.2188 0.4688 0.375 +0.2188 0.4688 0.4062 +0.2188 0.4688 0.4375 +0.2188 0.4688 0.4688 +0.2188 0.4688 0.5 +0.2188 0.4688 0.5312 +0.2188 0.4688 0.5625 +0.2188 0.4688 0.5938 +0.2188 0.4688 0.625 +0.2188 0.4688 0.6562 +0.2188 0.4688 0.6875 +0.2188 0.4688 0.7188 +0.2188 0.4688 0.75 +0.2188 0.4688 0.7812 +0.2188 0.4688 0.8125 +0.2188 0.4688 0.8438 +0.2188 0.4688 0.875 +0.2188 0.4688 0.9062 +0.2188 0.4688 0.9375 +0.2188 0.4688 0.9688 +0.2188 0.4688 1 +0.2188 0.5 0 +0.2188 0.5 0.03125 +0.2188 0.5 0.0625 +0.2188 0.5 0.09375 +0.2188 0.5 0.125 +0.2188 0.5 0.1562 +0.2188 0.5 0.1875 +0.2188 0.5 0.2188 +0.2188 0.5 0.25 +0.2188 0.5 0.2812 +0.2188 0.5 0.3125 +0.2188 0.5 0.3438 +0.2188 0.5 0.375 +0.2188 0.5 0.4062 +0.2188 0.5 0.4375 +0.2188 0.5 0.4688 +0.2188 0.5 0.5 +0.2188 0.5 0.5312 +0.2188 0.5 0.5625 +0.2188 0.5 0.5938 +0.2188 0.5 0.625 +0.2188 0.5 0.6562 +0.2188 0.5 0.6875 +0.2188 0.5 0.7188 +0.2188 0.5 0.75 +0.2188 0.5 0.7812 +0.2188 0.5 0.8125 +0.2188 0.5 0.8438 +0.2188 0.5 0.875 +0.2188 0.5 0.9062 +0.2188 0.5 0.9375 +0.2188 0.5 0.9688 +0.2188 0.5 1 +0.2188 0.5312 0 +0.2188 0.5312 0.03125 +0.2188 0.5312 0.0625 +0.2188 0.5312 0.09375 +0.2188 0.5312 0.125 +0.2188 0.5312 0.1562 +0.2188 0.5312 0.1875 +0.2188 0.5312 0.2188 +0.2188 0.5312 0.25 +0.2188 0.5312 0.2812 +0.2188 0.5312 0.3125 +0.2188 0.5312 0.3438 +0.2188 0.5312 0.375 +0.2188 0.5312 0.4062 +0.2188 0.5312 0.4375 +0.2188 0.5312 0.4688 +0.2188 0.5312 0.5 +0.2188 0.5312 0.5312 +0.2188 0.5312 0.5625 +0.2188 0.5312 0.5938 +0.2188 0.5312 0.625 +0.2188 0.5312 0.6562 +0.2188 0.5312 0.6875 +0.2188 0.5312 0.7188 +0.2188 0.5312 0.75 +0.2188 0.5312 0.7812 +0.2188 0.5312 0.8125 +0.2188 0.5312 0.8438 +0.2188 0.5312 0.875 +0.2188 0.5312 0.9062 +0.2188 0.5312 0.9375 +0.2188 0.5312 0.9688 +0.2188 0.5312 1 +0.2188 0.5625 0 +0.2188 0.5625 0.03125 +0.2188 0.5625 0.0625 +0.2188 0.5625 0.09375 +0.2188 0.5625 0.125 +0.2188 0.5625 0.1562 +0.2188 0.5625 0.1875 +0.2188 0.5625 0.2188 +0.2188 0.5625 0.25 +0.2188 0.5625 0.2812 +0.2188 0.5625 0.3125 +0.2188 0.5625 0.3438 +0.2188 0.5625 0.375 +0.2188 0.5625 0.4062 +0.2188 0.5625 0.4375 +0.2188 0.5625 0.4688 +0.2188 0.5625 0.5 +0.2188 0.5625 0.5312 +0.2188 0.5625 0.5625 +0.2188 0.5625 0.5938 +0.2188 0.5625 0.625 +0.2188 0.5625 0.6562 +0.2188 0.5625 0.6875 +0.2188 0.5625 0.7188 +0.2188 0.5625 0.75 +0.2188 0.5625 0.7812 +0.2188 0.5625 0.8125 +0.2188 0.5625 0.8438 +0.2188 0.5625 0.875 +0.2188 0.5625 0.9062 +0.2188 0.5625 0.9375 +0.2188 0.5625 0.9688 +0.2188 0.5625 1 +0.2188 0.5938 0 +0.2188 0.5938 0.03125 +0.2188 0.5938 0.0625 +0.2188 0.5938 0.09375 +0.2188 0.5938 0.125 +0.2188 0.5938 0.1562 +0.2188 0.5938 0.1875 +0.2188 0.5938 0.2188 +0.2188 0.5938 0.25 +0.2188 0.5938 0.2812 +0.2188 0.5938 0.3125 +0.2188 0.5938 0.3438 +0.2188 0.5938 0.375 +0.2188 0.5938 0.4062 +0.2188 0.5938 0.4375 +0.2188 0.5938 0.4688 +0.2188 0.5938 0.5 +0.2188 0.5938 0.5312 +0.2188 0.5938 0.5625 +0.2188 0.5938 0.5938 +0.2188 0.5938 0.625 +0.2188 0.5938 0.6562 +0.2188 0.5938 0.6875 +0.2188 0.5938 0.7188 +0.2188 0.5938 0.75 +0.2188 0.5938 0.7812 +0.2188 0.5938 0.8125 +0.2188 0.5938 0.8438 +0.2188 0.5938 0.875 +0.2188 0.5938 0.9062 +0.2188 0.5938 0.9375 +0.2188 0.5938 0.9688 +0.2188 0.5938 1 +0.2188 0.625 0 +0.2188 0.625 0.03125 +0.2188 0.625 0.0625 +0.2188 0.625 0.09375 +0.2188 0.625 0.125 +0.2188 0.625 0.1562 +0.2188 0.625 0.1875 +0.2188 0.625 0.2188 +0.2188 0.625 0.25 +0.2188 0.625 0.2812 +0.2188 0.625 0.3125 +0.2188 0.625 0.3438 +0.2188 0.625 0.375 +0.2188 0.625 0.4062 +0.2188 0.625 0.4375 +0.2188 0.625 0.4688 +0.2188 0.625 0.5 +0.2188 0.625 0.5312 +0.2188 0.625 0.5625 +0.2188 0.625 0.5938 +0.2188 0.625 0.625 +0.2188 0.625 0.6562 +0.2188 0.625 0.6875 +0.2188 0.625 0.7188 +0.2188 0.625 0.75 +0.2188 0.625 0.7812 +0.2188 0.625 0.8125 +0.2188 0.625 0.8438 +0.2188 0.625 0.875 +0.2188 0.625 0.9062 +0.2188 0.625 0.9375 +0.2188 0.625 0.9688 +0.2188 0.625 1 +0.2188 0.6562 0 +0.2188 0.6562 0.03125 +0.2188 0.6562 0.0625 +0.2188 0.6562 0.09375 +0.2188 0.6562 0.125 +0.2188 0.6562 0.1562 +0.2188 0.6562 0.1875 +0.2188 0.6562 0.2188 +0.2188 0.6562 0.25 +0.2188 0.6562 0.2812 +0.2188 0.6562 0.3125 +0.2188 0.6562 0.3438 +0.2188 0.6562 0.375 +0.2188 0.6562 0.4062 +0.2188 0.6562 0.4375 +0.2188 0.6562 0.4688 +0.2188 0.6562 0.5 +0.2188 0.6562 0.5312 +0.2188 0.6562 0.5625 +0.2188 0.6562 0.5938 +0.2188 0.6562 0.625 +0.2188 0.6562 0.6562 +0.2188 0.6562 0.6875 +0.2188 0.6562 0.7188 +0.2188 0.6562 0.75 +0.2188 0.6562 0.7812 +0.2188 0.6562 0.8125 +0.2188 0.6562 0.8438 +0.2188 0.6562 0.875 +0.2188 0.6562 0.9062 +0.2188 0.6562 0.9375 +0.2188 0.6562 0.9688 +0.2188 0.6562 1 +0.2188 0.6875 0 +0.2188 0.6875 0.03125 +0.2188 0.6875 0.0625 +0.2188 0.6875 0.09375 +0.2188 0.6875 0.125 +0.2188 0.6875 0.1562 +0.2188 0.6875 0.1875 +0.2188 0.6875 0.2188 +0.2188 0.6875 0.25 +0.2188 0.6875 0.2812 +0.2188 0.6875 0.3125 +0.2188 0.6875 0.3438 +0.2188 0.6875 0.375 +0.2188 0.6875 0.4062 +0.2188 0.6875 0.4375 +0.2188 0.6875 0.4688 +0.2188 0.6875 0.5 +0.2188 0.6875 0.5312 +0.2188 0.6875 0.5625 +0.2188 0.6875 0.5938 +0.2188 0.6875 0.625 +0.2188 0.6875 0.6562 +0.2188 0.6875 0.6875 +0.2188 0.6875 0.7188 +0.2188 0.6875 0.75 +0.2188 0.6875 0.7812 +0.2188 0.6875 0.8125 +0.2188 0.6875 0.8438 +0.2188 0.6875 0.875 +0.2188 0.6875 0.9062 +0.2188 0.6875 0.9375 +0.2188 0.6875 0.9688 +0.2188 0.6875 1 +0.2188 0.7188 0 +0.2188 0.7188 0.03125 +0.2188 0.7188 0.0625 +0.2188 0.7188 0.09375 +0.2188 0.7188 0.125 +0.2188 0.7188 0.1562 +0.2188 0.7188 0.1875 +0.2188 0.7188 0.2188 +0.2188 0.7188 0.25 +0.2188 0.7188 0.2812 +0.2188 0.7188 0.3125 +0.2188 0.7188 0.3438 +0.2188 0.7188 0.375 +0.2188 0.7188 0.4062 +0.2188 0.7188 0.4375 +0.2188 0.7188 0.4688 +0.2188 0.7188 0.5 +0.2188 0.7188 0.5312 +0.2188 0.7188 0.5625 +0.2188 0.7188 0.5938 +0.2188 0.7188 0.625 +0.2188 0.7188 0.6562 +0.2188 0.7188 0.6875 +0.2188 0.7188 0.7188 +0.2188 0.7188 0.75 +0.2188 0.7188 0.7812 +0.2188 0.7188 0.8125 +0.2188 0.7188 0.8438 +0.2188 0.7188 0.875 +0.2188 0.7188 0.9062 +0.2188 0.7188 0.9375 +0.2188 0.7188 0.9688 +0.2188 0.7188 1 +0.2188 0.75 0 +0.2188 0.75 0.03125 +0.2188 0.75 0.0625 +0.2188 0.75 0.09375 +0.2188 0.75 0.125 +0.2188 0.75 0.1562 +0.2188 0.75 0.1875 +0.2188 0.75 0.2188 +0.2188 0.75 0.25 +0.2188 0.75 0.2812 +0.2188 0.75 0.3125 +0.2188 0.75 0.3438 +0.2188 0.75 0.375 +0.2188 0.75 0.4062 +0.2188 0.75 0.4375 +0.2188 0.75 0.4688 +0.2188 0.75 0.5 +0.2188 0.75 0.5312 +0.2188 0.75 0.5625 +0.2188 0.75 0.5938 +0.2188 0.75 0.625 +0.2188 0.75 0.6562 +0.2188 0.75 0.6875 +0.2188 0.75 0.7188 +0.2188 0.75 0.75 +0.2188 0.75 0.7812 +0.2188 0.75 0.8125 +0.2188 0.75 0.8438 +0.2188 0.75 0.875 +0.2188 0.75 0.9062 +0.2188 0.75 0.9375 +0.2188 0.75 0.9688 +0.2188 0.75 1 +0.2188 0.7812 0 +0.2188 0.7812 0.03125 +0.2188 0.7812 0.0625 +0.2188 0.7812 0.09375 +0.2188 0.7812 0.125 +0.2188 0.7812 0.1562 +0.2188 0.7812 0.1875 +0.2188 0.7812 0.2188 +0.2188 0.7812 0.25 +0.2188 0.7812 0.2812 +0.2188 0.7812 0.3125 +0.2188 0.7812 0.3438 +0.2188 0.7812 0.375 +0.2188 0.7812 0.4062 +0.2188 0.7812 0.4375 +0.2188 0.7812 0.4688 +0.2188 0.7812 0.5 +0.2188 0.7812 0.5312 +0.2188 0.7812 0.5625 +0.2188 0.7812 0.5938 +0.2188 0.7812 0.625 +0.2188 0.7812 0.6562 +0.2188 0.7812 0.6875 +0.2188 0.7812 0.7188 +0.2188 0.7812 0.75 +0.2188 0.7812 0.7812 +0.2188 0.7812 0.8125 +0.2188 0.7812 0.8438 +0.2188 0.7812 0.875 +0.2188 0.7812 0.9062 +0.2188 0.7812 0.9375 +0.2188 0.7812 0.9688 +0.2188 0.7812 1 +0.2188 0.8125 0 +0.2188 0.8125 0.03125 +0.2188 0.8125 0.0625 +0.2188 0.8125 0.09375 +0.2188 0.8125 0.125 +0.2188 0.8125 0.1562 +0.2188 0.8125 0.1875 +0.2188 0.8125 0.2188 +0.2188 0.8125 0.25 +0.2188 0.8125 0.2812 +0.2188 0.8125 0.3125 +0.2188 0.8125 0.3438 +0.2188 0.8125 0.375 +0.2188 0.8125 0.4062 +0.2188 0.8125 0.4375 +0.2188 0.8125 0.4688 +0.2188 0.8125 0.5 +0.2188 0.8125 0.5312 +0.2188 0.8125 0.5625 +0.2188 0.8125 0.5938 +0.2188 0.8125 0.625 +0.2188 0.8125 0.6562 +0.2188 0.8125 0.6875 +0.2188 0.8125 0.7188 +0.2188 0.8125 0.75 +0.2188 0.8125 0.7812 +0.2188 0.8125 0.8125 +0.2188 0.8125 0.8438 +0.2188 0.8125 0.875 +0.2188 0.8125 0.9062 +0.2188 0.8125 0.9375 +0.2188 0.8125 0.9688 +0.2188 0.8125 1 +0.2188 0.8438 0 +0.2188 0.8438 0.03125 +0.2188 0.8438 0.0625 +0.2188 0.8438 0.09375 +0.2188 0.8438 0.125 +0.2188 0.8438 0.1562 +0.2188 0.8438 0.1875 +0.2188 0.8438 0.2188 +0.2188 0.8438 0.25 +0.2188 0.8438 0.2812 +0.2188 0.8438 0.3125 +0.2188 0.8438 0.3438 +0.2188 0.8438 0.375 +0.2188 0.8438 0.4062 +0.2188 0.8438 0.4375 +0.2188 0.8438 0.4688 +0.2188 0.8438 0.5 +0.2188 0.8438 0.5312 +0.2188 0.8438 0.5625 +0.2188 0.8438 0.5938 +0.2188 0.8438 0.625 +0.2188 0.8438 0.6562 +0.2188 0.8438 0.6875 +0.2188 0.8438 0.7188 +0.2188 0.8438 0.75 +0.2188 0.8438 0.7812 +0.2188 0.8438 0.8125 +0.2188 0.8438 0.8438 +0.2188 0.8438 0.875 +0.2188 0.8438 0.9062 +0.2188 0.8438 0.9375 +0.2188 0.8438 0.9688 +0.2188 0.8438 1 +0.2188 0.875 0 +0.2188 0.875 0.03125 +0.2188 0.875 0.0625 +0.2188 0.875 0.09375 +0.2188 0.875 0.125 +0.2188 0.875 0.1562 +0.2188 0.875 0.1875 +0.2188 0.875 0.2188 +0.2188 0.875 0.25 +0.2188 0.875 0.2812 +0.2188 0.875 0.3125 +0.2188 0.875 0.3438 +0.2188 0.875 0.375 +0.2188 0.875 0.4062 +0.2188 0.875 0.4375 +0.2188 0.875 0.4688 +0.2188 0.875 0.5 +0.2188 0.875 0.5312 +0.2188 0.875 0.5625 +0.2188 0.875 0.5938 +0.2188 0.875 0.625 +0.2188 0.875 0.6562 +0.2188 0.875 0.6875 +0.2188 0.875 0.7188 +0.2188 0.875 0.75 +0.2188 0.875 0.7812 +0.2188 0.875 0.8125 +0.2188 0.875 0.8438 +0.2188 0.875 0.875 +0.2188 0.875 0.9062 +0.2188 0.875 0.9375 +0.2188 0.875 0.9688 +0.2188 0.875 1 +0.2188 0.9062 0 +0.2188 0.9062 0.03125 +0.2188 0.9062 0.0625 +0.2188 0.9062 0.09375 +0.2188 0.9062 0.125 +0.2188 0.9062 0.1562 +0.2188 0.9062 0.1875 +0.2188 0.9062 0.2188 +0.2188 0.9062 0.25 +0.2188 0.9062 0.2812 +0.2188 0.9062 0.3125 +0.2188 0.9062 0.3438 +0.2188 0.9062 0.375 +0.2188 0.9062 0.4062 +0.2188 0.9062 0.4375 +0.2188 0.9062 0.4688 +0.2188 0.9062 0.5 +0.2188 0.9062 0.5312 +0.2188 0.9062 0.5625 +0.2188 0.9062 0.5938 +0.2188 0.9062 0.625 +0.2188 0.9062 0.6562 +0.2188 0.9062 0.6875 +0.2188 0.9062 0.7188 +0.2188 0.9062 0.75 +0.2188 0.9062 0.7812 +0.2188 0.9062 0.8125 +0.2188 0.9062 0.8438 +0.2188 0.9062 0.875 +0.2188 0.9062 0.9062 +0.2188 0.9062 0.9375 +0.2188 0.9062 0.9688 +0.2188 0.9062 1 +0.2188 0.9375 0 +0.2188 0.9375 0.03125 +0.2188 0.9375 0.0625 +0.2188 0.9375 0.09375 +0.2188 0.9375 0.125 +0.2188 0.9375 0.1562 +0.2188 0.9375 0.1875 +0.2188 0.9375 0.2188 +0.2188 0.9375 0.25 +0.2188 0.9375 0.2812 +0.2188 0.9375 0.3125 +0.2188 0.9375 0.3438 +0.2188 0.9375 0.375 +0.2188 0.9375 0.4062 +0.2188 0.9375 0.4375 +0.2188 0.9375 0.4688 +0.2188 0.9375 0.5 +0.2188 0.9375 0.5312 +0.2188 0.9375 0.5625 +0.2188 0.9375 0.5938 +0.2188 0.9375 0.625 +0.2188 0.9375 0.6562 +0.2188 0.9375 0.6875 +0.2188 0.9375 0.7188 +0.2188 0.9375 0.75 +0.2188 0.9375 0.7812 +0.2188 0.9375 0.8125 +0.2188 0.9375 0.8438 +0.2188 0.9375 0.875 +0.2188 0.9375 0.9062 +0.2188 0.9375 0.9375 +0.2188 0.9375 0.9688 +0.2188 0.9375 1 +0.2188 0.9688 0 +0.2188 0.9688 0.03125 +0.2188 0.9688 0.0625 +0.2188 0.9688 0.09375 +0.2188 0.9688 0.125 +0.2188 0.9688 0.1562 +0.2188 0.9688 0.1875 +0.2188 0.9688 0.2188 +0.2188 0.9688 0.25 +0.2188 0.9688 0.2812 +0.2188 0.9688 0.3125 +0.2188 0.9688 0.3438 +0.2188 0.9688 0.375 +0.2188 0.9688 0.4062 +0.2188 0.9688 0.4375 +0.2188 0.9688 0.4688 +0.2188 0.9688 0.5 +0.2188 0.9688 0.5312 +0.2188 0.9688 0.5625 +0.2188 0.9688 0.5938 +0.2188 0.9688 0.625 +0.2188 0.9688 0.6562 +0.2188 0.9688 0.6875 +0.2188 0.9688 0.7188 +0.2188 0.9688 0.75 +0.2188 0.9688 0.7812 +0.2188 0.9688 0.8125 +0.2188 0.9688 0.8438 +0.2188 0.9688 0.875 +0.2188 0.9688 0.9062 +0.2188 0.9688 0.9375 +0.2188 0.9688 0.9688 +0.2188 0.9688 1 +0.2188 1 0 +0.2188 1 0.03125 +0.2188 1 0.0625 +0.2188 1 0.09375 +0.2188 1 0.125 +0.2188 1 0.1562 +0.2188 1 0.1875 +0.2188 1 0.2188 +0.2188 1 0.25 +0.2188 1 0.2812 +0.2188 1 0.3125 +0.2188 1 0.3438 +0.2188 1 0.375 +0.2188 1 0.4062 +0.2188 1 0.4375 +0.2188 1 0.4688 +0.2188 1 0.5 +0.2188 1 0.5312 +0.2188 1 0.5625 +0.2188 1 0.5938 +0.2188 1 0.625 +0.2188 1 0.6562 +0.2188 1 0.6875 +0.2188 1 0.7188 +0.2188 1 0.75 +0.2188 1 0.7812 +0.2188 1 0.8125 +0.2188 1 0.8438 +0.2188 1 0.875 +0.2188 1 0.9062 +0.2188 1 0.9375 +0.2188 1 0.9688 +0.2188 1 1 +0.25 0 0 +0.25 0 0.03125 +0.25 0 0.0625 +0.25 0 0.09375 +0.25 0 0.125 +0.25 0 0.1562 +0.25 0 0.1875 +0.25 0 0.2188 +0.25 0 0.25 +0.25 0 0.2812 +0.25 0 0.3125 +0.25 0 0.3438 +0.25 0 0.375 +0.25 0 0.4062 +0.25 0 0.4375 +0.25 0 0.4688 +0.25 0 0.5 +0.25 0 0.5312 +0.25 0 0.5625 +0.25 0 0.5938 +0.25 0 0.625 +0.25 0 0.6562 +0.25 0 0.6875 +0.25 0 0.7188 +0.25 0 0.75 +0.25 0 0.7812 +0.25 0 0.8125 +0.25 0 0.8438 +0.25 0 0.875 +0.25 0 0.9062 +0.25 0 0.9375 +0.25 0 0.9688 +0.25 0 1 +0.25 0.03125 0 +0.25 0.03125 0.03125 +0.25 0.03125 0.0625 +0.25 0.03125 0.09375 +0.25 0.03125 0.125 +0.25 0.03125 0.1562 +0.25 0.03125 0.1875 +0.25 0.03125 0.2188 +0.25 0.03125 0.25 +0.25 0.03125 0.2812 +0.25 0.03125 0.3125 +0.25 0.03125 0.3438 +0.25 0.03125 0.375 +0.25 0.03125 0.4062 +0.25 0.03125 0.4375 +0.25 0.03125 0.4688 +0.25 0.03125 0.5 +0.25 0.03125 0.5312 +0.25 0.03125 0.5625 +0.25 0.03125 0.5938 +0.25 0.03125 0.625 +0.25 0.03125 0.6562 +0.25 0.03125 0.6875 +0.25 0.03125 0.7188 +0.25 0.03125 0.75 +0.25 0.03125 0.7812 +0.25 0.03125 0.8125 +0.25 0.03125 0.8438 +0.25 0.03125 0.875 +0.25 0.03125 0.9062 +0.25 0.03125 0.9375 +0.25 0.03125 0.9688 +0.25 0.03125 1 +0.25 0.0625 0 +0.25 0.0625 0.03125 +0.25 0.0625 0.0625 +0.25 0.0625 0.09375 +0.25 0.0625 0.125 +0.25 0.0625 0.1562 +0.25 0.0625 0.1875 +0.25 0.0625 0.2188 +0.25 0.0625 0.25 +0.25 0.0625 0.2812 +0.25 0.0625 0.3125 +0.25 0.0625 0.3438 +0.25 0.0625 0.375 +0.25 0.0625 0.4062 +0.25 0.0625 0.4375 +0.25 0.0625 0.4688 +0.25 0.0625 0.5 +0.25 0.0625 0.5312 +0.25 0.0625 0.5625 +0.25 0.0625 0.5938 +0.25 0.0625 0.625 +0.25 0.0625 0.6562 +0.25 0.0625 0.6875 +0.25 0.0625 0.7188 +0.25 0.0625 0.75 +0.25 0.0625 0.7812 +0.25 0.0625 0.8125 +0.25 0.0625 0.8438 +0.25 0.0625 0.875 +0.25 0.0625 0.9062 +0.25 0.0625 0.9375 +0.25 0.0625 0.9688 +0.25 0.0625 1 +0.25 0.09375 0 +0.25 0.09375 0.03125 +0.25 0.09375 0.0625 +0.25 0.09375 0.09375 +0.25 0.09375 0.125 +0.25 0.09375 0.1562 +0.25 0.09375 0.1875 +0.25 0.09375 0.2188 +0.25 0.09375 0.25 +0.25 0.09375 0.2812 +0.25 0.09375 0.3125 +0.25 0.09375 0.3438 +0.25 0.09375 0.375 +0.25 0.09375 0.4062 +0.25 0.09375 0.4375 +0.25 0.09375 0.4688 +0.25 0.09375 0.5 +0.25 0.09375 0.5312 +0.25 0.09375 0.5625 +0.25 0.09375 0.5938 +0.25 0.09375 0.625 +0.25 0.09375 0.6562 +0.25 0.09375 0.6875 +0.25 0.09375 0.7188 +0.25 0.09375 0.75 +0.25 0.09375 0.7812 +0.25 0.09375 0.8125 +0.25 0.09375 0.8438 +0.25 0.09375 0.875 +0.25 0.09375 0.9062 +0.25 0.09375 0.9375 +0.25 0.09375 0.9688 +0.25 0.09375 1 +0.25 0.125 0 +0.25 0.125 0.03125 +0.25 0.125 0.0625 +0.25 0.125 0.09375 +0.25 0.125 0.125 +0.25 0.125 0.1562 +0.25 0.125 0.1875 +0.25 0.125 0.2188 +0.25 0.125 0.25 +0.25 0.125 0.2812 +0.25 0.125 0.3125 +0.25 0.125 0.3438 +0.25 0.125 0.375 +0.25 0.125 0.4062 +0.25 0.125 0.4375 +0.25 0.125 0.4688 +0.25 0.125 0.5 +0.25 0.125 0.5312 +0.25 0.125 0.5625 +0.25 0.125 0.5938 +0.25 0.125 0.625 +0.25 0.125 0.6562 +0.25 0.125 0.6875 +0.25 0.125 0.7188 +0.25 0.125 0.75 +0.25 0.125 0.7812 +0.25 0.125 0.8125 +0.25 0.125 0.8438 +0.25 0.125 0.875 +0.25 0.125 0.9062 +0.25 0.125 0.9375 +0.25 0.125 0.9688 +0.25 0.125 1 +0.25 0.1562 0 +0.25 0.1562 0.03125 +0.25 0.1562 0.0625 +0.25 0.1562 0.09375 +0.25 0.1562 0.125 +0.25 0.1562 0.1562 +0.25 0.1562 0.1875 +0.25 0.1562 0.2188 +0.25 0.1562 0.25 +0.25 0.1562 0.2812 +0.25 0.1562 0.3125 +0.25 0.1562 0.3438 +0.25 0.1562 0.375 +0.25 0.1562 0.4062 +0.25 0.1562 0.4375 +0.25 0.1562 0.4688 +0.25 0.1562 0.5 +0.25 0.1562 0.5312 +0.25 0.1562 0.5625 +0.25 0.1562 0.5938 +0.25 0.1562 0.625 +0.25 0.1562 0.6562 +0.25 0.1562 0.6875 +0.25 0.1562 0.7188 +0.25 0.1562 0.75 +0.25 0.1562 0.7812 +0.25 0.1562 0.8125 +0.25 0.1562 0.8438 +0.25 0.1562 0.875 +0.25 0.1562 0.9062 +0.25 0.1562 0.9375 +0.25 0.1562 0.9688 +0.25 0.1562 1 +0.25 0.1875 0 +0.25 0.1875 0.03125 +0.25 0.1875 0.0625 +0.25 0.1875 0.09375 +0.25 0.1875 0.125 +0.25 0.1875 0.1562 +0.25 0.1875 0.1875 +0.25 0.1875 0.2188 +0.25 0.1875 0.25 +0.25 0.1875 0.2812 +0.25 0.1875 0.3125 +0.25 0.1875 0.3438 +0.25 0.1875 0.375 +0.25 0.1875 0.4062 +0.25 0.1875 0.4375 +0.25 0.1875 0.4688 +0.25 0.1875 0.5 +0.25 0.1875 0.5312 +0.25 0.1875 0.5625 +0.25 0.1875 0.5938 +0.25 0.1875 0.625 +0.25 0.1875 0.6562 +0.25 0.1875 0.6875 +0.25 0.1875 0.7188 +0.25 0.1875 0.75 +0.25 0.1875 0.7812 +0.25 0.1875 0.8125 +0.25 0.1875 0.8438 +0.25 0.1875 0.875 +0.25 0.1875 0.9062 +0.25 0.1875 0.9375 +0.25 0.1875 0.9688 +0.25 0.1875 1 +0.25 0.2188 0 +0.25 0.2188 0.03125 +0.25 0.2188 0.0625 +0.25 0.2188 0.09375 +0.25 0.2188 0.125 +0.25 0.2188 0.1562 +0.25 0.2188 0.1875 +0.25 0.2188 0.2188 +0.25 0.2188 0.25 +0.25 0.2188 0.2812 +0.25 0.2188 0.3125 +0.25 0.2188 0.3438 +0.25 0.2188 0.375 +0.25 0.2188 0.4062 +0.25 0.2188 0.4375 +0.25 0.2188 0.4688 +0.25 0.2188 0.5 +0.25 0.2188 0.5312 +0.25 0.2188 0.5625 +0.25 0.2188 0.5938 +0.25 0.2188 0.625 +0.25 0.2188 0.6562 +0.25 0.2188 0.6875 +0.25 0.2188 0.7188 +0.25 0.2188 0.75 +0.25 0.2188 0.7812 +0.25 0.2188 0.8125 +0.25 0.2188 0.8438 +0.25 0.2188 0.875 +0.25 0.2188 0.9062 +0.25 0.2188 0.9375 +0.25 0.2188 0.9688 +0.25 0.2188 1 +0.25 0.25 0 +0.25 0.25 0.03125 +0.25 0.25 0.0625 +0.25 0.25 0.09375 +0.25 0.25 0.125 +0.25 0.25 0.1562 +0.25 0.25 0.1875 +0.25 0.25 0.2188 +0.25 0.25 0.25 +0.25 0.25 0.2812 +0.25 0.25 0.3125 +0.25 0.25 0.3438 +0.25 0.25 0.375 +0.25 0.25 0.4062 +0.25 0.25 0.4375 +0.25 0.25 0.4688 +0.25 0.25 0.5 +0.25 0.25 0.5312 +0.25 0.25 0.5625 +0.25 0.25 0.5938 +0.25 0.25 0.625 +0.25 0.25 0.6562 +0.25 0.25 0.6875 +0.25 0.25 0.7188 +0.25 0.25 0.75 +0.25 0.25 0.7812 +0.25 0.25 0.8125 +0.25 0.25 0.8438 +0.25 0.25 0.875 +0.25 0.25 0.9062 +0.25 0.25 0.9375 +0.25 0.25 0.9688 +0.25 0.25 1 +0.25 0.2812 0 +0.25 0.2812 0.03125 +0.25 0.2812 0.0625 +0.25 0.2812 0.09375 +0.25 0.2812 0.125 +0.25 0.2812 0.1562 +0.25 0.2812 0.1875 +0.25 0.2812 0.2188 +0.25 0.2812 0.25 +0.25 0.2812 0.2812 +0.25 0.2812 0.3125 +0.25 0.2812 0.3438 +0.25 0.2812 0.375 +0.25 0.2812 0.4062 +0.25 0.2812 0.4375 +0.25 0.2812 0.4688 +0.25 0.2812 0.5 +0.25 0.2812 0.5312 +0.25 0.2812 0.5625 +0.25 0.2812 0.5938 +0.25 0.2812 0.625 +0.25 0.2812 0.6562 +0.25 0.2812 0.6875 +0.25 0.2812 0.7188 +0.25 0.2812 0.75 +0.25 0.2812 0.7812 +0.25 0.2812 0.8125 +0.25 0.2812 0.8438 +0.25 0.2812 0.875 +0.25 0.2812 0.9062 +0.25 0.2812 0.9375 +0.25 0.2812 0.9688 +0.25 0.2812 1 +0.25 0.3125 0 +0.25 0.3125 0.03125 +0.25 0.3125 0.0625 +0.25 0.3125 0.09375 +0.25 0.3125 0.125 +0.25 0.3125 0.1562 +0.25 0.3125 0.1875 +0.25 0.3125 0.2188 +0.25 0.3125 0.25 +0.25 0.3125 0.2812 +0.25 0.3125 0.3125 +0.25 0.3125 0.3438 +0.25 0.3125 0.375 +0.25 0.3125 0.4062 +0.25 0.3125 0.4375 +0.25 0.3125 0.4688 +0.25 0.3125 0.5 +0.25 0.3125 0.5312 +0.25 0.3125 0.5625 +0.25 0.3125 0.5938 +0.25 0.3125 0.625 +0.25 0.3125 0.6562 +0.25 0.3125 0.6875 +0.25 0.3125 0.7188 +0.25 0.3125 0.75 +0.25 0.3125 0.7812 +0.25 0.3125 0.8125 +0.25 0.3125 0.8438 +0.25 0.3125 0.875 +0.25 0.3125 0.9062 +0.25 0.3125 0.9375 +0.25 0.3125 0.9688 +0.25 0.3125 1 +0.25 0.3438 0 +0.25 0.3438 0.03125 +0.25 0.3438 0.0625 +0.25 0.3438 0.09375 +0.25 0.3438 0.125 +0.25 0.3438 0.1562 +0.25 0.3438 0.1875 +0.25 0.3438 0.2188 +0.25 0.3438 0.25 +0.25 0.3438 0.2812 +0.25 0.3438 0.3125 +0.25 0.3438 0.3438 +0.25 0.3438 0.375 +0.25 0.3438 0.4062 +0.25 0.3438 0.4375 +0.25 0.3438 0.4688 +0.25 0.3438 0.5 +0.25 0.3438 0.5312 +0.25 0.3438 0.5625 +0.25 0.3438 0.5938 +0.25 0.3438 0.625 +0.25 0.3438 0.6562 +0.25 0.3438 0.6875 +0.25 0.3438 0.7188 +0.25 0.3438 0.75 +0.25 0.3438 0.7812 +0.25 0.3438 0.8125 +0.25 0.3438 0.8438 +0.25 0.3438 0.875 +0.25 0.3438 0.9062 +0.25 0.3438 0.9375 +0.25 0.3438 0.9688 +0.25 0.3438 1 +0.25 0.375 0 +0.25 0.375 0.03125 +0.25 0.375 0.0625 +0.25 0.375 0.09375 +0.25 0.375 0.125 +0.25 0.375 0.1562 +0.25 0.375 0.1875 +0.25 0.375 0.2188 +0.25 0.375 0.25 +0.25 0.375 0.2812 +0.25 0.375 0.3125 +0.25 0.375 0.3438 +0.25 0.375 0.375 +0.25 0.375 0.4062 +0.25 0.375 0.4375 +0.25 0.375 0.4688 +0.25 0.375 0.5 +0.25 0.375 0.5312 +0.25 0.375 0.5625 +0.25 0.375 0.5938 +0.25 0.375 0.625 +0.25 0.375 0.6562 +0.25 0.375 0.6875 +0.25 0.375 0.7188 +0.25 0.375 0.75 +0.25 0.375 0.7812 +0.25 0.375 0.8125 +0.25 0.375 0.8438 +0.25 0.375 0.875 +0.25 0.375 0.9062 +0.25 0.375 0.9375 +0.25 0.375 0.9688 +0.25 0.375 1 +0.25 0.4062 0 +0.25 0.4062 0.03125 +0.25 0.4062 0.0625 +0.25 0.4062 0.09375 +0.25 0.4062 0.125 +0.25 0.4062 0.1562 +0.25 0.4062 0.1875 +0.25 0.4062 0.2188 +0.25 0.4062 0.25 +0.25 0.4062 0.2812 +0.25 0.4062 0.3125 +0.25 0.4062 0.3438 +0.25 0.4062 0.375 +0.25 0.4062 0.4062 +0.25 0.4062 0.4375 +0.25 0.4062 0.4688 +0.25 0.4062 0.5 +0.25 0.4062 0.5312 +0.25 0.4062 0.5625 +0.25 0.4062 0.5938 +0.25 0.4062 0.625 +0.25 0.4062 0.6562 +0.25 0.4062 0.6875 +0.25 0.4062 0.7188 +0.25 0.4062 0.75 +0.25 0.4062 0.7812 +0.25 0.4062 0.8125 +0.25 0.4062 0.8438 +0.25 0.4062 0.875 +0.25 0.4062 0.9062 +0.25 0.4062 0.9375 +0.25 0.4062 0.9688 +0.25 0.4062 1 +0.25 0.4375 0 +0.25 0.4375 0.03125 +0.25 0.4375 0.0625 +0.25 0.4375 0.09375 +0.25 0.4375 0.125 +0.25 0.4375 0.1562 +0.25 0.4375 0.1875 +0.25 0.4375 0.2188 +0.25 0.4375 0.25 +0.25 0.4375 0.2812 +0.25 0.4375 0.3125 +0.25 0.4375 0.3438 +0.25 0.4375 0.375 +0.25 0.4375 0.4062 +0.25 0.4375 0.4375 +0.25 0.4375 0.4688 +0.25 0.4375 0.5 +0.25 0.4375 0.5312 +0.25 0.4375 0.5625 +0.25 0.4375 0.5938 +0.25 0.4375 0.625 +0.25 0.4375 0.6562 +0.25 0.4375 0.6875 +0.25 0.4375 0.7188 +0.25 0.4375 0.75 +0.25 0.4375 0.7812 +0.25 0.4375 0.8125 +0.25 0.4375 0.8438 +0.25 0.4375 0.875 +0.25 0.4375 0.9062 +0.25 0.4375 0.9375 +0.25 0.4375 0.9688 +0.25 0.4375 1 +0.25 0.4688 0 +0.25 0.4688 0.03125 +0.25 0.4688 0.0625 +0.25 0.4688 0.09375 +0.25 0.4688 0.125 +0.25 0.4688 0.1562 +0.25 0.4688 0.1875 +0.25 0.4688 0.2188 +0.25 0.4688 0.25 +0.25 0.4688 0.2812 +0.25 0.4688 0.3125 +0.25 0.4688 0.3438 +0.25 0.4688 0.375 +0.25 0.4688 0.4062 +0.25 0.4688 0.4375 +0.25 0.4688 0.4688 +0.25 0.4688 0.5 +0.25 0.4688 0.5312 +0.25 0.4688 0.5625 +0.25 0.4688 0.5938 +0.25 0.4688 0.625 +0.25 0.4688 0.6562 +0.25 0.4688 0.6875 +0.25 0.4688 0.7188 +0.25 0.4688 0.75 +0.25 0.4688 0.7812 +0.25 0.4688 0.8125 +0.25 0.4688 0.8438 +0.25 0.4688 0.875 +0.25 0.4688 0.9062 +0.25 0.4688 0.9375 +0.25 0.4688 0.9688 +0.25 0.4688 1 +0.25 0.5 0 +0.25 0.5 0.03125 +0.25 0.5 0.0625 +0.25 0.5 0.09375 +0.25 0.5 0.125 +0.25 0.5 0.1562 +0.25 0.5 0.1875 +0.25 0.5 0.2188 +0.25 0.5 0.25 +0.25 0.5 0.2812 +0.25 0.5 0.3125 +0.25 0.5 0.3438 +0.25 0.5 0.375 +0.25 0.5 0.4062 +0.25 0.5 0.4375 +0.25 0.5 0.4688 +0.25 0.5 0.5 +0.25 0.5 0.5312 +0.25 0.5 0.5625 +0.25 0.5 0.5938 +0.25 0.5 0.625 +0.25 0.5 0.6562 +0.25 0.5 0.6875 +0.25 0.5 0.7188 +0.25 0.5 0.75 +0.25 0.5 0.7812 +0.25 0.5 0.8125 +0.25 0.5 0.8438 +0.25 0.5 0.875 +0.25 0.5 0.9062 +0.25 0.5 0.9375 +0.25 0.5 0.9688 +0.25 0.5 1 +0.25 0.5312 0 +0.25 0.5312 0.03125 +0.25 0.5312 0.0625 +0.25 0.5312 0.09375 +0.25 0.5312 0.125 +0.25 0.5312 0.1562 +0.25 0.5312 0.1875 +0.25 0.5312 0.2188 +0.25 0.5312 0.25 +0.25 0.5312 0.2812 +0.25 0.5312 0.3125 +0.25 0.5312 0.3438 +0.25 0.5312 0.375 +0.25 0.5312 0.4062 +0.25 0.5312 0.4375 +0.25 0.5312 0.4688 +0.25 0.5312 0.5 +0.25 0.5312 0.5312 +0.25 0.5312 0.5625 +0.25 0.5312 0.5938 +0.25 0.5312 0.625 +0.25 0.5312 0.6562 +0.25 0.5312 0.6875 +0.25 0.5312 0.7188 +0.25 0.5312 0.75 +0.25 0.5312 0.7812 +0.25 0.5312 0.8125 +0.25 0.5312 0.8438 +0.25 0.5312 0.875 +0.25 0.5312 0.9062 +0.25 0.5312 0.9375 +0.25 0.5312 0.9688 +0.25 0.5312 1 +0.25 0.5625 0 +0.25 0.5625 0.03125 +0.25 0.5625 0.0625 +0.25 0.5625 0.09375 +0.25 0.5625 0.125 +0.25 0.5625 0.1562 +0.25 0.5625 0.1875 +0.25 0.5625 0.2188 +0.25 0.5625 0.25 +0.25 0.5625 0.2812 +0.25 0.5625 0.3125 +0.25 0.5625 0.3438 +0.25 0.5625 0.375 +0.25 0.5625 0.4062 +0.25 0.5625 0.4375 +0.25 0.5625 0.4688 +0.25 0.5625 0.5 +0.25 0.5625 0.5312 +0.25 0.5625 0.5625 +0.25 0.5625 0.5938 +0.25 0.5625 0.625 +0.25 0.5625 0.6562 +0.25 0.5625 0.6875 +0.25 0.5625 0.7188 +0.25 0.5625 0.75 +0.25 0.5625 0.7812 +0.25 0.5625 0.8125 +0.25 0.5625 0.8438 +0.25 0.5625 0.875 +0.25 0.5625 0.9062 +0.25 0.5625 0.9375 +0.25 0.5625 0.9688 +0.25 0.5625 1 +0.25 0.5938 0 +0.25 0.5938 0.03125 +0.25 0.5938 0.0625 +0.25 0.5938 0.09375 +0.25 0.5938 0.125 +0.25 0.5938 0.1562 +0.25 0.5938 0.1875 +0.25 0.5938 0.2188 +0.25 0.5938 0.25 +0.25 0.5938 0.2812 +0.25 0.5938 0.3125 +0.25 0.5938 0.3438 +0.25 0.5938 0.375 +0.25 0.5938 0.4062 +0.25 0.5938 0.4375 +0.25 0.5938 0.4688 +0.25 0.5938 0.5 +0.25 0.5938 0.5312 +0.25 0.5938 0.5625 +0.25 0.5938 0.5938 +0.25 0.5938 0.625 +0.25 0.5938 0.6562 +0.25 0.5938 0.6875 +0.25 0.5938 0.7188 +0.25 0.5938 0.75 +0.25 0.5938 0.7812 +0.25 0.5938 0.8125 +0.25 0.5938 0.8438 +0.25 0.5938 0.875 +0.25 0.5938 0.9062 +0.25 0.5938 0.9375 +0.25 0.5938 0.9688 +0.25 0.5938 1 +0.25 0.625 0 +0.25 0.625 0.03125 +0.25 0.625 0.0625 +0.25 0.625 0.09375 +0.25 0.625 0.125 +0.25 0.625 0.1562 +0.25 0.625 0.1875 +0.25 0.625 0.2188 +0.25 0.625 0.25 +0.25 0.625 0.2812 +0.25 0.625 0.3125 +0.25 0.625 0.3438 +0.25 0.625 0.375 +0.25 0.625 0.4062 +0.25 0.625 0.4375 +0.25 0.625 0.4688 +0.25 0.625 0.5 +0.25 0.625 0.5312 +0.25 0.625 0.5625 +0.25 0.625 0.5938 +0.25 0.625 0.625 +0.25 0.625 0.6562 +0.25 0.625 0.6875 +0.25 0.625 0.7188 +0.25 0.625 0.75 +0.25 0.625 0.7812 +0.25 0.625 0.8125 +0.25 0.625 0.8438 +0.25 0.625 0.875 +0.25 0.625 0.9062 +0.25 0.625 0.9375 +0.25 0.625 0.9688 +0.25 0.625 1 +0.25 0.6562 0 +0.25 0.6562 0.03125 +0.25 0.6562 0.0625 +0.25 0.6562 0.09375 +0.25 0.6562 0.125 +0.25 0.6562 0.1562 +0.25 0.6562 0.1875 +0.25 0.6562 0.2188 +0.25 0.6562 0.25 +0.25 0.6562 0.2812 +0.25 0.6562 0.3125 +0.25 0.6562 0.3438 +0.25 0.6562 0.375 +0.25 0.6562 0.4062 +0.25 0.6562 0.4375 +0.25 0.6562 0.4688 +0.25 0.6562 0.5 +0.25 0.6562 0.5312 +0.25 0.6562 0.5625 +0.25 0.6562 0.5938 +0.25 0.6562 0.625 +0.25 0.6562 0.6562 +0.25 0.6562 0.6875 +0.25 0.6562 0.7188 +0.25 0.6562 0.75 +0.25 0.6562 0.7812 +0.25 0.6562 0.8125 +0.25 0.6562 0.8438 +0.25 0.6562 0.875 +0.25 0.6562 0.9062 +0.25 0.6562 0.9375 +0.25 0.6562 0.9688 +0.25 0.6562 1 +0.25 0.6875 0 +0.25 0.6875 0.03125 +0.25 0.6875 0.0625 +0.25 0.6875 0.09375 +0.25 0.6875 0.125 +0.25 0.6875 0.1562 +0.25 0.6875 0.1875 +0.25 0.6875 0.2188 +0.25 0.6875 0.25 +0.25 0.6875 0.2812 +0.25 0.6875 0.3125 +0.25 0.6875 0.3438 +0.25 0.6875 0.375 +0.25 0.6875 0.4062 +0.25 0.6875 0.4375 +0.25 0.6875 0.4688 +0.25 0.6875 0.5 +0.25 0.6875 0.5312 +0.25 0.6875 0.5625 +0.25 0.6875 0.5938 +0.25 0.6875 0.625 +0.25 0.6875 0.6562 +0.25 0.6875 0.6875 +0.25 0.6875 0.7188 +0.25 0.6875 0.75 +0.25 0.6875 0.7812 +0.25 0.6875 0.8125 +0.25 0.6875 0.8438 +0.25 0.6875 0.875 +0.25 0.6875 0.9062 +0.25 0.6875 0.9375 +0.25 0.6875 0.9688 +0.25 0.6875 1 +0.25 0.7188 0 +0.25 0.7188 0.03125 +0.25 0.7188 0.0625 +0.25 0.7188 0.09375 +0.25 0.7188 0.125 +0.25 0.7188 0.1562 +0.25 0.7188 0.1875 +0.25 0.7188 0.2188 +0.25 0.7188 0.25 +0.25 0.7188 0.2812 +0.25 0.7188 0.3125 +0.25 0.7188 0.3438 +0.25 0.7188 0.375 +0.25 0.7188 0.4062 +0.25 0.7188 0.4375 +0.25 0.7188 0.4688 +0.25 0.7188 0.5 +0.25 0.7188 0.5312 +0.25 0.7188 0.5625 +0.25 0.7188 0.5938 +0.25 0.7188 0.625 +0.25 0.7188 0.6562 +0.25 0.7188 0.6875 +0.25 0.7188 0.7188 +0.25 0.7188 0.75 +0.25 0.7188 0.7812 +0.25 0.7188 0.8125 +0.25 0.7188 0.8438 +0.25 0.7188 0.875 +0.25 0.7188 0.9062 +0.25 0.7188 0.9375 +0.25 0.7188 0.9688 +0.25 0.7188 1 +0.25 0.75 0 +0.25 0.75 0.03125 +0.25 0.75 0.0625 +0.25 0.75 0.09375 +0.25 0.75 0.125 +0.25 0.75 0.1562 +0.25 0.75 0.1875 +0.25 0.75 0.2188 +0.25 0.75 0.25 +0.25 0.75 0.2812 +0.25 0.75 0.3125 +0.25 0.75 0.3438 +0.25 0.75 0.375 +0.25 0.75 0.4062 +0.25 0.75 0.4375 +0.25 0.75 0.4688 +0.25 0.75 0.5 +0.25 0.75 0.5312 +0.25 0.75 0.5625 +0.25 0.75 0.5938 +0.25 0.75 0.625 +0.25 0.75 0.6562 +0.25 0.75 0.6875 +0.25 0.75 0.7188 +0.25 0.75 0.75 +0.25 0.75 0.7812 +0.25 0.75 0.8125 +0.25 0.75 0.8438 +0.25 0.75 0.875 +0.25 0.75 0.9062 +0.25 0.75 0.9375 +0.25 0.75 0.9688 +0.25 0.75 1 +0.25 0.7812 0 +0.25 0.7812 0.03125 +0.25 0.7812 0.0625 +0.25 0.7812 0.09375 +0.25 0.7812 0.125 +0.25 0.7812 0.1562 +0.25 0.7812 0.1875 +0.25 0.7812 0.2188 +0.25 0.7812 0.25 +0.25 0.7812 0.2812 +0.25 0.7812 0.3125 +0.25 0.7812 0.3438 +0.25 0.7812 0.375 +0.25 0.7812 0.4062 +0.25 0.7812 0.4375 +0.25 0.7812 0.4688 +0.25 0.7812 0.5 +0.25 0.7812 0.5312 +0.25 0.7812 0.5625 +0.25 0.7812 0.5938 +0.25 0.7812 0.625 +0.25 0.7812 0.6562 +0.25 0.7812 0.6875 +0.25 0.7812 0.7188 +0.25 0.7812 0.75 +0.25 0.7812 0.7812 +0.25 0.7812 0.8125 +0.25 0.7812 0.8438 +0.25 0.7812 0.875 +0.25 0.7812 0.9062 +0.25 0.7812 0.9375 +0.25 0.7812 0.9688 +0.25 0.7812 1 +0.25 0.8125 0 +0.25 0.8125 0.03125 +0.25 0.8125 0.0625 +0.25 0.8125 0.09375 +0.25 0.8125 0.125 +0.25 0.8125 0.1562 +0.25 0.8125 0.1875 +0.25 0.8125 0.2188 +0.25 0.8125 0.25 +0.25 0.8125 0.2812 +0.25 0.8125 0.3125 +0.25 0.8125 0.3438 +0.25 0.8125 0.375 +0.25 0.8125 0.4062 +0.25 0.8125 0.4375 +0.25 0.8125 0.4688 +0.25 0.8125 0.5 +0.25 0.8125 0.5312 +0.25 0.8125 0.5625 +0.25 0.8125 0.5938 +0.25 0.8125 0.625 +0.25 0.8125 0.6562 +0.25 0.8125 0.6875 +0.25 0.8125 0.7188 +0.25 0.8125 0.75 +0.25 0.8125 0.7812 +0.25 0.8125 0.8125 +0.25 0.8125 0.8438 +0.25 0.8125 0.875 +0.25 0.8125 0.9062 +0.25 0.8125 0.9375 +0.25 0.8125 0.9688 +0.25 0.8125 1 +0.25 0.8438 0 +0.25 0.8438 0.03125 +0.25 0.8438 0.0625 +0.25 0.8438 0.09375 +0.25 0.8438 0.125 +0.25 0.8438 0.1562 +0.25 0.8438 0.1875 +0.25 0.8438 0.2188 +0.25 0.8438 0.25 +0.25 0.8438 0.2812 +0.25 0.8438 0.3125 +0.25 0.8438 0.3438 +0.25 0.8438 0.375 +0.25 0.8438 0.4062 +0.25 0.8438 0.4375 +0.25 0.8438 0.4688 +0.25 0.8438 0.5 +0.25 0.8438 0.5312 +0.25 0.8438 0.5625 +0.25 0.8438 0.5938 +0.25 0.8438 0.625 +0.25 0.8438 0.6562 +0.25 0.8438 0.6875 +0.25 0.8438 0.7188 +0.25 0.8438 0.75 +0.25 0.8438 0.7812 +0.25 0.8438 0.8125 +0.25 0.8438 0.8438 +0.25 0.8438 0.875 +0.25 0.8438 0.9062 +0.25 0.8438 0.9375 +0.25 0.8438 0.9688 +0.25 0.8438 1 +0.25 0.875 0 +0.25 0.875 0.03125 +0.25 0.875 0.0625 +0.25 0.875 0.09375 +0.25 0.875 0.125 +0.25 0.875 0.1562 +0.25 0.875 0.1875 +0.25 0.875 0.2188 +0.25 0.875 0.25 +0.25 0.875 0.2812 +0.25 0.875 0.3125 +0.25 0.875 0.3438 +0.25 0.875 0.375 +0.25 0.875 0.4062 +0.25 0.875 0.4375 +0.25 0.875 0.4688 +0.25 0.875 0.5 +0.25 0.875 0.5312 +0.25 0.875 0.5625 +0.25 0.875 0.5938 +0.25 0.875 0.625 +0.25 0.875 0.6562 +0.25 0.875 0.6875 +0.25 0.875 0.7188 +0.25 0.875 0.75 +0.25 0.875 0.7812 +0.25 0.875 0.8125 +0.25 0.875 0.8438 +0.25 0.875 0.875 +0.25 0.875 0.9062 +0.25 0.875 0.9375 +0.25 0.875 0.9688 +0.25 0.875 1 +0.25 0.9062 0 +0.25 0.9062 0.03125 +0.25 0.9062 0.0625 +0.25 0.9062 0.09375 +0.25 0.9062 0.125 +0.25 0.9062 0.1562 +0.25 0.9062 0.1875 +0.25 0.9062 0.2188 +0.25 0.9062 0.25 +0.25 0.9062 0.2812 +0.25 0.9062 0.3125 +0.25 0.9062 0.3438 +0.25 0.9062 0.375 +0.25 0.9062 0.4062 +0.25 0.9062 0.4375 +0.25 0.9062 0.4688 +0.25 0.9062 0.5 +0.25 0.9062 0.5312 +0.25 0.9062 0.5625 +0.25 0.9062 0.5938 +0.25 0.9062 0.625 +0.25 0.9062 0.6562 +0.25 0.9062 0.6875 +0.25 0.9062 0.7188 +0.25 0.9062 0.75 +0.25 0.9062 0.7812 +0.25 0.9062 0.8125 +0.25 0.9062 0.8438 +0.25 0.9062 0.875 +0.25 0.9062 0.9062 +0.25 0.9062 0.9375 +0.25 0.9062 0.9688 +0.25 0.9062 1 +0.25 0.9375 0 +0.25 0.9375 0.03125 +0.25 0.9375 0.0625 +0.25 0.9375 0.09375 +0.25 0.9375 0.125 +0.25 0.9375 0.1562 +0.25 0.9375 0.1875 +0.25 0.9375 0.2188 +0.25 0.9375 0.25 +0.25 0.9375 0.2812 +0.25 0.9375 0.3125 +0.25 0.9375 0.3438 +0.25 0.9375 0.375 +0.25 0.9375 0.4062 +0.25 0.9375 0.4375 +0.25 0.9375 0.4688 +0.25 0.9375 0.5 +0.25 0.9375 0.5312 +0.25 0.9375 0.5625 +0.25 0.9375 0.5938 +0.25 0.9375 0.625 +0.25 0.9375 0.6562 +0.25 0.9375 0.6875 +0.25 0.9375 0.7188 +0.25 0.9375 0.75 +0.25 0.9375 0.7812 +0.25 0.9375 0.8125 +0.25 0.9375 0.8438 +0.25 0.9375 0.875 +0.25 0.9375 0.9062 +0.25 0.9375 0.9375 +0.25 0.9375 0.9688 +0.25 0.9375 1 +0.25 0.9688 0 +0.25 0.9688 0.03125 +0.25 0.9688 0.0625 +0.25 0.9688 0.09375 +0.25 0.9688 0.125 +0.25 0.9688 0.1562 +0.25 0.9688 0.1875 +0.25 0.9688 0.2188 +0.25 0.9688 0.25 +0.25 0.9688 0.2812 +0.25 0.9688 0.3125 +0.25 0.9688 0.3438 +0.25 0.9688 0.375 +0.25 0.9688 0.4062 +0.25 0.9688 0.4375 +0.25 0.9688 0.4688 +0.25 0.9688 0.5 +0.25 0.9688 0.5312 +0.25 0.9688 0.5625 +0.25 0.9688 0.5938 +0.25 0.9688 0.625 +0.25 0.9688 0.6562 +0.25 0.9688 0.6875 +0.25 0.9688 0.7188 +0.25 0.9688 0.75 +0.25 0.9688 0.7812 +0.25 0.9688 0.8125 +0.25 0.9688 0.8438 +0.25 0.9688 0.875 +0.25 0.9688 0.9062 +0.25 0.9688 0.9375 +0.25 0.9688 0.9688 +0.25 0.9688 1 +0.25 1 0 +0.25 1 0.03125 +0.25 1 0.0625 +0.25 1 0.09375 +0.25 1 0.125 +0.25 1 0.1562 +0.25 1 0.1875 +0.25 1 0.2188 +0.25 1 0.25 +0.25 1 0.2812 +0.25 1 0.3125 +0.25 1 0.3438 +0.25 1 0.375 +0.25 1 0.4062 +0.25 1 0.4375 +0.25 1 0.4688 +0.25 1 0.5 +0.25 1 0.5312 +0.25 1 0.5625 +0.25 1 0.5938 +0.25 1 0.625 +0.25 1 0.6562 +0.25 1 0.6875 +0.25 1 0.7188 +0.25 1 0.75 +0.25 1 0.7812 +0.25 1 0.8125 +0.25 1 0.8438 +0.25 1 0.875 +0.25 1 0.9062 +0.25 1 0.9375 +0.25 1 0.9688 +0.25 1 1 +0.2812 0 0 +0.2812 0 0.03125 +0.2812 0 0.0625 +0.2812 0 0.09375 +0.2812 0 0.125 +0.2812 0 0.1562 +0.2812 0 0.1875 +0.2812 0 0.2188 +0.2812 0 0.25 +0.2812 0 0.2812 +0.2812 0 0.3125 +0.2812 0 0.3438 +0.2812 0 0.375 +0.2812 0 0.4062 +0.2812 0 0.4375 +0.2812 0 0.4688 +0.2812 0 0.5 +0.2812 0 0.5312 +0.2812 0 0.5625 +0.2812 0 0.5938 +0.2812 0 0.625 +0.2812 0 0.6562 +0.2812 0 0.6875 +0.2812 0 0.7188 +0.2812 0 0.75 +0.2812 0 0.7812 +0.2812 0 0.8125 +0.2812 0 0.8438 +0.2812 0 0.875 +0.2812 0 0.9062 +0.2812 0 0.9375 +0.2812 0 0.9688 +0.2812 0 1 +0.2812 0.03125 0 +0.2812 0.03125 0.03125 +0.2812 0.03125 0.0625 +0.2812 0.03125 0.09375 +0.2812 0.03125 0.125 +0.2812 0.03125 0.1562 +0.2812 0.03125 0.1875 +0.2812 0.03125 0.2188 +0.2812 0.03125 0.25 +0.2812 0.03125 0.2812 +0.2812 0.03125 0.3125 +0.2812 0.03125 0.3438 +0.2812 0.03125 0.375 +0.2812 0.03125 0.4062 +0.2812 0.03125 0.4375 +0.2812 0.03125 0.4688 +0.2812 0.03125 0.5 +0.2812 0.03125 0.5312 +0.2812 0.03125 0.5625 +0.2812 0.03125 0.5938 +0.2812 0.03125 0.625 +0.2812 0.03125 0.6562 +0.2812 0.03125 0.6875 +0.2812 0.03125 0.7188 +0.2812 0.03125 0.75 +0.2812 0.03125 0.7812 +0.2812 0.03125 0.8125 +0.2812 0.03125 0.8438 +0.2812 0.03125 0.875 +0.2812 0.03125 0.9062 +0.2812 0.03125 0.9375 +0.2812 0.03125 0.9688 +0.2812 0.03125 1 +0.2812 0.0625 0 +0.2812 0.0625 0.03125 +0.2812 0.0625 0.0625 +0.2812 0.0625 0.09375 +0.2812 0.0625 0.125 +0.2812 0.0625 0.1562 +0.2812 0.0625 0.1875 +0.2812 0.0625 0.2188 +0.2812 0.0625 0.25 +0.2812 0.0625 0.2812 +0.2812 0.0625 0.3125 +0.2812 0.0625 0.3438 +0.2812 0.0625 0.375 +0.2812 0.0625 0.4062 +0.2812 0.0625 0.4375 +0.2812 0.0625 0.4688 +0.2812 0.0625 0.5 +0.2812 0.0625 0.5312 +0.2812 0.0625 0.5625 +0.2812 0.0625 0.5938 +0.2812 0.0625 0.625 +0.2812 0.0625 0.6562 +0.2812 0.0625 0.6875 +0.2812 0.0625 0.7188 +0.2812 0.0625 0.75 +0.2812 0.0625 0.7812 +0.2812 0.0625 0.8125 +0.2812 0.0625 0.8438 +0.2812 0.0625 0.875 +0.2812 0.0625 0.9062 +0.2812 0.0625 0.9375 +0.2812 0.0625 0.9688 +0.2812 0.0625 1 +0.2812 0.09375 0 +0.2812 0.09375 0.03125 +0.2812 0.09375 0.0625 +0.2812 0.09375 0.09375 +0.2812 0.09375 0.125 +0.2812 0.09375 0.1562 +0.2812 0.09375 0.1875 +0.2812 0.09375 0.2188 +0.2812 0.09375 0.25 +0.2812 0.09375 0.2812 +0.2812 0.09375 0.3125 +0.2812 0.09375 0.3438 +0.2812 0.09375 0.375 +0.2812 0.09375 0.4062 +0.2812 0.09375 0.4375 +0.2812 0.09375 0.4688 +0.2812 0.09375 0.5 +0.2812 0.09375 0.5312 +0.2812 0.09375 0.5625 +0.2812 0.09375 0.5938 +0.2812 0.09375 0.625 +0.2812 0.09375 0.6562 +0.2812 0.09375 0.6875 +0.2812 0.09375 0.7188 +0.2812 0.09375 0.75 +0.2812 0.09375 0.7812 +0.2812 0.09375 0.8125 +0.2812 0.09375 0.8438 +0.2812 0.09375 0.875 +0.2812 0.09375 0.9062 +0.2812 0.09375 0.9375 +0.2812 0.09375 0.9688 +0.2812 0.09375 1 +0.2812 0.125 0 +0.2812 0.125 0.03125 +0.2812 0.125 0.0625 +0.2812 0.125 0.09375 +0.2812 0.125 0.125 +0.2812 0.125 0.1562 +0.2812 0.125 0.1875 +0.2812 0.125 0.2188 +0.2812 0.125 0.25 +0.2812 0.125 0.2812 +0.2812 0.125 0.3125 +0.2812 0.125 0.3438 +0.2812 0.125 0.375 +0.2812 0.125 0.4062 +0.2812 0.125 0.4375 +0.2812 0.125 0.4688 +0.2812 0.125 0.5 +0.2812 0.125 0.5312 +0.2812 0.125 0.5625 +0.2812 0.125 0.5938 +0.2812 0.125 0.625 +0.2812 0.125 0.6562 +0.2812 0.125 0.6875 +0.2812 0.125 0.7188 +0.2812 0.125 0.75 +0.2812 0.125 0.7812 +0.2812 0.125 0.8125 +0.2812 0.125 0.8438 +0.2812 0.125 0.875 +0.2812 0.125 0.9062 +0.2812 0.125 0.9375 +0.2812 0.125 0.9688 +0.2812 0.125 1 +0.2812 0.1562 0 +0.2812 0.1562 0.03125 +0.2812 0.1562 0.0625 +0.2812 0.1562 0.09375 +0.2812 0.1562 0.125 +0.2812 0.1562 0.1562 +0.2812 0.1562 0.1875 +0.2812 0.1562 0.2188 +0.2812 0.1562 0.25 +0.2812 0.1562 0.2812 +0.2812 0.1562 0.3125 +0.2812 0.1562 0.3438 +0.2812 0.1562 0.375 +0.2812 0.1562 0.4062 +0.2812 0.1562 0.4375 +0.2812 0.1562 0.4688 +0.2812 0.1562 0.5 +0.2812 0.1562 0.5312 +0.2812 0.1562 0.5625 +0.2812 0.1562 0.5938 +0.2812 0.1562 0.625 +0.2812 0.1562 0.6562 +0.2812 0.1562 0.6875 +0.2812 0.1562 0.7188 +0.2812 0.1562 0.75 +0.2812 0.1562 0.7812 +0.2812 0.1562 0.8125 +0.2812 0.1562 0.8438 +0.2812 0.1562 0.875 +0.2812 0.1562 0.9062 +0.2812 0.1562 0.9375 +0.2812 0.1562 0.9688 +0.2812 0.1562 1 +0.2812 0.1875 0 +0.2812 0.1875 0.03125 +0.2812 0.1875 0.0625 +0.2812 0.1875 0.09375 +0.2812 0.1875 0.125 +0.2812 0.1875 0.1562 +0.2812 0.1875 0.1875 +0.2812 0.1875 0.2188 +0.2812 0.1875 0.25 +0.2812 0.1875 0.2812 +0.2812 0.1875 0.3125 +0.2812 0.1875 0.3438 +0.2812 0.1875 0.375 +0.2812 0.1875 0.4062 +0.2812 0.1875 0.4375 +0.2812 0.1875 0.4688 +0.2812 0.1875 0.5 +0.2812 0.1875 0.5312 +0.2812 0.1875 0.5625 +0.2812 0.1875 0.5938 +0.2812 0.1875 0.625 +0.2812 0.1875 0.6562 +0.2812 0.1875 0.6875 +0.2812 0.1875 0.7188 +0.2812 0.1875 0.75 +0.2812 0.1875 0.7812 +0.2812 0.1875 0.8125 +0.2812 0.1875 0.8438 +0.2812 0.1875 0.875 +0.2812 0.1875 0.9062 +0.2812 0.1875 0.9375 +0.2812 0.1875 0.9688 +0.2812 0.1875 1 +0.2812 0.2188 0 +0.2812 0.2188 0.03125 +0.2812 0.2188 0.0625 +0.2812 0.2188 0.09375 +0.2812 0.2188 0.125 +0.2812 0.2188 0.1562 +0.2812 0.2188 0.1875 +0.2812 0.2188 0.2188 +0.2812 0.2188 0.25 +0.2812 0.2188 0.2812 +0.2812 0.2188 0.3125 +0.2812 0.2188 0.3438 +0.2812 0.2188 0.375 +0.2812 0.2188 0.4062 +0.2812 0.2188 0.4375 +0.2812 0.2188 0.4688 +0.2812 0.2188 0.5 +0.2812 0.2188 0.5312 +0.2812 0.2188 0.5625 +0.2812 0.2188 0.5938 +0.2812 0.2188 0.625 +0.2812 0.2188 0.6562 +0.2812 0.2188 0.6875 +0.2812 0.2188 0.7188 +0.2812 0.2188 0.75 +0.2812 0.2188 0.7812 +0.2812 0.2188 0.8125 +0.2812 0.2188 0.8438 +0.2812 0.2188 0.875 +0.2812 0.2188 0.9062 +0.2812 0.2188 0.9375 +0.2812 0.2188 0.9688 +0.2812 0.2188 1 +0.2812 0.25 0 +0.2812 0.25 0.03125 +0.2812 0.25 0.0625 +0.2812 0.25 0.09375 +0.2812 0.25 0.125 +0.2812 0.25 0.1562 +0.2812 0.25 0.1875 +0.2812 0.25 0.2188 +0.2812 0.25 0.25 +0.2812 0.25 0.2812 +0.2812 0.25 0.3125 +0.2812 0.25 0.3438 +0.2812 0.25 0.375 +0.2812 0.25 0.4062 +0.2812 0.25 0.4375 +0.2812 0.25 0.4688 +0.2812 0.25 0.5 +0.2812 0.25 0.5312 +0.2812 0.25 0.5625 +0.2812 0.25 0.5938 +0.2812 0.25 0.625 +0.2812 0.25 0.6562 +0.2812 0.25 0.6875 +0.2812 0.25 0.7188 +0.2812 0.25 0.75 +0.2812 0.25 0.7812 +0.2812 0.25 0.8125 +0.2812 0.25 0.8438 +0.2812 0.25 0.875 +0.2812 0.25 0.9062 +0.2812 0.25 0.9375 +0.2812 0.25 0.9688 +0.2812 0.25 1 +0.2812 0.2812 0 +0.2812 0.2812 0.03125 +0.2812 0.2812 0.0625 +0.2812 0.2812 0.09375 +0.2812 0.2812 0.125 +0.2812 0.2812 0.1562 +0.2812 0.2812 0.1875 +0.2812 0.2812 0.2188 +0.2812 0.2812 0.25 +0.2812 0.2812 0.2812 +0.2812 0.2812 0.3125 +0.2812 0.2812 0.3438 +0.2812 0.2812 0.375 +0.2812 0.2812 0.4062 +0.2812 0.2812 0.4375 +0.2812 0.2812 0.4688 +0.2812 0.2812 0.5 +0.2812 0.2812 0.5312 +0.2812 0.2812 0.5625 +0.2812 0.2812 0.5938 +0.2812 0.2812 0.625 +0.2812 0.2812 0.6562 +0.2812 0.2812 0.6875 +0.2812 0.2812 0.7188 +0.2812 0.2812 0.75 +0.2812 0.2812 0.7812 +0.2812 0.2812 0.8125 +0.2812 0.2812 0.8438 +0.2812 0.2812 0.875 +0.2812 0.2812 0.9062 +0.2812 0.2812 0.9375 +0.2812 0.2812 0.9688 +0.2812 0.2812 1 +0.2812 0.3125 0 +0.2812 0.3125 0.03125 +0.2812 0.3125 0.0625 +0.2812 0.3125 0.09375 +0.2812 0.3125 0.125 +0.2812 0.3125 0.1562 +0.2812 0.3125 0.1875 +0.2812 0.3125 0.2188 +0.2812 0.3125 0.25 +0.2812 0.3125 0.2812 +0.2812 0.3125 0.3125 +0.2812 0.3125 0.3438 +0.2812 0.3125 0.375 +0.2812 0.3125 0.4062 +0.2812 0.3125 0.4375 +0.2812 0.3125 0.4688 +0.2812 0.3125 0.5 +0.2812 0.3125 0.5312 +0.2812 0.3125 0.5625 +0.2812 0.3125 0.5938 +0.2812 0.3125 0.625 +0.2812 0.3125 0.6562 +0.2812 0.3125 0.6875 +0.2812 0.3125 0.7188 +0.2812 0.3125 0.75 +0.2812 0.3125 0.7812 +0.2812 0.3125 0.8125 +0.2812 0.3125 0.8438 +0.2812 0.3125 0.875 +0.2812 0.3125 0.9062 +0.2812 0.3125 0.9375 +0.2812 0.3125 0.9688 +0.2812 0.3125 1 +0.2812 0.3438 0 +0.2812 0.3438 0.03125 +0.2812 0.3438 0.0625 +0.2812 0.3438 0.09375 +0.2812 0.3438 0.125 +0.2812 0.3438 0.1562 +0.2812 0.3438 0.1875 +0.2812 0.3438 0.2188 +0.2812 0.3438 0.25 +0.2812 0.3438 0.2812 +0.2812 0.3438 0.3125 +0.2812 0.3438 0.3438 +0.2812 0.3438 0.375 +0.2812 0.3438 0.4062 +0.2812 0.3438 0.4375 +0.2812 0.3438 0.4688 +0.2812 0.3438 0.5 +0.2812 0.3438 0.5312 +0.2812 0.3438 0.5625 +0.2812 0.3438 0.5938 +0.2812 0.3438 0.625 +0.2812 0.3438 0.6562 +0.2812 0.3438 0.6875 +0.2812 0.3438 0.7188 +0.2812 0.3438 0.75 +0.2812 0.3438 0.7812 +0.2812 0.3438 0.8125 +0.2812 0.3438 0.8438 +0.2812 0.3438 0.875 +0.2812 0.3438 0.9062 +0.2812 0.3438 0.9375 +0.2812 0.3438 0.9688 +0.2812 0.3438 1 +0.2812 0.375 0 +0.2812 0.375 0.03125 +0.2812 0.375 0.0625 +0.2812 0.375 0.09375 +0.2812 0.375 0.125 +0.2812 0.375 0.1562 +0.2812 0.375 0.1875 +0.2812 0.375 0.2188 +0.2812 0.375 0.25 +0.2812 0.375 0.2812 +0.2812 0.375 0.3125 +0.2812 0.375 0.3438 +0.2812 0.375 0.375 +0.2812 0.375 0.4062 +0.2812 0.375 0.4375 +0.2812 0.375 0.4688 +0.2812 0.375 0.5 +0.2812 0.375 0.5312 +0.2812 0.375 0.5625 +0.2812 0.375 0.5938 +0.2812 0.375 0.625 +0.2812 0.375 0.6562 +0.2812 0.375 0.6875 +0.2812 0.375 0.7188 +0.2812 0.375 0.75 +0.2812 0.375 0.7812 +0.2812 0.375 0.8125 +0.2812 0.375 0.8438 +0.2812 0.375 0.875 +0.2812 0.375 0.9062 +0.2812 0.375 0.9375 +0.2812 0.375 0.9688 +0.2812 0.375 1 +0.2812 0.4062 0 +0.2812 0.4062 0.03125 +0.2812 0.4062 0.0625 +0.2812 0.4062 0.09375 +0.2812 0.4062 0.125 +0.2812 0.4062 0.1562 +0.2812 0.4062 0.1875 +0.2812 0.4062 0.2188 +0.2812 0.4062 0.25 +0.2812 0.4062 0.2812 +0.2812 0.4062 0.3125 +0.2812 0.4062 0.3438 +0.2812 0.4062 0.375 +0.2812 0.4062 0.4062 +0.2812 0.4062 0.4375 +0.2812 0.4062 0.4688 +0.2812 0.4062 0.5 +0.2812 0.4062 0.5312 +0.2812 0.4062 0.5625 +0.2812 0.4062 0.5938 +0.2812 0.4062 0.625 +0.2812 0.4062 0.6562 +0.2812 0.4062 0.6875 +0.2812 0.4062 0.7188 +0.2812 0.4062 0.75 +0.2812 0.4062 0.7812 +0.2812 0.4062 0.8125 +0.2812 0.4062 0.8438 +0.2812 0.4062 0.875 +0.2812 0.4062 0.9062 +0.2812 0.4062 0.9375 +0.2812 0.4062 0.9688 +0.2812 0.4062 1 +0.2812 0.4375 0 +0.2812 0.4375 0.03125 +0.2812 0.4375 0.0625 +0.2812 0.4375 0.09375 +0.2812 0.4375 0.125 +0.2812 0.4375 0.1562 +0.2812 0.4375 0.1875 +0.2812 0.4375 0.2188 +0.2812 0.4375 0.25 +0.2812 0.4375 0.2812 +0.2812 0.4375 0.3125 +0.2812 0.4375 0.3438 +0.2812 0.4375 0.375 +0.2812 0.4375 0.4062 +0.2812 0.4375 0.4375 +0.2812 0.4375 0.4688 +0.2812 0.4375 0.5 +0.2812 0.4375 0.5312 +0.2812 0.4375 0.5625 +0.2812 0.4375 0.5938 +0.2812 0.4375 0.625 +0.2812 0.4375 0.6562 +0.2812 0.4375 0.6875 +0.2812 0.4375 0.7188 +0.2812 0.4375 0.75 +0.2812 0.4375 0.7812 +0.2812 0.4375 0.8125 +0.2812 0.4375 0.8438 +0.2812 0.4375 0.875 +0.2812 0.4375 0.9062 +0.2812 0.4375 0.9375 +0.2812 0.4375 0.9688 +0.2812 0.4375 1 +0.2812 0.4688 0 +0.2812 0.4688 0.03125 +0.2812 0.4688 0.0625 +0.2812 0.4688 0.09375 +0.2812 0.4688 0.125 +0.2812 0.4688 0.1562 +0.2812 0.4688 0.1875 +0.2812 0.4688 0.2188 +0.2812 0.4688 0.25 +0.2812 0.4688 0.2812 +0.2812 0.4688 0.3125 +0.2812 0.4688 0.3438 +0.2812 0.4688 0.375 +0.2812 0.4688 0.4062 +0.2812 0.4688 0.4375 +0.2812 0.4688 0.4688 +0.2812 0.4688 0.5 +0.2812 0.4688 0.5312 +0.2812 0.4688 0.5625 +0.2812 0.4688 0.5938 +0.2812 0.4688 0.625 +0.2812 0.4688 0.6562 +0.2812 0.4688 0.6875 +0.2812 0.4688 0.7188 +0.2812 0.4688 0.75 +0.2812 0.4688 0.7812 +0.2812 0.4688 0.8125 +0.2812 0.4688 0.8438 +0.2812 0.4688 0.875 +0.2812 0.4688 0.9062 +0.2812 0.4688 0.9375 +0.2812 0.4688 0.9688 +0.2812 0.4688 1 +0.2812 0.5 0 +0.2812 0.5 0.03125 +0.2812 0.5 0.0625 +0.2812 0.5 0.09375 +0.2812 0.5 0.125 +0.2812 0.5 0.1562 +0.2812 0.5 0.1875 +0.2812 0.5 0.2188 +0.2812 0.5 0.25 +0.2812 0.5 0.2812 +0.2812 0.5 0.3125 +0.2812 0.5 0.3438 +0.2812 0.5 0.375 +0.2812 0.5 0.4062 +0.2812 0.5 0.4375 +0.2812 0.5 0.4688 +0.2812 0.5 0.5 +0.2812 0.5 0.5312 +0.2812 0.5 0.5625 +0.2812 0.5 0.5938 +0.2812 0.5 0.625 +0.2812 0.5 0.6562 +0.2812 0.5 0.6875 +0.2812 0.5 0.7188 +0.2812 0.5 0.75 +0.2812 0.5 0.7812 +0.2812 0.5 0.8125 +0.2812 0.5 0.8438 +0.2812 0.5 0.875 +0.2812 0.5 0.9062 +0.2812 0.5 0.9375 +0.2812 0.5 0.9688 +0.2812 0.5 1 +0.2812 0.5312 0 +0.2812 0.5312 0.03125 +0.2812 0.5312 0.0625 +0.2812 0.5312 0.09375 +0.2812 0.5312 0.125 +0.2812 0.5312 0.1562 +0.2812 0.5312 0.1875 +0.2812 0.5312 0.2188 +0.2812 0.5312 0.25 +0.2812 0.5312 0.2812 +0.2812 0.5312 0.3125 +0.2812 0.5312 0.3438 +0.2812 0.5312 0.375 +0.2812 0.5312 0.4062 +0.2812 0.5312 0.4375 +0.2812 0.5312 0.4688 +0.2812 0.5312 0.5 +0.2812 0.5312 0.5312 +0.2812 0.5312 0.5625 +0.2812 0.5312 0.5938 +0.2812 0.5312 0.625 +0.2812 0.5312 0.6562 +0.2812 0.5312 0.6875 +0.2812 0.5312 0.7188 +0.2812 0.5312 0.75 +0.2812 0.5312 0.7812 +0.2812 0.5312 0.8125 +0.2812 0.5312 0.8438 +0.2812 0.5312 0.875 +0.2812 0.5312 0.9062 +0.2812 0.5312 0.9375 +0.2812 0.5312 0.9688 +0.2812 0.5312 1 +0.2812 0.5625 0 +0.2812 0.5625 0.03125 +0.2812 0.5625 0.0625 +0.2812 0.5625 0.09375 +0.2812 0.5625 0.125 +0.2812 0.5625 0.1562 +0.2812 0.5625 0.1875 +0.2812 0.5625 0.2188 +0.2812 0.5625 0.25 +0.2812 0.5625 0.2812 +0.2812 0.5625 0.3125 +0.2812 0.5625 0.3438 +0.2812 0.5625 0.375 +0.2812 0.5625 0.4062 +0.2812 0.5625 0.4375 +0.2812 0.5625 0.4688 +0.2812 0.5625 0.5 +0.2812 0.5625 0.5312 +0.2812 0.5625 0.5625 +0.2812 0.5625 0.5938 +0.2812 0.5625 0.625 +0.2812 0.5625 0.6562 +0.2812 0.5625 0.6875 +0.2812 0.5625 0.7188 +0.2812 0.5625 0.75 +0.2812 0.5625 0.7812 +0.2812 0.5625 0.8125 +0.2812 0.5625 0.8438 +0.2812 0.5625 0.875 +0.2812 0.5625 0.9062 +0.2812 0.5625 0.9375 +0.2812 0.5625 0.9688 +0.2812 0.5625 1 +0.2812 0.5938 0 +0.2812 0.5938 0.03125 +0.2812 0.5938 0.0625 +0.2812 0.5938 0.09375 +0.2812 0.5938 0.125 +0.2812 0.5938 0.1562 +0.2812 0.5938 0.1875 +0.2812 0.5938 0.2188 +0.2812 0.5938 0.25 +0.2812 0.5938 0.2812 +0.2812 0.5938 0.3125 +0.2812 0.5938 0.3438 +0.2812 0.5938 0.375 +0.2812 0.5938 0.4062 +0.2812 0.5938 0.4375 +0.2812 0.5938 0.4688 +0.2812 0.5938 0.5 +0.2812 0.5938 0.5312 +0.2812 0.5938 0.5625 +0.2812 0.5938 0.5938 +0.2812 0.5938 0.625 +0.2812 0.5938 0.6562 +0.2812 0.5938 0.6875 +0.2812 0.5938 0.7188 +0.2812 0.5938 0.75 +0.2812 0.5938 0.7812 +0.2812 0.5938 0.8125 +0.2812 0.5938 0.8438 +0.2812 0.5938 0.875 +0.2812 0.5938 0.9062 +0.2812 0.5938 0.9375 +0.2812 0.5938 0.9688 +0.2812 0.5938 1 +0.2812 0.625 0 +0.2812 0.625 0.03125 +0.2812 0.625 0.0625 +0.2812 0.625 0.09375 +0.2812 0.625 0.125 +0.2812 0.625 0.1562 +0.2812 0.625 0.1875 +0.2812 0.625 0.2188 +0.2812 0.625 0.25 +0.2812 0.625 0.2812 +0.2812 0.625 0.3125 +0.2812 0.625 0.3438 +0.2812 0.625 0.375 +0.2812 0.625 0.4062 +0.2812 0.625 0.4375 +0.2812 0.625 0.4688 +0.2812 0.625 0.5 +0.2812 0.625 0.5312 +0.2812 0.625 0.5625 +0.2812 0.625 0.5938 +0.2812 0.625 0.625 +0.2812 0.625 0.6562 +0.2812 0.625 0.6875 +0.2812 0.625 0.7188 +0.2812 0.625 0.75 +0.2812 0.625 0.7812 +0.2812 0.625 0.8125 +0.2812 0.625 0.8438 +0.2812 0.625 0.875 +0.2812 0.625 0.9062 +0.2812 0.625 0.9375 +0.2812 0.625 0.9688 +0.2812 0.625 1 +0.2812 0.6562 0 +0.2812 0.6562 0.03125 +0.2812 0.6562 0.0625 +0.2812 0.6562 0.09375 +0.2812 0.6562 0.125 +0.2812 0.6562 0.1562 +0.2812 0.6562 0.1875 +0.2812 0.6562 0.2188 +0.2812 0.6562 0.25 +0.2812 0.6562 0.2812 +0.2812 0.6562 0.3125 +0.2812 0.6562 0.3438 +0.2812 0.6562 0.375 +0.2812 0.6562 0.4062 +0.2812 0.6562 0.4375 +0.2812 0.6562 0.4688 +0.2812 0.6562 0.5 +0.2812 0.6562 0.5312 +0.2812 0.6562 0.5625 +0.2812 0.6562 0.5938 +0.2812 0.6562 0.625 +0.2812 0.6562 0.6562 +0.2812 0.6562 0.6875 +0.2812 0.6562 0.7188 +0.2812 0.6562 0.75 +0.2812 0.6562 0.7812 +0.2812 0.6562 0.8125 +0.2812 0.6562 0.8438 +0.2812 0.6562 0.875 +0.2812 0.6562 0.9062 +0.2812 0.6562 0.9375 +0.2812 0.6562 0.9688 +0.2812 0.6562 1 +0.2812 0.6875 0 +0.2812 0.6875 0.03125 +0.2812 0.6875 0.0625 +0.2812 0.6875 0.09375 +0.2812 0.6875 0.125 +0.2812 0.6875 0.1562 +0.2812 0.6875 0.1875 +0.2812 0.6875 0.2188 +0.2812 0.6875 0.25 +0.2812 0.6875 0.2812 +0.2812 0.6875 0.3125 +0.2812 0.6875 0.3438 +0.2812 0.6875 0.375 +0.2812 0.6875 0.4062 +0.2812 0.6875 0.4375 +0.2812 0.6875 0.4688 +0.2812 0.6875 0.5 +0.2812 0.6875 0.5312 +0.2812 0.6875 0.5625 +0.2812 0.6875 0.5938 +0.2812 0.6875 0.625 +0.2812 0.6875 0.6562 +0.2812 0.6875 0.6875 +0.2812 0.6875 0.7188 +0.2812 0.6875 0.75 +0.2812 0.6875 0.7812 +0.2812 0.6875 0.8125 +0.2812 0.6875 0.8438 +0.2812 0.6875 0.875 +0.2812 0.6875 0.9062 +0.2812 0.6875 0.9375 +0.2812 0.6875 0.9688 +0.2812 0.6875 1 +0.2812 0.7188 0 +0.2812 0.7188 0.03125 +0.2812 0.7188 0.0625 +0.2812 0.7188 0.09375 +0.2812 0.7188 0.125 +0.2812 0.7188 0.1562 +0.2812 0.7188 0.1875 +0.2812 0.7188 0.2188 +0.2812 0.7188 0.25 +0.2812 0.7188 0.2812 +0.2812 0.7188 0.3125 +0.2812 0.7188 0.3438 +0.2812 0.7188 0.375 +0.2812 0.7188 0.4062 +0.2812 0.7188 0.4375 +0.2812 0.7188 0.4688 +0.2812 0.7188 0.5 +0.2812 0.7188 0.5312 +0.2812 0.7188 0.5625 +0.2812 0.7188 0.5938 +0.2812 0.7188 0.625 +0.2812 0.7188 0.6562 +0.2812 0.7188 0.6875 +0.2812 0.7188 0.7188 +0.2812 0.7188 0.75 +0.2812 0.7188 0.7812 +0.2812 0.7188 0.8125 +0.2812 0.7188 0.8438 +0.2812 0.7188 0.875 +0.2812 0.7188 0.9062 +0.2812 0.7188 0.9375 +0.2812 0.7188 0.9688 +0.2812 0.7188 1 +0.2812 0.75 0 +0.2812 0.75 0.03125 +0.2812 0.75 0.0625 +0.2812 0.75 0.09375 +0.2812 0.75 0.125 +0.2812 0.75 0.1562 +0.2812 0.75 0.1875 +0.2812 0.75 0.2188 +0.2812 0.75 0.25 +0.2812 0.75 0.2812 +0.2812 0.75 0.3125 +0.2812 0.75 0.3438 +0.2812 0.75 0.375 +0.2812 0.75 0.4062 +0.2812 0.75 0.4375 +0.2812 0.75 0.4688 +0.2812 0.75 0.5 +0.2812 0.75 0.5312 +0.2812 0.75 0.5625 +0.2812 0.75 0.5938 +0.2812 0.75 0.625 +0.2812 0.75 0.6562 +0.2812 0.75 0.6875 +0.2812 0.75 0.7188 +0.2812 0.75 0.75 +0.2812 0.75 0.7812 +0.2812 0.75 0.8125 +0.2812 0.75 0.8438 +0.2812 0.75 0.875 +0.2812 0.75 0.9062 +0.2812 0.75 0.9375 +0.2812 0.75 0.9688 +0.2812 0.75 1 +0.2812 0.7812 0 +0.2812 0.7812 0.03125 +0.2812 0.7812 0.0625 +0.2812 0.7812 0.09375 +0.2812 0.7812 0.125 +0.2812 0.7812 0.1562 +0.2812 0.7812 0.1875 +0.2812 0.7812 0.2188 +0.2812 0.7812 0.25 +0.2812 0.7812 0.2812 +0.2812 0.7812 0.3125 +0.2812 0.7812 0.3438 +0.2812 0.7812 0.375 +0.2812 0.7812 0.4062 +0.2812 0.7812 0.4375 +0.2812 0.7812 0.4688 +0.2812 0.7812 0.5 +0.2812 0.7812 0.5312 +0.2812 0.7812 0.5625 +0.2812 0.7812 0.5938 +0.2812 0.7812 0.625 +0.2812 0.7812 0.6562 +0.2812 0.7812 0.6875 +0.2812 0.7812 0.7188 +0.2812 0.7812 0.75 +0.2812 0.7812 0.7812 +0.2812 0.7812 0.8125 +0.2812 0.7812 0.8438 +0.2812 0.7812 0.875 +0.2812 0.7812 0.9062 +0.2812 0.7812 0.9375 +0.2812 0.7812 0.9688 +0.2812 0.7812 1 +0.2812 0.8125 0 +0.2812 0.8125 0.03125 +0.2812 0.8125 0.0625 +0.2812 0.8125 0.09375 +0.2812 0.8125 0.125 +0.2812 0.8125 0.1562 +0.2812 0.8125 0.1875 +0.2812 0.8125 0.2188 +0.2812 0.8125 0.25 +0.2812 0.8125 0.2812 +0.2812 0.8125 0.3125 +0.2812 0.8125 0.3438 +0.2812 0.8125 0.375 +0.2812 0.8125 0.4062 +0.2812 0.8125 0.4375 +0.2812 0.8125 0.4688 +0.2812 0.8125 0.5 +0.2812 0.8125 0.5312 +0.2812 0.8125 0.5625 +0.2812 0.8125 0.5938 +0.2812 0.8125 0.625 +0.2812 0.8125 0.6562 +0.2812 0.8125 0.6875 +0.2812 0.8125 0.7188 +0.2812 0.8125 0.75 +0.2812 0.8125 0.7812 +0.2812 0.8125 0.8125 +0.2812 0.8125 0.8438 +0.2812 0.8125 0.875 +0.2812 0.8125 0.9062 +0.2812 0.8125 0.9375 +0.2812 0.8125 0.9688 +0.2812 0.8125 1 +0.2812 0.8438 0 +0.2812 0.8438 0.03125 +0.2812 0.8438 0.0625 +0.2812 0.8438 0.09375 +0.2812 0.8438 0.125 +0.2812 0.8438 0.1562 +0.2812 0.8438 0.1875 +0.2812 0.8438 0.2188 +0.2812 0.8438 0.25 +0.2812 0.8438 0.2812 +0.2812 0.8438 0.3125 +0.2812 0.8438 0.3438 +0.2812 0.8438 0.375 +0.2812 0.8438 0.4062 +0.2812 0.8438 0.4375 +0.2812 0.8438 0.4688 +0.2812 0.8438 0.5 +0.2812 0.8438 0.5312 +0.2812 0.8438 0.5625 +0.2812 0.8438 0.5938 +0.2812 0.8438 0.625 +0.2812 0.8438 0.6562 +0.2812 0.8438 0.6875 +0.2812 0.8438 0.7188 +0.2812 0.8438 0.75 +0.2812 0.8438 0.7812 +0.2812 0.8438 0.8125 +0.2812 0.8438 0.8438 +0.2812 0.8438 0.875 +0.2812 0.8438 0.9062 +0.2812 0.8438 0.9375 +0.2812 0.8438 0.9688 +0.2812 0.8438 1 +0.2812 0.875 0 +0.2812 0.875 0.03125 +0.2812 0.875 0.0625 +0.2812 0.875 0.09375 +0.2812 0.875 0.125 +0.2812 0.875 0.1562 +0.2812 0.875 0.1875 +0.2812 0.875 0.2188 +0.2812 0.875 0.25 +0.2812 0.875 0.2812 +0.2812 0.875 0.3125 +0.2812 0.875 0.3438 +0.2812 0.875 0.375 +0.2812 0.875 0.4062 +0.2812 0.875 0.4375 +0.2812 0.875 0.4688 +0.2812 0.875 0.5 +0.2812 0.875 0.5312 +0.2812 0.875 0.5625 +0.2812 0.875 0.5938 +0.2812 0.875 0.625 +0.2812 0.875 0.6562 +0.2812 0.875 0.6875 +0.2812 0.875 0.7188 +0.2812 0.875 0.75 +0.2812 0.875 0.7812 +0.2812 0.875 0.8125 +0.2812 0.875 0.8438 +0.2812 0.875 0.875 +0.2812 0.875 0.9062 +0.2812 0.875 0.9375 +0.2812 0.875 0.9688 +0.2812 0.875 1 +0.2812 0.9062 0 +0.2812 0.9062 0.03125 +0.2812 0.9062 0.0625 +0.2812 0.9062 0.09375 +0.2812 0.9062 0.125 +0.2812 0.9062 0.1562 +0.2812 0.9062 0.1875 +0.2812 0.9062 0.2188 +0.2812 0.9062 0.25 +0.2812 0.9062 0.2812 +0.2812 0.9062 0.3125 +0.2812 0.9062 0.3438 +0.2812 0.9062 0.375 +0.2812 0.9062 0.4062 +0.2812 0.9062 0.4375 +0.2812 0.9062 0.4688 +0.2812 0.9062 0.5 +0.2812 0.9062 0.5312 +0.2812 0.9062 0.5625 +0.2812 0.9062 0.5938 +0.2812 0.9062 0.625 +0.2812 0.9062 0.6562 +0.2812 0.9062 0.6875 +0.2812 0.9062 0.7188 +0.2812 0.9062 0.75 +0.2812 0.9062 0.7812 +0.2812 0.9062 0.8125 +0.2812 0.9062 0.8438 +0.2812 0.9062 0.875 +0.2812 0.9062 0.9062 +0.2812 0.9062 0.9375 +0.2812 0.9062 0.9688 +0.2812 0.9062 1 +0.2812 0.9375 0 +0.2812 0.9375 0.03125 +0.2812 0.9375 0.0625 +0.2812 0.9375 0.09375 +0.2812 0.9375 0.125 +0.2812 0.9375 0.1562 +0.2812 0.9375 0.1875 +0.2812 0.9375 0.2188 +0.2812 0.9375 0.25 +0.2812 0.9375 0.2812 +0.2812 0.9375 0.3125 +0.2812 0.9375 0.3438 +0.2812 0.9375 0.375 +0.2812 0.9375 0.4062 +0.2812 0.9375 0.4375 +0.2812 0.9375 0.4688 +0.2812 0.9375 0.5 +0.2812 0.9375 0.5312 +0.2812 0.9375 0.5625 +0.2812 0.9375 0.5938 +0.2812 0.9375 0.625 +0.2812 0.9375 0.6562 +0.2812 0.9375 0.6875 +0.2812 0.9375 0.7188 +0.2812 0.9375 0.75 +0.2812 0.9375 0.7812 +0.2812 0.9375 0.8125 +0.2812 0.9375 0.8438 +0.2812 0.9375 0.875 +0.2812 0.9375 0.9062 +0.2812 0.9375 0.9375 +0.2812 0.9375 0.9688 +0.2812 0.9375 1 +0.2812 0.9688 0 +0.2812 0.9688 0.03125 +0.2812 0.9688 0.0625 +0.2812 0.9688 0.09375 +0.2812 0.9688 0.125 +0.2812 0.9688 0.1562 +0.2812 0.9688 0.1875 +0.2812 0.9688 0.2188 +0.2812 0.9688 0.25 +0.2812 0.9688 0.2812 +0.2812 0.9688 0.3125 +0.2812 0.9688 0.3438 +0.2812 0.9688 0.375 +0.2812 0.9688 0.4062 +0.2812 0.9688 0.4375 +0.2812 0.9688 0.4688 +0.2812 0.9688 0.5 +0.2812 0.9688 0.5312 +0.2812 0.9688 0.5625 +0.2812 0.9688 0.5938 +0.2812 0.9688 0.625 +0.2812 0.9688 0.6562 +0.2812 0.9688 0.6875 +0.2812 0.9688 0.7188 +0.2812 0.9688 0.75 +0.2812 0.9688 0.7812 +0.2812 0.9688 0.8125 +0.2812 0.9688 0.8438 +0.2812 0.9688 0.875 +0.2812 0.9688 0.9062 +0.2812 0.9688 0.9375 +0.2812 0.9688 0.9688 +0.2812 0.9688 1 +0.2812 1 0 +0.2812 1 0.03125 +0.2812 1 0.0625 +0.2812 1 0.09375 +0.2812 1 0.125 +0.2812 1 0.1562 +0.2812 1 0.1875 +0.2812 1 0.2188 +0.2812 1 0.25 +0.2812 1 0.2812 +0.2812 1 0.3125 +0.2812 1 0.3438 +0.2812 1 0.375 +0.2812 1 0.4062 +0.2812 1 0.4375 +0.2812 1 0.4688 +0.2812 1 0.5 +0.2812 1 0.5312 +0.2812 1 0.5625 +0.2812 1 0.5938 +0.2812 1 0.625 +0.2812 1 0.6562 +0.2812 1 0.6875 +0.2812 1 0.7188 +0.2812 1 0.75 +0.2812 1 0.7812 +0.2812 1 0.8125 +0.2812 1 0.8438 +0.2812 1 0.875 +0.2812 1 0.9062 +0.2812 1 0.9375 +0.2812 1 0.9688 +0.2812 1 1 +0.3125 0 0 +0.3125 0 0.03125 +0.3125 0 0.0625 +0.3125 0 0.09375 +0.3125 0 0.125 +0.3125 0 0.1562 +0.3125 0 0.1875 +0.3125 0 0.2188 +0.3125 0 0.25 +0.3125 0 0.2812 +0.3125 0 0.3125 +0.3125 0 0.3438 +0.3125 0 0.375 +0.3125 0 0.4062 +0.3125 0 0.4375 +0.3125 0 0.4688 +0.3125 0 0.5 +0.3125 0 0.5312 +0.3125 0 0.5625 +0.3125 0 0.5938 +0.3125 0 0.625 +0.3125 0 0.6562 +0.3125 0 0.6875 +0.3125 0 0.7188 +0.3125 0 0.75 +0.3125 0 0.7812 +0.3125 0 0.8125 +0.3125 0 0.8438 +0.3125 0 0.875 +0.3125 0 0.9062 +0.3125 0 0.9375 +0.3125 0 0.9688 +0.3125 0 1 +0.3125 0.03125 0 +0.3125 0.03125 0.03125 +0.3125 0.03125 0.0625 +0.3125 0.03125 0.09375 +0.3125 0.03125 0.125 +0.3125 0.03125 0.1562 +0.3125 0.03125 0.1875 +0.3125 0.03125 0.2188 +0.3125 0.03125 0.25 +0.3125 0.03125 0.2812 +0.3125 0.03125 0.3125 +0.3125 0.03125 0.3438 +0.3125 0.03125 0.375 +0.3125 0.03125 0.4062 +0.3125 0.03125 0.4375 +0.3125 0.03125 0.4688 +0.3125 0.03125 0.5 +0.3125 0.03125 0.5312 +0.3125 0.03125 0.5625 +0.3125 0.03125 0.5938 +0.3125 0.03125 0.625 +0.3125 0.03125 0.6562 +0.3125 0.03125 0.6875 +0.3125 0.03125 0.7188 +0.3125 0.03125 0.75 +0.3125 0.03125 0.7812 +0.3125 0.03125 0.8125 +0.3125 0.03125 0.8438 +0.3125 0.03125 0.875 +0.3125 0.03125 0.9062 +0.3125 0.03125 0.9375 +0.3125 0.03125 0.9688 +0.3125 0.03125 1 +0.3125 0.0625 0 +0.3125 0.0625 0.03125 +0.3125 0.0625 0.0625 +0.3125 0.0625 0.09375 +0.3125 0.0625 0.125 +0.3125 0.0625 0.1562 +0.3125 0.0625 0.1875 +0.3125 0.0625 0.2188 +0.3125 0.0625 0.25 +0.3125 0.0625 0.2812 +0.3125 0.0625 0.3125 +0.3125 0.0625 0.3438 +0.3125 0.0625 0.375 +0.3125 0.0625 0.4062 +0.3125 0.0625 0.4375 +0.3125 0.0625 0.4688 +0.3125 0.0625 0.5 +0.3125 0.0625 0.5312 +0.3125 0.0625 0.5625 +0.3125 0.0625 0.5938 +0.3125 0.0625 0.625 +0.3125 0.0625 0.6562 +0.3125 0.0625 0.6875 +0.3125 0.0625 0.7188 +0.3125 0.0625 0.75 +0.3125 0.0625 0.7812 +0.3125 0.0625 0.8125 +0.3125 0.0625 0.8438 +0.3125 0.0625 0.875 +0.3125 0.0625 0.9062 +0.3125 0.0625 0.9375 +0.3125 0.0625 0.9688 +0.3125 0.0625 1 +0.3125 0.09375 0 +0.3125 0.09375 0.03125 +0.3125 0.09375 0.0625 +0.3125 0.09375 0.09375 +0.3125 0.09375 0.125 +0.3125 0.09375 0.1562 +0.3125 0.09375 0.1875 +0.3125 0.09375 0.2188 +0.3125 0.09375 0.25 +0.3125 0.09375 0.2812 +0.3125 0.09375 0.3125 +0.3125 0.09375 0.3438 +0.3125 0.09375 0.375 +0.3125 0.09375 0.4062 +0.3125 0.09375 0.4375 +0.3125 0.09375 0.4688 +0.3125 0.09375 0.5 +0.3125 0.09375 0.5312 +0.3125 0.09375 0.5625 +0.3125 0.09375 0.5938 +0.3125 0.09375 0.625 +0.3125 0.09375 0.6562 +0.3125 0.09375 0.6875 +0.3125 0.09375 0.7188 +0.3125 0.09375 0.75 +0.3125 0.09375 0.7812 +0.3125 0.09375 0.8125 +0.3125 0.09375 0.8438 +0.3125 0.09375 0.875 +0.3125 0.09375 0.9062 +0.3125 0.09375 0.9375 +0.3125 0.09375 0.9688 +0.3125 0.09375 1 +0.3125 0.125 0 +0.3125 0.125 0.03125 +0.3125 0.125 0.0625 +0.3125 0.125 0.09375 +0.3125 0.125 0.125 +0.3125 0.125 0.1562 +0.3125 0.125 0.1875 +0.3125 0.125 0.2188 +0.3125 0.125 0.25 +0.3125 0.125 0.2812 +0.3125 0.125 0.3125 +0.3125 0.125 0.3438 +0.3125 0.125 0.375 +0.3125 0.125 0.4062 +0.3125 0.125 0.4375 +0.3125 0.125 0.4688 +0.3125 0.125 0.5 +0.3125 0.125 0.5312 +0.3125 0.125 0.5625 +0.3125 0.125 0.5938 +0.3125 0.125 0.625 +0.3125 0.125 0.6562 +0.3125 0.125 0.6875 +0.3125 0.125 0.7188 +0.3125 0.125 0.75 +0.3125 0.125 0.7812 +0.3125 0.125 0.8125 +0.3125 0.125 0.8438 +0.3125 0.125 0.875 +0.3125 0.125 0.9062 +0.3125 0.125 0.9375 +0.3125 0.125 0.9688 +0.3125 0.125 1 +0.3125 0.1562 0 +0.3125 0.1562 0.03125 +0.3125 0.1562 0.0625 +0.3125 0.1562 0.09375 +0.3125 0.1562 0.125 +0.3125 0.1562 0.1562 +0.3125 0.1562 0.1875 +0.3125 0.1562 0.2188 +0.3125 0.1562 0.25 +0.3125 0.1562 0.2812 +0.3125 0.1562 0.3125 +0.3125 0.1562 0.3438 +0.3125 0.1562 0.375 +0.3125 0.1562 0.4062 +0.3125 0.1562 0.4375 +0.3125 0.1562 0.4688 +0.3125 0.1562 0.5 +0.3125 0.1562 0.5312 +0.3125 0.1562 0.5625 +0.3125 0.1562 0.5938 +0.3125 0.1562 0.625 +0.3125 0.1562 0.6562 +0.3125 0.1562 0.6875 +0.3125 0.1562 0.7188 +0.3125 0.1562 0.75 +0.3125 0.1562 0.7812 +0.3125 0.1562 0.8125 +0.3125 0.1562 0.8438 +0.3125 0.1562 0.875 +0.3125 0.1562 0.9062 +0.3125 0.1562 0.9375 +0.3125 0.1562 0.9688 +0.3125 0.1562 1 +0.3125 0.1875 0 +0.3125 0.1875 0.03125 +0.3125 0.1875 0.0625 +0.3125 0.1875 0.09375 +0.3125 0.1875 0.125 +0.3125 0.1875 0.1562 +0.3125 0.1875 0.1875 +0.3125 0.1875 0.2188 +0.3125 0.1875 0.25 +0.3125 0.1875 0.2812 +0.3125 0.1875 0.3125 +0.3125 0.1875 0.3438 +0.3125 0.1875 0.375 +0.3125 0.1875 0.4062 +0.3125 0.1875 0.4375 +0.3125 0.1875 0.4688 +0.3125 0.1875 0.5 +0.3125 0.1875 0.5312 +0.3125 0.1875 0.5625 +0.3125 0.1875 0.5938 +0.3125 0.1875 0.625 +0.3125 0.1875 0.6562 +0.3125 0.1875 0.6875 +0.3125 0.1875 0.7188 +0.3125 0.1875 0.75 +0.3125 0.1875 0.7812 +0.3125 0.1875 0.8125 +0.3125 0.1875 0.8438 +0.3125 0.1875 0.875 +0.3125 0.1875 0.9062 +0.3125 0.1875 0.9375 +0.3125 0.1875 0.9688 +0.3125 0.1875 1 +0.3125 0.2188 0 +0.3125 0.2188 0.03125 +0.3125 0.2188 0.0625 +0.3125 0.2188 0.09375 +0.3125 0.2188 0.125 +0.3125 0.2188 0.1562 +0.3125 0.2188 0.1875 +0.3125 0.2188 0.2188 +0.3125 0.2188 0.25 +0.3125 0.2188 0.2812 +0.3125 0.2188 0.3125 +0.3125 0.2188 0.3438 +0.3125 0.2188 0.375 +0.3125 0.2188 0.4062 +0.3125 0.2188 0.4375 +0.3125 0.2188 0.4688 +0.3125 0.2188 0.5 +0.3125 0.2188 0.5312 +0.3125 0.2188 0.5625 +0.3125 0.2188 0.5938 +0.3125 0.2188 0.625 +0.3125 0.2188 0.6562 +0.3125 0.2188 0.6875 +0.3125 0.2188 0.7188 +0.3125 0.2188 0.75 +0.3125 0.2188 0.7812 +0.3125 0.2188 0.8125 +0.3125 0.2188 0.8438 +0.3125 0.2188 0.875 +0.3125 0.2188 0.9062 +0.3125 0.2188 0.9375 +0.3125 0.2188 0.9688 +0.3125 0.2188 1 +0.3125 0.25 0 +0.3125 0.25 0.03125 +0.3125 0.25 0.0625 +0.3125 0.25 0.09375 +0.3125 0.25 0.125 +0.3125 0.25 0.1562 +0.3125 0.25 0.1875 +0.3125 0.25 0.2188 +0.3125 0.25 0.25 +0.3125 0.25 0.2812 +0.3125 0.25 0.3125 +0.3125 0.25 0.3438 +0.3125 0.25 0.375 +0.3125 0.25 0.4062 +0.3125 0.25 0.4375 +0.3125 0.25 0.4688 +0.3125 0.25 0.5 +0.3125 0.25 0.5312 +0.3125 0.25 0.5625 +0.3125 0.25 0.5938 +0.3125 0.25 0.625 +0.3125 0.25 0.6562 +0.3125 0.25 0.6875 +0.3125 0.25 0.7188 +0.3125 0.25 0.75 +0.3125 0.25 0.7812 +0.3125 0.25 0.8125 +0.3125 0.25 0.8438 +0.3125 0.25 0.875 +0.3125 0.25 0.9062 +0.3125 0.25 0.9375 +0.3125 0.25 0.9688 +0.3125 0.25 1 +0.3125 0.2812 0 +0.3125 0.2812 0.03125 +0.3125 0.2812 0.0625 +0.3125 0.2812 0.09375 +0.3125 0.2812 0.125 +0.3125 0.2812 0.1562 +0.3125 0.2812 0.1875 +0.3125 0.2812 0.2188 +0.3125 0.2812 0.25 +0.3125 0.2812 0.2812 +0.3125 0.2812 0.3125 +0.3125 0.2812 0.3438 +0.3125 0.2812 0.375 +0.3125 0.2812 0.4062 +0.3125 0.2812 0.4375 +0.3125 0.2812 0.4688 +0.3125 0.2812 0.5 +0.3125 0.2812 0.5312 +0.3125 0.2812 0.5625 +0.3125 0.2812 0.5938 +0.3125 0.2812 0.625 +0.3125 0.2812 0.6562 +0.3125 0.2812 0.6875 +0.3125 0.2812 0.7188 +0.3125 0.2812 0.75 +0.3125 0.2812 0.7812 +0.3125 0.2812 0.8125 +0.3125 0.2812 0.8438 +0.3125 0.2812 0.875 +0.3125 0.2812 0.9062 +0.3125 0.2812 0.9375 +0.3125 0.2812 0.9688 +0.3125 0.2812 1 +0.3125 0.3125 0 +0.3125 0.3125 0.03125 +0.3125 0.3125 0.0625 +0.3125 0.3125 0.09375 +0.3125 0.3125 0.125 +0.3125 0.3125 0.1562 +0.3125 0.3125 0.1875 +0.3125 0.3125 0.2188 +0.3125 0.3125 0.25 +0.3125 0.3125 0.2812 +0.3125 0.3125 0.3125 +0.3125 0.3125 0.3438 +0.3125 0.3125 0.375 +0.3125 0.3125 0.4062 +0.3125 0.3125 0.4375 +0.3125 0.3125 0.4688 +0.3125 0.3125 0.5 +0.3125 0.3125 0.5312 +0.3125 0.3125 0.5625 +0.3125 0.3125 0.5938 +0.3125 0.3125 0.625 +0.3125 0.3125 0.6562 +0.3125 0.3125 0.6875 +0.3125 0.3125 0.7188 +0.3125 0.3125 0.75 +0.3125 0.3125 0.7812 +0.3125 0.3125 0.8125 +0.3125 0.3125 0.8438 +0.3125 0.3125 0.875 +0.3125 0.3125 0.9062 +0.3125 0.3125 0.9375 +0.3125 0.3125 0.9688 +0.3125 0.3125 1 +0.3125 0.3438 0 +0.3125 0.3438 0.03125 +0.3125 0.3438 0.0625 +0.3125 0.3438 0.09375 +0.3125 0.3438 0.125 +0.3125 0.3438 0.1562 +0.3125 0.3438 0.1875 +0.3125 0.3438 0.2188 +0.3125 0.3438 0.25 +0.3125 0.3438 0.2812 +0.3125 0.3438 0.3125 +0.3125 0.3438 0.3438 +0.3125 0.3438 0.375 +0.3125 0.3438 0.4062 +0.3125 0.3438 0.4375 +0.3125 0.3438 0.4688 +0.3125 0.3438 0.5 +0.3125 0.3438 0.5312 +0.3125 0.3438 0.5625 +0.3125 0.3438 0.5938 +0.3125 0.3438 0.625 +0.3125 0.3438 0.6562 +0.3125 0.3438 0.6875 +0.3125 0.3438 0.7188 +0.3125 0.3438 0.75 +0.3125 0.3438 0.7812 +0.3125 0.3438 0.8125 +0.3125 0.3438 0.8438 +0.3125 0.3438 0.875 +0.3125 0.3438 0.9062 +0.3125 0.3438 0.9375 +0.3125 0.3438 0.9688 +0.3125 0.3438 1 +0.3125 0.375 0 +0.3125 0.375 0.03125 +0.3125 0.375 0.0625 +0.3125 0.375 0.09375 +0.3125 0.375 0.125 +0.3125 0.375 0.1562 +0.3125 0.375 0.1875 +0.3125 0.375 0.2188 +0.3125 0.375 0.25 +0.3125 0.375 0.2812 +0.3125 0.375 0.3125 +0.3125 0.375 0.3438 +0.3125 0.375 0.375 +0.3125 0.375 0.4062 +0.3125 0.375 0.4375 +0.3125 0.375 0.4688 +0.3125 0.375 0.5 +0.3125 0.375 0.5312 +0.3125 0.375 0.5625 +0.3125 0.375 0.5938 +0.3125 0.375 0.625 +0.3125 0.375 0.6562 +0.3125 0.375 0.6875 +0.3125 0.375 0.7188 +0.3125 0.375 0.75 +0.3125 0.375 0.7812 +0.3125 0.375 0.8125 +0.3125 0.375 0.8438 +0.3125 0.375 0.875 +0.3125 0.375 0.9062 +0.3125 0.375 0.9375 +0.3125 0.375 0.9688 +0.3125 0.375 1 +0.3125 0.4062 0 +0.3125 0.4062 0.03125 +0.3125 0.4062 0.0625 +0.3125 0.4062 0.09375 +0.3125 0.4062 0.125 +0.3125 0.4062 0.1562 +0.3125 0.4062 0.1875 +0.3125 0.4062 0.2188 +0.3125 0.4062 0.25 +0.3125 0.4062 0.2812 +0.3125 0.4062 0.3125 +0.3125 0.4062 0.3438 +0.3125 0.4062 0.375 +0.3125 0.4062 0.4062 +0.3125 0.4062 0.4375 +0.3125 0.4062 0.4688 +0.3125 0.4062 0.5 +0.3125 0.4062 0.5312 +0.3125 0.4062 0.5625 +0.3125 0.4062 0.5938 +0.3125 0.4062 0.625 +0.3125 0.4062 0.6562 +0.3125 0.4062 0.6875 +0.3125 0.4062 0.7188 +0.3125 0.4062 0.75 +0.3125 0.4062 0.7812 +0.3125 0.4062 0.8125 +0.3125 0.4062 0.8438 +0.3125 0.4062 0.875 +0.3125 0.4062 0.9062 +0.3125 0.4062 0.9375 +0.3125 0.4062 0.9688 +0.3125 0.4062 1 +0.3125 0.4375 0 +0.3125 0.4375 0.03125 +0.3125 0.4375 0.0625 +0.3125 0.4375 0.09375 +0.3125 0.4375 0.125 +0.3125 0.4375 0.1562 +0.3125 0.4375 0.1875 +0.3125 0.4375 0.2188 +0.3125 0.4375 0.25 +0.3125 0.4375 0.2812 +0.3125 0.4375 0.3125 +0.3125 0.4375 0.3438 +0.3125 0.4375 0.375 +0.3125 0.4375 0.4062 +0.3125 0.4375 0.4375 +0.3125 0.4375 0.4688 +0.3125 0.4375 0.5 +0.3125 0.4375 0.5312 +0.3125 0.4375 0.5625 +0.3125 0.4375 0.5938 +0.3125 0.4375 0.625 +0.3125 0.4375 0.6562 +0.3125 0.4375 0.6875 +0.3125 0.4375 0.7188 +0.3125 0.4375 0.75 +0.3125 0.4375 0.7812 +0.3125 0.4375 0.8125 +0.3125 0.4375 0.8438 +0.3125 0.4375 0.875 +0.3125 0.4375 0.9062 +0.3125 0.4375 0.9375 +0.3125 0.4375 0.9688 +0.3125 0.4375 1 +0.3125 0.4688 0 +0.3125 0.4688 0.03125 +0.3125 0.4688 0.0625 +0.3125 0.4688 0.09375 +0.3125 0.4688 0.125 +0.3125 0.4688 0.1562 +0.3125 0.4688 0.1875 +0.3125 0.4688 0.2188 +0.3125 0.4688 0.25 +0.3125 0.4688 0.2812 +0.3125 0.4688 0.3125 +0.3125 0.4688 0.3438 +0.3125 0.4688 0.375 +0.3125 0.4688 0.4062 +0.3125 0.4688 0.4375 +0.3125 0.4688 0.4688 +0.3125 0.4688 0.5 +0.3125 0.4688 0.5312 +0.3125 0.4688 0.5625 +0.3125 0.4688 0.5938 +0.3125 0.4688 0.625 +0.3125 0.4688 0.6562 +0.3125 0.4688 0.6875 +0.3125 0.4688 0.7188 +0.3125 0.4688 0.75 +0.3125 0.4688 0.7812 +0.3125 0.4688 0.8125 +0.3125 0.4688 0.8438 +0.3125 0.4688 0.875 +0.3125 0.4688 0.9062 +0.3125 0.4688 0.9375 +0.3125 0.4688 0.9688 +0.3125 0.4688 1 +0.3125 0.5 0 +0.3125 0.5 0.03125 +0.3125 0.5 0.0625 +0.3125 0.5 0.09375 +0.3125 0.5 0.125 +0.3125 0.5 0.1562 +0.3125 0.5 0.1875 +0.3125 0.5 0.2188 +0.3125 0.5 0.25 +0.3125 0.5 0.2812 +0.3125 0.5 0.3125 +0.3125 0.5 0.3438 +0.3125 0.5 0.375 +0.3125 0.5 0.4062 +0.3125 0.5 0.4375 +0.3125 0.5 0.4688 +0.3125 0.5 0.5 +0.3125 0.5 0.5312 +0.3125 0.5 0.5625 +0.3125 0.5 0.5938 +0.3125 0.5 0.625 +0.3125 0.5 0.6562 +0.3125 0.5 0.6875 +0.3125 0.5 0.7188 +0.3125 0.5 0.75 +0.3125 0.5 0.7812 +0.3125 0.5 0.8125 +0.3125 0.5 0.8438 +0.3125 0.5 0.875 +0.3125 0.5 0.9062 +0.3125 0.5 0.9375 +0.3125 0.5 0.9688 +0.3125 0.5 1 +0.3125 0.5312 0 +0.3125 0.5312 0.03125 +0.3125 0.5312 0.0625 +0.3125 0.5312 0.09375 +0.3125 0.5312 0.125 +0.3125 0.5312 0.1562 +0.3125 0.5312 0.1875 +0.3125 0.5312 0.2188 +0.3125 0.5312 0.25 +0.3125 0.5312 0.2812 +0.3125 0.5312 0.3125 +0.3125 0.5312 0.3438 +0.3125 0.5312 0.375 +0.3125 0.5312 0.4062 +0.3125 0.5312 0.4375 +0.3125 0.5312 0.4688 +0.3125 0.5312 0.5 +0.3125 0.5312 0.5312 +0.3125 0.5312 0.5625 +0.3125 0.5312 0.5938 +0.3125 0.5312 0.625 +0.3125 0.5312 0.6562 +0.3125 0.5312 0.6875 +0.3125 0.5312 0.7188 +0.3125 0.5312 0.75 +0.3125 0.5312 0.7812 +0.3125 0.5312 0.8125 +0.3125 0.5312 0.8438 +0.3125 0.5312 0.875 +0.3125 0.5312 0.9062 +0.3125 0.5312 0.9375 +0.3125 0.5312 0.9688 +0.3125 0.5312 1 +0.3125 0.5625 0 +0.3125 0.5625 0.03125 +0.3125 0.5625 0.0625 +0.3125 0.5625 0.09375 +0.3125 0.5625 0.125 +0.3125 0.5625 0.1562 +0.3125 0.5625 0.1875 +0.3125 0.5625 0.2188 +0.3125 0.5625 0.25 +0.3125 0.5625 0.2812 +0.3125 0.5625 0.3125 +0.3125 0.5625 0.3438 +0.3125 0.5625 0.375 +0.3125 0.5625 0.4062 +0.3125 0.5625 0.4375 +0.3125 0.5625 0.4688 +0.3125 0.5625 0.5 +0.3125 0.5625 0.5312 +0.3125 0.5625 0.5625 +0.3125 0.5625 0.5938 +0.3125 0.5625 0.625 +0.3125 0.5625 0.6562 +0.3125 0.5625 0.6875 +0.3125 0.5625 0.7188 +0.3125 0.5625 0.75 +0.3125 0.5625 0.7812 +0.3125 0.5625 0.8125 +0.3125 0.5625 0.8438 +0.3125 0.5625 0.875 +0.3125 0.5625 0.9062 +0.3125 0.5625 0.9375 +0.3125 0.5625 0.9688 +0.3125 0.5625 1 +0.3125 0.5938 0 +0.3125 0.5938 0.03125 +0.3125 0.5938 0.0625 +0.3125 0.5938 0.09375 +0.3125 0.5938 0.125 +0.3125 0.5938 0.1562 +0.3125 0.5938 0.1875 +0.3125 0.5938 0.2188 +0.3125 0.5938 0.25 +0.3125 0.5938 0.2812 +0.3125 0.5938 0.3125 +0.3125 0.5938 0.3438 +0.3125 0.5938 0.375 +0.3125 0.5938 0.4062 +0.3125 0.5938 0.4375 +0.3125 0.5938 0.4688 +0.3125 0.5938 0.5 +0.3125 0.5938 0.5312 +0.3125 0.5938 0.5625 +0.3125 0.5938 0.5938 +0.3125 0.5938 0.625 +0.3125 0.5938 0.6562 +0.3125 0.5938 0.6875 +0.3125 0.5938 0.7188 +0.3125 0.5938 0.75 +0.3125 0.5938 0.7812 +0.3125 0.5938 0.8125 +0.3125 0.5938 0.8438 +0.3125 0.5938 0.875 +0.3125 0.5938 0.9062 +0.3125 0.5938 0.9375 +0.3125 0.5938 0.9688 +0.3125 0.5938 1 +0.3125 0.625 0 +0.3125 0.625 0.03125 +0.3125 0.625 0.0625 +0.3125 0.625 0.09375 +0.3125 0.625 0.125 +0.3125 0.625 0.1562 +0.3125 0.625 0.1875 +0.3125 0.625 0.2188 +0.3125 0.625 0.25 +0.3125 0.625 0.2812 +0.3125 0.625 0.3125 +0.3125 0.625 0.3438 +0.3125 0.625 0.375 +0.3125 0.625 0.4062 +0.3125 0.625 0.4375 +0.3125 0.625 0.4688 +0.3125 0.625 0.5 +0.3125 0.625 0.5312 +0.3125 0.625 0.5625 +0.3125 0.625 0.5938 +0.3125 0.625 0.625 +0.3125 0.625 0.6562 +0.3125 0.625 0.6875 +0.3125 0.625 0.7188 +0.3125 0.625 0.75 +0.3125 0.625 0.7812 +0.3125 0.625 0.8125 +0.3125 0.625 0.8438 +0.3125 0.625 0.875 +0.3125 0.625 0.9062 +0.3125 0.625 0.9375 +0.3125 0.625 0.9688 +0.3125 0.625 1 +0.3125 0.6562 0 +0.3125 0.6562 0.03125 +0.3125 0.6562 0.0625 +0.3125 0.6562 0.09375 +0.3125 0.6562 0.125 +0.3125 0.6562 0.1562 +0.3125 0.6562 0.1875 +0.3125 0.6562 0.2188 +0.3125 0.6562 0.25 +0.3125 0.6562 0.2812 +0.3125 0.6562 0.3125 +0.3125 0.6562 0.3438 +0.3125 0.6562 0.375 +0.3125 0.6562 0.4062 +0.3125 0.6562 0.4375 +0.3125 0.6562 0.4688 +0.3125 0.6562 0.5 +0.3125 0.6562 0.5312 +0.3125 0.6562 0.5625 +0.3125 0.6562 0.5938 +0.3125 0.6562 0.625 +0.3125 0.6562 0.6562 +0.3125 0.6562 0.6875 +0.3125 0.6562 0.7188 +0.3125 0.6562 0.75 +0.3125 0.6562 0.7812 +0.3125 0.6562 0.8125 +0.3125 0.6562 0.8438 +0.3125 0.6562 0.875 +0.3125 0.6562 0.9062 +0.3125 0.6562 0.9375 +0.3125 0.6562 0.9688 +0.3125 0.6562 1 +0.3125 0.6875 0 +0.3125 0.6875 0.03125 +0.3125 0.6875 0.0625 +0.3125 0.6875 0.09375 +0.3125 0.6875 0.125 +0.3125 0.6875 0.1562 +0.3125 0.6875 0.1875 +0.3125 0.6875 0.2188 +0.3125 0.6875 0.25 +0.3125 0.6875 0.2812 +0.3125 0.6875 0.3125 +0.3125 0.6875 0.3438 +0.3125 0.6875 0.375 +0.3125 0.6875 0.4062 +0.3125 0.6875 0.4375 +0.3125 0.6875 0.4688 +0.3125 0.6875 0.5 +0.3125 0.6875 0.5312 +0.3125 0.6875 0.5625 +0.3125 0.6875 0.5938 +0.3125 0.6875 0.625 +0.3125 0.6875 0.6562 +0.3125 0.6875 0.6875 +0.3125 0.6875 0.7188 +0.3125 0.6875 0.75 +0.3125 0.6875 0.7812 +0.3125 0.6875 0.8125 +0.3125 0.6875 0.8438 +0.3125 0.6875 0.875 +0.3125 0.6875 0.9062 +0.3125 0.6875 0.9375 +0.3125 0.6875 0.9688 +0.3125 0.6875 1 +0.3125 0.7188 0 +0.3125 0.7188 0.03125 +0.3125 0.7188 0.0625 +0.3125 0.7188 0.09375 +0.3125 0.7188 0.125 +0.3125 0.7188 0.1562 +0.3125 0.7188 0.1875 +0.3125 0.7188 0.2188 +0.3125 0.7188 0.25 +0.3125 0.7188 0.2812 +0.3125 0.7188 0.3125 +0.3125 0.7188 0.3438 +0.3125 0.7188 0.375 +0.3125 0.7188 0.4062 +0.3125 0.7188 0.4375 +0.3125 0.7188 0.4688 +0.3125 0.7188 0.5 +0.3125 0.7188 0.5312 +0.3125 0.7188 0.5625 +0.3125 0.7188 0.5938 +0.3125 0.7188 0.625 +0.3125 0.7188 0.6562 +0.3125 0.7188 0.6875 +0.3125 0.7188 0.7188 +0.3125 0.7188 0.75 +0.3125 0.7188 0.7812 +0.3125 0.7188 0.8125 +0.3125 0.7188 0.8438 +0.3125 0.7188 0.875 +0.3125 0.7188 0.9062 +0.3125 0.7188 0.9375 +0.3125 0.7188 0.9688 +0.3125 0.7188 1 +0.3125 0.75 0 +0.3125 0.75 0.03125 +0.3125 0.75 0.0625 +0.3125 0.75 0.09375 +0.3125 0.75 0.125 +0.3125 0.75 0.1562 +0.3125 0.75 0.1875 +0.3125 0.75 0.2188 +0.3125 0.75 0.25 +0.3125 0.75 0.2812 +0.3125 0.75 0.3125 +0.3125 0.75 0.3438 +0.3125 0.75 0.375 +0.3125 0.75 0.4062 +0.3125 0.75 0.4375 +0.3125 0.75 0.4688 +0.3125 0.75 0.5 +0.3125 0.75 0.5312 +0.3125 0.75 0.5625 +0.3125 0.75 0.5938 +0.3125 0.75 0.625 +0.3125 0.75 0.6562 +0.3125 0.75 0.6875 +0.3125 0.75 0.7188 +0.3125 0.75 0.75 +0.3125 0.75 0.7812 +0.3125 0.75 0.8125 +0.3125 0.75 0.8438 +0.3125 0.75 0.875 +0.3125 0.75 0.9062 +0.3125 0.75 0.9375 +0.3125 0.75 0.9688 +0.3125 0.75 1 +0.3125 0.7812 0 +0.3125 0.7812 0.03125 +0.3125 0.7812 0.0625 +0.3125 0.7812 0.09375 +0.3125 0.7812 0.125 +0.3125 0.7812 0.1562 +0.3125 0.7812 0.1875 +0.3125 0.7812 0.2188 +0.3125 0.7812 0.25 +0.3125 0.7812 0.2812 +0.3125 0.7812 0.3125 +0.3125 0.7812 0.3438 +0.3125 0.7812 0.375 +0.3125 0.7812 0.4062 +0.3125 0.7812 0.4375 +0.3125 0.7812 0.4688 +0.3125 0.7812 0.5 +0.3125 0.7812 0.5312 +0.3125 0.7812 0.5625 +0.3125 0.7812 0.5938 +0.3125 0.7812 0.625 +0.3125 0.7812 0.6562 +0.3125 0.7812 0.6875 +0.3125 0.7812 0.7188 +0.3125 0.7812 0.75 +0.3125 0.7812 0.7812 +0.3125 0.7812 0.8125 +0.3125 0.7812 0.8438 +0.3125 0.7812 0.875 +0.3125 0.7812 0.9062 +0.3125 0.7812 0.9375 +0.3125 0.7812 0.9688 +0.3125 0.7812 1 +0.3125 0.8125 0 +0.3125 0.8125 0.03125 +0.3125 0.8125 0.0625 +0.3125 0.8125 0.09375 +0.3125 0.8125 0.125 +0.3125 0.8125 0.1562 +0.3125 0.8125 0.1875 +0.3125 0.8125 0.2188 +0.3125 0.8125 0.25 +0.3125 0.8125 0.2812 +0.3125 0.8125 0.3125 +0.3125 0.8125 0.3438 +0.3125 0.8125 0.375 +0.3125 0.8125 0.4062 +0.3125 0.8125 0.4375 +0.3125 0.8125 0.4688 +0.3125 0.8125 0.5 +0.3125 0.8125 0.5312 +0.3125 0.8125 0.5625 +0.3125 0.8125 0.5938 +0.3125 0.8125 0.625 +0.3125 0.8125 0.6562 +0.3125 0.8125 0.6875 +0.3125 0.8125 0.7188 +0.3125 0.8125 0.75 +0.3125 0.8125 0.7812 +0.3125 0.8125 0.8125 +0.3125 0.8125 0.8438 +0.3125 0.8125 0.875 +0.3125 0.8125 0.9062 +0.3125 0.8125 0.9375 +0.3125 0.8125 0.9688 +0.3125 0.8125 1 +0.3125 0.8438 0 +0.3125 0.8438 0.03125 +0.3125 0.8438 0.0625 +0.3125 0.8438 0.09375 +0.3125 0.8438 0.125 +0.3125 0.8438 0.1562 +0.3125 0.8438 0.1875 +0.3125 0.8438 0.2188 +0.3125 0.8438 0.25 +0.3125 0.8438 0.2812 +0.3125 0.8438 0.3125 +0.3125 0.8438 0.3438 +0.3125 0.8438 0.375 +0.3125 0.8438 0.4062 +0.3125 0.8438 0.4375 +0.3125 0.8438 0.4688 +0.3125 0.8438 0.5 +0.3125 0.8438 0.5312 +0.3125 0.8438 0.5625 +0.3125 0.8438 0.5938 +0.3125 0.8438 0.625 +0.3125 0.8438 0.6562 +0.3125 0.8438 0.6875 +0.3125 0.8438 0.7188 +0.3125 0.8438 0.75 +0.3125 0.8438 0.7812 +0.3125 0.8438 0.8125 +0.3125 0.8438 0.8438 +0.3125 0.8438 0.875 +0.3125 0.8438 0.9062 +0.3125 0.8438 0.9375 +0.3125 0.8438 0.9688 +0.3125 0.8438 1 +0.3125 0.875 0 +0.3125 0.875 0.03125 +0.3125 0.875 0.0625 +0.3125 0.875 0.09375 +0.3125 0.875 0.125 +0.3125 0.875 0.1562 +0.3125 0.875 0.1875 +0.3125 0.875 0.2188 +0.3125 0.875 0.25 +0.3125 0.875 0.2812 +0.3125 0.875 0.3125 +0.3125 0.875 0.3438 +0.3125 0.875 0.375 +0.3125 0.875 0.4062 +0.3125 0.875 0.4375 +0.3125 0.875 0.4688 +0.3125 0.875 0.5 +0.3125 0.875 0.5312 +0.3125 0.875 0.5625 +0.3125 0.875 0.5938 +0.3125 0.875 0.625 +0.3125 0.875 0.6562 +0.3125 0.875 0.6875 +0.3125 0.875 0.7188 +0.3125 0.875 0.75 +0.3125 0.875 0.7812 +0.3125 0.875 0.8125 +0.3125 0.875 0.8438 +0.3125 0.875 0.875 +0.3125 0.875 0.9062 +0.3125 0.875 0.9375 +0.3125 0.875 0.9688 +0.3125 0.875 1 +0.3125 0.9062 0 +0.3125 0.9062 0.03125 +0.3125 0.9062 0.0625 +0.3125 0.9062 0.09375 +0.3125 0.9062 0.125 +0.3125 0.9062 0.1562 +0.3125 0.9062 0.1875 +0.3125 0.9062 0.2188 +0.3125 0.9062 0.25 +0.3125 0.9062 0.2812 +0.3125 0.9062 0.3125 +0.3125 0.9062 0.3438 +0.3125 0.9062 0.375 +0.3125 0.9062 0.4062 +0.3125 0.9062 0.4375 +0.3125 0.9062 0.4688 +0.3125 0.9062 0.5 +0.3125 0.9062 0.5312 +0.3125 0.9062 0.5625 +0.3125 0.9062 0.5938 +0.3125 0.9062 0.625 +0.3125 0.9062 0.6562 +0.3125 0.9062 0.6875 +0.3125 0.9062 0.7188 +0.3125 0.9062 0.75 +0.3125 0.9062 0.7812 +0.3125 0.9062 0.8125 +0.3125 0.9062 0.8438 +0.3125 0.9062 0.875 +0.3125 0.9062 0.9062 +0.3125 0.9062 0.9375 +0.3125 0.9062 0.9688 +0.3125 0.9062 1 +0.3125 0.9375 0 +0.3125 0.9375 0.03125 +0.3125 0.9375 0.0625 +0.3125 0.9375 0.09375 +0.3125 0.9375 0.125 +0.3125 0.9375 0.1562 +0.3125 0.9375 0.1875 +0.3125 0.9375 0.2188 +0.3125 0.9375 0.25 +0.3125 0.9375 0.2812 +0.3125 0.9375 0.3125 +0.3125 0.9375 0.3438 +0.3125 0.9375 0.375 +0.3125 0.9375 0.4062 +0.3125 0.9375 0.4375 +0.3125 0.9375 0.4688 +0.3125 0.9375 0.5 +0.3125 0.9375 0.5312 +0.3125 0.9375 0.5625 +0.3125 0.9375 0.5938 +0.3125 0.9375 0.625 +0.3125 0.9375 0.6562 +0.3125 0.9375 0.6875 +0.3125 0.9375 0.7188 +0.3125 0.9375 0.75 +0.3125 0.9375 0.7812 +0.3125 0.9375 0.8125 +0.3125 0.9375 0.8438 +0.3125 0.9375 0.875 +0.3125 0.9375 0.9062 +0.3125 0.9375 0.9375 +0.3125 0.9375 0.9688 +0.3125 0.9375 1 +0.3125 0.9688 0 +0.3125 0.9688 0.03125 +0.3125 0.9688 0.0625 +0.3125 0.9688 0.09375 +0.3125 0.9688 0.125 +0.3125 0.9688 0.1562 +0.3125 0.9688 0.1875 +0.3125 0.9688 0.2188 +0.3125 0.9688 0.25 +0.3125 0.9688 0.2812 +0.3125 0.9688 0.3125 +0.3125 0.9688 0.3438 +0.3125 0.9688 0.375 +0.3125 0.9688 0.4062 +0.3125 0.9688 0.4375 +0.3125 0.9688 0.4688 +0.3125 0.9688 0.5 +0.3125 0.9688 0.5312 +0.3125 0.9688 0.5625 +0.3125 0.9688 0.5938 +0.3125 0.9688 0.625 +0.3125 0.9688 0.6562 +0.3125 0.9688 0.6875 +0.3125 0.9688 0.7188 +0.3125 0.9688 0.75 +0.3125 0.9688 0.7812 +0.3125 0.9688 0.8125 +0.3125 0.9688 0.8438 +0.3125 0.9688 0.875 +0.3125 0.9688 0.9062 +0.3125 0.9688 0.9375 +0.3125 0.9688 0.9688 +0.3125 0.9688 1 +0.3125 1 0 +0.3125 1 0.03125 +0.3125 1 0.0625 +0.3125 1 0.09375 +0.3125 1 0.125 +0.3125 1 0.1562 +0.3125 1 0.1875 +0.3125 1 0.2188 +0.3125 1 0.25 +0.3125 1 0.2812 +0.3125 1 0.3125 +0.3125 1 0.3438 +0.3125 1 0.375 +0.3125 1 0.4062 +0.3125 1 0.4375 +0.3125 1 0.4688 +0.3125 1 0.5 +0.3125 1 0.5312 +0.3125 1 0.5625 +0.3125 1 0.5938 +0.3125 1 0.625 +0.3125 1 0.6562 +0.3125 1 0.6875 +0.3125 1 0.7188 +0.3125 1 0.75 +0.3125 1 0.7812 +0.3125 1 0.8125 +0.3125 1 0.8438 +0.3125 1 0.875 +0.3125 1 0.9062 +0.3125 1 0.9375 +0.3125 1 0.9688 +0.3125 1 1 +0.3438 0 0 +0.3438 0 0.03125 +0.3438 0 0.0625 +0.3438 0 0.09375 +0.3438 0 0.125 +0.3438 0 0.1562 +0.3438 0 0.1875 +0.3438 0 0.2188 +0.3438 0 0.25 +0.3438 0 0.2812 +0.3438 0 0.3125 +0.3438 0 0.3438 +0.3438 0 0.375 +0.3438 0 0.4062 +0.3438 0 0.4375 +0.3438 0 0.4688 +0.3438 0 0.5 +0.3438 0 0.5312 +0.3438 0 0.5625 +0.3438 0 0.5938 +0.3438 0 0.625 +0.3438 0 0.6562 +0.3438 0 0.6875 +0.3438 0 0.7188 +0.3438 0 0.75 +0.3438 0 0.7812 +0.3438 0 0.8125 +0.3438 0 0.8438 +0.3438 0 0.875 +0.3438 0 0.9062 +0.3438 0 0.9375 +0.3438 0 0.9688 +0.3438 0 1 +0.3438 0.03125 0 +0.3438 0.03125 0.03125 +0.3438 0.03125 0.0625 +0.3438 0.03125 0.09375 +0.3438 0.03125 0.125 +0.3438 0.03125 0.1562 +0.3438 0.03125 0.1875 +0.3438 0.03125 0.2188 +0.3438 0.03125 0.25 +0.3438 0.03125 0.2812 +0.3438 0.03125 0.3125 +0.3438 0.03125 0.3438 +0.3438 0.03125 0.375 +0.3438 0.03125 0.4062 +0.3438 0.03125 0.4375 +0.3438 0.03125 0.4688 +0.3438 0.03125 0.5 +0.3438 0.03125 0.5312 +0.3438 0.03125 0.5625 +0.3438 0.03125 0.5938 +0.3438 0.03125 0.625 +0.3438 0.03125 0.6562 +0.3438 0.03125 0.6875 +0.3438 0.03125 0.7188 +0.3438 0.03125 0.75 +0.3438 0.03125 0.7812 +0.3438 0.03125 0.8125 +0.3438 0.03125 0.8438 +0.3438 0.03125 0.875 +0.3438 0.03125 0.9062 +0.3438 0.03125 0.9375 +0.3438 0.03125 0.9688 +0.3438 0.03125 1 +0.3438 0.0625 0 +0.3438 0.0625 0.03125 +0.3438 0.0625 0.0625 +0.3438 0.0625 0.09375 +0.3438 0.0625 0.125 +0.3438 0.0625 0.1562 +0.3438 0.0625 0.1875 +0.3438 0.0625 0.2188 +0.3438 0.0625 0.25 +0.3438 0.0625 0.2812 +0.3438 0.0625 0.3125 +0.3438 0.0625 0.3438 +0.3438 0.0625 0.375 +0.3438 0.0625 0.4062 +0.3438 0.0625 0.4375 +0.3438 0.0625 0.4688 +0.3438 0.0625 0.5 +0.3438 0.0625 0.5312 +0.3438 0.0625 0.5625 +0.3438 0.0625 0.5938 +0.3438 0.0625 0.625 +0.3438 0.0625 0.6562 +0.3438 0.0625 0.6875 +0.3438 0.0625 0.7188 +0.3438 0.0625 0.75 +0.3438 0.0625 0.7812 +0.3438 0.0625 0.8125 +0.3438 0.0625 0.8438 +0.3438 0.0625 0.875 +0.3438 0.0625 0.9062 +0.3438 0.0625 0.9375 +0.3438 0.0625 0.9688 +0.3438 0.0625 1 +0.3438 0.09375 0 +0.3438 0.09375 0.03125 +0.3438 0.09375 0.0625 +0.3438 0.09375 0.09375 +0.3438 0.09375 0.125 +0.3438 0.09375 0.1562 +0.3438 0.09375 0.1875 +0.3438 0.09375 0.2188 +0.3438 0.09375 0.25 +0.3438 0.09375 0.2812 +0.3438 0.09375 0.3125 +0.3438 0.09375 0.3438 +0.3438 0.09375 0.375 +0.3438 0.09375 0.4062 +0.3438 0.09375 0.4375 +0.3438 0.09375 0.4688 +0.3438 0.09375 0.5 +0.3438 0.09375 0.5312 +0.3438 0.09375 0.5625 +0.3438 0.09375 0.5938 +0.3438 0.09375 0.625 +0.3438 0.09375 0.6562 +0.3438 0.09375 0.6875 +0.3438 0.09375 0.7188 +0.3438 0.09375 0.75 +0.3438 0.09375 0.7812 +0.3438 0.09375 0.8125 +0.3438 0.09375 0.8438 +0.3438 0.09375 0.875 +0.3438 0.09375 0.9062 +0.3438 0.09375 0.9375 +0.3438 0.09375 0.9688 +0.3438 0.09375 1 +0.3438 0.125 0 +0.3438 0.125 0.03125 +0.3438 0.125 0.0625 +0.3438 0.125 0.09375 +0.3438 0.125 0.125 +0.3438 0.125 0.1562 +0.3438 0.125 0.1875 +0.3438 0.125 0.2188 +0.3438 0.125 0.25 +0.3438 0.125 0.2812 +0.3438 0.125 0.3125 +0.3438 0.125 0.3438 +0.3438 0.125 0.375 +0.3438 0.125 0.4062 +0.3438 0.125 0.4375 +0.3438 0.125 0.4688 +0.3438 0.125 0.5 +0.3438 0.125 0.5312 +0.3438 0.125 0.5625 +0.3438 0.125 0.5938 +0.3438 0.125 0.625 +0.3438 0.125 0.6562 +0.3438 0.125 0.6875 +0.3438 0.125 0.7188 +0.3438 0.125 0.75 +0.3438 0.125 0.7812 +0.3438 0.125 0.8125 +0.3438 0.125 0.8438 +0.3438 0.125 0.875 +0.3438 0.125 0.9062 +0.3438 0.125 0.9375 +0.3438 0.125 0.9688 +0.3438 0.125 1 +0.3438 0.1562 0 +0.3438 0.1562 0.03125 +0.3438 0.1562 0.0625 +0.3438 0.1562 0.09375 +0.3438 0.1562 0.125 +0.3438 0.1562 0.1562 +0.3438 0.1562 0.1875 +0.3438 0.1562 0.2188 +0.3438 0.1562 0.25 +0.3438 0.1562 0.2812 +0.3438 0.1562 0.3125 +0.3438 0.1562 0.3438 +0.3438 0.1562 0.375 +0.3438 0.1562 0.4062 +0.3438 0.1562 0.4375 +0.3438 0.1562 0.4688 +0.3438 0.1562 0.5 +0.3438 0.1562 0.5312 +0.3438 0.1562 0.5625 +0.3438 0.1562 0.5938 +0.3438 0.1562 0.625 +0.3438 0.1562 0.6562 +0.3438 0.1562 0.6875 +0.3438 0.1562 0.7188 +0.3438 0.1562 0.75 +0.3438 0.1562 0.7812 +0.3438 0.1562 0.8125 +0.3438 0.1562 0.8438 +0.3438 0.1562 0.875 +0.3438 0.1562 0.9062 +0.3438 0.1562 0.9375 +0.3438 0.1562 0.9688 +0.3438 0.1562 1 +0.3438 0.1875 0 +0.3438 0.1875 0.03125 +0.3438 0.1875 0.0625 +0.3438 0.1875 0.09375 +0.3438 0.1875 0.125 +0.3438 0.1875 0.1562 +0.3438 0.1875 0.1875 +0.3438 0.1875 0.2188 +0.3438 0.1875 0.25 +0.3438 0.1875 0.2812 +0.3438 0.1875 0.3125 +0.3438 0.1875 0.3438 +0.3438 0.1875 0.375 +0.3438 0.1875 0.4062 +0.3438 0.1875 0.4375 +0.3438 0.1875 0.4688 +0.3438 0.1875 0.5 +0.3438 0.1875 0.5312 +0.3438 0.1875 0.5625 +0.3438 0.1875 0.5938 +0.3438 0.1875 0.625 +0.3438 0.1875 0.6562 +0.3438 0.1875 0.6875 +0.3438 0.1875 0.7188 +0.3438 0.1875 0.75 +0.3438 0.1875 0.7812 +0.3438 0.1875 0.8125 +0.3438 0.1875 0.8438 +0.3438 0.1875 0.875 +0.3438 0.1875 0.9062 +0.3438 0.1875 0.9375 +0.3438 0.1875 0.9688 +0.3438 0.1875 1 +0.3438 0.2188 0 +0.3438 0.2188 0.03125 +0.3438 0.2188 0.0625 +0.3438 0.2188 0.09375 +0.3438 0.2188 0.125 +0.3438 0.2188 0.1562 +0.3438 0.2188 0.1875 +0.3438 0.2188 0.2188 +0.3438 0.2188 0.25 +0.3438 0.2188 0.2812 +0.3438 0.2188 0.3125 +0.3438 0.2188 0.3438 +0.3438 0.2188 0.375 +0.3438 0.2188 0.4062 +0.3438 0.2188 0.4375 +0.3438 0.2188 0.4688 +0.3438 0.2188 0.5 +0.3438 0.2188 0.5312 +0.3438 0.2188 0.5625 +0.3438 0.2188 0.5938 +0.3438 0.2188 0.625 +0.3438 0.2188 0.6562 +0.3438 0.2188 0.6875 +0.3438 0.2188 0.7188 +0.3438 0.2188 0.75 +0.3438 0.2188 0.7812 +0.3438 0.2188 0.8125 +0.3438 0.2188 0.8438 +0.3438 0.2188 0.875 +0.3438 0.2188 0.9062 +0.3438 0.2188 0.9375 +0.3438 0.2188 0.9688 +0.3438 0.2188 1 +0.3438 0.25 0 +0.3438 0.25 0.03125 +0.3438 0.25 0.0625 +0.3438 0.25 0.09375 +0.3438 0.25 0.125 +0.3438 0.25 0.1562 +0.3438 0.25 0.1875 +0.3438 0.25 0.2188 +0.3438 0.25 0.25 +0.3438 0.25 0.2812 +0.3438 0.25 0.3125 +0.3438 0.25 0.3438 +0.3438 0.25 0.375 +0.3438 0.25 0.4062 +0.3438 0.25 0.4375 +0.3438 0.25 0.4688 +0.3438 0.25 0.5 +0.3438 0.25 0.5312 +0.3438 0.25 0.5625 +0.3438 0.25 0.5938 +0.3438 0.25 0.625 +0.3438 0.25 0.6562 +0.3438 0.25 0.6875 +0.3438 0.25 0.7188 +0.3438 0.25 0.75 +0.3438 0.25 0.7812 +0.3438 0.25 0.8125 +0.3438 0.25 0.8438 +0.3438 0.25 0.875 +0.3438 0.25 0.9062 +0.3438 0.25 0.9375 +0.3438 0.25 0.9688 +0.3438 0.25 1 +0.3438 0.2812 0 +0.3438 0.2812 0.03125 +0.3438 0.2812 0.0625 +0.3438 0.2812 0.09375 +0.3438 0.2812 0.125 +0.3438 0.2812 0.1562 +0.3438 0.2812 0.1875 +0.3438 0.2812 0.2188 +0.3438 0.2812 0.25 +0.3438 0.2812 0.2812 +0.3438 0.2812 0.3125 +0.3438 0.2812 0.3438 +0.3438 0.2812 0.375 +0.3438 0.2812 0.4062 +0.3438 0.2812 0.4375 +0.3438 0.2812 0.4688 +0.3438 0.2812 0.5 +0.3438 0.2812 0.5312 +0.3438 0.2812 0.5625 +0.3438 0.2812 0.5938 +0.3438 0.2812 0.625 +0.3438 0.2812 0.6562 +0.3438 0.2812 0.6875 +0.3438 0.2812 0.7188 +0.3438 0.2812 0.75 +0.3438 0.2812 0.7812 +0.3438 0.2812 0.8125 +0.3438 0.2812 0.8438 +0.3438 0.2812 0.875 +0.3438 0.2812 0.9062 +0.3438 0.2812 0.9375 +0.3438 0.2812 0.9688 +0.3438 0.2812 1 +0.3438 0.3125 0 +0.3438 0.3125 0.03125 +0.3438 0.3125 0.0625 +0.3438 0.3125 0.09375 +0.3438 0.3125 0.125 +0.3438 0.3125 0.1562 +0.3438 0.3125 0.1875 +0.3438 0.3125 0.2188 +0.3438 0.3125 0.25 +0.3438 0.3125 0.2812 +0.3438 0.3125 0.3125 +0.3438 0.3125 0.3438 +0.3438 0.3125 0.375 +0.3438 0.3125 0.4062 +0.3438 0.3125 0.4375 +0.3438 0.3125 0.4688 +0.3438 0.3125 0.5 +0.3438 0.3125 0.5312 +0.3438 0.3125 0.5625 +0.3438 0.3125 0.5938 +0.3438 0.3125 0.625 +0.3438 0.3125 0.6562 +0.3438 0.3125 0.6875 +0.3438 0.3125 0.7188 +0.3438 0.3125 0.75 +0.3438 0.3125 0.7812 +0.3438 0.3125 0.8125 +0.3438 0.3125 0.8438 +0.3438 0.3125 0.875 +0.3438 0.3125 0.9062 +0.3438 0.3125 0.9375 +0.3438 0.3125 0.9688 +0.3438 0.3125 1 +0.3438 0.3438 0 +0.3438 0.3438 0.03125 +0.3438 0.3438 0.0625 +0.3438 0.3438 0.09375 +0.3438 0.3438 0.125 +0.3438 0.3438 0.1562 +0.3438 0.3438 0.1875 +0.3438 0.3438 0.2188 +0.3438 0.3438 0.25 +0.3438 0.3438 0.2812 +0.3438 0.3438 0.3125 +0.3438 0.3438 0.3438 +0.3438 0.3438 0.375 +0.3438 0.3438 0.4062 +0.3438 0.3438 0.4375 +0.3438 0.3438 0.4688 +0.3438 0.3438 0.5 +0.3438 0.3438 0.5312 +0.3438 0.3438 0.5625 +0.3438 0.3438 0.5938 +0.3438 0.3438 0.625 +0.3438 0.3438 0.6562 +0.3438 0.3438 0.6875 +0.3438 0.3438 0.7188 +0.3438 0.3438 0.75 +0.3438 0.3438 0.7812 +0.3438 0.3438 0.8125 +0.3438 0.3438 0.8438 +0.3438 0.3438 0.875 +0.3438 0.3438 0.9062 +0.3438 0.3438 0.9375 +0.3438 0.3438 0.9688 +0.3438 0.3438 1 +0.3438 0.375 0 +0.3438 0.375 0.03125 +0.3438 0.375 0.0625 +0.3438 0.375 0.09375 +0.3438 0.375 0.125 +0.3438 0.375 0.1562 +0.3438 0.375 0.1875 +0.3438 0.375 0.2188 +0.3438 0.375 0.25 +0.3438 0.375 0.2812 +0.3438 0.375 0.3125 +0.3438 0.375 0.3438 +0.3438 0.375 0.375 +0.3438 0.375 0.4062 +0.3438 0.375 0.4375 +0.3438 0.375 0.4688 +0.3438 0.375 0.5 +0.3438 0.375 0.5312 +0.3438 0.375 0.5625 +0.3438 0.375 0.5938 +0.3438 0.375 0.625 +0.3438 0.375 0.6562 +0.3438 0.375 0.6875 +0.3438 0.375 0.7188 +0.3438 0.375 0.75 +0.3438 0.375 0.7812 +0.3438 0.375 0.8125 +0.3438 0.375 0.8438 +0.3438 0.375 0.875 +0.3438 0.375 0.9062 +0.3438 0.375 0.9375 +0.3438 0.375 0.9688 +0.3438 0.375 1 +0.3438 0.4062 0 +0.3438 0.4062 0.03125 +0.3438 0.4062 0.0625 +0.3438 0.4062 0.09375 +0.3438 0.4062 0.125 +0.3438 0.4062 0.1562 +0.3438 0.4062 0.1875 +0.3438 0.4062 0.2188 +0.3438 0.4062 0.25 +0.3438 0.4062 0.2812 +0.3438 0.4062 0.3125 +0.3438 0.4062 0.3438 +0.3438 0.4062 0.375 +0.3438 0.4062 0.4062 +0.3438 0.4062 0.4375 +0.3438 0.4062 0.4688 +0.3438 0.4062 0.5 +0.3438 0.4062 0.5312 +0.3438 0.4062 0.5625 +0.3438 0.4062 0.5938 +0.3438 0.4062 0.625 +0.3438 0.4062 0.6562 +0.3438 0.4062 0.6875 +0.3438 0.4062 0.7188 +0.3438 0.4062 0.75 +0.3438 0.4062 0.7812 +0.3438 0.4062 0.8125 +0.3438 0.4062 0.8438 +0.3438 0.4062 0.875 +0.3438 0.4062 0.9062 +0.3438 0.4062 0.9375 +0.3438 0.4062 0.9688 +0.3438 0.4062 1 +0.3438 0.4375 0 +0.3438 0.4375 0.03125 +0.3438 0.4375 0.0625 +0.3438 0.4375 0.09375 +0.3438 0.4375 0.125 +0.3438 0.4375 0.1562 +0.3438 0.4375 0.1875 +0.3438 0.4375 0.2188 +0.3438 0.4375 0.25 +0.3438 0.4375 0.2812 +0.3438 0.4375 0.3125 +0.3438 0.4375 0.3438 +0.3438 0.4375 0.375 +0.3438 0.4375 0.4062 +0.3438 0.4375 0.4375 +0.3438 0.4375 0.4688 +0.3438 0.4375 0.5 +0.3438 0.4375 0.5312 +0.3438 0.4375 0.5625 +0.3438 0.4375 0.5938 +0.3438 0.4375 0.625 +0.3438 0.4375 0.6562 +0.3438 0.4375 0.6875 +0.3438 0.4375 0.7188 +0.3438 0.4375 0.75 +0.3438 0.4375 0.7812 +0.3438 0.4375 0.8125 +0.3438 0.4375 0.8438 +0.3438 0.4375 0.875 +0.3438 0.4375 0.9062 +0.3438 0.4375 0.9375 +0.3438 0.4375 0.9688 +0.3438 0.4375 1 +0.3438 0.4688 0 +0.3438 0.4688 0.03125 +0.3438 0.4688 0.0625 +0.3438 0.4688 0.09375 +0.3438 0.4688 0.125 +0.3438 0.4688 0.1562 +0.3438 0.4688 0.1875 +0.3438 0.4688 0.2188 +0.3438 0.4688 0.25 +0.3438 0.4688 0.2812 +0.3438 0.4688 0.3125 +0.3438 0.4688 0.3438 +0.3438 0.4688 0.375 +0.3438 0.4688 0.4062 +0.3438 0.4688 0.4375 +0.3438 0.4688 0.4688 +0.3438 0.4688 0.5 +0.3438 0.4688 0.5312 +0.3438 0.4688 0.5625 +0.3438 0.4688 0.5938 +0.3438 0.4688 0.625 +0.3438 0.4688 0.6562 +0.3438 0.4688 0.6875 +0.3438 0.4688 0.7188 +0.3438 0.4688 0.75 +0.3438 0.4688 0.7812 +0.3438 0.4688 0.8125 +0.3438 0.4688 0.8438 +0.3438 0.4688 0.875 +0.3438 0.4688 0.9062 +0.3438 0.4688 0.9375 +0.3438 0.4688 0.9688 +0.3438 0.4688 1 +0.3438 0.5 0 +0.3438 0.5 0.03125 +0.3438 0.5 0.0625 +0.3438 0.5 0.09375 +0.3438 0.5 0.125 +0.3438 0.5 0.1562 +0.3438 0.5 0.1875 +0.3438 0.5 0.2188 +0.3438 0.5 0.25 +0.3438 0.5 0.2812 +0.3438 0.5 0.3125 +0.3438 0.5 0.3438 +0.3438 0.5 0.375 +0.3438 0.5 0.4062 +0.3438 0.5 0.4375 +0.3438 0.5 0.4688 +0.3438 0.5 0.5 +0.3438 0.5 0.5312 +0.3438 0.5 0.5625 +0.3438 0.5 0.5938 +0.3438 0.5 0.625 +0.3438 0.5 0.6562 +0.3438 0.5 0.6875 +0.3438 0.5 0.7188 +0.3438 0.5 0.75 +0.3438 0.5 0.7812 +0.3438 0.5 0.8125 +0.3438 0.5 0.8438 +0.3438 0.5 0.875 +0.3438 0.5 0.9062 +0.3438 0.5 0.9375 +0.3438 0.5 0.9688 +0.3438 0.5 1 +0.3438 0.5312 0 +0.3438 0.5312 0.03125 +0.3438 0.5312 0.0625 +0.3438 0.5312 0.09375 +0.3438 0.5312 0.125 +0.3438 0.5312 0.1562 +0.3438 0.5312 0.1875 +0.3438 0.5312 0.2188 +0.3438 0.5312 0.25 +0.3438 0.5312 0.2812 +0.3438 0.5312 0.3125 +0.3438 0.5312 0.3438 +0.3438 0.5312 0.375 +0.3438 0.5312 0.4062 +0.3438 0.5312 0.4375 +0.3438 0.5312 0.4688 +0.3438 0.5312 0.5 +0.3438 0.5312 0.5312 +0.3438 0.5312 0.5625 +0.3438 0.5312 0.5938 +0.3438 0.5312 0.625 +0.3438 0.5312 0.6562 +0.3438 0.5312 0.6875 +0.3438 0.5312 0.7188 +0.3438 0.5312 0.75 +0.3438 0.5312 0.7812 +0.3438 0.5312 0.8125 +0.3438 0.5312 0.8438 +0.3438 0.5312 0.875 +0.3438 0.5312 0.9062 +0.3438 0.5312 0.9375 +0.3438 0.5312 0.9688 +0.3438 0.5312 1 +0.3438 0.5625 0 +0.3438 0.5625 0.03125 +0.3438 0.5625 0.0625 +0.3438 0.5625 0.09375 +0.3438 0.5625 0.125 +0.3438 0.5625 0.1562 +0.3438 0.5625 0.1875 +0.3438 0.5625 0.2188 +0.3438 0.5625 0.25 +0.3438 0.5625 0.2812 +0.3438 0.5625 0.3125 +0.3438 0.5625 0.3438 +0.3438 0.5625 0.375 +0.3438 0.5625 0.4062 +0.3438 0.5625 0.4375 +0.3438 0.5625 0.4688 +0.3438 0.5625 0.5 +0.3438 0.5625 0.5312 +0.3438 0.5625 0.5625 +0.3438 0.5625 0.5938 +0.3438 0.5625 0.625 +0.3438 0.5625 0.6562 +0.3438 0.5625 0.6875 +0.3438 0.5625 0.7188 +0.3438 0.5625 0.75 +0.3438 0.5625 0.7812 +0.3438 0.5625 0.8125 +0.3438 0.5625 0.8438 +0.3438 0.5625 0.875 +0.3438 0.5625 0.9062 +0.3438 0.5625 0.9375 +0.3438 0.5625 0.9688 +0.3438 0.5625 1 +0.3438 0.5938 0 +0.3438 0.5938 0.03125 +0.3438 0.5938 0.0625 +0.3438 0.5938 0.09375 +0.3438 0.5938 0.125 +0.3438 0.5938 0.1562 +0.3438 0.5938 0.1875 +0.3438 0.5938 0.2188 +0.3438 0.5938 0.25 +0.3438 0.5938 0.2812 +0.3438 0.5938 0.3125 +0.3438 0.5938 0.3438 +0.3438 0.5938 0.375 +0.3438 0.5938 0.4062 +0.3438 0.5938 0.4375 +0.3438 0.5938 0.4688 +0.3438 0.5938 0.5 +0.3438 0.5938 0.5312 +0.3438 0.5938 0.5625 +0.3438 0.5938 0.5938 +0.3438 0.5938 0.625 +0.3438 0.5938 0.6562 +0.3438 0.5938 0.6875 +0.3438 0.5938 0.7188 +0.3438 0.5938 0.75 +0.3438 0.5938 0.7812 +0.3438 0.5938 0.8125 +0.3438 0.5938 0.8438 +0.3438 0.5938 0.875 +0.3438 0.5938 0.9062 +0.3438 0.5938 0.9375 +0.3438 0.5938 0.9688 +0.3438 0.5938 1 +0.3438 0.625 0 +0.3438 0.625 0.03125 +0.3438 0.625 0.0625 +0.3438 0.625 0.09375 +0.3438 0.625 0.125 +0.3438 0.625 0.1562 +0.3438 0.625 0.1875 +0.3438 0.625 0.2188 +0.3438 0.625 0.25 +0.3438 0.625 0.2812 +0.3438 0.625 0.3125 +0.3438 0.625 0.3438 +0.3438 0.625 0.375 +0.3438 0.625 0.4062 +0.3438 0.625 0.4375 +0.3438 0.625 0.4688 +0.3438 0.625 0.5 +0.3438 0.625 0.5312 +0.3438 0.625 0.5625 +0.3438 0.625 0.5938 +0.3438 0.625 0.625 +0.3438 0.625 0.6562 +0.3438 0.625 0.6875 +0.3438 0.625 0.7188 +0.3438 0.625 0.75 +0.3438 0.625 0.7812 +0.3438 0.625 0.8125 +0.3438 0.625 0.8438 +0.3438 0.625 0.875 +0.3438 0.625 0.9062 +0.3438 0.625 0.9375 +0.3438 0.625 0.9688 +0.3438 0.625 1 +0.3438 0.6562 0 +0.3438 0.6562 0.03125 +0.3438 0.6562 0.0625 +0.3438 0.6562 0.09375 +0.3438 0.6562 0.125 +0.3438 0.6562 0.1562 +0.3438 0.6562 0.1875 +0.3438 0.6562 0.2188 +0.3438 0.6562 0.25 +0.3438 0.6562 0.2812 +0.3438 0.6562 0.3125 +0.3438 0.6562 0.3438 +0.3438 0.6562 0.375 +0.3438 0.6562 0.4062 +0.3438 0.6562 0.4375 +0.3438 0.6562 0.4688 +0.3438 0.6562 0.5 +0.3438 0.6562 0.5312 +0.3438 0.6562 0.5625 +0.3438 0.6562 0.5938 +0.3438 0.6562 0.625 +0.3438 0.6562 0.6562 +0.3438 0.6562 0.6875 +0.3438 0.6562 0.7188 +0.3438 0.6562 0.75 +0.3438 0.6562 0.7812 +0.3438 0.6562 0.8125 +0.3438 0.6562 0.8438 +0.3438 0.6562 0.875 +0.3438 0.6562 0.9062 +0.3438 0.6562 0.9375 +0.3438 0.6562 0.9688 +0.3438 0.6562 1 +0.3438 0.6875 0 +0.3438 0.6875 0.03125 +0.3438 0.6875 0.0625 +0.3438 0.6875 0.09375 +0.3438 0.6875 0.125 +0.3438 0.6875 0.1562 +0.3438 0.6875 0.1875 +0.3438 0.6875 0.2188 +0.3438 0.6875 0.25 +0.3438 0.6875 0.2812 +0.3438 0.6875 0.3125 +0.3438 0.6875 0.3438 +0.3438 0.6875 0.375 +0.3438 0.6875 0.4062 +0.3438 0.6875 0.4375 +0.3438 0.6875 0.4688 +0.3438 0.6875 0.5 +0.3438 0.6875 0.5312 +0.3438 0.6875 0.5625 +0.3438 0.6875 0.5938 +0.3438 0.6875 0.625 +0.3438 0.6875 0.6562 +0.3438 0.6875 0.6875 +0.3438 0.6875 0.7188 +0.3438 0.6875 0.75 +0.3438 0.6875 0.7812 +0.3438 0.6875 0.8125 +0.3438 0.6875 0.8438 +0.3438 0.6875 0.875 +0.3438 0.6875 0.9062 +0.3438 0.6875 0.9375 +0.3438 0.6875 0.9688 +0.3438 0.6875 1 +0.3438 0.7188 0 +0.3438 0.7188 0.03125 +0.3438 0.7188 0.0625 +0.3438 0.7188 0.09375 +0.3438 0.7188 0.125 +0.3438 0.7188 0.1562 +0.3438 0.7188 0.1875 +0.3438 0.7188 0.2188 +0.3438 0.7188 0.25 +0.3438 0.7188 0.2812 +0.3438 0.7188 0.3125 +0.3438 0.7188 0.3438 +0.3438 0.7188 0.375 +0.3438 0.7188 0.4062 +0.3438 0.7188 0.4375 +0.3438 0.7188 0.4688 +0.3438 0.7188 0.5 +0.3438 0.7188 0.5312 +0.3438 0.7188 0.5625 +0.3438 0.7188 0.5938 +0.3438 0.7188 0.625 +0.3438 0.7188 0.6562 +0.3438 0.7188 0.6875 +0.3438 0.7188 0.7188 +0.3438 0.7188 0.75 +0.3438 0.7188 0.7812 +0.3438 0.7188 0.8125 +0.3438 0.7188 0.8438 +0.3438 0.7188 0.875 +0.3438 0.7188 0.9062 +0.3438 0.7188 0.9375 +0.3438 0.7188 0.9688 +0.3438 0.7188 1 +0.3438 0.75 0 +0.3438 0.75 0.03125 +0.3438 0.75 0.0625 +0.3438 0.75 0.09375 +0.3438 0.75 0.125 +0.3438 0.75 0.1562 +0.3438 0.75 0.1875 +0.3438 0.75 0.2188 +0.3438 0.75 0.25 +0.3438 0.75 0.2812 +0.3438 0.75 0.3125 +0.3438 0.75 0.3438 +0.3438 0.75 0.375 +0.3438 0.75 0.4062 +0.3438 0.75 0.4375 +0.3438 0.75 0.4688 +0.3438 0.75 0.5 +0.3438 0.75 0.5312 +0.3438 0.75 0.5625 +0.3438 0.75 0.5938 +0.3438 0.75 0.625 +0.3438 0.75 0.6562 +0.3438 0.75 0.6875 +0.3438 0.75 0.7188 +0.3438 0.75 0.75 +0.3438 0.75 0.7812 +0.3438 0.75 0.8125 +0.3438 0.75 0.8438 +0.3438 0.75 0.875 +0.3438 0.75 0.9062 +0.3438 0.75 0.9375 +0.3438 0.75 0.9688 +0.3438 0.75 1 +0.3438 0.7812 0 +0.3438 0.7812 0.03125 +0.3438 0.7812 0.0625 +0.3438 0.7812 0.09375 +0.3438 0.7812 0.125 +0.3438 0.7812 0.1562 +0.3438 0.7812 0.1875 +0.3438 0.7812 0.2188 +0.3438 0.7812 0.25 +0.3438 0.7812 0.2812 +0.3438 0.7812 0.3125 +0.3438 0.7812 0.3438 +0.3438 0.7812 0.375 +0.3438 0.7812 0.4062 +0.3438 0.7812 0.4375 +0.3438 0.7812 0.4688 +0.3438 0.7812 0.5 +0.3438 0.7812 0.5312 +0.3438 0.7812 0.5625 +0.3438 0.7812 0.5938 +0.3438 0.7812 0.625 +0.3438 0.7812 0.6562 +0.3438 0.7812 0.6875 +0.3438 0.7812 0.7188 +0.3438 0.7812 0.75 +0.3438 0.7812 0.7812 +0.3438 0.7812 0.8125 +0.3438 0.7812 0.8438 +0.3438 0.7812 0.875 +0.3438 0.7812 0.9062 +0.3438 0.7812 0.9375 +0.3438 0.7812 0.9688 +0.3438 0.7812 1 +0.3438 0.8125 0 +0.3438 0.8125 0.03125 +0.3438 0.8125 0.0625 +0.3438 0.8125 0.09375 +0.3438 0.8125 0.125 +0.3438 0.8125 0.1562 +0.3438 0.8125 0.1875 +0.3438 0.8125 0.2188 +0.3438 0.8125 0.25 +0.3438 0.8125 0.2812 +0.3438 0.8125 0.3125 +0.3438 0.8125 0.3438 +0.3438 0.8125 0.375 +0.3438 0.8125 0.4062 +0.3438 0.8125 0.4375 +0.3438 0.8125 0.4688 +0.3438 0.8125 0.5 +0.3438 0.8125 0.5312 +0.3438 0.8125 0.5625 +0.3438 0.8125 0.5938 +0.3438 0.8125 0.625 +0.3438 0.8125 0.6562 +0.3438 0.8125 0.6875 +0.3438 0.8125 0.7188 +0.3438 0.8125 0.75 +0.3438 0.8125 0.7812 +0.3438 0.8125 0.8125 +0.3438 0.8125 0.8438 +0.3438 0.8125 0.875 +0.3438 0.8125 0.9062 +0.3438 0.8125 0.9375 +0.3438 0.8125 0.9688 +0.3438 0.8125 1 +0.3438 0.8438 0 +0.3438 0.8438 0.03125 +0.3438 0.8438 0.0625 +0.3438 0.8438 0.09375 +0.3438 0.8438 0.125 +0.3438 0.8438 0.1562 +0.3438 0.8438 0.1875 +0.3438 0.8438 0.2188 +0.3438 0.8438 0.25 +0.3438 0.8438 0.2812 +0.3438 0.8438 0.3125 +0.3438 0.8438 0.3438 +0.3438 0.8438 0.375 +0.3438 0.8438 0.4062 +0.3438 0.8438 0.4375 +0.3438 0.8438 0.4688 +0.3438 0.8438 0.5 +0.3438 0.8438 0.5312 +0.3438 0.8438 0.5625 +0.3438 0.8438 0.5938 +0.3438 0.8438 0.625 +0.3438 0.8438 0.6562 +0.3438 0.8438 0.6875 +0.3438 0.8438 0.7188 +0.3438 0.8438 0.75 +0.3438 0.8438 0.7812 +0.3438 0.8438 0.8125 +0.3438 0.8438 0.8438 +0.3438 0.8438 0.875 +0.3438 0.8438 0.9062 +0.3438 0.8438 0.9375 +0.3438 0.8438 0.9688 +0.3438 0.8438 1 +0.3438 0.875 0 +0.3438 0.875 0.03125 +0.3438 0.875 0.0625 +0.3438 0.875 0.09375 +0.3438 0.875 0.125 +0.3438 0.875 0.1562 +0.3438 0.875 0.1875 +0.3438 0.875 0.2188 +0.3438 0.875 0.25 +0.3438 0.875 0.2812 +0.3438 0.875 0.3125 +0.3438 0.875 0.3438 +0.3438 0.875 0.375 +0.3438 0.875 0.4062 +0.3438 0.875 0.4375 +0.3438 0.875 0.4688 +0.3438 0.875 0.5 +0.3438 0.875 0.5312 +0.3438 0.875 0.5625 +0.3438 0.875 0.5938 +0.3438 0.875 0.625 +0.3438 0.875 0.6562 +0.3438 0.875 0.6875 +0.3438 0.875 0.7188 +0.3438 0.875 0.75 +0.3438 0.875 0.7812 +0.3438 0.875 0.8125 +0.3438 0.875 0.8438 +0.3438 0.875 0.875 +0.3438 0.875 0.9062 +0.3438 0.875 0.9375 +0.3438 0.875 0.9688 +0.3438 0.875 1 +0.3438 0.9062 0 +0.3438 0.9062 0.03125 +0.3438 0.9062 0.0625 +0.3438 0.9062 0.09375 +0.3438 0.9062 0.125 +0.3438 0.9062 0.1562 +0.3438 0.9062 0.1875 +0.3438 0.9062 0.2188 +0.3438 0.9062 0.25 +0.3438 0.9062 0.2812 +0.3438 0.9062 0.3125 +0.3438 0.9062 0.3438 +0.3438 0.9062 0.375 +0.3438 0.9062 0.4062 +0.3438 0.9062 0.4375 +0.3438 0.9062 0.4688 +0.3438 0.9062 0.5 +0.3438 0.9062 0.5312 +0.3438 0.9062 0.5625 +0.3438 0.9062 0.5938 +0.3438 0.9062 0.625 +0.3438 0.9062 0.6562 +0.3438 0.9062 0.6875 +0.3438 0.9062 0.7188 +0.3438 0.9062 0.75 +0.3438 0.9062 0.7812 +0.3438 0.9062 0.8125 +0.3438 0.9062 0.8438 +0.3438 0.9062 0.875 +0.3438 0.9062 0.9062 +0.3438 0.9062 0.9375 +0.3438 0.9062 0.9688 +0.3438 0.9062 1 +0.3438 0.9375 0 +0.3438 0.9375 0.03125 +0.3438 0.9375 0.0625 +0.3438 0.9375 0.09375 +0.3438 0.9375 0.125 +0.3438 0.9375 0.1562 +0.3438 0.9375 0.1875 +0.3438 0.9375 0.2188 +0.3438 0.9375 0.25 +0.3438 0.9375 0.2812 +0.3438 0.9375 0.3125 +0.3438 0.9375 0.3438 +0.3438 0.9375 0.375 +0.3438 0.9375 0.4062 +0.3438 0.9375 0.4375 +0.3438 0.9375 0.4688 +0.3438 0.9375 0.5 +0.3438 0.9375 0.5312 +0.3438 0.9375 0.5625 +0.3438 0.9375 0.5938 +0.3438 0.9375 0.625 +0.3438 0.9375 0.6562 +0.3438 0.9375 0.6875 +0.3438 0.9375 0.7188 +0.3438 0.9375 0.75 +0.3438 0.9375 0.7812 +0.3438 0.9375 0.8125 +0.3438 0.9375 0.8438 +0.3438 0.9375 0.875 +0.3438 0.9375 0.9062 +0.3438 0.9375 0.9375 +0.3438 0.9375 0.9688 +0.3438 0.9375 1 +0.3438 0.9688 0 +0.3438 0.9688 0.03125 +0.3438 0.9688 0.0625 +0.3438 0.9688 0.09375 +0.3438 0.9688 0.125 +0.3438 0.9688 0.1562 +0.3438 0.9688 0.1875 +0.3438 0.9688 0.2188 +0.3438 0.9688 0.25 +0.3438 0.9688 0.2812 +0.3438 0.9688 0.3125 +0.3438 0.9688 0.3438 +0.3438 0.9688 0.375 +0.3438 0.9688 0.4062 +0.3438 0.9688 0.4375 +0.3438 0.9688 0.4688 +0.3438 0.9688 0.5 +0.3438 0.9688 0.5312 +0.3438 0.9688 0.5625 +0.3438 0.9688 0.5938 +0.3438 0.9688 0.625 +0.3438 0.9688 0.6562 +0.3438 0.9688 0.6875 +0.3438 0.9688 0.7188 +0.3438 0.9688 0.75 +0.3438 0.9688 0.7812 +0.3438 0.9688 0.8125 +0.3438 0.9688 0.8438 +0.3438 0.9688 0.875 +0.3438 0.9688 0.9062 +0.3438 0.9688 0.9375 +0.3438 0.9688 0.9688 +0.3438 0.9688 1 +0.3438 1 0 +0.3438 1 0.03125 +0.3438 1 0.0625 +0.3438 1 0.09375 +0.3438 1 0.125 +0.3438 1 0.1562 +0.3438 1 0.1875 +0.3438 1 0.2188 +0.3438 1 0.25 +0.3438 1 0.2812 +0.3438 1 0.3125 +0.3438 1 0.3438 +0.3438 1 0.375 +0.3438 1 0.4062 +0.3438 1 0.4375 +0.3438 1 0.4688 +0.3438 1 0.5 +0.3438 1 0.5312 +0.3438 1 0.5625 +0.3438 1 0.5938 +0.3438 1 0.625 +0.3438 1 0.6562 +0.3438 1 0.6875 +0.3438 1 0.7188 +0.3438 1 0.75 +0.3438 1 0.7812 +0.3438 1 0.8125 +0.3438 1 0.8438 +0.3438 1 0.875 +0.3438 1 0.9062 +0.3438 1 0.9375 +0.3438 1 0.9688 +0.3438 1 1 +0.375 0 0 +0.375 0 0.03125 +0.375 0 0.0625 +0.375 0 0.09375 +0.375 0 0.125 +0.375 0 0.1562 +0.375 0 0.1875 +0.375 0 0.2188 +0.375 0 0.25 +0.375 0 0.2812 +0.375 0 0.3125 +0.375 0 0.3438 +0.375 0 0.375 +0.375 0 0.4062 +0.375 0 0.4375 +0.375 0 0.4688 +0.375 0 0.5 +0.375 0 0.5312 +0.375 0 0.5625 +0.375 0 0.5938 +0.375 0 0.625 +0.375 0 0.6562 +0.375 0 0.6875 +0.375 0 0.7188 +0.375 0 0.75 +0.375 0 0.7812 +0.375 0 0.8125 +0.375 0 0.8438 +0.375 0 0.875 +0.375 0 0.9062 +0.375 0 0.9375 +0.375 0 0.9688 +0.375 0 1 +0.375 0.03125 0 +0.375 0.03125 0.03125 +0.375 0.03125 0.0625 +0.375 0.03125 0.09375 +0.375 0.03125 0.125 +0.375 0.03125 0.1562 +0.375 0.03125 0.1875 +0.375 0.03125 0.2188 +0.375 0.03125 0.25 +0.375 0.03125 0.2812 +0.375 0.03125 0.3125 +0.375 0.03125 0.3438 +0.375 0.03125 0.375 +0.375 0.03125 0.4062 +0.375 0.03125 0.4375 +0.375 0.03125 0.4688 +0.375 0.03125 0.5 +0.375 0.03125 0.5312 +0.375 0.03125 0.5625 +0.375 0.03125 0.5938 +0.375 0.03125 0.625 +0.375 0.03125 0.6562 +0.375 0.03125 0.6875 +0.375 0.03125 0.7188 +0.375 0.03125 0.75 +0.375 0.03125 0.7812 +0.375 0.03125 0.8125 +0.375 0.03125 0.8438 +0.375 0.03125 0.875 +0.375 0.03125 0.9062 +0.375 0.03125 0.9375 +0.375 0.03125 0.9688 +0.375 0.03125 1 +0.375 0.0625 0 +0.375 0.0625 0.03125 +0.375 0.0625 0.0625 +0.375 0.0625 0.09375 +0.375 0.0625 0.125 +0.375 0.0625 0.1562 +0.375 0.0625 0.1875 +0.375 0.0625 0.2188 +0.375 0.0625 0.25 +0.375 0.0625 0.2812 +0.375 0.0625 0.3125 +0.375 0.0625 0.3438 +0.375 0.0625 0.375 +0.375 0.0625 0.4062 +0.375 0.0625 0.4375 +0.375 0.0625 0.4688 +0.375 0.0625 0.5 +0.375 0.0625 0.5312 +0.375 0.0625 0.5625 +0.375 0.0625 0.5938 +0.375 0.0625 0.625 +0.375 0.0625 0.6562 +0.375 0.0625 0.6875 +0.375 0.0625 0.7188 +0.375 0.0625 0.75 +0.375 0.0625 0.7812 +0.375 0.0625 0.8125 +0.375 0.0625 0.8438 +0.375 0.0625 0.875 +0.375 0.0625 0.9062 +0.375 0.0625 0.9375 +0.375 0.0625 0.9688 +0.375 0.0625 1 +0.375 0.09375 0 +0.375 0.09375 0.03125 +0.375 0.09375 0.0625 +0.375 0.09375 0.09375 +0.375 0.09375 0.125 +0.375 0.09375 0.1562 +0.375 0.09375 0.1875 +0.375 0.09375 0.2188 +0.375 0.09375 0.25 +0.375 0.09375 0.2812 +0.375 0.09375 0.3125 +0.375 0.09375 0.3438 +0.375 0.09375 0.375 +0.375 0.09375 0.4062 +0.375 0.09375 0.4375 +0.375 0.09375 0.4688 +0.375 0.09375 0.5 +0.375 0.09375 0.5312 +0.375 0.09375 0.5625 +0.375 0.09375 0.5938 +0.375 0.09375 0.625 +0.375 0.09375 0.6562 +0.375 0.09375 0.6875 +0.375 0.09375 0.7188 +0.375 0.09375 0.75 +0.375 0.09375 0.7812 +0.375 0.09375 0.8125 +0.375 0.09375 0.8438 +0.375 0.09375 0.875 +0.375 0.09375 0.9062 +0.375 0.09375 0.9375 +0.375 0.09375 0.9688 +0.375 0.09375 1 +0.375 0.125 0 +0.375 0.125 0.03125 +0.375 0.125 0.0625 +0.375 0.125 0.09375 +0.375 0.125 0.125 +0.375 0.125 0.1562 +0.375 0.125 0.1875 +0.375 0.125 0.2188 +0.375 0.125 0.25 +0.375 0.125 0.2812 +0.375 0.125 0.3125 +0.375 0.125 0.3438 +0.375 0.125 0.375 +0.375 0.125 0.4062 +0.375 0.125 0.4375 +0.375 0.125 0.4688 +0.375 0.125 0.5 +0.375 0.125 0.5312 +0.375 0.125 0.5625 +0.375 0.125 0.5938 +0.375 0.125 0.625 +0.375 0.125 0.6562 +0.375 0.125 0.6875 +0.375 0.125 0.7188 +0.375 0.125 0.75 +0.375 0.125 0.7812 +0.375 0.125 0.8125 +0.375 0.125 0.8438 +0.375 0.125 0.875 +0.375 0.125 0.9062 +0.375 0.125 0.9375 +0.375 0.125 0.9688 +0.375 0.125 1 +0.375 0.1562 0 +0.375 0.1562 0.03125 +0.375 0.1562 0.0625 +0.375 0.1562 0.09375 +0.375 0.1562 0.125 +0.375 0.1562 0.1562 +0.375 0.1562 0.1875 +0.375 0.1562 0.2188 +0.375 0.1562 0.25 +0.375 0.1562 0.2812 +0.375 0.1562 0.3125 +0.375 0.1562 0.3438 +0.375 0.1562 0.375 +0.375 0.1562 0.4062 +0.375 0.1562 0.4375 +0.375 0.1562 0.4688 +0.375 0.1562 0.5 +0.375 0.1562 0.5312 +0.375 0.1562 0.5625 +0.375 0.1562 0.5938 +0.375 0.1562 0.625 +0.375 0.1562 0.6562 +0.375 0.1562 0.6875 +0.375 0.1562 0.7188 +0.375 0.1562 0.75 +0.375 0.1562 0.7812 +0.375 0.1562 0.8125 +0.375 0.1562 0.8438 +0.375 0.1562 0.875 +0.375 0.1562 0.9062 +0.375 0.1562 0.9375 +0.375 0.1562 0.9688 +0.375 0.1562 1 +0.375 0.1875 0 +0.375 0.1875 0.03125 +0.375 0.1875 0.0625 +0.375 0.1875 0.09375 +0.375 0.1875 0.125 +0.375 0.1875 0.1562 +0.375 0.1875 0.1875 +0.375 0.1875 0.2188 +0.375 0.1875 0.25 +0.375 0.1875 0.2812 +0.375 0.1875 0.3125 +0.375 0.1875 0.3438 +0.375 0.1875 0.375 +0.375 0.1875 0.4062 +0.375 0.1875 0.4375 +0.375 0.1875 0.4688 +0.375 0.1875 0.5 +0.375 0.1875 0.5312 +0.375 0.1875 0.5625 +0.375 0.1875 0.5938 +0.375 0.1875 0.625 +0.375 0.1875 0.6562 +0.375 0.1875 0.6875 +0.375 0.1875 0.7188 +0.375 0.1875 0.75 +0.375 0.1875 0.7812 +0.375 0.1875 0.8125 +0.375 0.1875 0.8438 +0.375 0.1875 0.875 +0.375 0.1875 0.9062 +0.375 0.1875 0.9375 +0.375 0.1875 0.9688 +0.375 0.1875 1 +0.375 0.2188 0 +0.375 0.2188 0.03125 +0.375 0.2188 0.0625 +0.375 0.2188 0.09375 +0.375 0.2188 0.125 +0.375 0.2188 0.1562 +0.375 0.2188 0.1875 +0.375 0.2188 0.2188 +0.375 0.2188 0.25 +0.375 0.2188 0.2812 +0.375 0.2188 0.3125 +0.375 0.2188 0.3438 +0.375 0.2188 0.375 +0.375 0.2188 0.4062 +0.375 0.2188 0.4375 +0.375 0.2188 0.4688 +0.375 0.2188 0.5 +0.375 0.2188 0.5312 +0.375 0.2188 0.5625 +0.375 0.2188 0.5938 +0.375 0.2188 0.625 +0.375 0.2188 0.6562 +0.375 0.2188 0.6875 +0.375 0.2188 0.7188 +0.375 0.2188 0.75 +0.375 0.2188 0.7812 +0.375 0.2188 0.8125 +0.375 0.2188 0.8438 +0.375 0.2188 0.875 +0.375 0.2188 0.9062 +0.375 0.2188 0.9375 +0.375 0.2188 0.9688 +0.375 0.2188 1 +0.375 0.25 0 +0.375 0.25 0.03125 +0.375 0.25 0.0625 +0.375 0.25 0.09375 +0.375 0.25 0.125 +0.375 0.25 0.1562 +0.375 0.25 0.1875 +0.375 0.25 0.2188 +0.375 0.25 0.25 +0.375 0.25 0.2812 +0.375 0.25 0.3125 +0.375 0.25 0.3438 +0.375 0.25 0.375 +0.375 0.25 0.4062 +0.375 0.25 0.4375 +0.375 0.25 0.4688 +0.375 0.25 0.5 +0.375 0.25 0.5312 +0.375 0.25 0.5625 +0.375 0.25 0.5938 +0.375 0.25 0.625 +0.375 0.25 0.6562 +0.375 0.25 0.6875 +0.375 0.25 0.7188 +0.375 0.25 0.75 +0.375 0.25 0.7812 +0.375 0.25 0.8125 +0.375 0.25 0.8438 +0.375 0.25 0.875 +0.375 0.25 0.9062 +0.375 0.25 0.9375 +0.375 0.25 0.9688 +0.375 0.25 1 +0.375 0.2812 0 +0.375 0.2812 0.03125 +0.375 0.2812 0.0625 +0.375 0.2812 0.09375 +0.375 0.2812 0.125 +0.375 0.2812 0.1562 +0.375 0.2812 0.1875 +0.375 0.2812 0.2188 +0.375 0.2812 0.25 +0.375 0.2812 0.2812 +0.375 0.2812 0.3125 +0.375 0.2812 0.3438 +0.375 0.2812 0.375 +0.375 0.2812 0.4062 +0.375 0.2812 0.4375 +0.375 0.2812 0.4688 +0.375 0.2812 0.5 +0.375 0.2812 0.5312 +0.375 0.2812 0.5625 +0.375 0.2812 0.5938 +0.375 0.2812 0.625 +0.375 0.2812 0.6562 +0.375 0.2812 0.6875 +0.375 0.2812 0.7188 +0.375 0.2812 0.75 +0.375 0.2812 0.7812 +0.375 0.2812 0.8125 +0.375 0.2812 0.8438 +0.375 0.2812 0.875 +0.375 0.2812 0.9062 +0.375 0.2812 0.9375 +0.375 0.2812 0.9688 +0.375 0.2812 1 +0.375 0.3125 0 +0.375 0.3125 0.03125 +0.375 0.3125 0.0625 +0.375 0.3125 0.09375 +0.375 0.3125 0.125 +0.375 0.3125 0.1562 +0.375 0.3125 0.1875 +0.375 0.3125 0.2188 +0.375 0.3125 0.25 +0.375 0.3125 0.2812 +0.375 0.3125 0.3125 +0.375 0.3125 0.3438 +0.375 0.3125 0.375 +0.375 0.3125 0.4062 +0.375 0.3125 0.4375 +0.375 0.3125 0.4688 +0.375 0.3125 0.5 +0.375 0.3125 0.5312 +0.375 0.3125 0.5625 +0.375 0.3125 0.5938 +0.375 0.3125 0.625 +0.375 0.3125 0.6562 +0.375 0.3125 0.6875 +0.375 0.3125 0.7188 +0.375 0.3125 0.75 +0.375 0.3125 0.7812 +0.375 0.3125 0.8125 +0.375 0.3125 0.8438 +0.375 0.3125 0.875 +0.375 0.3125 0.9062 +0.375 0.3125 0.9375 +0.375 0.3125 0.9688 +0.375 0.3125 1 +0.375 0.3438 0 +0.375 0.3438 0.03125 +0.375 0.3438 0.0625 +0.375 0.3438 0.09375 +0.375 0.3438 0.125 +0.375 0.3438 0.1562 +0.375 0.3438 0.1875 +0.375 0.3438 0.2188 +0.375 0.3438 0.25 +0.375 0.3438 0.2812 +0.375 0.3438 0.3125 +0.375 0.3438 0.3438 +0.375 0.3438 0.375 +0.375 0.3438 0.4062 +0.375 0.3438 0.4375 +0.375 0.3438 0.4688 +0.375 0.3438 0.5 +0.375 0.3438 0.5312 +0.375 0.3438 0.5625 +0.375 0.3438 0.5938 +0.375 0.3438 0.625 +0.375 0.3438 0.6562 +0.375 0.3438 0.6875 +0.375 0.3438 0.7188 +0.375 0.3438 0.75 +0.375 0.3438 0.7812 +0.375 0.3438 0.8125 +0.375 0.3438 0.8438 +0.375 0.3438 0.875 +0.375 0.3438 0.9062 +0.375 0.3438 0.9375 +0.375 0.3438 0.9688 +0.375 0.3438 1 +0.375 0.375 0 +0.375 0.375 0.03125 +0.375 0.375 0.0625 +0.375 0.375 0.09375 +0.375 0.375 0.125 +0.375 0.375 0.1562 +0.375 0.375 0.1875 +0.375 0.375 0.2188 +0.375 0.375 0.25 +0.375 0.375 0.2812 +0.375 0.375 0.3125 +0.375 0.375 0.3438 +0.375 0.375 0.375 +0.375 0.375 0.4062 +0.375 0.375 0.4375 +0.375 0.375 0.4688 +0.375 0.375 0.5 +0.375 0.375 0.5312 +0.375 0.375 0.5625 +0.375 0.375 0.5938 +0.375 0.375 0.625 +0.375 0.375 0.6562 +0.375 0.375 0.6875 +0.375 0.375 0.7188 +0.375 0.375 0.75 +0.375 0.375 0.7812 +0.375 0.375 0.8125 +0.375 0.375 0.8438 +0.375 0.375 0.875 +0.375 0.375 0.9062 +0.375 0.375 0.9375 +0.375 0.375 0.9688 +0.375 0.375 1 +0.375 0.4062 0 +0.375 0.4062 0.03125 +0.375 0.4062 0.0625 +0.375 0.4062 0.09375 +0.375 0.4062 0.125 +0.375 0.4062 0.1562 +0.375 0.4062 0.1875 +0.375 0.4062 0.2188 +0.375 0.4062 0.25 +0.375 0.4062 0.2812 +0.375 0.4062 0.3125 +0.375 0.4062 0.3438 +0.375 0.4062 0.375 +0.375 0.4062 0.4062 +0.375 0.4062 0.4375 +0.375 0.4062 0.4688 +0.375 0.4062 0.5 +0.375 0.4062 0.5312 +0.375 0.4062 0.5625 +0.375 0.4062 0.5938 +0.375 0.4062 0.625 +0.375 0.4062 0.6562 +0.375 0.4062 0.6875 +0.375 0.4062 0.7188 +0.375 0.4062 0.75 +0.375 0.4062 0.7812 +0.375 0.4062 0.8125 +0.375 0.4062 0.8438 +0.375 0.4062 0.875 +0.375 0.4062 0.9062 +0.375 0.4062 0.9375 +0.375 0.4062 0.9688 +0.375 0.4062 1 +0.375 0.4375 0 +0.375 0.4375 0.03125 +0.375 0.4375 0.0625 +0.375 0.4375 0.09375 +0.375 0.4375 0.125 +0.375 0.4375 0.1562 +0.375 0.4375 0.1875 +0.375 0.4375 0.2188 +0.375 0.4375 0.25 +0.375 0.4375 0.2812 +0.375 0.4375 0.3125 +0.375 0.4375 0.3438 +0.375 0.4375 0.375 +0.375 0.4375 0.4062 +0.375 0.4375 0.4375 +0.375 0.4375 0.4688 +0.375 0.4375 0.5 +0.375 0.4375 0.5312 +0.375 0.4375 0.5625 +0.375 0.4375 0.5938 +0.375 0.4375 0.625 +0.375 0.4375 0.6562 +0.375 0.4375 0.6875 +0.375 0.4375 0.7188 +0.375 0.4375 0.75 +0.375 0.4375 0.7812 +0.375 0.4375 0.8125 +0.375 0.4375 0.8438 +0.375 0.4375 0.875 +0.375 0.4375 0.9062 +0.375 0.4375 0.9375 +0.375 0.4375 0.9688 +0.375 0.4375 1 +0.375 0.4688 0 +0.375 0.4688 0.03125 +0.375 0.4688 0.0625 +0.375 0.4688 0.09375 +0.375 0.4688 0.125 +0.375 0.4688 0.1562 +0.375 0.4688 0.1875 +0.375 0.4688 0.2188 +0.375 0.4688 0.25 +0.375 0.4688 0.2812 +0.375 0.4688 0.3125 +0.375 0.4688 0.3438 +0.375 0.4688 0.375 +0.375 0.4688 0.4062 +0.375 0.4688 0.4375 +0.375 0.4688 0.4688 +0.375 0.4688 0.5 +0.375 0.4688 0.5312 +0.375 0.4688 0.5625 +0.375 0.4688 0.5938 +0.375 0.4688 0.625 +0.375 0.4688 0.6562 +0.375 0.4688 0.6875 +0.375 0.4688 0.7188 +0.375 0.4688 0.75 +0.375 0.4688 0.7812 +0.375 0.4688 0.8125 +0.375 0.4688 0.8438 +0.375 0.4688 0.875 +0.375 0.4688 0.9062 +0.375 0.4688 0.9375 +0.375 0.4688 0.9688 +0.375 0.4688 1 +0.375 0.5 0 +0.375 0.5 0.03125 +0.375 0.5 0.0625 +0.375 0.5 0.09375 +0.375 0.5 0.125 +0.375 0.5 0.1562 +0.375 0.5 0.1875 +0.375 0.5 0.2188 +0.375 0.5 0.25 +0.375 0.5 0.2812 +0.375 0.5 0.3125 +0.375 0.5 0.3438 +0.375 0.5 0.375 +0.375 0.5 0.4062 +0.375 0.5 0.4375 +0.375 0.5 0.4688 +0.375 0.5 0.5 +0.375 0.5 0.5312 +0.375 0.5 0.5625 +0.375 0.5 0.5938 +0.375 0.5 0.625 +0.375 0.5 0.6562 +0.375 0.5 0.6875 +0.375 0.5 0.7188 +0.375 0.5 0.75 +0.375 0.5 0.7812 +0.375 0.5 0.8125 +0.375 0.5 0.8438 +0.375 0.5 0.875 +0.375 0.5 0.9062 +0.375 0.5 0.9375 +0.375 0.5 0.9688 +0.375 0.5 1 +0.375 0.5312 0 +0.375 0.5312 0.03125 +0.375 0.5312 0.0625 +0.375 0.5312 0.09375 +0.375 0.5312 0.125 +0.375 0.5312 0.1562 +0.375 0.5312 0.1875 +0.375 0.5312 0.2188 +0.375 0.5312 0.25 +0.375 0.5312 0.2812 +0.375 0.5312 0.3125 +0.375 0.5312 0.3438 +0.375 0.5312 0.375 +0.375 0.5312 0.4062 +0.375 0.5312 0.4375 +0.375 0.5312 0.4688 +0.375 0.5312 0.5 +0.375 0.5312 0.5312 +0.375 0.5312 0.5625 +0.375 0.5312 0.5938 +0.375 0.5312 0.625 +0.375 0.5312 0.6562 +0.375 0.5312 0.6875 +0.375 0.5312 0.7188 +0.375 0.5312 0.75 +0.375 0.5312 0.7812 +0.375 0.5312 0.8125 +0.375 0.5312 0.8438 +0.375 0.5312 0.875 +0.375 0.5312 0.9062 +0.375 0.5312 0.9375 +0.375 0.5312 0.9688 +0.375 0.5312 1 +0.375 0.5625 0 +0.375 0.5625 0.03125 +0.375 0.5625 0.0625 +0.375 0.5625 0.09375 +0.375 0.5625 0.125 +0.375 0.5625 0.1562 +0.375 0.5625 0.1875 +0.375 0.5625 0.2188 +0.375 0.5625 0.25 +0.375 0.5625 0.2812 +0.375 0.5625 0.3125 +0.375 0.5625 0.3438 +0.375 0.5625 0.375 +0.375 0.5625 0.4062 +0.375 0.5625 0.4375 +0.375 0.5625 0.4688 +0.375 0.5625 0.5 +0.375 0.5625 0.5312 +0.375 0.5625 0.5625 +0.375 0.5625 0.5938 +0.375 0.5625 0.625 +0.375 0.5625 0.6562 +0.375 0.5625 0.6875 +0.375 0.5625 0.7188 +0.375 0.5625 0.75 +0.375 0.5625 0.7812 +0.375 0.5625 0.8125 +0.375 0.5625 0.8438 +0.375 0.5625 0.875 +0.375 0.5625 0.9062 +0.375 0.5625 0.9375 +0.375 0.5625 0.9688 +0.375 0.5625 1 +0.375 0.5938 0 +0.375 0.5938 0.03125 +0.375 0.5938 0.0625 +0.375 0.5938 0.09375 +0.375 0.5938 0.125 +0.375 0.5938 0.1562 +0.375 0.5938 0.1875 +0.375 0.5938 0.2188 +0.375 0.5938 0.25 +0.375 0.5938 0.2812 +0.375 0.5938 0.3125 +0.375 0.5938 0.3438 +0.375 0.5938 0.375 +0.375 0.5938 0.4062 +0.375 0.5938 0.4375 +0.375 0.5938 0.4688 +0.375 0.5938 0.5 +0.375 0.5938 0.5312 +0.375 0.5938 0.5625 +0.375 0.5938 0.5938 +0.375 0.5938 0.625 +0.375 0.5938 0.6562 +0.375 0.5938 0.6875 +0.375 0.5938 0.7188 +0.375 0.5938 0.75 +0.375 0.5938 0.7812 +0.375 0.5938 0.8125 +0.375 0.5938 0.8438 +0.375 0.5938 0.875 +0.375 0.5938 0.9062 +0.375 0.5938 0.9375 +0.375 0.5938 0.9688 +0.375 0.5938 1 +0.375 0.625 0 +0.375 0.625 0.03125 +0.375 0.625 0.0625 +0.375 0.625 0.09375 +0.375 0.625 0.125 +0.375 0.625 0.1562 +0.375 0.625 0.1875 +0.375 0.625 0.2188 +0.375 0.625 0.25 +0.375 0.625 0.2812 +0.375 0.625 0.3125 +0.375 0.625 0.3438 +0.375 0.625 0.375 +0.375 0.625 0.4062 +0.375 0.625 0.4375 +0.375 0.625 0.4688 +0.375 0.625 0.5 +0.375 0.625 0.5312 +0.375 0.625 0.5625 +0.375 0.625 0.5938 +0.375 0.625 0.625 +0.375 0.625 0.6562 +0.375 0.625 0.6875 +0.375 0.625 0.7188 +0.375 0.625 0.75 +0.375 0.625 0.7812 +0.375 0.625 0.8125 +0.375 0.625 0.8438 +0.375 0.625 0.875 +0.375 0.625 0.9062 +0.375 0.625 0.9375 +0.375 0.625 0.9688 +0.375 0.625 1 +0.375 0.6562 0 +0.375 0.6562 0.03125 +0.375 0.6562 0.0625 +0.375 0.6562 0.09375 +0.375 0.6562 0.125 +0.375 0.6562 0.1562 +0.375 0.6562 0.1875 +0.375 0.6562 0.2188 +0.375 0.6562 0.25 +0.375 0.6562 0.2812 +0.375 0.6562 0.3125 +0.375 0.6562 0.3438 +0.375 0.6562 0.375 +0.375 0.6562 0.4062 +0.375 0.6562 0.4375 +0.375 0.6562 0.4688 +0.375 0.6562 0.5 +0.375 0.6562 0.5312 +0.375 0.6562 0.5625 +0.375 0.6562 0.5938 +0.375 0.6562 0.625 +0.375 0.6562 0.6562 +0.375 0.6562 0.6875 +0.375 0.6562 0.7188 +0.375 0.6562 0.75 +0.375 0.6562 0.7812 +0.375 0.6562 0.8125 +0.375 0.6562 0.8438 +0.375 0.6562 0.875 +0.375 0.6562 0.9062 +0.375 0.6562 0.9375 +0.375 0.6562 0.9688 +0.375 0.6562 1 +0.375 0.6875 0 +0.375 0.6875 0.03125 +0.375 0.6875 0.0625 +0.375 0.6875 0.09375 +0.375 0.6875 0.125 +0.375 0.6875 0.1562 +0.375 0.6875 0.1875 +0.375 0.6875 0.2188 +0.375 0.6875 0.25 +0.375 0.6875 0.2812 +0.375 0.6875 0.3125 +0.375 0.6875 0.3438 +0.375 0.6875 0.375 +0.375 0.6875 0.4062 +0.375 0.6875 0.4375 +0.375 0.6875 0.4688 +0.375 0.6875 0.5 +0.375 0.6875 0.5312 +0.375 0.6875 0.5625 +0.375 0.6875 0.5938 +0.375 0.6875 0.625 +0.375 0.6875 0.6562 +0.375 0.6875 0.6875 +0.375 0.6875 0.7188 +0.375 0.6875 0.75 +0.375 0.6875 0.7812 +0.375 0.6875 0.8125 +0.375 0.6875 0.8438 +0.375 0.6875 0.875 +0.375 0.6875 0.9062 +0.375 0.6875 0.9375 +0.375 0.6875 0.9688 +0.375 0.6875 1 +0.375 0.7188 0 +0.375 0.7188 0.03125 +0.375 0.7188 0.0625 +0.375 0.7188 0.09375 +0.375 0.7188 0.125 +0.375 0.7188 0.1562 +0.375 0.7188 0.1875 +0.375 0.7188 0.2188 +0.375 0.7188 0.25 +0.375 0.7188 0.2812 +0.375 0.7188 0.3125 +0.375 0.7188 0.3438 +0.375 0.7188 0.375 +0.375 0.7188 0.4062 +0.375 0.7188 0.4375 +0.375 0.7188 0.4688 +0.375 0.7188 0.5 +0.375 0.7188 0.5312 +0.375 0.7188 0.5625 +0.375 0.7188 0.5938 +0.375 0.7188 0.625 +0.375 0.7188 0.6562 +0.375 0.7188 0.6875 +0.375 0.7188 0.7188 +0.375 0.7188 0.75 +0.375 0.7188 0.7812 +0.375 0.7188 0.8125 +0.375 0.7188 0.8438 +0.375 0.7188 0.875 +0.375 0.7188 0.9062 +0.375 0.7188 0.9375 +0.375 0.7188 0.9688 +0.375 0.7188 1 +0.375 0.75 0 +0.375 0.75 0.03125 +0.375 0.75 0.0625 +0.375 0.75 0.09375 +0.375 0.75 0.125 +0.375 0.75 0.1562 +0.375 0.75 0.1875 +0.375 0.75 0.2188 +0.375 0.75 0.25 +0.375 0.75 0.2812 +0.375 0.75 0.3125 +0.375 0.75 0.3438 +0.375 0.75 0.375 +0.375 0.75 0.4062 +0.375 0.75 0.4375 +0.375 0.75 0.4688 +0.375 0.75 0.5 +0.375 0.75 0.5312 +0.375 0.75 0.5625 +0.375 0.75 0.5938 +0.375 0.75 0.625 +0.375 0.75 0.6562 +0.375 0.75 0.6875 +0.375 0.75 0.7188 +0.375 0.75 0.75 +0.375 0.75 0.7812 +0.375 0.75 0.8125 +0.375 0.75 0.8438 +0.375 0.75 0.875 +0.375 0.75 0.9062 +0.375 0.75 0.9375 +0.375 0.75 0.9688 +0.375 0.75 1 +0.375 0.7812 0 +0.375 0.7812 0.03125 +0.375 0.7812 0.0625 +0.375 0.7812 0.09375 +0.375 0.7812 0.125 +0.375 0.7812 0.1562 +0.375 0.7812 0.1875 +0.375 0.7812 0.2188 +0.375 0.7812 0.25 +0.375 0.7812 0.2812 +0.375 0.7812 0.3125 +0.375 0.7812 0.3438 +0.375 0.7812 0.375 +0.375 0.7812 0.4062 +0.375 0.7812 0.4375 +0.375 0.7812 0.4688 +0.375 0.7812 0.5 +0.375 0.7812 0.5312 +0.375 0.7812 0.5625 +0.375 0.7812 0.5938 +0.375 0.7812 0.625 +0.375 0.7812 0.6562 +0.375 0.7812 0.6875 +0.375 0.7812 0.7188 +0.375 0.7812 0.75 +0.375 0.7812 0.7812 +0.375 0.7812 0.8125 +0.375 0.7812 0.8438 +0.375 0.7812 0.875 +0.375 0.7812 0.9062 +0.375 0.7812 0.9375 +0.375 0.7812 0.9688 +0.375 0.7812 1 +0.375 0.8125 0 +0.375 0.8125 0.03125 +0.375 0.8125 0.0625 +0.375 0.8125 0.09375 +0.375 0.8125 0.125 +0.375 0.8125 0.1562 +0.375 0.8125 0.1875 +0.375 0.8125 0.2188 +0.375 0.8125 0.25 +0.375 0.8125 0.2812 +0.375 0.8125 0.3125 +0.375 0.8125 0.3438 +0.375 0.8125 0.375 +0.375 0.8125 0.4062 +0.375 0.8125 0.4375 +0.375 0.8125 0.4688 +0.375 0.8125 0.5 +0.375 0.8125 0.5312 +0.375 0.8125 0.5625 +0.375 0.8125 0.5938 +0.375 0.8125 0.625 +0.375 0.8125 0.6562 +0.375 0.8125 0.6875 +0.375 0.8125 0.7188 +0.375 0.8125 0.75 +0.375 0.8125 0.7812 +0.375 0.8125 0.8125 +0.375 0.8125 0.8438 +0.375 0.8125 0.875 +0.375 0.8125 0.9062 +0.375 0.8125 0.9375 +0.375 0.8125 0.9688 +0.375 0.8125 1 +0.375 0.8438 0 +0.375 0.8438 0.03125 +0.375 0.8438 0.0625 +0.375 0.8438 0.09375 +0.375 0.8438 0.125 +0.375 0.8438 0.1562 +0.375 0.8438 0.1875 +0.375 0.8438 0.2188 +0.375 0.8438 0.25 +0.375 0.8438 0.2812 +0.375 0.8438 0.3125 +0.375 0.8438 0.3438 +0.375 0.8438 0.375 +0.375 0.8438 0.4062 +0.375 0.8438 0.4375 +0.375 0.8438 0.4688 +0.375 0.8438 0.5 +0.375 0.8438 0.5312 +0.375 0.8438 0.5625 +0.375 0.8438 0.5938 +0.375 0.8438 0.625 +0.375 0.8438 0.6562 +0.375 0.8438 0.6875 +0.375 0.8438 0.7188 +0.375 0.8438 0.75 +0.375 0.8438 0.7812 +0.375 0.8438 0.8125 +0.375 0.8438 0.8438 +0.375 0.8438 0.875 +0.375 0.8438 0.9062 +0.375 0.8438 0.9375 +0.375 0.8438 0.9688 +0.375 0.8438 1 +0.375 0.875 0 +0.375 0.875 0.03125 +0.375 0.875 0.0625 +0.375 0.875 0.09375 +0.375 0.875 0.125 +0.375 0.875 0.1562 +0.375 0.875 0.1875 +0.375 0.875 0.2188 +0.375 0.875 0.25 +0.375 0.875 0.2812 +0.375 0.875 0.3125 +0.375 0.875 0.3438 +0.375 0.875 0.375 +0.375 0.875 0.4062 +0.375 0.875 0.4375 +0.375 0.875 0.4688 +0.375 0.875 0.5 +0.375 0.875 0.5312 +0.375 0.875 0.5625 +0.375 0.875 0.5938 +0.375 0.875 0.625 +0.375 0.875 0.6562 +0.375 0.875 0.6875 +0.375 0.875 0.7188 +0.375 0.875 0.75 +0.375 0.875 0.7812 +0.375 0.875 0.8125 +0.375 0.875 0.8438 +0.375 0.875 0.875 +0.375 0.875 0.9062 +0.375 0.875 0.9375 +0.375 0.875 0.9688 +0.375 0.875 1 +0.375 0.9062 0 +0.375 0.9062 0.03125 +0.375 0.9062 0.0625 +0.375 0.9062 0.09375 +0.375 0.9062 0.125 +0.375 0.9062 0.1562 +0.375 0.9062 0.1875 +0.375 0.9062 0.2188 +0.375 0.9062 0.25 +0.375 0.9062 0.2812 +0.375 0.9062 0.3125 +0.375 0.9062 0.3438 +0.375 0.9062 0.375 +0.375 0.9062 0.4062 +0.375 0.9062 0.4375 +0.375 0.9062 0.4688 +0.375 0.9062 0.5 +0.375 0.9062 0.5312 +0.375 0.9062 0.5625 +0.375 0.9062 0.5938 +0.375 0.9062 0.625 +0.375 0.9062 0.6562 +0.375 0.9062 0.6875 +0.375 0.9062 0.7188 +0.375 0.9062 0.75 +0.375 0.9062 0.7812 +0.375 0.9062 0.8125 +0.375 0.9062 0.8438 +0.375 0.9062 0.875 +0.375 0.9062 0.9062 +0.375 0.9062 0.9375 +0.375 0.9062 0.9688 +0.375 0.9062 1 +0.375 0.9375 0 +0.375 0.9375 0.03125 +0.375 0.9375 0.0625 +0.375 0.9375 0.09375 +0.375 0.9375 0.125 +0.375 0.9375 0.1562 +0.375 0.9375 0.1875 +0.375 0.9375 0.2188 +0.375 0.9375 0.25 +0.375 0.9375 0.2812 +0.375 0.9375 0.3125 +0.375 0.9375 0.3438 +0.375 0.9375 0.375 +0.375 0.9375 0.4062 +0.375 0.9375 0.4375 +0.375 0.9375 0.4688 +0.375 0.9375 0.5 +0.375 0.9375 0.5312 +0.375 0.9375 0.5625 +0.375 0.9375 0.5938 +0.375 0.9375 0.625 +0.375 0.9375 0.6562 +0.375 0.9375 0.6875 +0.375 0.9375 0.7188 +0.375 0.9375 0.75 +0.375 0.9375 0.7812 +0.375 0.9375 0.8125 +0.375 0.9375 0.8438 +0.375 0.9375 0.875 +0.375 0.9375 0.9062 +0.375 0.9375 0.9375 +0.375 0.9375 0.9688 +0.375 0.9375 1 +0.375 0.9688 0 +0.375 0.9688 0.03125 +0.375 0.9688 0.0625 +0.375 0.9688 0.09375 +0.375 0.9688 0.125 +0.375 0.9688 0.1562 +0.375 0.9688 0.1875 +0.375 0.9688 0.2188 +0.375 0.9688 0.25 +0.375 0.9688 0.2812 +0.375 0.9688 0.3125 +0.375 0.9688 0.3438 +0.375 0.9688 0.375 +0.375 0.9688 0.4062 +0.375 0.9688 0.4375 +0.375 0.9688 0.4688 +0.375 0.9688 0.5 +0.375 0.9688 0.5312 +0.375 0.9688 0.5625 +0.375 0.9688 0.5938 +0.375 0.9688 0.625 +0.375 0.9688 0.6562 +0.375 0.9688 0.6875 +0.375 0.9688 0.7188 +0.375 0.9688 0.75 +0.375 0.9688 0.7812 +0.375 0.9688 0.8125 +0.375 0.9688 0.8438 +0.375 0.9688 0.875 +0.375 0.9688 0.9062 +0.375 0.9688 0.9375 +0.375 0.9688 0.9688 +0.375 0.9688 1 +0.375 1 0 +0.375 1 0.03125 +0.375 1 0.0625 +0.375 1 0.09375 +0.375 1 0.125 +0.375 1 0.1562 +0.375 1 0.1875 +0.375 1 0.2188 +0.375 1 0.25 +0.375 1 0.2812 +0.375 1 0.3125 +0.375 1 0.3438 +0.375 1 0.375 +0.375 1 0.4062 +0.375 1 0.4375 +0.375 1 0.4688 +0.375 1 0.5 +0.375 1 0.5312 +0.375 1 0.5625 +0.375 1 0.5938 +0.375 1 0.625 +0.375 1 0.6562 +0.375 1 0.6875 +0.375 1 0.7188 +0.375 1 0.75 +0.375 1 0.7812 +0.375 1 0.8125 +0.375 1 0.8438 +0.375 1 0.875 +0.375 1 0.9062 +0.375 1 0.9375 +0.375 1 0.9688 +0.375 1 1 +0.4062 0 0 +0.4062 0 0.03125 +0.4062 0 0.0625 +0.4062 0 0.09375 +0.4062 0 0.125 +0.4062 0 0.1562 +0.4062 0 0.1875 +0.4062 0 0.2188 +0.4062 0 0.25 +0.4062 0 0.2812 +0.4062 0 0.3125 +0.4062 0 0.3438 +0.4062 0 0.375 +0.4062 0 0.4062 +0.4062 0 0.4375 +0.4062 0 0.4688 +0.4062 0 0.5 +0.4062 0 0.5312 +0.4062 0 0.5625 +0.4062 0 0.5938 +0.4062 0 0.625 +0.4062 0 0.6562 +0.4062 0 0.6875 +0.4062 0 0.7188 +0.4062 0 0.75 +0.4062 0 0.7812 +0.4062 0 0.8125 +0.4062 0 0.8438 +0.4062 0 0.875 +0.4062 0 0.9062 +0.4062 0 0.9375 +0.4062 0 0.9688 +0.4062 0 1 +0.4062 0.03125 0 +0.4062 0.03125 0.03125 +0.4062 0.03125 0.0625 +0.4062 0.03125 0.09375 +0.4062 0.03125 0.125 +0.4062 0.03125 0.1562 +0.4062 0.03125 0.1875 +0.4062 0.03125 0.2188 +0.4062 0.03125 0.25 +0.4062 0.03125 0.2812 +0.4062 0.03125 0.3125 +0.4062 0.03125 0.3438 +0.4062 0.03125 0.375 +0.4062 0.03125 0.4062 +0.4062 0.03125 0.4375 +0.4062 0.03125 0.4688 +0.4062 0.03125 0.5 +0.4062 0.03125 0.5312 +0.4062 0.03125 0.5625 +0.4062 0.03125 0.5938 +0.4062 0.03125 0.625 +0.4062 0.03125 0.6562 +0.4062 0.03125 0.6875 +0.4062 0.03125 0.7188 +0.4062 0.03125 0.75 +0.4062 0.03125 0.7812 +0.4062 0.03125 0.8125 +0.4062 0.03125 0.8438 +0.4062 0.03125 0.875 +0.4062 0.03125 0.9062 +0.4062 0.03125 0.9375 +0.4062 0.03125 0.9688 +0.4062 0.03125 1 +0.4062 0.0625 0 +0.4062 0.0625 0.03125 +0.4062 0.0625 0.0625 +0.4062 0.0625 0.09375 +0.4062 0.0625 0.125 +0.4062 0.0625 0.1562 +0.4062 0.0625 0.1875 +0.4062 0.0625 0.2188 +0.4062 0.0625 0.25 +0.4062 0.0625 0.2812 +0.4062 0.0625 0.3125 +0.4062 0.0625 0.3438 +0.4062 0.0625 0.375 +0.4062 0.0625 0.4062 +0.4062 0.0625 0.4375 +0.4062 0.0625 0.4688 +0.4062 0.0625 0.5 +0.4062 0.0625 0.5312 +0.4062 0.0625 0.5625 +0.4062 0.0625 0.5938 +0.4062 0.0625 0.625 +0.4062 0.0625 0.6562 +0.4062 0.0625 0.6875 +0.4062 0.0625 0.7188 +0.4062 0.0625 0.75 +0.4062 0.0625 0.7812 +0.4062 0.0625 0.8125 +0.4062 0.0625 0.8438 +0.4062 0.0625 0.875 +0.4062 0.0625 0.9062 +0.4062 0.0625 0.9375 +0.4062 0.0625 0.9688 +0.4062 0.0625 1 +0.4062 0.09375 0 +0.4062 0.09375 0.03125 +0.4062 0.09375 0.0625 +0.4062 0.09375 0.09375 +0.4062 0.09375 0.125 +0.4062 0.09375 0.1562 +0.4062 0.09375 0.1875 +0.4062 0.09375 0.2188 +0.4062 0.09375 0.25 +0.4062 0.09375 0.2812 +0.4062 0.09375 0.3125 +0.4062 0.09375 0.3438 +0.4062 0.09375 0.375 +0.4062 0.09375 0.4062 +0.4062 0.09375 0.4375 +0.4062 0.09375 0.4688 +0.4062 0.09375 0.5 +0.4062 0.09375 0.5312 +0.4062 0.09375 0.5625 +0.4062 0.09375 0.5938 +0.4062 0.09375 0.625 +0.4062 0.09375 0.6562 +0.4062 0.09375 0.6875 +0.4062 0.09375 0.7188 +0.4062 0.09375 0.75 +0.4062 0.09375 0.7812 +0.4062 0.09375 0.8125 +0.4062 0.09375 0.8438 +0.4062 0.09375 0.875 +0.4062 0.09375 0.9062 +0.4062 0.09375 0.9375 +0.4062 0.09375 0.9688 +0.4062 0.09375 1 +0.4062 0.125 0 +0.4062 0.125 0.03125 +0.4062 0.125 0.0625 +0.4062 0.125 0.09375 +0.4062 0.125 0.125 +0.4062 0.125 0.1562 +0.4062 0.125 0.1875 +0.4062 0.125 0.2188 +0.4062 0.125 0.25 +0.4062 0.125 0.2812 +0.4062 0.125 0.3125 +0.4062 0.125 0.3438 +0.4062 0.125 0.375 +0.4062 0.125 0.4062 +0.4062 0.125 0.4375 +0.4062 0.125 0.4688 +0.4062 0.125 0.5 +0.4062 0.125 0.5312 +0.4062 0.125 0.5625 +0.4062 0.125 0.5938 +0.4062 0.125 0.625 +0.4062 0.125 0.6562 +0.4062 0.125 0.6875 +0.4062 0.125 0.7188 +0.4062 0.125 0.75 +0.4062 0.125 0.7812 +0.4062 0.125 0.8125 +0.4062 0.125 0.8438 +0.4062 0.125 0.875 +0.4062 0.125 0.9062 +0.4062 0.125 0.9375 +0.4062 0.125 0.9688 +0.4062 0.125 1 +0.4062 0.1562 0 +0.4062 0.1562 0.03125 +0.4062 0.1562 0.0625 +0.4062 0.1562 0.09375 +0.4062 0.1562 0.125 +0.4062 0.1562 0.1562 +0.4062 0.1562 0.1875 +0.4062 0.1562 0.2188 +0.4062 0.1562 0.25 +0.4062 0.1562 0.2812 +0.4062 0.1562 0.3125 +0.4062 0.1562 0.3438 +0.4062 0.1562 0.375 +0.4062 0.1562 0.4062 +0.4062 0.1562 0.4375 +0.4062 0.1562 0.4688 +0.4062 0.1562 0.5 +0.4062 0.1562 0.5312 +0.4062 0.1562 0.5625 +0.4062 0.1562 0.5938 +0.4062 0.1562 0.625 +0.4062 0.1562 0.6562 +0.4062 0.1562 0.6875 +0.4062 0.1562 0.7188 +0.4062 0.1562 0.75 +0.4062 0.1562 0.7812 +0.4062 0.1562 0.8125 +0.4062 0.1562 0.8438 +0.4062 0.1562 0.875 +0.4062 0.1562 0.9062 +0.4062 0.1562 0.9375 +0.4062 0.1562 0.9688 +0.4062 0.1562 1 +0.4062 0.1875 0 +0.4062 0.1875 0.03125 +0.4062 0.1875 0.0625 +0.4062 0.1875 0.09375 +0.4062 0.1875 0.125 +0.4062 0.1875 0.1562 +0.4062 0.1875 0.1875 +0.4062 0.1875 0.2188 +0.4062 0.1875 0.25 +0.4062 0.1875 0.2812 +0.4062 0.1875 0.3125 +0.4062 0.1875 0.3438 +0.4062 0.1875 0.375 +0.4062 0.1875 0.4062 +0.4062 0.1875 0.4375 +0.4062 0.1875 0.4688 +0.4062 0.1875 0.5 +0.4062 0.1875 0.5312 +0.4062 0.1875 0.5625 +0.4062 0.1875 0.5938 +0.4062 0.1875 0.625 +0.4062 0.1875 0.6562 +0.4062 0.1875 0.6875 +0.4062 0.1875 0.7188 +0.4062 0.1875 0.75 +0.4062 0.1875 0.7812 +0.4062 0.1875 0.8125 +0.4062 0.1875 0.8438 +0.4062 0.1875 0.875 +0.4062 0.1875 0.9062 +0.4062 0.1875 0.9375 +0.4062 0.1875 0.9688 +0.4062 0.1875 1 +0.4062 0.2188 0 +0.4062 0.2188 0.03125 +0.4062 0.2188 0.0625 +0.4062 0.2188 0.09375 +0.4062 0.2188 0.125 +0.4062 0.2188 0.1562 +0.4062 0.2188 0.1875 +0.4062 0.2188 0.2188 +0.4062 0.2188 0.25 +0.4062 0.2188 0.2812 +0.4062 0.2188 0.3125 +0.4062 0.2188 0.3438 +0.4062 0.2188 0.375 +0.4062 0.2188 0.4062 +0.4062 0.2188 0.4375 +0.4062 0.2188 0.4688 +0.4062 0.2188 0.5 +0.4062 0.2188 0.5312 +0.4062 0.2188 0.5625 +0.4062 0.2188 0.5938 +0.4062 0.2188 0.625 +0.4062 0.2188 0.6562 +0.4062 0.2188 0.6875 +0.4062 0.2188 0.7188 +0.4062 0.2188 0.75 +0.4062 0.2188 0.7812 +0.4062 0.2188 0.8125 +0.4062 0.2188 0.8438 +0.4062 0.2188 0.875 +0.4062 0.2188 0.9062 +0.4062 0.2188 0.9375 +0.4062 0.2188 0.9688 +0.4062 0.2188 1 +0.4062 0.25 0 +0.4062 0.25 0.03125 +0.4062 0.25 0.0625 +0.4062 0.25 0.09375 +0.4062 0.25 0.125 +0.4062 0.25 0.1562 +0.4062 0.25 0.1875 +0.4062 0.25 0.2188 +0.4062 0.25 0.25 +0.4062 0.25 0.2812 +0.4062 0.25 0.3125 +0.4062 0.25 0.3438 +0.4062 0.25 0.375 +0.4062 0.25 0.4062 +0.4062 0.25 0.4375 +0.4062 0.25 0.4688 +0.4062 0.25 0.5 +0.4062 0.25 0.5312 +0.4062 0.25 0.5625 +0.4062 0.25 0.5938 +0.4062 0.25 0.625 +0.4062 0.25 0.6562 +0.4062 0.25 0.6875 +0.4062 0.25 0.7188 +0.4062 0.25 0.75 +0.4062 0.25 0.7812 +0.4062 0.25 0.8125 +0.4062 0.25 0.8438 +0.4062 0.25 0.875 +0.4062 0.25 0.9062 +0.4062 0.25 0.9375 +0.4062 0.25 0.9688 +0.4062 0.25 1 +0.4062 0.2812 0 +0.4062 0.2812 0.03125 +0.4062 0.2812 0.0625 +0.4062 0.2812 0.09375 +0.4062 0.2812 0.125 +0.4062 0.2812 0.1562 +0.4062 0.2812 0.1875 +0.4062 0.2812 0.2188 +0.4062 0.2812 0.25 +0.4062 0.2812 0.2812 +0.4062 0.2812 0.3125 +0.4062 0.2812 0.3438 +0.4062 0.2812 0.375 +0.4062 0.2812 0.4062 +0.4062 0.2812 0.4375 +0.4062 0.2812 0.4688 +0.4062 0.2812 0.5 +0.4062 0.2812 0.5312 +0.4062 0.2812 0.5625 +0.4062 0.2812 0.5938 +0.4062 0.2812 0.625 +0.4062 0.2812 0.6562 +0.4062 0.2812 0.6875 +0.4062 0.2812 0.7188 +0.4062 0.2812 0.75 +0.4062 0.2812 0.7812 +0.4062 0.2812 0.8125 +0.4062 0.2812 0.8438 +0.4062 0.2812 0.875 +0.4062 0.2812 0.9062 +0.4062 0.2812 0.9375 +0.4062 0.2812 0.9688 +0.4062 0.2812 1 +0.4062 0.3125 0 +0.4062 0.3125 0.03125 +0.4062 0.3125 0.0625 +0.4062 0.3125 0.09375 +0.4062 0.3125 0.125 +0.4062 0.3125 0.1562 +0.4062 0.3125 0.1875 +0.4062 0.3125 0.2188 +0.4062 0.3125 0.25 +0.4062 0.3125 0.2812 +0.4062 0.3125 0.3125 +0.4062 0.3125 0.3438 +0.4062 0.3125 0.375 +0.4062 0.3125 0.4062 +0.4062 0.3125 0.4375 +0.4062 0.3125 0.4688 +0.4062 0.3125 0.5 +0.4062 0.3125 0.5312 +0.4062 0.3125 0.5625 +0.4062 0.3125 0.5938 +0.4062 0.3125 0.625 +0.4062 0.3125 0.6562 +0.4062 0.3125 0.6875 +0.4062 0.3125 0.7188 +0.4062 0.3125 0.75 +0.4062 0.3125 0.7812 +0.4062 0.3125 0.8125 +0.4062 0.3125 0.8438 +0.4062 0.3125 0.875 +0.4062 0.3125 0.9062 +0.4062 0.3125 0.9375 +0.4062 0.3125 0.9688 +0.4062 0.3125 1 +0.4062 0.3438 0 +0.4062 0.3438 0.03125 +0.4062 0.3438 0.0625 +0.4062 0.3438 0.09375 +0.4062 0.3438 0.125 +0.4062 0.3438 0.1562 +0.4062 0.3438 0.1875 +0.4062 0.3438 0.2188 +0.4062 0.3438 0.25 +0.4062 0.3438 0.2812 +0.4062 0.3438 0.3125 +0.4062 0.3438 0.3438 +0.4062 0.3438 0.375 +0.4062 0.3438 0.4062 +0.4062 0.3438 0.4375 +0.4062 0.3438 0.4688 +0.4062 0.3438 0.5 +0.4062 0.3438 0.5312 +0.4062 0.3438 0.5625 +0.4062 0.3438 0.5938 +0.4062 0.3438 0.625 +0.4062 0.3438 0.6562 +0.4062 0.3438 0.6875 +0.4062 0.3438 0.7188 +0.4062 0.3438 0.75 +0.4062 0.3438 0.7812 +0.4062 0.3438 0.8125 +0.4062 0.3438 0.8438 +0.4062 0.3438 0.875 +0.4062 0.3438 0.9062 +0.4062 0.3438 0.9375 +0.4062 0.3438 0.9688 +0.4062 0.3438 1 +0.4062 0.375 0 +0.4062 0.375 0.03125 +0.4062 0.375 0.0625 +0.4062 0.375 0.09375 +0.4062 0.375 0.125 +0.4062 0.375 0.1562 +0.4062 0.375 0.1875 +0.4062 0.375 0.2188 +0.4062 0.375 0.25 +0.4062 0.375 0.2812 +0.4062 0.375 0.3125 +0.4062 0.375 0.3438 +0.4062 0.375 0.375 +0.4062 0.375 0.4062 +0.4062 0.375 0.4375 +0.4062 0.375 0.4688 +0.4062 0.375 0.5 +0.4062 0.375 0.5312 +0.4062 0.375 0.5625 +0.4062 0.375 0.5938 +0.4062 0.375 0.625 +0.4062 0.375 0.6562 +0.4062 0.375 0.6875 +0.4062 0.375 0.7188 +0.4062 0.375 0.75 +0.4062 0.375 0.7812 +0.4062 0.375 0.8125 +0.4062 0.375 0.8438 +0.4062 0.375 0.875 +0.4062 0.375 0.9062 +0.4062 0.375 0.9375 +0.4062 0.375 0.9688 +0.4062 0.375 1 +0.4062 0.4062 0 +0.4062 0.4062 0.03125 +0.4062 0.4062 0.0625 +0.4062 0.4062 0.09375 +0.4062 0.4062 0.125 +0.4062 0.4062 0.1562 +0.4062 0.4062 0.1875 +0.4062 0.4062 0.2188 +0.4062 0.4062 0.25 +0.4062 0.4062 0.2812 +0.4062 0.4062 0.3125 +0.4062 0.4062 0.3438 +0.4062 0.4062 0.375 +0.4062 0.4062 0.4062 +0.4062 0.4062 0.4375 +0.4062 0.4062 0.4688 +0.4062 0.4062 0.5 +0.4062 0.4062 0.5312 +0.4062 0.4062 0.5625 +0.4062 0.4062 0.5938 +0.4062 0.4062 0.625 +0.4062 0.4062 0.6562 +0.4062 0.4062 0.6875 +0.4062 0.4062 0.7188 +0.4062 0.4062 0.75 +0.4062 0.4062 0.7812 +0.4062 0.4062 0.8125 +0.4062 0.4062 0.8438 +0.4062 0.4062 0.875 +0.4062 0.4062 0.9062 +0.4062 0.4062 0.9375 +0.4062 0.4062 0.9688 +0.4062 0.4062 1 +0.4062 0.4375 0 +0.4062 0.4375 0.03125 +0.4062 0.4375 0.0625 +0.4062 0.4375 0.09375 +0.4062 0.4375 0.125 +0.4062 0.4375 0.1562 +0.4062 0.4375 0.1875 +0.4062 0.4375 0.2188 +0.4062 0.4375 0.25 +0.4062 0.4375 0.2812 +0.4062 0.4375 0.3125 +0.4062 0.4375 0.3438 +0.4062 0.4375 0.375 +0.4062 0.4375 0.4062 +0.4062 0.4375 0.4375 +0.4062 0.4375 0.4688 +0.4062 0.4375 0.5 +0.4062 0.4375 0.5312 +0.4062 0.4375 0.5625 +0.4062 0.4375 0.5938 +0.4062 0.4375 0.625 +0.4062 0.4375 0.6562 +0.4062 0.4375 0.6875 +0.4062 0.4375 0.7188 +0.4062 0.4375 0.75 +0.4062 0.4375 0.7812 +0.4062 0.4375 0.8125 +0.4062 0.4375 0.8438 +0.4062 0.4375 0.875 +0.4062 0.4375 0.9062 +0.4062 0.4375 0.9375 +0.4062 0.4375 0.9688 +0.4062 0.4375 1 +0.4062 0.4688 0 +0.4062 0.4688 0.03125 +0.4062 0.4688 0.0625 +0.4062 0.4688 0.09375 +0.4062 0.4688 0.125 +0.4062 0.4688 0.1562 +0.4062 0.4688 0.1875 +0.4062 0.4688 0.2188 +0.4062 0.4688 0.25 +0.4062 0.4688 0.2812 +0.4062 0.4688 0.3125 +0.4062 0.4688 0.3438 +0.4062 0.4688 0.375 +0.4062 0.4688 0.4062 +0.4062 0.4688 0.4375 +0.4062 0.4688 0.4688 +0.4062 0.4688 0.5 +0.4062 0.4688 0.5312 +0.4062 0.4688 0.5625 +0.4062 0.4688 0.5938 +0.4062 0.4688 0.625 +0.4062 0.4688 0.6562 +0.4062 0.4688 0.6875 +0.4062 0.4688 0.7188 +0.4062 0.4688 0.75 +0.4062 0.4688 0.7812 +0.4062 0.4688 0.8125 +0.4062 0.4688 0.8438 +0.4062 0.4688 0.875 +0.4062 0.4688 0.9062 +0.4062 0.4688 0.9375 +0.4062 0.4688 0.9688 +0.4062 0.4688 1 +0.4062 0.5 0 +0.4062 0.5 0.03125 +0.4062 0.5 0.0625 +0.4062 0.5 0.09375 +0.4062 0.5 0.125 +0.4062 0.5 0.1562 +0.4062 0.5 0.1875 +0.4062 0.5 0.2188 +0.4062 0.5 0.25 +0.4062 0.5 0.2812 +0.4062 0.5 0.3125 +0.4062 0.5 0.3438 +0.4062 0.5 0.375 +0.4062 0.5 0.4062 +0.4062 0.5 0.4375 +0.4062 0.5 0.4688 +0.4062 0.5 0.5 +0.4062 0.5 0.5312 +0.4062 0.5 0.5625 +0.4062 0.5 0.5938 +0.4062 0.5 0.625 +0.4062 0.5 0.6562 +0.4062 0.5 0.6875 +0.4062 0.5 0.7188 +0.4062 0.5 0.75 +0.4062 0.5 0.7812 +0.4062 0.5 0.8125 +0.4062 0.5 0.8438 +0.4062 0.5 0.875 +0.4062 0.5 0.9062 +0.4062 0.5 0.9375 +0.4062 0.5 0.9688 +0.4062 0.5 1 +0.4062 0.5312 0 +0.4062 0.5312 0.03125 +0.4062 0.5312 0.0625 +0.4062 0.5312 0.09375 +0.4062 0.5312 0.125 +0.4062 0.5312 0.1562 +0.4062 0.5312 0.1875 +0.4062 0.5312 0.2188 +0.4062 0.5312 0.25 +0.4062 0.5312 0.2812 +0.4062 0.5312 0.3125 +0.4062 0.5312 0.3438 +0.4062 0.5312 0.375 +0.4062 0.5312 0.4062 +0.4062 0.5312 0.4375 +0.4062 0.5312 0.4688 +0.4062 0.5312 0.5 +0.4062 0.5312 0.5312 +0.4062 0.5312 0.5625 +0.4062 0.5312 0.5938 +0.4062 0.5312 0.625 +0.4062 0.5312 0.6562 +0.4062 0.5312 0.6875 +0.4062 0.5312 0.7188 +0.4062 0.5312 0.75 +0.4062 0.5312 0.7812 +0.4062 0.5312 0.8125 +0.4062 0.5312 0.8438 +0.4062 0.5312 0.875 +0.4062 0.5312 0.9062 +0.4062 0.5312 0.9375 +0.4062 0.5312 0.9688 +0.4062 0.5312 1 +0.4062 0.5625 0 +0.4062 0.5625 0.03125 +0.4062 0.5625 0.0625 +0.4062 0.5625 0.09375 +0.4062 0.5625 0.125 +0.4062 0.5625 0.1562 +0.4062 0.5625 0.1875 +0.4062 0.5625 0.2188 +0.4062 0.5625 0.25 +0.4062 0.5625 0.2812 +0.4062 0.5625 0.3125 +0.4062 0.5625 0.3438 +0.4062 0.5625 0.375 +0.4062 0.5625 0.4062 +0.4062 0.5625 0.4375 +0.4062 0.5625 0.4688 +0.4062 0.5625 0.5 +0.4062 0.5625 0.5312 +0.4062 0.5625 0.5625 +0.4062 0.5625 0.5938 +0.4062 0.5625 0.625 +0.4062 0.5625 0.6562 +0.4062 0.5625 0.6875 +0.4062 0.5625 0.7188 +0.4062 0.5625 0.75 +0.4062 0.5625 0.7812 +0.4062 0.5625 0.8125 +0.4062 0.5625 0.8438 +0.4062 0.5625 0.875 +0.4062 0.5625 0.9062 +0.4062 0.5625 0.9375 +0.4062 0.5625 0.9688 +0.4062 0.5625 1 +0.4062 0.5938 0 +0.4062 0.5938 0.03125 +0.4062 0.5938 0.0625 +0.4062 0.5938 0.09375 +0.4062 0.5938 0.125 +0.4062 0.5938 0.1562 +0.4062 0.5938 0.1875 +0.4062 0.5938 0.2188 +0.4062 0.5938 0.25 +0.4062 0.5938 0.2812 +0.4062 0.5938 0.3125 +0.4062 0.5938 0.3438 +0.4062 0.5938 0.375 +0.4062 0.5938 0.4062 +0.4062 0.5938 0.4375 +0.4062 0.5938 0.4688 +0.4062 0.5938 0.5 +0.4062 0.5938 0.5312 +0.4062 0.5938 0.5625 +0.4062 0.5938 0.5938 +0.4062 0.5938 0.625 +0.4062 0.5938 0.6562 +0.4062 0.5938 0.6875 +0.4062 0.5938 0.7188 +0.4062 0.5938 0.75 +0.4062 0.5938 0.7812 +0.4062 0.5938 0.8125 +0.4062 0.5938 0.8438 +0.4062 0.5938 0.875 +0.4062 0.5938 0.9062 +0.4062 0.5938 0.9375 +0.4062 0.5938 0.9688 +0.4062 0.5938 1 +0.4062 0.625 0 +0.4062 0.625 0.03125 +0.4062 0.625 0.0625 +0.4062 0.625 0.09375 +0.4062 0.625 0.125 +0.4062 0.625 0.1562 +0.4062 0.625 0.1875 +0.4062 0.625 0.2188 +0.4062 0.625 0.25 +0.4062 0.625 0.2812 +0.4062 0.625 0.3125 +0.4062 0.625 0.3438 +0.4062 0.625 0.375 +0.4062 0.625 0.4062 +0.4062 0.625 0.4375 +0.4062 0.625 0.4688 +0.4062 0.625 0.5 +0.4062 0.625 0.5312 +0.4062 0.625 0.5625 +0.4062 0.625 0.5938 +0.4062 0.625 0.625 +0.4062 0.625 0.6562 +0.4062 0.625 0.6875 +0.4062 0.625 0.7188 +0.4062 0.625 0.75 +0.4062 0.625 0.7812 +0.4062 0.625 0.8125 +0.4062 0.625 0.8438 +0.4062 0.625 0.875 +0.4062 0.625 0.9062 +0.4062 0.625 0.9375 +0.4062 0.625 0.9688 +0.4062 0.625 1 +0.4062 0.6562 0 +0.4062 0.6562 0.03125 +0.4062 0.6562 0.0625 +0.4062 0.6562 0.09375 +0.4062 0.6562 0.125 +0.4062 0.6562 0.1562 +0.4062 0.6562 0.1875 +0.4062 0.6562 0.2188 +0.4062 0.6562 0.25 +0.4062 0.6562 0.2812 +0.4062 0.6562 0.3125 +0.4062 0.6562 0.3438 +0.4062 0.6562 0.375 +0.4062 0.6562 0.4062 +0.4062 0.6562 0.4375 +0.4062 0.6562 0.4688 +0.4062 0.6562 0.5 +0.4062 0.6562 0.5312 +0.4062 0.6562 0.5625 +0.4062 0.6562 0.5938 +0.4062 0.6562 0.625 +0.4062 0.6562 0.6562 +0.4062 0.6562 0.6875 +0.4062 0.6562 0.7188 +0.4062 0.6562 0.75 +0.4062 0.6562 0.7812 +0.4062 0.6562 0.8125 +0.4062 0.6562 0.8438 +0.4062 0.6562 0.875 +0.4062 0.6562 0.9062 +0.4062 0.6562 0.9375 +0.4062 0.6562 0.9688 +0.4062 0.6562 1 +0.4062 0.6875 0 +0.4062 0.6875 0.03125 +0.4062 0.6875 0.0625 +0.4062 0.6875 0.09375 +0.4062 0.6875 0.125 +0.4062 0.6875 0.1562 +0.4062 0.6875 0.1875 +0.4062 0.6875 0.2188 +0.4062 0.6875 0.25 +0.4062 0.6875 0.2812 +0.4062 0.6875 0.3125 +0.4062 0.6875 0.3438 +0.4062 0.6875 0.375 +0.4062 0.6875 0.4062 +0.4062 0.6875 0.4375 +0.4062 0.6875 0.4688 +0.4062 0.6875 0.5 +0.4062 0.6875 0.5312 +0.4062 0.6875 0.5625 +0.4062 0.6875 0.5938 +0.4062 0.6875 0.625 +0.4062 0.6875 0.6562 +0.4062 0.6875 0.6875 +0.4062 0.6875 0.7188 +0.4062 0.6875 0.75 +0.4062 0.6875 0.7812 +0.4062 0.6875 0.8125 +0.4062 0.6875 0.8438 +0.4062 0.6875 0.875 +0.4062 0.6875 0.9062 +0.4062 0.6875 0.9375 +0.4062 0.6875 0.9688 +0.4062 0.6875 1 +0.4062 0.7188 0 +0.4062 0.7188 0.03125 +0.4062 0.7188 0.0625 +0.4062 0.7188 0.09375 +0.4062 0.7188 0.125 +0.4062 0.7188 0.1562 +0.4062 0.7188 0.1875 +0.4062 0.7188 0.2188 +0.4062 0.7188 0.25 +0.4062 0.7188 0.2812 +0.4062 0.7188 0.3125 +0.4062 0.7188 0.3438 +0.4062 0.7188 0.375 +0.4062 0.7188 0.4062 +0.4062 0.7188 0.4375 +0.4062 0.7188 0.4688 +0.4062 0.7188 0.5 +0.4062 0.7188 0.5312 +0.4062 0.7188 0.5625 +0.4062 0.7188 0.5938 +0.4062 0.7188 0.625 +0.4062 0.7188 0.6562 +0.4062 0.7188 0.6875 +0.4062 0.7188 0.7188 +0.4062 0.7188 0.75 +0.4062 0.7188 0.7812 +0.4062 0.7188 0.8125 +0.4062 0.7188 0.8438 +0.4062 0.7188 0.875 +0.4062 0.7188 0.9062 +0.4062 0.7188 0.9375 +0.4062 0.7188 0.9688 +0.4062 0.7188 1 +0.4062 0.75 0 +0.4062 0.75 0.03125 +0.4062 0.75 0.0625 +0.4062 0.75 0.09375 +0.4062 0.75 0.125 +0.4062 0.75 0.1562 +0.4062 0.75 0.1875 +0.4062 0.75 0.2188 +0.4062 0.75 0.25 +0.4062 0.75 0.2812 +0.4062 0.75 0.3125 +0.4062 0.75 0.3438 +0.4062 0.75 0.375 +0.4062 0.75 0.4062 +0.4062 0.75 0.4375 +0.4062 0.75 0.4688 +0.4062 0.75 0.5 +0.4062 0.75 0.5312 +0.4062 0.75 0.5625 +0.4062 0.75 0.5938 +0.4062 0.75 0.625 +0.4062 0.75 0.6562 +0.4062 0.75 0.6875 +0.4062 0.75 0.7188 +0.4062 0.75 0.75 +0.4062 0.75 0.7812 +0.4062 0.75 0.8125 +0.4062 0.75 0.8438 +0.4062 0.75 0.875 +0.4062 0.75 0.9062 +0.4062 0.75 0.9375 +0.4062 0.75 0.9688 +0.4062 0.75 1 +0.4062 0.7812 0 +0.4062 0.7812 0.03125 +0.4062 0.7812 0.0625 +0.4062 0.7812 0.09375 +0.4062 0.7812 0.125 +0.4062 0.7812 0.1562 +0.4062 0.7812 0.1875 +0.4062 0.7812 0.2188 +0.4062 0.7812 0.25 +0.4062 0.7812 0.2812 +0.4062 0.7812 0.3125 +0.4062 0.7812 0.3438 +0.4062 0.7812 0.375 +0.4062 0.7812 0.4062 +0.4062 0.7812 0.4375 +0.4062 0.7812 0.4688 +0.4062 0.7812 0.5 +0.4062 0.7812 0.5312 +0.4062 0.7812 0.5625 +0.4062 0.7812 0.5938 +0.4062 0.7812 0.625 +0.4062 0.7812 0.6562 +0.4062 0.7812 0.6875 +0.4062 0.7812 0.7188 +0.4062 0.7812 0.75 +0.4062 0.7812 0.7812 +0.4062 0.7812 0.8125 +0.4062 0.7812 0.8438 +0.4062 0.7812 0.875 +0.4062 0.7812 0.9062 +0.4062 0.7812 0.9375 +0.4062 0.7812 0.9688 +0.4062 0.7812 1 +0.4062 0.8125 0 +0.4062 0.8125 0.03125 +0.4062 0.8125 0.0625 +0.4062 0.8125 0.09375 +0.4062 0.8125 0.125 +0.4062 0.8125 0.1562 +0.4062 0.8125 0.1875 +0.4062 0.8125 0.2188 +0.4062 0.8125 0.25 +0.4062 0.8125 0.2812 +0.4062 0.8125 0.3125 +0.4062 0.8125 0.3438 +0.4062 0.8125 0.375 +0.4062 0.8125 0.4062 +0.4062 0.8125 0.4375 +0.4062 0.8125 0.4688 +0.4062 0.8125 0.5 +0.4062 0.8125 0.5312 +0.4062 0.8125 0.5625 +0.4062 0.8125 0.5938 +0.4062 0.8125 0.625 +0.4062 0.8125 0.6562 +0.4062 0.8125 0.6875 +0.4062 0.8125 0.7188 +0.4062 0.8125 0.75 +0.4062 0.8125 0.7812 +0.4062 0.8125 0.8125 +0.4062 0.8125 0.8438 +0.4062 0.8125 0.875 +0.4062 0.8125 0.9062 +0.4062 0.8125 0.9375 +0.4062 0.8125 0.9688 +0.4062 0.8125 1 +0.4062 0.8438 0 +0.4062 0.8438 0.03125 +0.4062 0.8438 0.0625 +0.4062 0.8438 0.09375 +0.4062 0.8438 0.125 +0.4062 0.8438 0.1562 +0.4062 0.8438 0.1875 +0.4062 0.8438 0.2188 +0.4062 0.8438 0.25 +0.4062 0.8438 0.2812 +0.4062 0.8438 0.3125 +0.4062 0.8438 0.3438 +0.4062 0.8438 0.375 +0.4062 0.8438 0.4062 +0.4062 0.8438 0.4375 +0.4062 0.8438 0.4688 +0.4062 0.8438 0.5 +0.4062 0.8438 0.5312 +0.4062 0.8438 0.5625 +0.4062 0.8438 0.5938 +0.4062 0.8438 0.625 +0.4062 0.8438 0.6562 +0.4062 0.8438 0.6875 +0.4062 0.8438 0.7188 +0.4062 0.8438 0.75 +0.4062 0.8438 0.7812 +0.4062 0.8438 0.8125 +0.4062 0.8438 0.8438 +0.4062 0.8438 0.875 +0.4062 0.8438 0.9062 +0.4062 0.8438 0.9375 +0.4062 0.8438 0.9688 +0.4062 0.8438 1 +0.4062 0.875 0 +0.4062 0.875 0.03125 +0.4062 0.875 0.0625 +0.4062 0.875 0.09375 +0.4062 0.875 0.125 +0.4062 0.875 0.1562 +0.4062 0.875 0.1875 +0.4062 0.875 0.2188 +0.4062 0.875 0.25 +0.4062 0.875 0.2812 +0.4062 0.875 0.3125 +0.4062 0.875 0.3438 +0.4062 0.875 0.375 +0.4062 0.875 0.4062 +0.4062 0.875 0.4375 +0.4062 0.875 0.4688 +0.4062 0.875 0.5 +0.4062 0.875 0.5312 +0.4062 0.875 0.5625 +0.4062 0.875 0.5938 +0.4062 0.875 0.625 +0.4062 0.875 0.6562 +0.4062 0.875 0.6875 +0.4062 0.875 0.7188 +0.4062 0.875 0.75 +0.4062 0.875 0.7812 +0.4062 0.875 0.8125 +0.4062 0.875 0.8438 +0.4062 0.875 0.875 +0.4062 0.875 0.9062 +0.4062 0.875 0.9375 +0.4062 0.875 0.9688 +0.4062 0.875 1 +0.4062 0.9062 0 +0.4062 0.9062 0.03125 +0.4062 0.9062 0.0625 +0.4062 0.9062 0.09375 +0.4062 0.9062 0.125 +0.4062 0.9062 0.1562 +0.4062 0.9062 0.1875 +0.4062 0.9062 0.2188 +0.4062 0.9062 0.25 +0.4062 0.9062 0.2812 +0.4062 0.9062 0.3125 +0.4062 0.9062 0.3438 +0.4062 0.9062 0.375 +0.4062 0.9062 0.4062 +0.4062 0.9062 0.4375 +0.4062 0.9062 0.4688 +0.4062 0.9062 0.5 +0.4062 0.9062 0.5312 +0.4062 0.9062 0.5625 +0.4062 0.9062 0.5938 +0.4062 0.9062 0.625 +0.4062 0.9062 0.6562 +0.4062 0.9062 0.6875 +0.4062 0.9062 0.7188 +0.4062 0.9062 0.75 +0.4062 0.9062 0.7812 +0.4062 0.9062 0.8125 +0.4062 0.9062 0.8438 +0.4062 0.9062 0.875 +0.4062 0.9062 0.9062 +0.4062 0.9062 0.9375 +0.4062 0.9062 0.9688 +0.4062 0.9062 1 +0.4062 0.9375 0 +0.4062 0.9375 0.03125 +0.4062 0.9375 0.0625 +0.4062 0.9375 0.09375 +0.4062 0.9375 0.125 +0.4062 0.9375 0.1562 +0.4062 0.9375 0.1875 +0.4062 0.9375 0.2188 +0.4062 0.9375 0.25 +0.4062 0.9375 0.2812 +0.4062 0.9375 0.3125 +0.4062 0.9375 0.3438 +0.4062 0.9375 0.375 +0.4062 0.9375 0.4062 +0.4062 0.9375 0.4375 +0.4062 0.9375 0.4688 +0.4062 0.9375 0.5 +0.4062 0.9375 0.5312 +0.4062 0.9375 0.5625 +0.4062 0.9375 0.5938 +0.4062 0.9375 0.625 +0.4062 0.9375 0.6562 +0.4062 0.9375 0.6875 +0.4062 0.9375 0.7188 +0.4062 0.9375 0.75 +0.4062 0.9375 0.7812 +0.4062 0.9375 0.8125 +0.4062 0.9375 0.8438 +0.4062 0.9375 0.875 +0.4062 0.9375 0.9062 +0.4062 0.9375 0.9375 +0.4062 0.9375 0.9688 +0.4062 0.9375 1 +0.4062 0.9688 0 +0.4062 0.9688 0.03125 +0.4062 0.9688 0.0625 +0.4062 0.9688 0.09375 +0.4062 0.9688 0.125 +0.4062 0.9688 0.1562 +0.4062 0.9688 0.1875 +0.4062 0.9688 0.2188 +0.4062 0.9688 0.25 +0.4062 0.9688 0.2812 +0.4062 0.9688 0.3125 +0.4062 0.9688 0.3438 +0.4062 0.9688 0.375 +0.4062 0.9688 0.4062 +0.4062 0.9688 0.4375 +0.4062 0.9688 0.4688 +0.4062 0.9688 0.5 +0.4062 0.9688 0.5312 +0.4062 0.9688 0.5625 +0.4062 0.9688 0.5938 +0.4062 0.9688 0.625 +0.4062 0.9688 0.6562 +0.4062 0.9688 0.6875 +0.4062 0.9688 0.7188 +0.4062 0.9688 0.75 +0.4062 0.9688 0.7812 +0.4062 0.9688 0.8125 +0.4062 0.9688 0.8438 +0.4062 0.9688 0.875 +0.4062 0.9688 0.9062 +0.4062 0.9688 0.9375 +0.4062 0.9688 0.9688 +0.4062 0.9688 1 +0.4062 1 0 +0.4062 1 0.03125 +0.4062 1 0.0625 +0.4062 1 0.09375 +0.4062 1 0.125 +0.4062 1 0.1562 +0.4062 1 0.1875 +0.4062 1 0.2188 +0.4062 1 0.25 +0.4062 1 0.2812 +0.4062 1 0.3125 +0.4062 1 0.3438 +0.4062 1 0.375 +0.4062 1 0.4062 +0.4062 1 0.4375 +0.4062 1 0.4688 +0.4062 1 0.5 +0.4062 1 0.5312 +0.4062 1 0.5625 +0.4062 1 0.5938 +0.4062 1 0.625 +0.4062 1 0.6562 +0.4062 1 0.6875 +0.4062 1 0.7188 +0.4062 1 0.75 +0.4062 1 0.7812 +0.4062 1 0.8125 +0.4062 1 0.8438 +0.4062 1 0.875 +0.4062 1 0.9062 +0.4062 1 0.9375 +0.4062 1 0.9688 +0.4062 1 1 +0.4375 0 0 +0.4375 0 0.03125 +0.4375 0 0.0625 +0.4375 0 0.09375 +0.4375 0 0.125 +0.4375 0 0.1562 +0.4375 0 0.1875 +0.4375 0 0.2188 +0.4375 0 0.25 +0.4375 0 0.2812 +0.4375 0 0.3125 +0.4375 0 0.3438 +0.4375 0 0.375 +0.4375 0 0.4062 +0.4375 0 0.4375 +0.4375 0 0.4688 +0.4375 0 0.5 +0.4375 0 0.5312 +0.4375 0 0.5625 +0.4375 0 0.5938 +0.4375 0 0.625 +0.4375 0 0.6562 +0.4375 0 0.6875 +0.4375 0 0.7188 +0.4375 0 0.75 +0.4375 0 0.7812 +0.4375 0 0.8125 +0.4375 0 0.8438 +0.4375 0 0.875 +0.4375 0 0.9062 +0.4375 0 0.9375 +0.4375 0 0.9688 +0.4375 0 1 +0.4375 0.03125 0 +0.4375 0.03125 0.03125 +0.4375 0.03125 0.0625 +0.4375 0.03125 0.09375 +0.4375 0.03125 0.125 +0.4375 0.03125 0.1562 +0.4375 0.03125 0.1875 +0.4375 0.03125 0.2188 +0.4375 0.03125 0.25 +0.4375 0.03125 0.2812 +0.4375 0.03125 0.3125 +0.4375 0.03125 0.3438 +0.4375 0.03125 0.375 +0.4375 0.03125 0.4062 +0.4375 0.03125 0.4375 +0.4375 0.03125 0.4688 +0.4375 0.03125 0.5 +0.4375 0.03125 0.5312 +0.4375 0.03125 0.5625 +0.4375 0.03125 0.5938 +0.4375 0.03125 0.625 +0.4375 0.03125 0.6562 +0.4375 0.03125 0.6875 +0.4375 0.03125 0.7188 +0.4375 0.03125 0.75 +0.4375 0.03125 0.7812 +0.4375 0.03125 0.8125 +0.4375 0.03125 0.8438 +0.4375 0.03125 0.875 +0.4375 0.03125 0.9062 +0.4375 0.03125 0.9375 +0.4375 0.03125 0.9688 +0.4375 0.03125 1 +0.4375 0.0625 0 +0.4375 0.0625 0.03125 +0.4375 0.0625 0.0625 +0.4375 0.0625 0.09375 +0.4375 0.0625 0.125 +0.4375 0.0625 0.1562 +0.4375 0.0625 0.1875 +0.4375 0.0625 0.2188 +0.4375 0.0625 0.25 +0.4375 0.0625 0.2812 +0.4375 0.0625 0.3125 +0.4375 0.0625 0.3438 +0.4375 0.0625 0.375 +0.4375 0.0625 0.4062 +0.4375 0.0625 0.4375 +0.4375 0.0625 0.4688 +0.4375 0.0625 0.5 +0.4375 0.0625 0.5312 +0.4375 0.0625 0.5625 +0.4375 0.0625 0.5938 +0.4375 0.0625 0.625 +0.4375 0.0625 0.6562 +0.4375 0.0625 0.6875 +0.4375 0.0625 0.7188 +0.4375 0.0625 0.75 +0.4375 0.0625 0.7812 +0.4375 0.0625 0.8125 +0.4375 0.0625 0.8438 +0.4375 0.0625 0.875 +0.4375 0.0625 0.9062 +0.4375 0.0625 0.9375 +0.4375 0.0625 0.9688 +0.4375 0.0625 1 +0.4375 0.09375 0 +0.4375 0.09375 0.03125 +0.4375 0.09375 0.0625 +0.4375 0.09375 0.09375 +0.4375 0.09375 0.125 +0.4375 0.09375 0.1562 +0.4375 0.09375 0.1875 +0.4375 0.09375 0.2188 +0.4375 0.09375 0.25 +0.4375 0.09375 0.2812 +0.4375 0.09375 0.3125 +0.4375 0.09375 0.3438 +0.4375 0.09375 0.375 +0.4375 0.09375 0.4062 +0.4375 0.09375 0.4375 +0.4375 0.09375 0.4688 +0.4375 0.09375 0.5 +0.4375 0.09375 0.5312 +0.4375 0.09375 0.5625 +0.4375 0.09375 0.5938 +0.4375 0.09375 0.625 +0.4375 0.09375 0.6562 +0.4375 0.09375 0.6875 +0.4375 0.09375 0.7188 +0.4375 0.09375 0.75 +0.4375 0.09375 0.7812 +0.4375 0.09375 0.8125 +0.4375 0.09375 0.8438 +0.4375 0.09375 0.875 +0.4375 0.09375 0.9062 +0.4375 0.09375 0.9375 +0.4375 0.09375 0.9688 +0.4375 0.09375 1 +0.4375 0.125 0 +0.4375 0.125 0.03125 +0.4375 0.125 0.0625 +0.4375 0.125 0.09375 +0.4375 0.125 0.125 +0.4375 0.125 0.1562 +0.4375 0.125 0.1875 +0.4375 0.125 0.2188 +0.4375 0.125 0.25 +0.4375 0.125 0.2812 +0.4375 0.125 0.3125 +0.4375 0.125 0.3438 +0.4375 0.125 0.375 +0.4375 0.125 0.4062 +0.4375 0.125 0.4375 +0.4375 0.125 0.4688 +0.4375 0.125 0.5 +0.4375 0.125 0.5312 +0.4375 0.125 0.5625 +0.4375 0.125 0.5938 +0.4375 0.125 0.625 +0.4375 0.125 0.6562 +0.4375 0.125 0.6875 +0.4375 0.125 0.7188 +0.4375 0.125 0.75 +0.4375 0.125 0.7812 +0.4375 0.125 0.8125 +0.4375 0.125 0.8438 +0.4375 0.125 0.875 +0.4375 0.125 0.9062 +0.4375 0.125 0.9375 +0.4375 0.125 0.9688 +0.4375 0.125 1 +0.4375 0.1562 0 +0.4375 0.1562 0.03125 +0.4375 0.1562 0.0625 +0.4375 0.1562 0.09375 +0.4375 0.1562 0.125 +0.4375 0.1562 0.1562 +0.4375 0.1562 0.1875 +0.4375 0.1562 0.2188 +0.4375 0.1562 0.25 +0.4375 0.1562 0.2812 +0.4375 0.1562 0.3125 +0.4375 0.1562 0.3438 +0.4375 0.1562 0.375 +0.4375 0.1562 0.4062 +0.4375 0.1562 0.4375 +0.4375 0.1562 0.4688 +0.4375 0.1562 0.5 +0.4375 0.1562 0.5312 +0.4375 0.1562 0.5625 +0.4375 0.1562 0.5938 +0.4375 0.1562 0.625 +0.4375 0.1562 0.6562 +0.4375 0.1562 0.6875 +0.4375 0.1562 0.7188 +0.4375 0.1562 0.75 +0.4375 0.1562 0.7812 +0.4375 0.1562 0.8125 +0.4375 0.1562 0.8438 +0.4375 0.1562 0.875 +0.4375 0.1562 0.9062 +0.4375 0.1562 0.9375 +0.4375 0.1562 0.9688 +0.4375 0.1562 1 +0.4375 0.1875 0 +0.4375 0.1875 0.03125 +0.4375 0.1875 0.0625 +0.4375 0.1875 0.09375 +0.4375 0.1875 0.125 +0.4375 0.1875 0.1562 +0.4375 0.1875 0.1875 +0.4375 0.1875 0.2188 +0.4375 0.1875 0.25 +0.4375 0.1875 0.2812 +0.4375 0.1875 0.3125 +0.4375 0.1875 0.3438 +0.4375 0.1875 0.375 +0.4375 0.1875 0.4062 +0.4375 0.1875 0.4375 +0.4375 0.1875 0.4688 +0.4375 0.1875 0.5 +0.4375 0.1875 0.5312 +0.4375 0.1875 0.5625 +0.4375 0.1875 0.5938 +0.4375 0.1875 0.625 +0.4375 0.1875 0.6562 +0.4375 0.1875 0.6875 +0.4375 0.1875 0.7188 +0.4375 0.1875 0.75 +0.4375 0.1875 0.7812 +0.4375 0.1875 0.8125 +0.4375 0.1875 0.8438 +0.4375 0.1875 0.875 +0.4375 0.1875 0.9062 +0.4375 0.1875 0.9375 +0.4375 0.1875 0.9688 +0.4375 0.1875 1 +0.4375 0.2188 0 +0.4375 0.2188 0.03125 +0.4375 0.2188 0.0625 +0.4375 0.2188 0.09375 +0.4375 0.2188 0.125 +0.4375 0.2188 0.1562 +0.4375 0.2188 0.1875 +0.4375 0.2188 0.2188 +0.4375 0.2188 0.25 +0.4375 0.2188 0.2812 +0.4375 0.2188 0.3125 +0.4375 0.2188 0.3438 +0.4375 0.2188 0.375 +0.4375 0.2188 0.4062 +0.4375 0.2188 0.4375 +0.4375 0.2188 0.4688 +0.4375 0.2188 0.5 +0.4375 0.2188 0.5312 +0.4375 0.2188 0.5625 +0.4375 0.2188 0.5938 +0.4375 0.2188 0.625 +0.4375 0.2188 0.6562 +0.4375 0.2188 0.6875 +0.4375 0.2188 0.7188 +0.4375 0.2188 0.75 +0.4375 0.2188 0.7812 +0.4375 0.2188 0.8125 +0.4375 0.2188 0.8438 +0.4375 0.2188 0.875 +0.4375 0.2188 0.9062 +0.4375 0.2188 0.9375 +0.4375 0.2188 0.9688 +0.4375 0.2188 1 +0.4375 0.25 0 +0.4375 0.25 0.03125 +0.4375 0.25 0.0625 +0.4375 0.25 0.09375 +0.4375 0.25 0.125 +0.4375 0.25 0.1562 +0.4375 0.25 0.1875 +0.4375 0.25 0.2188 +0.4375 0.25 0.25 +0.4375 0.25 0.2812 +0.4375 0.25 0.3125 +0.4375 0.25 0.3438 +0.4375 0.25 0.375 +0.4375 0.25 0.4062 +0.4375 0.25 0.4375 +0.4375 0.25 0.4688 +0.4375 0.25 0.5 +0.4375 0.25 0.5312 +0.4375 0.25 0.5625 +0.4375 0.25 0.5938 +0.4375 0.25 0.625 +0.4375 0.25 0.6562 +0.4375 0.25 0.6875 +0.4375 0.25 0.7188 +0.4375 0.25 0.75 +0.4375 0.25 0.7812 +0.4375 0.25 0.8125 +0.4375 0.25 0.8438 +0.4375 0.25 0.875 +0.4375 0.25 0.9062 +0.4375 0.25 0.9375 +0.4375 0.25 0.9688 +0.4375 0.25 1 +0.4375 0.2812 0 +0.4375 0.2812 0.03125 +0.4375 0.2812 0.0625 +0.4375 0.2812 0.09375 +0.4375 0.2812 0.125 +0.4375 0.2812 0.1562 +0.4375 0.2812 0.1875 +0.4375 0.2812 0.2188 +0.4375 0.2812 0.25 +0.4375 0.2812 0.2812 +0.4375 0.2812 0.3125 +0.4375 0.2812 0.3438 +0.4375 0.2812 0.375 +0.4375 0.2812 0.4062 +0.4375 0.2812 0.4375 +0.4375 0.2812 0.4688 +0.4375 0.2812 0.5 +0.4375 0.2812 0.5312 +0.4375 0.2812 0.5625 +0.4375 0.2812 0.5938 +0.4375 0.2812 0.625 +0.4375 0.2812 0.6562 +0.4375 0.2812 0.6875 +0.4375 0.2812 0.7188 +0.4375 0.2812 0.75 +0.4375 0.2812 0.7812 +0.4375 0.2812 0.8125 +0.4375 0.2812 0.8438 +0.4375 0.2812 0.875 +0.4375 0.2812 0.9062 +0.4375 0.2812 0.9375 +0.4375 0.2812 0.9688 +0.4375 0.2812 1 +0.4375 0.3125 0 +0.4375 0.3125 0.03125 +0.4375 0.3125 0.0625 +0.4375 0.3125 0.09375 +0.4375 0.3125 0.125 +0.4375 0.3125 0.1562 +0.4375 0.3125 0.1875 +0.4375 0.3125 0.2188 +0.4375 0.3125 0.25 +0.4375 0.3125 0.2812 +0.4375 0.3125 0.3125 +0.4375 0.3125 0.3438 +0.4375 0.3125 0.375 +0.4375 0.3125 0.4062 +0.4375 0.3125 0.4375 +0.4375 0.3125 0.4688 +0.4375 0.3125 0.5 +0.4375 0.3125 0.5312 +0.4375 0.3125 0.5625 +0.4375 0.3125 0.5938 +0.4375 0.3125 0.625 +0.4375 0.3125 0.6562 +0.4375 0.3125 0.6875 +0.4375 0.3125 0.7188 +0.4375 0.3125 0.75 +0.4375 0.3125 0.7812 +0.4375 0.3125 0.8125 +0.4375 0.3125 0.8438 +0.4375 0.3125 0.875 +0.4375 0.3125 0.9062 +0.4375 0.3125 0.9375 +0.4375 0.3125 0.9688 +0.4375 0.3125 1 +0.4375 0.3438 0 +0.4375 0.3438 0.03125 +0.4375 0.3438 0.0625 +0.4375 0.3438 0.09375 +0.4375 0.3438 0.125 +0.4375 0.3438 0.1562 +0.4375 0.3438 0.1875 +0.4375 0.3438 0.2188 +0.4375 0.3438 0.25 +0.4375 0.3438 0.2812 +0.4375 0.3438 0.3125 +0.4375 0.3438 0.3438 +0.4375 0.3438 0.375 +0.4375 0.3438 0.4062 +0.4375 0.3438 0.4375 +0.4375 0.3438 0.4688 +0.4375 0.3438 0.5 +0.4375 0.3438 0.5312 +0.4375 0.3438 0.5625 +0.4375 0.3438 0.5938 +0.4375 0.3438 0.625 +0.4375 0.3438 0.6562 +0.4375 0.3438 0.6875 +0.4375 0.3438 0.7188 +0.4375 0.3438 0.75 +0.4375 0.3438 0.7812 +0.4375 0.3438 0.8125 +0.4375 0.3438 0.8438 +0.4375 0.3438 0.875 +0.4375 0.3438 0.9062 +0.4375 0.3438 0.9375 +0.4375 0.3438 0.9688 +0.4375 0.3438 1 +0.4375 0.375 0 +0.4375 0.375 0.03125 +0.4375 0.375 0.0625 +0.4375 0.375 0.09375 +0.4375 0.375 0.125 +0.4375 0.375 0.1562 +0.4375 0.375 0.1875 +0.4375 0.375 0.2188 +0.4375 0.375 0.25 +0.4375 0.375 0.2812 +0.4375 0.375 0.3125 +0.4375 0.375 0.3438 +0.4375 0.375 0.375 +0.4375 0.375 0.4062 +0.4375 0.375 0.4375 +0.4375 0.375 0.4688 +0.4375 0.375 0.5 +0.4375 0.375 0.5312 +0.4375 0.375 0.5625 +0.4375 0.375 0.5938 +0.4375 0.375 0.625 +0.4375 0.375 0.6562 +0.4375 0.375 0.6875 +0.4375 0.375 0.7188 +0.4375 0.375 0.75 +0.4375 0.375 0.7812 +0.4375 0.375 0.8125 +0.4375 0.375 0.8438 +0.4375 0.375 0.875 +0.4375 0.375 0.9062 +0.4375 0.375 0.9375 +0.4375 0.375 0.9688 +0.4375 0.375 1 +0.4375 0.4062 0 +0.4375 0.4062 0.03125 +0.4375 0.4062 0.0625 +0.4375 0.4062 0.09375 +0.4375 0.4062 0.125 +0.4375 0.4062 0.1562 +0.4375 0.4062 0.1875 +0.4375 0.4062 0.2188 +0.4375 0.4062 0.25 +0.4375 0.4062 0.2812 +0.4375 0.4062 0.3125 +0.4375 0.4062 0.3438 +0.4375 0.4062 0.375 +0.4375 0.4062 0.4062 +0.4375 0.4062 0.4375 +0.4375 0.4062 0.4688 +0.4375 0.4062 0.5 +0.4375 0.4062 0.5312 +0.4375 0.4062 0.5625 +0.4375 0.4062 0.5938 +0.4375 0.4062 0.625 +0.4375 0.4062 0.6562 +0.4375 0.4062 0.6875 +0.4375 0.4062 0.7188 +0.4375 0.4062 0.75 +0.4375 0.4062 0.7812 +0.4375 0.4062 0.8125 +0.4375 0.4062 0.8438 +0.4375 0.4062 0.875 +0.4375 0.4062 0.9062 +0.4375 0.4062 0.9375 +0.4375 0.4062 0.9688 +0.4375 0.4062 1 +0.4375 0.4375 0 +0.4375 0.4375 0.03125 +0.4375 0.4375 0.0625 +0.4375 0.4375 0.09375 +0.4375 0.4375 0.125 +0.4375 0.4375 0.1562 +0.4375 0.4375 0.1875 +0.4375 0.4375 0.2188 +0.4375 0.4375 0.25 +0.4375 0.4375 0.2812 +0.4375 0.4375 0.3125 +0.4375 0.4375 0.3438 +0.4375 0.4375 0.375 +0.4375 0.4375 0.4062 +0.4375 0.4375 0.4375 +0.4375 0.4375 0.4688 +0.4375 0.4375 0.5 +0.4375 0.4375 0.5312 +0.4375 0.4375 0.5625 +0.4375 0.4375 0.5938 +0.4375 0.4375 0.625 +0.4375 0.4375 0.6562 +0.4375 0.4375 0.6875 +0.4375 0.4375 0.7188 +0.4375 0.4375 0.75 +0.4375 0.4375 0.7812 +0.4375 0.4375 0.8125 +0.4375 0.4375 0.8438 +0.4375 0.4375 0.875 +0.4375 0.4375 0.9062 +0.4375 0.4375 0.9375 +0.4375 0.4375 0.9688 +0.4375 0.4375 1 +0.4375 0.4688 0 +0.4375 0.4688 0.03125 +0.4375 0.4688 0.0625 +0.4375 0.4688 0.09375 +0.4375 0.4688 0.125 +0.4375 0.4688 0.1562 +0.4375 0.4688 0.1875 +0.4375 0.4688 0.2188 +0.4375 0.4688 0.25 +0.4375 0.4688 0.2812 +0.4375 0.4688 0.3125 +0.4375 0.4688 0.3438 +0.4375 0.4688 0.375 +0.4375 0.4688 0.4062 +0.4375 0.4688 0.4375 +0.4375 0.4688 0.4688 +0.4375 0.4688 0.5 +0.4375 0.4688 0.5312 +0.4375 0.4688 0.5625 +0.4375 0.4688 0.5938 +0.4375 0.4688 0.625 +0.4375 0.4688 0.6562 +0.4375 0.4688 0.6875 +0.4375 0.4688 0.7188 +0.4375 0.4688 0.75 +0.4375 0.4688 0.7812 +0.4375 0.4688 0.8125 +0.4375 0.4688 0.8438 +0.4375 0.4688 0.875 +0.4375 0.4688 0.9062 +0.4375 0.4688 0.9375 +0.4375 0.4688 0.9688 +0.4375 0.4688 1 +0.4375 0.5 0 +0.4375 0.5 0.03125 +0.4375 0.5 0.0625 +0.4375 0.5 0.09375 +0.4375 0.5 0.125 +0.4375 0.5 0.1562 +0.4375 0.5 0.1875 +0.4375 0.5 0.2188 +0.4375 0.5 0.25 +0.4375 0.5 0.2812 +0.4375 0.5 0.3125 +0.4375 0.5 0.3438 +0.4375 0.5 0.375 +0.4375 0.5 0.4062 +0.4375 0.5 0.4375 +0.4375 0.5 0.4688 +0.4375 0.5 0.5 +0.4375 0.5 0.5312 +0.4375 0.5 0.5625 +0.4375 0.5 0.5938 +0.4375 0.5 0.625 +0.4375 0.5 0.6562 +0.4375 0.5 0.6875 +0.4375 0.5 0.7188 +0.4375 0.5 0.75 +0.4375 0.5 0.7812 +0.4375 0.5 0.8125 +0.4375 0.5 0.8438 +0.4375 0.5 0.875 +0.4375 0.5 0.9062 +0.4375 0.5 0.9375 +0.4375 0.5 0.9688 +0.4375 0.5 1 +0.4375 0.5312 0 +0.4375 0.5312 0.03125 +0.4375 0.5312 0.0625 +0.4375 0.5312 0.09375 +0.4375 0.5312 0.125 +0.4375 0.5312 0.1562 +0.4375 0.5312 0.1875 +0.4375 0.5312 0.2188 +0.4375 0.5312 0.25 +0.4375 0.5312 0.2812 +0.4375 0.5312 0.3125 +0.4375 0.5312 0.3438 +0.4375 0.5312 0.375 +0.4375 0.5312 0.4062 +0.4375 0.5312 0.4375 +0.4375 0.5312 0.4688 +0.4375 0.5312 0.5 +0.4375 0.5312 0.5312 +0.4375 0.5312 0.5625 +0.4375 0.5312 0.5938 +0.4375 0.5312 0.625 +0.4375 0.5312 0.6562 +0.4375 0.5312 0.6875 +0.4375 0.5312 0.7188 +0.4375 0.5312 0.75 +0.4375 0.5312 0.7812 +0.4375 0.5312 0.8125 +0.4375 0.5312 0.8438 +0.4375 0.5312 0.875 +0.4375 0.5312 0.9062 +0.4375 0.5312 0.9375 +0.4375 0.5312 0.9688 +0.4375 0.5312 1 +0.4375 0.5625 0 +0.4375 0.5625 0.03125 +0.4375 0.5625 0.0625 +0.4375 0.5625 0.09375 +0.4375 0.5625 0.125 +0.4375 0.5625 0.1562 +0.4375 0.5625 0.1875 +0.4375 0.5625 0.2188 +0.4375 0.5625 0.25 +0.4375 0.5625 0.2812 +0.4375 0.5625 0.3125 +0.4375 0.5625 0.3438 +0.4375 0.5625 0.375 +0.4375 0.5625 0.4062 +0.4375 0.5625 0.4375 +0.4375 0.5625 0.4688 +0.4375 0.5625 0.5 +0.4375 0.5625 0.5312 +0.4375 0.5625 0.5625 +0.4375 0.5625 0.5938 +0.4375 0.5625 0.625 +0.4375 0.5625 0.6562 +0.4375 0.5625 0.6875 +0.4375 0.5625 0.7188 +0.4375 0.5625 0.75 +0.4375 0.5625 0.7812 +0.4375 0.5625 0.8125 +0.4375 0.5625 0.8438 +0.4375 0.5625 0.875 +0.4375 0.5625 0.9062 +0.4375 0.5625 0.9375 +0.4375 0.5625 0.9688 +0.4375 0.5625 1 +0.4375 0.5938 0 +0.4375 0.5938 0.03125 +0.4375 0.5938 0.0625 +0.4375 0.5938 0.09375 +0.4375 0.5938 0.125 +0.4375 0.5938 0.1562 +0.4375 0.5938 0.1875 +0.4375 0.5938 0.2188 +0.4375 0.5938 0.25 +0.4375 0.5938 0.2812 +0.4375 0.5938 0.3125 +0.4375 0.5938 0.3438 +0.4375 0.5938 0.375 +0.4375 0.5938 0.4062 +0.4375 0.5938 0.4375 +0.4375 0.5938 0.4688 +0.4375 0.5938 0.5 +0.4375 0.5938 0.5312 +0.4375 0.5938 0.5625 +0.4375 0.5938 0.5938 +0.4375 0.5938 0.625 +0.4375 0.5938 0.6562 +0.4375 0.5938 0.6875 +0.4375 0.5938 0.7188 +0.4375 0.5938 0.75 +0.4375 0.5938 0.7812 +0.4375 0.5938 0.8125 +0.4375 0.5938 0.8438 +0.4375 0.5938 0.875 +0.4375 0.5938 0.9062 +0.4375 0.5938 0.9375 +0.4375 0.5938 0.9688 +0.4375 0.5938 1 +0.4375 0.625 0 +0.4375 0.625 0.03125 +0.4375 0.625 0.0625 +0.4375 0.625 0.09375 +0.4375 0.625 0.125 +0.4375 0.625 0.1562 +0.4375 0.625 0.1875 +0.4375 0.625 0.2188 +0.4375 0.625 0.25 +0.4375 0.625 0.2812 +0.4375 0.625 0.3125 +0.4375 0.625 0.3438 +0.4375 0.625 0.375 +0.4375 0.625 0.4062 +0.4375 0.625 0.4375 +0.4375 0.625 0.4688 +0.4375 0.625 0.5 +0.4375 0.625 0.5312 +0.4375 0.625 0.5625 +0.4375 0.625 0.5938 +0.4375 0.625 0.625 +0.4375 0.625 0.6562 +0.4375 0.625 0.6875 +0.4375 0.625 0.7188 +0.4375 0.625 0.75 +0.4375 0.625 0.7812 +0.4375 0.625 0.8125 +0.4375 0.625 0.8438 +0.4375 0.625 0.875 +0.4375 0.625 0.9062 +0.4375 0.625 0.9375 +0.4375 0.625 0.9688 +0.4375 0.625 1 +0.4375 0.6562 0 +0.4375 0.6562 0.03125 +0.4375 0.6562 0.0625 +0.4375 0.6562 0.09375 +0.4375 0.6562 0.125 +0.4375 0.6562 0.1562 +0.4375 0.6562 0.1875 +0.4375 0.6562 0.2188 +0.4375 0.6562 0.25 +0.4375 0.6562 0.2812 +0.4375 0.6562 0.3125 +0.4375 0.6562 0.3438 +0.4375 0.6562 0.375 +0.4375 0.6562 0.4062 +0.4375 0.6562 0.4375 +0.4375 0.6562 0.4688 +0.4375 0.6562 0.5 +0.4375 0.6562 0.5312 +0.4375 0.6562 0.5625 +0.4375 0.6562 0.5938 +0.4375 0.6562 0.625 +0.4375 0.6562 0.6562 +0.4375 0.6562 0.6875 +0.4375 0.6562 0.7188 +0.4375 0.6562 0.75 +0.4375 0.6562 0.7812 +0.4375 0.6562 0.8125 +0.4375 0.6562 0.8438 +0.4375 0.6562 0.875 +0.4375 0.6562 0.9062 +0.4375 0.6562 0.9375 +0.4375 0.6562 0.9688 +0.4375 0.6562 1 +0.4375 0.6875 0 +0.4375 0.6875 0.03125 +0.4375 0.6875 0.0625 +0.4375 0.6875 0.09375 +0.4375 0.6875 0.125 +0.4375 0.6875 0.1562 +0.4375 0.6875 0.1875 +0.4375 0.6875 0.2188 +0.4375 0.6875 0.25 +0.4375 0.6875 0.2812 +0.4375 0.6875 0.3125 +0.4375 0.6875 0.3438 +0.4375 0.6875 0.375 +0.4375 0.6875 0.4062 +0.4375 0.6875 0.4375 +0.4375 0.6875 0.4688 +0.4375 0.6875 0.5 +0.4375 0.6875 0.5312 +0.4375 0.6875 0.5625 +0.4375 0.6875 0.5938 +0.4375 0.6875 0.625 +0.4375 0.6875 0.6562 +0.4375 0.6875 0.6875 +0.4375 0.6875 0.7188 +0.4375 0.6875 0.75 +0.4375 0.6875 0.7812 +0.4375 0.6875 0.8125 +0.4375 0.6875 0.8438 +0.4375 0.6875 0.875 +0.4375 0.6875 0.9062 +0.4375 0.6875 0.9375 +0.4375 0.6875 0.9688 +0.4375 0.6875 1 +0.4375 0.7188 0 +0.4375 0.7188 0.03125 +0.4375 0.7188 0.0625 +0.4375 0.7188 0.09375 +0.4375 0.7188 0.125 +0.4375 0.7188 0.1562 +0.4375 0.7188 0.1875 +0.4375 0.7188 0.2188 +0.4375 0.7188 0.25 +0.4375 0.7188 0.2812 +0.4375 0.7188 0.3125 +0.4375 0.7188 0.3438 +0.4375 0.7188 0.375 +0.4375 0.7188 0.4062 +0.4375 0.7188 0.4375 +0.4375 0.7188 0.4688 +0.4375 0.7188 0.5 +0.4375 0.7188 0.5312 +0.4375 0.7188 0.5625 +0.4375 0.7188 0.5938 +0.4375 0.7188 0.625 +0.4375 0.7188 0.6562 +0.4375 0.7188 0.6875 +0.4375 0.7188 0.7188 +0.4375 0.7188 0.75 +0.4375 0.7188 0.7812 +0.4375 0.7188 0.8125 +0.4375 0.7188 0.8438 +0.4375 0.7188 0.875 +0.4375 0.7188 0.9062 +0.4375 0.7188 0.9375 +0.4375 0.7188 0.9688 +0.4375 0.7188 1 +0.4375 0.75 0 +0.4375 0.75 0.03125 +0.4375 0.75 0.0625 +0.4375 0.75 0.09375 +0.4375 0.75 0.125 +0.4375 0.75 0.1562 +0.4375 0.75 0.1875 +0.4375 0.75 0.2188 +0.4375 0.75 0.25 +0.4375 0.75 0.2812 +0.4375 0.75 0.3125 +0.4375 0.75 0.3438 +0.4375 0.75 0.375 +0.4375 0.75 0.4062 +0.4375 0.75 0.4375 +0.4375 0.75 0.4688 +0.4375 0.75 0.5 +0.4375 0.75 0.5312 +0.4375 0.75 0.5625 +0.4375 0.75 0.5938 +0.4375 0.75 0.625 +0.4375 0.75 0.6562 +0.4375 0.75 0.6875 +0.4375 0.75 0.7188 +0.4375 0.75 0.75 +0.4375 0.75 0.7812 +0.4375 0.75 0.8125 +0.4375 0.75 0.8438 +0.4375 0.75 0.875 +0.4375 0.75 0.9062 +0.4375 0.75 0.9375 +0.4375 0.75 0.9688 +0.4375 0.75 1 +0.4375 0.7812 0 +0.4375 0.7812 0.03125 +0.4375 0.7812 0.0625 +0.4375 0.7812 0.09375 +0.4375 0.7812 0.125 +0.4375 0.7812 0.1562 +0.4375 0.7812 0.1875 +0.4375 0.7812 0.2188 +0.4375 0.7812 0.25 +0.4375 0.7812 0.2812 +0.4375 0.7812 0.3125 +0.4375 0.7812 0.3438 +0.4375 0.7812 0.375 +0.4375 0.7812 0.4062 +0.4375 0.7812 0.4375 +0.4375 0.7812 0.4688 +0.4375 0.7812 0.5 +0.4375 0.7812 0.5312 +0.4375 0.7812 0.5625 +0.4375 0.7812 0.5938 +0.4375 0.7812 0.625 +0.4375 0.7812 0.6562 +0.4375 0.7812 0.6875 +0.4375 0.7812 0.7188 +0.4375 0.7812 0.75 +0.4375 0.7812 0.7812 +0.4375 0.7812 0.8125 +0.4375 0.7812 0.8438 +0.4375 0.7812 0.875 +0.4375 0.7812 0.9062 +0.4375 0.7812 0.9375 +0.4375 0.7812 0.9688 +0.4375 0.7812 1 +0.4375 0.8125 0 +0.4375 0.8125 0.03125 +0.4375 0.8125 0.0625 +0.4375 0.8125 0.09375 +0.4375 0.8125 0.125 +0.4375 0.8125 0.1562 +0.4375 0.8125 0.1875 +0.4375 0.8125 0.2188 +0.4375 0.8125 0.25 +0.4375 0.8125 0.2812 +0.4375 0.8125 0.3125 +0.4375 0.8125 0.3438 +0.4375 0.8125 0.375 +0.4375 0.8125 0.4062 +0.4375 0.8125 0.4375 +0.4375 0.8125 0.4688 +0.4375 0.8125 0.5 +0.4375 0.8125 0.5312 +0.4375 0.8125 0.5625 +0.4375 0.8125 0.5938 +0.4375 0.8125 0.625 +0.4375 0.8125 0.6562 +0.4375 0.8125 0.6875 +0.4375 0.8125 0.7188 +0.4375 0.8125 0.75 +0.4375 0.8125 0.7812 +0.4375 0.8125 0.8125 +0.4375 0.8125 0.8438 +0.4375 0.8125 0.875 +0.4375 0.8125 0.9062 +0.4375 0.8125 0.9375 +0.4375 0.8125 0.9688 +0.4375 0.8125 1 +0.4375 0.8438 0 +0.4375 0.8438 0.03125 +0.4375 0.8438 0.0625 +0.4375 0.8438 0.09375 +0.4375 0.8438 0.125 +0.4375 0.8438 0.1562 +0.4375 0.8438 0.1875 +0.4375 0.8438 0.2188 +0.4375 0.8438 0.25 +0.4375 0.8438 0.2812 +0.4375 0.8438 0.3125 +0.4375 0.8438 0.3438 +0.4375 0.8438 0.375 +0.4375 0.8438 0.4062 +0.4375 0.8438 0.4375 +0.4375 0.8438 0.4688 +0.4375 0.8438 0.5 +0.4375 0.8438 0.5312 +0.4375 0.8438 0.5625 +0.4375 0.8438 0.5938 +0.4375 0.8438 0.625 +0.4375 0.8438 0.6562 +0.4375 0.8438 0.6875 +0.4375 0.8438 0.7188 +0.4375 0.8438 0.75 +0.4375 0.8438 0.7812 +0.4375 0.8438 0.8125 +0.4375 0.8438 0.8438 +0.4375 0.8438 0.875 +0.4375 0.8438 0.9062 +0.4375 0.8438 0.9375 +0.4375 0.8438 0.9688 +0.4375 0.8438 1 +0.4375 0.875 0 +0.4375 0.875 0.03125 +0.4375 0.875 0.0625 +0.4375 0.875 0.09375 +0.4375 0.875 0.125 +0.4375 0.875 0.1562 +0.4375 0.875 0.1875 +0.4375 0.875 0.2188 +0.4375 0.875 0.25 +0.4375 0.875 0.2812 +0.4375 0.875 0.3125 +0.4375 0.875 0.3438 +0.4375 0.875 0.375 +0.4375 0.875 0.4062 +0.4375 0.875 0.4375 +0.4375 0.875 0.4688 +0.4375 0.875 0.5 +0.4375 0.875 0.5312 +0.4375 0.875 0.5625 +0.4375 0.875 0.5938 +0.4375 0.875 0.625 +0.4375 0.875 0.6562 +0.4375 0.875 0.6875 +0.4375 0.875 0.7188 +0.4375 0.875 0.75 +0.4375 0.875 0.7812 +0.4375 0.875 0.8125 +0.4375 0.875 0.8438 +0.4375 0.875 0.875 +0.4375 0.875 0.9062 +0.4375 0.875 0.9375 +0.4375 0.875 0.9688 +0.4375 0.875 1 +0.4375 0.9062 0 +0.4375 0.9062 0.03125 +0.4375 0.9062 0.0625 +0.4375 0.9062 0.09375 +0.4375 0.9062 0.125 +0.4375 0.9062 0.1562 +0.4375 0.9062 0.1875 +0.4375 0.9062 0.2188 +0.4375 0.9062 0.25 +0.4375 0.9062 0.2812 +0.4375 0.9062 0.3125 +0.4375 0.9062 0.3438 +0.4375 0.9062 0.375 +0.4375 0.9062 0.4062 +0.4375 0.9062 0.4375 +0.4375 0.9062 0.4688 +0.4375 0.9062 0.5 +0.4375 0.9062 0.5312 +0.4375 0.9062 0.5625 +0.4375 0.9062 0.5938 +0.4375 0.9062 0.625 +0.4375 0.9062 0.6562 +0.4375 0.9062 0.6875 +0.4375 0.9062 0.7188 +0.4375 0.9062 0.75 +0.4375 0.9062 0.7812 +0.4375 0.9062 0.8125 +0.4375 0.9062 0.8438 +0.4375 0.9062 0.875 +0.4375 0.9062 0.9062 +0.4375 0.9062 0.9375 +0.4375 0.9062 0.9688 +0.4375 0.9062 1 +0.4375 0.9375 0 +0.4375 0.9375 0.03125 +0.4375 0.9375 0.0625 +0.4375 0.9375 0.09375 +0.4375 0.9375 0.125 +0.4375 0.9375 0.1562 +0.4375 0.9375 0.1875 +0.4375 0.9375 0.2188 +0.4375 0.9375 0.25 +0.4375 0.9375 0.2812 +0.4375 0.9375 0.3125 +0.4375 0.9375 0.3438 +0.4375 0.9375 0.375 +0.4375 0.9375 0.4062 +0.4375 0.9375 0.4375 +0.4375 0.9375 0.4688 +0.4375 0.9375 0.5 +0.4375 0.9375 0.5312 +0.4375 0.9375 0.5625 +0.4375 0.9375 0.5938 +0.4375 0.9375 0.625 +0.4375 0.9375 0.6562 +0.4375 0.9375 0.6875 +0.4375 0.9375 0.7188 +0.4375 0.9375 0.75 +0.4375 0.9375 0.7812 +0.4375 0.9375 0.8125 +0.4375 0.9375 0.8438 +0.4375 0.9375 0.875 +0.4375 0.9375 0.9062 +0.4375 0.9375 0.9375 +0.4375 0.9375 0.9688 +0.4375 0.9375 1 +0.4375 0.9688 0 +0.4375 0.9688 0.03125 +0.4375 0.9688 0.0625 +0.4375 0.9688 0.09375 +0.4375 0.9688 0.125 +0.4375 0.9688 0.1562 +0.4375 0.9688 0.1875 +0.4375 0.9688 0.2188 +0.4375 0.9688 0.25 +0.4375 0.9688 0.2812 +0.4375 0.9688 0.3125 +0.4375 0.9688 0.3438 +0.4375 0.9688 0.375 +0.4375 0.9688 0.4062 +0.4375 0.9688 0.4375 +0.4375 0.9688 0.4688 +0.4375 0.9688 0.5 +0.4375 0.9688 0.5312 +0.4375 0.9688 0.5625 +0.4375 0.9688 0.5938 +0.4375 0.9688 0.625 +0.4375 0.9688 0.6562 +0.4375 0.9688 0.6875 +0.4375 0.9688 0.7188 +0.4375 0.9688 0.75 +0.4375 0.9688 0.7812 +0.4375 0.9688 0.8125 +0.4375 0.9688 0.8438 +0.4375 0.9688 0.875 +0.4375 0.9688 0.9062 +0.4375 0.9688 0.9375 +0.4375 0.9688 0.9688 +0.4375 0.9688 1 +0.4375 1 0 +0.4375 1 0.03125 +0.4375 1 0.0625 +0.4375 1 0.09375 +0.4375 1 0.125 +0.4375 1 0.1562 +0.4375 1 0.1875 +0.4375 1 0.2188 +0.4375 1 0.25 +0.4375 1 0.2812 +0.4375 1 0.3125 +0.4375 1 0.3438 +0.4375 1 0.375 +0.4375 1 0.4062 +0.4375 1 0.4375 +0.4375 1 0.4688 +0.4375 1 0.5 +0.4375 1 0.5312 +0.4375 1 0.5625 +0.4375 1 0.5938 +0.4375 1 0.625 +0.4375 1 0.6562 +0.4375 1 0.6875 +0.4375 1 0.7188 +0.4375 1 0.75 +0.4375 1 0.7812 +0.4375 1 0.8125 +0.4375 1 0.8438 +0.4375 1 0.875 +0.4375 1 0.9062 +0.4375 1 0.9375 +0.4375 1 0.9688 +0.4375 1 1 +0.4688 0 0 +0.4688 0 0.03125 +0.4688 0 0.0625 +0.4688 0 0.09375 +0.4688 0 0.125 +0.4688 0 0.1562 +0.4688 0 0.1875 +0.4688 0 0.2188 +0.4688 0 0.25 +0.4688 0 0.2812 +0.4688 0 0.3125 +0.4688 0 0.3438 +0.4688 0 0.375 +0.4688 0 0.4062 +0.4688 0 0.4375 +0.4688 0 0.4688 +0.4688 0 0.5 +0.4688 0 0.5312 +0.4688 0 0.5625 +0.4688 0 0.5938 +0.4688 0 0.625 +0.4688 0 0.6562 +0.4688 0 0.6875 +0.4688 0 0.7188 +0.4688 0 0.75 +0.4688 0 0.7812 +0.4688 0 0.8125 +0.4688 0 0.8438 +0.4688 0 0.875 +0.4688 0 0.9062 +0.4688 0 0.9375 +0.4688 0 0.9688 +0.4688 0 1 +0.4688 0.03125 0 +0.4688 0.03125 0.03125 +0.4688 0.03125 0.0625 +0.4688 0.03125 0.09375 +0.4688 0.03125 0.125 +0.4688 0.03125 0.1562 +0.4688 0.03125 0.1875 +0.4688 0.03125 0.2188 +0.4688 0.03125 0.25 +0.4688 0.03125 0.2812 +0.4688 0.03125 0.3125 +0.4688 0.03125 0.3438 +0.4688 0.03125 0.375 +0.4688 0.03125 0.4062 +0.4688 0.03125 0.4375 +0.4688 0.03125 0.4688 +0.4688 0.03125 0.5 +0.4688 0.03125 0.5312 +0.4688 0.03125 0.5625 +0.4688 0.03125 0.5938 +0.4688 0.03125 0.625 +0.4688 0.03125 0.6562 +0.4688 0.03125 0.6875 +0.4688 0.03125 0.7188 +0.4688 0.03125 0.75 +0.4688 0.03125 0.7812 +0.4688 0.03125 0.8125 +0.4688 0.03125 0.8438 +0.4688 0.03125 0.875 +0.4688 0.03125 0.9062 +0.4688 0.03125 0.9375 +0.4688 0.03125 0.9688 +0.4688 0.03125 1 +0.4688 0.0625 0 +0.4688 0.0625 0.03125 +0.4688 0.0625 0.0625 +0.4688 0.0625 0.09375 +0.4688 0.0625 0.125 +0.4688 0.0625 0.1562 +0.4688 0.0625 0.1875 +0.4688 0.0625 0.2188 +0.4688 0.0625 0.25 +0.4688 0.0625 0.2812 +0.4688 0.0625 0.3125 +0.4688 0.0625 0.3438 +0.4688 0.0625 0.375 +0.4688 0.0625 0.4062 +0.4688 0.0625 0.4375 +0.4688 0.0625 0.4688 +0.4688 0.0625 0.5 +0.4688 0.0625 0.5312 +0.4688 0.0625 0.5625 +0.4688 0.0625 0.5938 +0.4688 0.0625 0.625 +0.4688 0.0625 0.6562 +0.4688 0.0625 0.6875 +0.4688 0.0625 0.7188 +0.4688 0.0625 0.75 +0.4688 0.0625 0.7812 +0.4688 0.0625 0.8125 +0.4688 0.0625 0.8438 +0.4688 0.0625 0.875 +0.4688 0.0625 0.9062 +0.4688 0.0625 0.9375 +0.4688 0.0625 0.9688 +0.4688 0.0625 1 +0.4688 0.09375 0 +0.4688 0.09375 0.03125 +0.4688 0.09375 0.0625 +0.4688 0.09375 0.09375 +0.4688 0.09375 0.125 +0.4688 0.09375 0.1562 +0.4688 0.09375 0.1875 +0.4688 0.09375 0.2188 +0.4688 0.09375 0.25 +0.4688 0.09375 0.2812 +0.4688 0.09375 0.3125 +0.4688 0.09375 0.3438 +0.4688 0.09375 0.375 +0.4688 0.09375 0.4062 +0.4688 0.09375 0.4375 +0.4688 0.09375 0.4688 +0.4688 0.09375 0.5 +0.4688 0.09375 0.5312 +0.4688 0.09375 0.5625 +0.4688 0.09375 0.5938 +0.4688 0.09375 0.625 +0.4688 0.09375 0.6562 +0.4688 0.09375 0.6875 +0.4688 0.09375 0.7188 +0.4688 0.09375 0.75 +0.4688 0.09375 0.7812 +0.4688 0.09375 0.8125 +0.4688 0.09375 0.8438 +0.4688 0.09375 0.875 +0.4688 0.09375 0.9062 +0.4688 0.09375 0.9375 +0.4688 0.09375 0.9688 +0.4688 0.09375 1 +0.4688 0.125 0 +0.4688 0.125 0.03125 +0.4688 0.125 0.0625 +0.4688 0.125 0.09375 +0.4688 0.125 0.125 +0.4688 0.125 0.1562 +0.4688 0.125 0.1875 +0.4688 0.125 0.2188 +0.4688 0.125 0.25 +0.4688 0.125 0.2812 +0.4688 0.125 0.3125 +0.4688 0.125 0.3438 +0.4688 0.125 0.375 +0.4688 0.125 0.4062 +0.4688 0.125 0.4375 +0.4688 0.125 0.4688 +0.4688 0.125 0.5 +0.4688 0.125 0.5312 +0.4688 0.125 0.5625 +0.4688 0.125 0.5938 +0.4688 0.125 0.625 +0.4688 0.125 0.6562 +0.4688 0.125 0.6875 +0.4688 0.125 0.7188 +0.4688 0.125 0.75 +0.4688 0.125 0.7812 +0.4688 0.125 0.8125 +0.4688 0.125 0.8438 +0.4688 0.125 0.875 +0.4688 0.125 0.9062 +0.4688 0.125 0.9375 +0.4688 0.125 0.9688 +0.4688 0.125 1 +0.4688 0.1562 0 +0.4688 0.1562 0.03125 +0.4688 0.1562 0.0625 +0.4688 0.1562 0.09375 +0.4688 0.1562 0.125 +0.4688 0.1562 0.1562 +0.4688 0.1562 0.1875 +0.4688 0.1562 0.2188 +0.4688 0.1562 0.25 +0.4688 0.1562 0.2812 +0.4688 0.1562 0.3125 +0.4688 0.1562 0.3438 +0.4688 0.1562 0.375 +0.4688 0.1562 0.4062 +0.4688 0.1562 0.4375 +0.4688 0.1562 0.4688 +0.4688 0.1562 0.5 +0.4688 0.1562 0.5312 +0.4688 0.1562 0.5625 +0.4688 0.1562 0.5938 +0.4688 0.1562 0.625 +0.4688 0.1562 0.6562 +0.4688 0.1562 0.6875 +0.4688 0.1562 0.7188 +0.4688 0.1562 0.75 +0.4688 0.1562 0.7812 +0.4688 0.1562 0.8125 +0.4688 0.1562 0.8438 +0.4688 0.1562 0.875 +0.4688 0.1562 0.9062 +0.4688 0.1562 0.9375 +0.4688 0.1562 0.9688 +0.4688 0.1562 1 +0.4688 0.1875 0 +0.4688 0.1875 0.03125 +0.4688 0.1875 0.0625 +0.4688 0.1875 0.09375 +0.4688 0.1875 0.125 +0.4688 0.1875 0.1562 +0.4688 0.1875 0.1875 +0.4688 0.1875 0.2188 +0.4688 0.1875 0.25 +0.4688 0.1875 0.2812 +0.4688 0.1875 0.3125 +0.4688 0.1875 0.3438 +0.4688 0.1875 0.375 +0.4688 0.1875 0.4062 +0.4688 0.1875 0.4375 +0.4688 0.1875 0.4688 +0.4688 0.1875 0.5 +0.4688 0.1875 0.5312 +0.4688 0.1875 0.5625 +0.4688 0.1875 0.5938 +0.4688 0.1875 0.625 +0.4688 0.1875 0.6562 +0.4688 0.1875 0.6875 +0.4688 0.1875 0.7188 +0.4688 0.1875 0.75 +0.4688 0.1875 0.7812 +0.4688 0.1875 0.8125 +0.4688 0.1875 0.8438 +0.4688 0.1875 0.875 +0.4688 0.1875 0.9062 +0.4688 0.1875 0.9375 +0.4688 0.1875 0.9688 +0.4688 0.1875 1 +0.4688 0.2188 0 +0.4688 0.2188 0.03125 +0.4688 0.2188 0.0625 +0.4688 0.2188 0.09375 +0.4688 0.2188 0.125 +0.4688 0.2188 0.1562 +0.4688 0.2188 0.1875 +0.4688 0.2188 0.2188 +0.4688 0.2188 0.25 +0.4688 0.2188 0.2812 +0.4688 0.2188 0.3125 +0.4688 0.2188 0.3438 +0.4688 0.2188 0.375 +0.4688 0.2188 0.4062 +0.4688 0.2188 0.4375 +0.4688 0.2188 0.4688 +0.4688 0.2188 0.5 +0.4688 0.2188 0.5312 +0.4688 0.2188 0.5625 +0.4688 0.2188 0.5938 +0.4688 0.2188 0.625 +0.4688 0.2188 0.6562 +0.4688 0.2188 0.6875 +0.4688 0.2188 0.7188 +0.4688 0.2188 0.75 +0.4688 0.2188 0.7812 +0.4688 0.2188 0.8125 +0.4688 0.2188 0.8438 +0.4688 0.2188 0.875 +0.4688 0.2188 0.9062 +0.4688 0.2188 0.9375 +0.4688 0.2188 0.9688 +0.4688 0.2188 1 +0.4688 0.25 0 +0.4688 0.25 0.03125 +0.4688 0.25 0.0625 +0.4688 0.25 0.09375 +0.4688 0.25 0.125 +0.4688 0.25 0.1562 +0.4688 0.25 0.1875 +0.4688 0.25 0.2188 +0.4688 0.25 0.25 +0.4688 0.25 0.2812 +0.4688 0.25 0.3125 +0.4688 0.25 0.3438 +0.4688 0.25 0.375 +0.4688 0.25 0.4062 +0.4688 0.25 0.4375 +0.4688 0.25 0.4688 +0.4688 0.25 0.5 +0.4688 0.25 0.5312 +0.4688 0.25 0.5625 +0.4688 0.25 0.5938 +0.4688 0.25 0.625 +0.4688 0.25 0.6562 +0.4688 0.25 0.6875 +0.4688 0.25 0.7188 +0.4688 0.25 0.75 +0.4688 0.25 0.7812 +0.4688 0.25 0.8125 +0.4688 0.25 0.8438 +0.4688 0.25 0.875 +0.4688 0.25 0.9062 +0.4688 0.25 0.9375 +0.4688 0.25 0.9688 +0.4688 0.25 1 +0.4688 0.2812 0 +0.4688 0.2812 0.03125 +0.4688 0.2812 0.0625 +0.4688 0.2812 0.09375 +0.4688 0.2812 0.125 +0.4688 0.2812 0.1562 +0.4688 0.2812 0.1875 +0.4688 0.2812 0.2188 +0.4688 0.2812 0.25 +0.4688 0.2812 0.2812 +0.4688 0.2812 0.3125 +0.4688 0.2812 0.3438 +0.4688 0.2812 0.375 +0.4688 0.2812 0.4062 +0.4688 0.2812 0.4375 +0.4688 0.2812 0.4688 +0.4688 0.2812 0.5 +0.4688 0.2812 0.5312 +0.4688 0.2812 0.5625 +0.4688 0.2812 0.5938 +0.4688 0.2812 0.625 +0.4688 0.2812 0.6562 +0.4688 0.2812 0.6875 +0.4688 0.2812 0.7188 +0.4688 0.2812 0.75 +0.4688 0.2812 0.7812 +0.4688 0.2812 0.8125 +0.4688 0.2812 0.8438 +0.4688 0.2812 0.875 +0.4688 0.2812 0.9062 +0.4688 0.2812 0.9375 +0.4688 0.2812 0.9688 +0.4688 0.2812 1 +0.4688 0.3125 0 +0.4688 0.3125 0.03125 +0.4688 0.3125 0.0625 +0.4688 0.3125 0.09375 +0.4688 0.3125 0.125 +0.4688 0.3125 0.1562 +0.4688 0.3125 0.1875 +0.4688 0.3125 0.2188 +0.4688 0.3125 0.25 +0.4688 0.3125 0.2812 +0.4688 0.3125 0.3125 +0.4688 0.3125 0.3438 +0.4688 0.3125 0.375 +0.4688 0.3125 0.4062 +0.4688 0.3125 0.4375 +0.4688 0.3125 0.4688 +0.4688 0.3125 0.5 +0.4688 0.3125 0.5312 +0.4688 0.3125 0.5625 +0.4688 0.3125 0.5938 +0.4688 0.3125 0.625 +0.4688 0.3125 0.6562 +0.4688 0.3125 0.6875 +0.4688 0.3125 0.7188 +0.4688 0.3125 0.75 +0.4688 0.3125 0.7812 +0.4688 0.3125 0.8125 +0.4688 0.3125 0.8438 +0.4688 0.3125 0.875 +0.4688 0.3125 0.9062 +0.4688 0.3125 0.9375 +0.4688 0.3125 0.9688 +0.4688 0.3125 1 +0.4688 0.3438 0 +0.4688 0.3438 0.03125 +0.4688 0.3438 0.0625 +0.4688 0.3438 0.09375 +0.4688 0.3438 0.125 +0.4688 0.3438 0.1562 +0.4688 0.3438 0.1875 +0.4688 0.3438 0.2188 +0.4688 0.3438 0.25 +0.4688 0.3438 0.2812 +0.4688 0.3438 0.3125 +0.4688 0.3438 0.3438 +0.4688 0.3438 0.375 +0.4688 0.3438 0.4062 +0.4688 0.3438 0.4375 +0.4688 0.3438 0.4688 +0.4688 0.3438 0.5 +0.4688 0.3438 0.5312 +0.4688 0.3438 0.5625 +0.4688 0.3438 0.5938 +0.4688 0.3438 0.625 +0.4688 0.3438 0.6562 +0.4688 0.3438 0.6875 +0.4688 0.3438 0.7188 +0.4688 0.3438 0.75 +0.4688 0.3438 0.7812 +0.4688 0.3438 0.8125 +0.4688 0.3438 0.8438 +0.4688 0.3438 0.875 +0.4688 0.3438 0.9062 +0.4688 0.3438 0.9375 +0.4688 0.3438 0.9688 +0.4688 0.3438 1 +0.4688 0.375 0 +0.4688 0.375 0.03125 +0.4688 0.375 0.0625 +0.4688 0.375 0.09375 +0.4688 0.375 0.125 +0.4688 0.375 0.1562 +0.4688 0.375 0.1875 +0.4688 0.375 0.2188 +0.4688 0.375 0.25 +0.4688 0.375 0.2812 +0.4688 0.375 0.3125 +0.4688 0.375 0.3438 +0.4688 0.375 0.375 +0.4688 0.375 0.4062 +0.4688 0.375 0.4375 +0.4688 0.375 0.4688 +0.4688 0.375 0.5 +0.4688 0.375 0.5312 +0.4688 0.375 0.5625 +0.4688 0.375 0.5938 +0.4688 0.375 0.625 +0.4688 0.375 0.6562 +0.4688 0.375 0.6875 +0.4688 0.375 0.7188 +0.4688 0.375 0.75 +0.4688 0.375 0.7812 +0.4688 0.375 0.8125 +0.4688 0.375 0.8438 +0.4688 0.375 0.875 +0.4688 0.375 0.9062 +0.4688 0.375 0.9375 +0.4688 0.375 0.9688 +0.4688 0.375 1 +0.4688 0.4062 0 +0.4688 0.4062 0.03125 +0.4688 0.4062 0.0625 +0.4688 0.4062 0.09375 +0.4688 0.4062 0.125 +0.4688 0.4062 0.1562 +0.4688 0.4062 0.1875 +0.4688 0.4062 0.2188 +0.4688 0.4062 0.25 +0.4688 0.4062 0.2812 +0.4688 0.4062 0.3125 +0.4688 0.4062 0.3438 +0.4688 0.4062 0.375 +0.4688 0.4062 0.4062 +0.4688 0.4062 0.4375 +0.4688 0.4062 0.4688 +0.4688 0.4062 0.5 +0.4688 0.4062 0.5312 +0.4688 0.4062 0.5625 +0.4688 0.4062 0.5938 +0.4688 0.4062 0.625 +0.4688 0.4062 0.6562 +0.4688 0.4062 0.6875 +0.4688 0.4062 0.7188 +0.4688 0.4062 0.75 +0.4688 0.4062 0.7812 +0.4688 0.4062 0.8125 +0.4688 0.4062 0.8438 +0.4688 0.4062 0.875 +0.4688 0.4062 0.9062 +0.4688 0.4062 0.9375 +0.4688 0.4062 0.9688 +0.4688 0.4062 1 +0.4688 0.4375 0 +0.4688 0.4375 0.03125 +0.4688 0.4375 0.0625 +0.4688 0.4375 0.09375 +0.4688 0.4375 0.125 +0.4688 0.4375 0.1562 +0.4688 0.4375 0.1875 +0.4688 0.4375 0.2188 +0.4688 0.4375 0.25 +0.4688 0.4375 0.2812 +0.4688 0.4375 0.3125 +0.4688 0.4375 0.3438 +0.4688 0.4375 0.375 +0.4688 0.4375 0.4062 +0.4688 0.4375 0.4375 +0.4688 0.4375 0.4688 +0.4688 0.4375 0.5 +0.4688 0.4375 0.5312 +0.4688 0.4375 0.5625 +0.4688 0.4375 0.5938 +0.4688 0.4375 0.625 +0.4688 0.4375 0.6562 +0.4688 0.4375 0.6875 +0.4688 0.4375 0.7188 +0.4688 0.4375 0.75 +0.4688 0.4375 0.7812 +0.4688 0.4375 0.8125 +0.4688 0.4375 0.8438 +0.4688 0.4375 0.875 +0.4688 0.4375 0.9062 +0.4688 0.4375 0.9375 +0.4688 0.4375 0.9688 +0.4688 0.4375 1 +0.4688 0.4688 0 +0.4688 0.4688 0.03125 +0.4688 0.4688 0.0625 +0.4688 0.4688 0.09375 +0.4688 0.4688 0.125 +0.4688 0.4688 0.1562 +0.4688 0.4688 0.1875 +0.4688 0.4688 0.2188 +0.4688 0.4688 0.25 +0.4688 0.4688 0.2812 +0.4688 0.4688 0.3125 +0.4688 0.4688 0.3438 +0.4688 0.4688 0.375 +0.4688 0.4688 0.4062 +0.4688 0.4688 0.4375 +0.4688 0.4688 0.4688 +0.4688 0.4688 0.5 +0.4688 0.4688 0.5312 +0.4688 0.4688 0.5625 +0.4688 0.4688 0.5938 +0.4688 0.4688 0.625 +0.4688 0.4688 0.6562 +0.4688 0.4688 0.6875 +0.4688 0.4688 0.7188 +0.4688 0.4688 0.75 +0.4688 0.4688 0.7812 +0.4688 0.4688 0.8125 +0.4688 0.4688 0.8438 +0.4688 0.4688 0.875 +0.4688 0.4688 0.9062 +0.4688 0.4688 0.9375 +0.4688 0.4688 0.9688 +0.4688 0.4688 1 +0.4688 0.5 0 +0.4688 0.5 0.03125 +0.4688 0.5 0.0625 +0.4688 0.5 0.09375 +0.4688 0.5 0.125 +0.4688 0.5 0.1562 +0.4688 0.5 0.1875 +0.4688 0.5 0.2188 +0.4688 0.5 0.25 +0.4688 0.5 0.2812 +0.4688 0.5 0.3125 +0.4688 0.5 0.3438 +0.4688 0.5 0.375 +0.4688 0.5 0.4062 +0.4688 0.5 0.4375 +0.4688 0.5 0.4688 +0.4688 0.5 0.5 +0.4688 0.5 0.5312 +0.4688 0.5 0.5625 +0.4688 0.5 0.5938 +0.4688 0.5 0.625 +0.4688 0.5 0.6562 +0.4688 0.5 0.6875 +0.4688 0.5 0.7188 +0.4688 0.5 0.75 +0.4688 0.5 0.7812 +0.4688 0.5 0.8125 +0.4688 0.5 0.8438 +0.4688 0.5 0.875 +0.4688 0.5 0.9062 +0.4688 0.5 0.9375 +0.4688 0.5 0.9688 +0.4688 0.5 1 +0.4688 0.5312 0 +0.4688 0.5312 0.03125 +0.4688 0.5312 0.0625 +0.4688 0.5312 0.09375 +0.4688 0.5312 0.125 +0.4688 0.5312 0.1562 +0.4688 0.5312 0.1875 +0.4688 0.5312 0.2188 +0.4688 0.5312 0.25 +0.4688 0.5312 0.2812 +0.4688 0.5312 0.3125 +0.4688 0.5312 0.3438 +0.4688 0.5312 0.375 +0.4688 0.5312 0.4062 +0.4688 0.5312 0.4375 +0.4688 0.5312 0.4688 +0.4688 0.5312 0.5 +0.4688 0.5312 0.5312 +0.4688 0.5312 0.5625 +0.4688 0.5312 0.5938 +0.4688 0.5312 0.625 +0.4688 0.5312 0.6562 +0.4688 0.5312 0.6875 +0.4688 0.5312 0.7188 +0.4688 0.5312 0.75 +0.4688 0.5312 0.7812 +0.4688 0.5312 0.8125 +0.4688 0.5312 0.8438 +0.4688 0.5312 0.875 +0.4688 0.5312 0.9062 +0.4688 0.5312 0.9375 +0.4688 0.5312 0.9688 +0.4688 0.5312 1 +0.4688 0.5625 0 +0.4688 0.5625 0.03125 +0.4688 0.5625 0.0625 +0.4688 0.5625 0.09375 +0.4688 0.5625 0.125 +0.4688 0.5625 0.1562 +0.4688 0.5625 0.1875 +0.4688 0.5625 0.2188 +0.4688 0.5625 0.25 +0.4688 0.5625 0.2812 +0.4688 0.5625 0.3125 +0.4688 0.5625 0.3438 +0.4688 0.5625 0.375 +0.4688 0.5625 0.4062 +0.4688 0.5625 0.4375 +0.4688 0.5625 0.4688 +0.4688 0.5625 0.5 +0.4688 0.5625 0.5312 +0.4688 0.5625 0.5625 +0.4688 0.5625 0.5938 +0.4688 0.5625 0.625 +0.4688 0.5625 0.6562 +0.4688 0.5625 0.6875 +0.4688 0.5625 0.7188 +0.4688 0.5625 0.75 +0.4688 0.5625 0.7812 +0.4688 0.5625 0.8125 +0.4688 0.5625 0.8438 +0.4688 0.5625 0.875 +0.4688 0.5625 0.9062 +0.4688 0.5625 0.9375 +0.4688 0.5625 0.9688 +0.4688 0.5625 1 +0.4688 0.5938 0 +0.4688 0.5938 0.03125 +0.4688 0.5938 0.0625 +0.4688 0.5938 0.09375 +0.4688 0.5938 0.125 +0.4688 0.5938 0.1562 +0.4688 0.5938 0.1875 +0.4688 0.5938 0.2188 +0.4688 0.5938 0.25 +0.4688 0.5938 0.2812 +0.4688 0.5938 0.3125 +0.4688 0.5938 0.3438 +0.4688 0.5938 0.375 +0.4688 0.5938 0.4062 +0.4688 0.5938 0.4375 +0.4688 0.5938 0.4688 +0.4688 0.5938 0.5 +0.4688 0.5938 0.5312 +0.4688 0.5938 0.5625 +0.4688 0.5938 0.5938 +0.4688 0.5938 0.625 +0.4688 0.5938 0.6562 +0.4688 0.5938 0.6875 +0.4688 0.5938 0.7188 +0.4688 0.5938 0.75 +0.4688 0.5938 0.7812 +0.4688 0.5938 0.8125 +0.4688 0.5938 0.8438 +0.4688 0.5938 0.875 +0.4688 0.5938 0.9062 +0.4688 0.5938 0.9375 +0.4688 0.5938 0.9688 +0.4688 0.5938 1 +0.4688 0.625 0 +0.4688 0.625 0.03125 +0.4688 0.625 0.0625 +0.4688 0.625 0.09375 +0.4688 0.625 0.125 +0.4688 0.625 0.1562 +0.4688 0.625 0.1875 +0.4688 0.625 0.2188 +0.4688 0.625 0.25 +0.4688 0.625 0.2812 +0.4688 0.625 0.3125 +0.4688 0.625 0.3438 +0.4688 0.625 0.375 +0.4688 0.625 0.4062 +0.4688 0.625 0.4375 +0.4688 0.625 0.4688 +0.4688 0.625 0.5 +0.4688 0.625 0.5312 +0.4688 0.625 0.5625 +0.4688 0.625 0.5938 +0.4688 0.625 0.625 +0.4688 0.625 0.6562 +0.4688 0.625 0.6875 +0.4688 0.625 0.7188 +0.4688 0.625 0.75 +0.4688 0.625 0.7812 +0.4688 0.625 0.8125 +0.4688 0.625 0.8438 +0.4688 0.625 0.875 +0.4688 0.625 0.9062 +0.4688 0.625 0.9375 +0.4688 0.625 0.9688 +0.4688 0.625 1 +0.4688 0.6562 0 +0.4688 0.6562 0.03125 +0.4688 0.6562 0.0625 +0.4688 0.6562 0.09375 +0.4688 0.6562 0.125 +0.4688 0.6562 0.1562 +0.4688 0.6562 0.1875 +0.4688 0.6562 0.2188 +0.4688 0.6562 0.25 +0.4688 0.6562 0.2812 +0.4688 0.6562 0.3125 +0.4688 0.6562 0.3438 +0.4688 0.6562 0.375 +0.4688 0.6562 0.4062 +0.4688 0.6562 0.4375 +0.4688 0.6562 0.4688 +0.4688 0.6562 0.5 +0.4688 0.6562 0.5312 +0.4688 0.6562 0.5625 +0.4688 0.6562 0.5938 +0.4688 0.6562 0.625 +0.4688 0.6562 0.6562 +0.4688 0.6562 0.6875 +0.4688 0.6562 0.7188 +0.4688 0.6562 0.75 +0.4688 0.6562 0.7812 +0.4688 0.6562 0.8125 +0.4688 0.6562 0.8438 +0.4688 0.6562 0.875 +0.4688 0.6562 0.9062 +0.4688 0.6562 0.9375 +0.4688 0.6562 0.9688 +0.4688 0.6562 1 +0.4688 0.6875 0 +0.4688 0.6875 0.03125 +0.4688 0.6875 0.0625 +0.4688 0.6875 0.09375 +0.4688 0.6875 0.125 +0.4688 0.6875 0.1562 +0.4688 0.6875 0.1875 +0.4688 0.6875 0.2188 +0.4688 0.6875 0.25 +0.4688 0.6875 0.2812 +0.4688 0.6875 0.3125 +0.4688 0.6875 0.3438 +0.4688 0.6875 0.375 +0.4688 0.6875 0.4062 +0.4688 0.6875 0.4375 +0.4688 0.6875 0.4688 +0.4688 0.6875 0.5 +0.4688 0.6875 0.5312 +0.4688 0.6875 0.5625 +0.4688 0.6875 0.5938 +0.4688 0.6875 0.625 +0.4688 0.6875 0.6562 +0.4688 0.6875 0.6875 +0.4688 0.6875 0.7188 +0.4688 0.6875 0.75 +0.4688 0.6875 0.7812 +0.4688 0.6875 0.8125 +0.4688 0.6875 0.8438 +0.4688 0.6875 0.875 +0.4688 0.6875 0.9062 +0.4688 0.6875 0.9375 +0.4688 0.6875 0.9688 +0.4688 0.6875 1 +0.4688 0.7188 0 +0.4688 0.7188 0.03125 +0.4688 0.7188 0.0625 +0.4688 0.7188 0.09375 +0.4688 0.7188 0.125 +0.4688 0.7188 0.1562 +0.4688 0.7188 0.1875 +0.4688 0.7188 0.2188 +0.4688 0.7188 0.25 +0.4688 0.7188 0.2812 +0.4688 0.7188 0.3125 +0.4688 0.7188 0.3438 +0.4688 0.7188 0.375 +0.4688 0.7188 0.4062 +0.4688 0.7188 0.4375 +0.4688 0.7188 0.4688 +0.4688 0.7188 0.5 +0.4688 0.7188 0.5312 +0.4688 0.7188 0.5625 +0.4688 0.7188 0.5938 +0.4688 0.7188 0.625 +0.4688 0.7188 0.6562 +0.4688 0.7188 0.6875 +0.4688 0.7188 0.7188 +0.4688 0.7188 0.75 +0.4688 0.7188 0.7812 +0.4688 0.7188 0.8125 +0.4688 0.7188 0.8438 +0.4688 0.7188 0.875 +0.4688 0.7188 0.9062 +0.4688 0.7188 0.9375 +0.4688 0.7188 0.9688 +0.4688 0.7188 1 +0.4688 0.75 0 +0.4688 0.75 0.03125 +0.4688 0.75 0.0625 +0.4688 0.75 0.09375 +0.4688 0.75 0.125 +0.4688 0.75 0.1562 +0.4688 0.75 0.1875 +0.4688 0.75 0.2188 +0.4688 0.75 0.25 +0.4688 0.75 0.2812 +0.4688 0.75 0.3125 +0.4688 0.75 0.3438 +0.4688 0.75 0.375 +0.4688 0.75 0.4062 +0.4688 0.75 0.4375 +0.4688 0.75 0.4688 +0.4688 0.75 0.5 +0.4688 0.75 0.5312 +0.4688 0.75 0.5625 +0.4688 0.75 0.5938 +0.4688 0.75 0.625 +0.4688 0.75 0.6562 +0.4688 0.75 0.6875 +0.4688 0.75 0.7188 +0.4688 0.75 0.75 +0.4688 0.75 0.7812 +0.4688 0.75 0.8125 +0.4688 0.75 0.8438 +0.4688 0.75 0.875 +0.4688 0.75 0.9062 +0.4688 0.75 0.9375 +0.4688 0.75 0.9688 +0.4688 0.75 1 +0.4688 0.7812 0 +0.4688 0.7812 0.03125 +0.4688 0.7812 0.0625 +0.4688 0.7812 0.09375 +0.4688 0.7812 0.125 +0.4688 0.7812 0.1562 +0.4688 0.7812 0.1875 +0.4688 0.7812 0.2188 +0.4688 0.7812 0.25 +0.4688 0.7812 0.2812 +0.4688 0.7812 0.3125 +0.4688 0.7812 0.3438 +0.4688 0.7812 0.375 +0.4688 0.7812 0.4062 +0.4688 0.7812 0.4375 +0.4688 0.7812 0.4688 +0.4688 0.7812 0.5 +0.4688 0.7812 0.5312 +0.4688 0.7812 0.5625 +0.4688 0.7812 0.5938 +0.4688 0.7812 0.625 +0.4688 0.7812 0.6562 +0.4688 0.7812 0.6875 +0.4688 0.7812 0.7188 +0.4688 0.7812 0.75 +0.4688 0.7812 0.7812 +0.4688 0.7812 0.8125 +0.4688 0.7812 0.8438 +0.4688 0.7812 0.875 +0.4688 0.7812 0.9062 +0.4688 0.7812 0.9375 +0.4688 0.7812 0.9688 +0.4688 0.7812 1 +0.4688 0.8125 0 +0.4688 0.8125 0.03125 +0.4688 0.8125 0.0625 +0.4688 0.8125 0.09375 +0.4688 0.8125 0.125 +0.4688 0.8125 0.1562 +0.4688 0.8125 0.1875 +0.4688 0.8125 0.2188 +0.4688 0.8125 0.25 +0.4688 0.8125 0.2812 +0.4688 0.8125 0.3125 +0.4688 0.8125 0.3438 +0.4688 0.8125 0.375 +0.4688 0.8125 0.4062 +0.4688 0.8125 0.4375 +0.4688 0.8125 0.4688 +0.4688 0.8125 0.5 +0.4688 0.8125 0.5312 +0.4688 0.8125 0.5625 +0.4688 0.8125 0.5938 +0.4688 0.8125 0.625 +0.4688 0.8125 0.6562 +0.4688 0.8125 0.6875 +0.4688 0.8125 0.7188 +0.4688 0.8125 0.75 +0.4688 0.8125 0.7812 +0.4688 0.8125 0.8125 +0.4688 0.8125 0.8438 +0.4688 0.8125 0.875 +0.4688 0.8125 0.9062 +0.4688 0.8125 0.9375 +0.4688 0.8125 0.9688 +0.4688 0.8125 1 +0.4688 0.8438 0 +0.4688 0.8438 0.03125 +0.4688 0.8438 0.0625 +0.4688 0.8438 0.09375 +0.4688 0.8438 0.125 +0.4688 0.8438 0.1562 +0.4688 0.8438 0.1875 +0.4688 0.8438 0.2188 +0.4688 0.8438 0.25 +0.4688 0.8438 0.2812 +0.4688 0.8438 0.3125 +0.4688 0.8438 0.3438 +0.4688 0.8438 0.375 +0.4688 0.8438 0.4062 +0.4688 0.8438 0.4375 +0.4688 0.8438 0.4688 +0.4688 0.8438 0.5 +0.4688 0.8438 0.5312 +0.4688 0.8438 0.5625 +0.4688 0.8438 0.5938 +0.4688 0.8438 0.625 +0.4688 0.8438 0.6562 +0.4688 0.8438 0.6875 +0.4688 0.8438 0.7188 +0.4688 0.8438 0.75 +0.4688 0.8438 0.7812 +0.4688 0.8438 0.8125 +0.4688 0.8438 0.8438 +0.4688 0.8438 0.875 +0.4688 0.8438 0.9062 +0.4688 0.8438 0.9375 +0.4688 0.8438 0.9688 +0.4688 0.8438 1 +0.4688 0.875 0 +0.4688 0.875 0.03125 +0.4688 0.875 0.0625 +0.4688 0.875 0.09375 +0.4688 0.875 0.125 +0.4688 0.875 0.1562 +0.4688 0.875 0.1875 +0.4688 0.875 0.2188 +0.4688 0.875 0.25 +0.4688 0.875 0.2812 +0.4688 0.875 0.3125 +0.4688 0.875 0.3438 +0.4688 0.875 0.375 +0.4688 0.875 0.4062 +0.4688 0.875 0.4375 +0.4688 0.875 0.4688 +0.4688 0.875 0.5 +0.4688 0.875 0.5312 +0.4688 0.875 0.5625 +0.4688 0.875 0.5938 +0.4688 0.875 0.625 +0.4688 0.875 0.6562 +0.4688 0.875 0.6875 +0.4688 0.875 0.7188 +0.4688 0.875 0.75 +0.4688 0.875 0.7812 +0.4688 0.875 0.8125 +0.4688 0.875 0.8438 +0.4688 0.875 0.875 +0.4688 0.875 0.9062 +0.4688 0.875 0.9375 +0.4688 0.875 0.9688 +0.4688 0.875 1 +0.4688 0.9062 0 +0.4688 0.9062 0.03125 +0.4688 0.9062 0.0625 +0.4688 0.9062 0.09375 +0.4688 0.9062 0.125 +0.4688 0.9062 0.1562 +0.4688 0.9062 0.1875 +0.4688 0.9062 0.2188 +0.4688 0.9062 0.25 +0.4688 0.9062 0.2812 +0.4688 0.9062 0.3125 +0.4688 0.9062 0.3438 +0.4688 0.9062 0.375 +0.4688 0.9062 0.4062 +0.4688 0.9062 0.4375 +0.4688 0.9062 0.4688 +0.4688 0.9062 0.5 +0.4688 0.9062 0.5312 +0.4688 0.9062 0.5625 +0.4688 0.9062 0.5938 +0.4688 0.9062 0.625 +0.4688 0.9062 0.6562 +0.4688 0.9062 0.6875 +0.4688 0.9062 0.7188 +0.4688 0.9062 0.75 +0.4688 0.9062 0.7812 +0.4688 0.9062 0.8125 +0.4688 0.9062 0.8438 +0.4688 0.9062 0.875 +0.4688 0.9062 0.9062 +0.4688 0.9062 0.9375 +0.4688 0.9062 0.9688 +0.4688 0.9062 1 +0.4688 0.9375 0 +0.4688 0.9375 0.03125 +0.4688 0.9375 0.0625 +0.4688 0.9375 0.09375 +0.4688 0.9375 0.125 +0.4688 0.9375 0.1562 +0.4688 0.9375 0.1875 +0.4688 0.9375 0.2188 +0.4688 0.9375 0.25 +0.4688 0.9375 0.2812 +0.4688 0.9375 0.3125 +0.4688 0.9375 0.3438 +0.4688 0.9375 0.375 +0.4688 0.9375 0.4062 +0.4688 0.9375 0.4375 +0.4688 0.9375 0.4688 +0.4688 0.9375 0.5 +0.4688 0.9375 0.5312 +0.4688 0.9375 0.5625 +0.4688 0.9375 0.5938 +0.4688 0.9375 0.625 +0.4688 0.9375 0.6562 +0.4688 0.9375 0.6875 +0.4688 0.9375 0.7188 +0.4688 0.9375 0.75 +0.4688 0.9375 0.7812 +0.4688 0.9375 0.8125 +0.4688 0.9375 0.8438 +0.4688 0.9375 0.875 +0.4688 0.9375 0.9062 +0.4688 0.9375 0.9375 +0.4688 0.9375 0.9688 +0.4688 0.9375 1 +0.4688 0.9688 0 +0.4688 0.9688 0.03125 +0.4688 0.9688 0.0625 +0.4688 0.9688 0.09375 +0.4688 0.9688 0.125 +0.4688 0.9688 0.1562 +0.4688 0.9688 0.1875 +0.4688 0.9688 0.2188 +0.4688 0.9688 0.25 +0.4688 0.9688 0.2812 +0.4688 0.9688 0.3125 +0.4688 0.9688 0.3438 +0.4688 0.9688 0.375 +0.4688 0.9688 0.4062 +0.4688 0.9688 0.4375 +0.4688 0.9688 0.4688 +0.4688 0.9688 0.5 +0.4688 0.9688 0.5312 +0.4688 0.9688 0.5625 +0.4688 0.9688 0.5938 +0.4688 0.9688 0.625 +0.4688 0.9688 0.6562 +0.4688 0.9688 0.6875 +0.4688 0.9688 0.7188 +0.4688 0.9688 0.75 +0.4688 0.9688 0.7812 +0.4688 0.9688 0.8125 +0.4688 0.9688 0.8438 +0.4688 0.9688 0.875 +0.4688 0.9688 0.9062 +0.4688 0.9688 0.9375 +0.4688 0.9688 0.9688 +0.4688 0.9688 1 +0.4688 1 0 +0.4688 1 0.03125 +0.4688 1 0.0625 +0.4688 1 0.09375 +0.4688 1 0.125 +0.4688 1 0.1562 +0.4688 1 0.1875 +0.4688 1 0.2188 +0.4688 1 0.25 +0.4688 1 0.2812 +0.4688 1 0.3125 +0.4688 1 0.3438 +0.4688 1 0.375 +0.4688 1 0.4062 +0.4688 1 0.4375 +0.4688 1 0.4688 +0.4688 1 0.5 +0.4688 1 0.5312 +0.4688 1 0.5625 +0.4688 1 0.5938 +0.4688 1 0.625 +0.4688 1 0.6562 +0.4688 1 0.6875 +0.4688 1 0.7188 +0.4688 1 0.75 +0.4688 1 0.7812 +0.4688 1 0.8125 +0.4688 1 0.8438 +0.4688 1 0.875 +0.4688 1 0.9062 +0.4688 1 0.9375 +0.4688 1 0.9688 +0.4688 1 1 +0.5 0 0 +0.5 0 0.03125 +0.5 0 0.0625 +0.5 0 0.09375 +0.5 0 0.125 +0.5 0 0.1562 +0.5 0 0.1875 +0.5 0 0.2188 +0.5 0 0.25 +0.5 0 0.2812 +0.5 0 0.3125 +0.5 0 0.3438 +0.5 0 0.375 +0.5 0 0.4062 +0.5 0 0.4375 +0.5 0 0.4688 +0.5 0 0.5 +0.5 0 0.5312 +0.5 0 0.5625 +0.5 0 0.5938 +0.5 0 0.625 +0.5 0 0.6562 +0.5 0 0.6875 +0.5 0 0.7188 +0.5 0 0.75 +0.5 0 0.7812 +0.5 0 0.8125 +0.5 0 0.8438 +0.5 0 0.875 +0.5 0 0.9062 +0.5 0 0.9375 +0.5 0 0.9688 +0.5 0 1 +0.5 0.03125 0 +0.5 0.03125 0.03125 +0.5 0.03125 0.0625 +0.5 0.03125 0.09375 +0.5 0.03125 0.125 +0.5 0.03125 0.1562 +0.5 0.03125 0.1875 +0.5 0.03125 0.2188 +0.5 0.03125 0.25 +0.5 0.03125 0.2812 +0.5 0.03125 0.3125 +0.5 0.03125 0.3438 +0.5 0.03125 0.375 +0.5 0.03125 0.4062 +0.5 0.03125 0.4375 +0.5 0.03125 0.4688 +0.5 0.03125 0.5 +0.5 0.03125 0.5312 +0.5 0.03125 0.5625 +0.5 0.03125 0.5938 +0.5 0.03125 0.625 +0.5 0.03125 0.6562 +0.5 0.03125 0.6875 +0.5 0.03125 0.7188 +0.5 0.03125 0.75 +0.5 0.03125 0.7812 +0.5 0.03125 0.8125 +0.5 0.03125 0.8438 +0.5 0.03125 0.875 +0.5 0.03125 0.9062 +0.5 0.03125 0.9375 +0.5 0.03125 0.9688 +0.5 0.03125 1 +0.5 0.0625 0 +0.5 0.0625 0.03125 +0.5 0.0625 0.0625 +0.5 0.0625 0.09375 +0.5 0.0625 0.125 +0.5 0.0625 0.1562 +0.5 0.0625 0.1875 +0.5 0.0625 0.2188 +0.5 0.0625 0.25 +0.5 0.0625 0.2812 +0.5 0.0625 0.3125 +0.5 0.0625 0.3438 +0.5 0.0625 0.375 +0.5 0.0625 0.4062 +0.5 0.0625 0.4375 +0.5 0.0625 0.4688 +0.5 0.0625 0.5 +0.5 0.0625 0.5312 +0.5 0.0625 0.5625 +0.5 0.0625 0.5938 +0.5 0.0625 0.625 +0.5 0.0625 0.6562 +0.5 0.0625 0.6875 +0.5 0.0625 0.7188 +0.5 0.0625 0.75 +0.5 0.0625 0.7812 +0.5 0.0625 0.8125 +0.5 0.0625 0.8438 +0.5 0.0625 0.875 +0.5 0.0625 0.9062 +0.5 0.0625 0.9375 +0.5 0.0625 0.9688 +0.5 0.0625 1 +0.5 0.09375 0 +0.5 0.09375 0.03125 +0.5 0.09375 0.0625 +0.5 0.09375 0.09375 +0.5 0.09375 0.125 +0.5 0.09375 0.1562 +0.5 0.09375 0.1875 +0.5 0.09375 0.2188 +0.5 0.09375 0.25 +0.5 0.09375 0.2812 +0.5 0.09375 0.3125 +0.5 0.09375 0.3438 +0.5 0.09375 0.375 +0.5 0.09375 0.4062 +0.5 0.09375 0.4375 +0.5 0.09375 0.4688 +0.5 0.09375 0.5 +0.5 0.09375 0.5312 +0.5 0.09375 0.5625 +0.5 0.09375 0.5938 +0.5 0.09375 0.625 +0.5 0.09375 0.6562 +0.5 0.09375 0.6875 +0.5 0.09375 0.7188 +0.5 0.09375 0.75 +0.5 0.09375 0.7812 +0.5 0.09375 0.8125 +0.5 0.09375 0.8438 +0.5 0.09375 0.875 +0.5 0.09375 0.9062 +0.5 0.09375 0.9375 +0.5 0.09375 0.9688 +0.5 0.09375 1 +0.5 0.125 0 +0.5 0.125 0.03125 +0.5 0.125 0.0625 +0.5 0.125 0.09375 +0.5 0.125 0.125 +0.5 0.125 0.1562 +0.5 0.125 0.1875 +0.5 0.125 0.2188 +0.5 0.125 0.25 +0.5 0.125 0.2812 +0.5 0.125 0.3125 +0.5 0.125 0.3438 +0.5 0.125 0.375 +0.5 0.125 0.4062 +0.5 0.125 0.4375 +0.5 0.125 0.4688 +0.5 0.125 0.5 +0.5 0.125 0.5312 +0.5 0.125 0.5625 +0.5 0.125 0.5938 +0.5 0.125 0.625 +0.5 0.125 0.6562 +0.5 0.125 0.6875 +0.5 0.125 0.7188 +0.5 0.125 0.75 +0.5 0.125 0.7812 +0.5 0.125 0.8125 +0.5 0.125 0.8438 +0.5 0.125 0.875 +0.5 0.125 0.9062 +0.5 0.125 0.9375 +0.5 0.125 0.9688 +0.5 0.125 1 +0.5 0.1562 0 +0.5 0.1562 0.03125 +0.5 0.1562 0.0625 +0.5 0.1562 0.09375 +0.5 0.1562 0.125 +0.5 0.1562 0.1562 +0.5 0.1562 0.1875 +0.5 0.1562 0.2188 +0.5 0.1562 0.25 +0.5 0.1562 0.2812 +0.5 0.1562 0.3125 +0.5 0.1562 0.3438 +0.5 0.1562 0.375 +0.5 0.1562 0.4062 +0.5 0.1562 0.4375 +0.5 0.1562 0.4688 +0.5 0.1562 0.5 +0.5 0.1562 0.5312 +0.5 0.1562 0.5625 +0.5 0.1562 0.5938 +0.5 0.1562 0.625 +0.5 0.1562 0.6562 +0.5 0.1562 0.6875 +0.5 0.1562 0.7188 +0.5 0.1562 0.75 +0.5 0.1562 0.7812 +0.5 0.1562 0.8125 +0.5 0.1562 0.8438 +0.5 0.1562 0.875 +0.5 0.1562 0.9062 +0.5 0.1562 0.9375 +0.5 0.1562 0.9688 +0.5 0.1562 1 +0.5 0.1875 0 +0.5 0.1875 0.03125 +0.5 0.1875 0.0625 +0.5 0.1875 0.09375 +0.5 0.1875 0.125 +0.5 0.1875 0.1562 +0.5 0.1875 0.1875 +0.5 0.1875 0.2188 +0.5 0.1875 0.25 +0.5 0.1875 0.2812 +0.5 0.1875 0.3125 +0.5 0.1875 0.3438 +0.5 0.1875 0.375 +0.5 0.1875 0.4062 +0.5 0.1875 0.4375 +0.5 0.1875 0.4688 +0.5 0.1875 0.5 +0.5 0.1875 0.5312 +0.5 0.1875 0.5625 +0.5 0.1875 0.5938 +0.5 0.1875 0.625 +0.5 0.1875 0.6562 +0.5 0.1875 0.6875 +0.5 0.1875 0.7188 +0.5 0.1875 0.75 +0.5 0.1875 0.7812 +0.5 0.1875 0.8125 +0.5 0.1875 0.8438 +0.5 0.1875 0.875 +0.5 0.1875 0.9062 +0.5 0.1875 0.9375 +0.5 0.1875 0.9688 +0.5 0.1875 1 +0.5 0.2188 0 +0.5 0.2188 0.03125 +0.5 0.2188 0.0625 +0.5 0.2188 0.09375 +0.5 0.2188 0.125 +0.5 0.2188 0.1562 +0.5 0.2188 0.1875 +0.5 0.2188 0.2188 +0.5 0.2188 0.25 +0.5 0.2188 0.2812 +0.5 0.2188 0.3125 +0.5 0.2188 0.3438 +0.5 0.2188 0.375 +0.5 0.2188 0.4062 +0.5 0.2188 0.4375 +0.5 0.2188 0.4688 +0.5 0.2188 0.5 +0.5 0.2188 0.5312 +0.5 0.2188 0.5625 +0.5 0.2188 0.5938 +0.5 0.2188 0.625 +0.5 0.2188 0.6562 +0.5 0.2188 0.6875 +0.5 0.2188 0.7188 +0.5 0.2188 0.75 +0.5 0.2188 0.7812 +0.5 0.2188 0.8125 +0.5 0.2188 0.8438 +0.5 0.2188 0.875 +0.5 0.2188 0.9062 +0.5 0.2188 0.9375 +0.5 0.2188 0.9688 +0.5 0.2188 1 +0.5 0.25 0 +0.5 0.25 0.03125 +0.5 0.25 0.0625 +0.5 0.25 0.09375 +0.5 0.25 0.125 +0.5 0.25 0.1562 +0.5 0.25 0.1875 +0.5 0.25 0.2188 +0.5 0.25 0.25 +0.5 0.25 0.2812 +0.5 0.25 0.3125 +0.5 0.25 0.3438 +0.5 0.25 0.375 +0.5 0.25 0.4062 +0.5 0.25 0.4375 +0.5 0.25 0.4688 +0.5 0.25 0.5 +0.5 0.25 0.5312 +0.5 0.25 0.5625 +0.5 0.25 0.5938 +0.5 0.25 0.625 +0.5 0.25 0.6562 +0.5 0.25 0.6875 +0.5 0.25 0.7188 +0.5 0.25 0.75 +0.5 0.25 0.7812 +0.5 0.25 0.8125 +0.5 0.25 0.8438 +0.5 0.25 0.875 +0.5 0.25 0.9062 +0.5 0.25 0.9375 +0.5 0.25 0.9688 +0.5 0.25 1 +0.5 0.2812 0 +0.5 0.2812 0.03125 +0.5 0.2812 0.0625 +0.5 0.2812 0.09375 +0.5 0.2812 0.125 +0.5 0.2812 0.1562 +0.5 0.2812 0.1875 +0.5 0.2812 0.2188 +0.5 0.2812 0.25 +0.5 0.2812 0.2812 +0.5 0.2812 0.3125 +0.5 0.2812 0.3438 +0.5 0.2812 0.375 +0.5 0.2812 0.4062 +0.5 0.2812 0.4375 +0.5 0.2812 0.4688 +0.5 0.2812 0.5 +0.5 0.2812 0.5312 +0.5 0.2812 0.5625 +0.5 0.2812 0.5938 +0.5 0.2812 0.625 +0.5 0.2812 0.6562 +0.5 0.2812 0.6875 +0.5 0.2812 0.7188 +0.5 0.2812 0.75 +0.5 0.2812 0.7812 +0.5 0.2812 0.8125 +0.5 0.2812 0.8438 +0.5 0.2812 0.875 +0.5 0.2812 0.9062 +0.5 0.2812 0.9375 +0.5 0.2812 0.9688 +0.5 0.2812 1 +0.5 0.3125 0 +0.5 0.3125 0.03125 +0.5 0.3125 0.0625 +0.5 0.3125 0.09375 +0.5 0.3125 0.125 +0.5 0.3125 0.1562 +0.5 0.3125 0.1875 +0.5 0.3125 0.2188 +0.5 0.3125 0.25 +0.5 0.3125 0.2812 +0.5 0.3125 0.3125 +0.5 0.3125 0.3438 +0.5 0.3125 0.375 +0.5 0.3125 0.4062 +0.5 0.3125 0.4375 +0.5 0.3125 0.4688 +0.5 0.3125 0.5 +0.5 0.3125 0.5312 +0.5 0.3125 0.5625 +0.5 0.3125 0.5938 +0.5 0.3125 0.625 +0.5 0.3125 0.6562 +0.5 0.3125 0.6875 +0.5 0.3125 0.7188 +0.5 0.3125 0.75 +0.5 0.3125 0.7812 +0.5 0.3125 0.8125 +0.5 0.3125 0.8438 +0.5 0.3125 0.875 +0.5 0.3125 0.9062 +0.5 0.3125 0.9375 +0.5 0.3125 0.9688 +0.5 0.3125 1 +0.5 0.3438 0 +0.5 0.3438 0.03125 +0.5 0.3438 0.0625 +0.5 0.3438 0.09375 +0.5 0.3438 0.125 +0.5 0.3438 0.1562 +0.5 0.3438 0.1875 +0.5 0.3438 0.2188 +0.5 0.3438 0.25 +0.5 0.3438 0.2812 +0.5 0.3438 0.3125 +0.5 0.3438 0.3438 +0.5 0.3438 0.375 +0.5 0.3438 0.4062 +0.5 0.3438 0.4375 +0.5 0.3438 0.4688 +0.5 0.3438 0.5 +0.5 0.3438 0.5312 +0.5 0.3438 0.5625 +0.5 0.3438 0.5938 +0.5 0.3438 0.625 +0.5 0.3438 0.6562 +0.5 0.3438 0.6875 +0.5 0.3438 0.7188 +0.5 0.3438 0.75 +0.5 0.3438 0.7812 +0.5 0.3438 0.8125 +0.5 0.3438 0.8438 +0.5 0.3438 0.875 +0.5 0.3438 0.9062 +0.5 0.3438 0.9375 +0.5 0.3438 0.9688 +0.5 0.3438 1 +0.5 0.375 0 +0.5 0.375 0.03125 +0.5 0.375 0.0625 +0.5 0.375 0.09375 +0.5 0.375 0.125 +0.5 0.375 0.1562 +0.5 0.375 0.1875 +0.5 0.375 0.2188 +0.5 0.375 0.25 +0.5 0.375 0.2812 +0.5 0.375 0.3125 +0.5 0.375 0.3438 +0.5 0.375 0.375 +0.5 0.375 0.4062 +0.5 0.375 0.4375 +0.5 0.375 0.4688 +0.5 0.375 0.5 +0.5 0.375 0.5312 +0.5 0.375 0.5625 +0.5 0.375 0.5938 +0.5 0.375 0.625 +0.5 0.375 0.6562 +0.5 0.375 0.6875 +0.5 0.375 0.7188 +0.5 0.375 0.75 +0.5 0.375 0.7812 +0.5 0.375 0.8125 +0.5 0.375 0.8438 +0.5 0.375 0.875 +0.5 0.375 0.9062 +0.5 0.375 0.9375 +0.5 0.375 0.9688 +0.5 0.375 1 +0.5 0.4062 0 +0.5 0.4062 0.03125 +0.5 0.4062 0.0625 +0.5 0.4062 0.09375 +0.5 0.4062 0.125 +0.5 0.4062 0.1562 +0.5 0.4062 0.1875 +0.5 0.4062 0.2188 +0.5 0.4062 0.25 +0.5 0.4062 0.2812 +0.5 0.4062 0.3125 +0.5 0.4062 0.3438 +0.5 0.4062 0.375 +0.5 0.4062 0.4062 +0.5 0.4062 0.4375 +0.5 0.4062 0.4688 +0.5 0.4062 0.5 +0.5 0.4062 0.5312 +0.5 0.4062 0.5625 +0.5 0.4062 0.5938 +0.5 0.4062 0.625 +0.5 0.4062 0.6562 +0.5 0.4062 0.6875 +0.5 0.4062 0.7188 +0.5 0.4062 0.75 +0.5 0.4062 0.7812 +0.5 0.4062 0.8125 +0.5 0.4062 0.8438 +0.5 0.4062 0.875 +0.5 0.4062 0.9062 +0.5 0.4062 0.9375 +0.5 0.4062 0.9688 +0.5 0.4062 1 +0.5 0.4375 0 +0.5 0.4375 0.03125 +0.5 0.4375 0.0625 +0.5 0.4375 0.09375 +0.5 0.4375 0.125 +0.5 0.4375 0.1562 +0.5 0.4375 0.1875 +0.5 0.4375 0.2188 +0.5 0.4375 0.25 +0.5 0.4375 0.2812 +0.5 0.4375 0.3125 +0.5 0.4375 0.3438 +0.5 0.4375 0.375 +0.5 0.4375 0.4062 +0.5 0.4375 0.4375 +0.5 0.4375 0.4688 +0.5 0.4375 0.5 +0.5 0.4375 0.5312 +0.5 0.4375 0.5625 +0.5 0.4375 0.5938 +0.5 0.4375 0.625 +0.5 0.4375 0.6562 +0.5 0.4375 0.6875 +0.5 0.4375 0.7188 +0.5 0.4375 0.75 +0.5 0.4375 0.7812 +0.5 0.4375 0.8125 +0.5 0.4375 0.8438 +0.5 0.4375 0.875 +0.5 0.4375 0.9062 +0.5 0.4375 0.9375 +0.5 0.4375 0.9688 +0.5 0.4375 1 +0.5 0.4688 0 +0.5 0.4688 0.03125 +0.5 0.4688 0.0625 +0.5 0.4688 0.09375 +0.5 0.4688 0.125 +0.5 0.4688 0.1562 +0.5 0.4688 0.1875 +0.5 0.4688 0.2188 +0.5 0.4688 0.25 +0.5 0.4688 0.2812 +0.5 0.4688 0.3125 +0.5 0.4688 0.3438 +0.5 0.4688 0.375 +0.5 0.4688 0.4062 +0.5 0.4688 0.4375 +0.5 0.4688 0.4688 +0.5 0.4688 0.5 +0.5 0.4688 0.5312 +0.5 0.4688 0.5625 +0.5 0.4688 0.5938 +0.5 0.4688 0.625 +0.5 0.4688 0.6562 +0.5 0.4688 0.6875 +0.5 0.4688 0.7188 +0.5 0.4688 0.75 +0.5 0.4688 0.7812 +0.5 0.4688 0.8125 +0.5 0.4688 0.8438 +0.5 0.4688 0.875 +0.5 0.4688 0.9062 +0.5 0.4688 0.9375 +0.5 0.4688 0.9688 +0.5 0.4688 1 +0.5 0.5 0 +0.5 0.5 0.03125 +0.5 0.5 0.0625 +0.5 0.5 0.09375 +0.5 0.5 0.125 +0.5 0.5 0.1562 +0.5 0.5 0.1875 +0.5 0.5 0.2188 +0.5 0.5 0.25 +0.5 0.5 0.2812 +0.5 0.5 0.3125 +0.5 0.5 0.3438 +0.5 0.5 0.375 +0.5 0.5 0.4062 +0.5 0.5 0.4375 +0.5 0.5 0.4688 +0.5 0.5 0.5 +0.5 0.5 0.5312 +0.5 0.5 0.5625 +0.5 0.5 0.5938 +0.5 0.5 0.625 +0.5 0.5 0.6562 +0.5 0.5 0.6875 +0.5 0.5 0.7188 +0.5 0.5 0.75 +0.5 0.5 0.7812 +0.5 0.5 0.8125 +0.5 0.5 0.8438 +0.5 0.5 0.875 +0.5 0.5 0.9062 +0.5 0.5 0.9375 +0.5 0.5 0.9688 +0.5 0.5 1 +0.5 0.5312 0 +0.5 0.5312 0.03125 +0.5 0.5312 0.0625 +0.5 0.5312 0.09375 +0.5 0.5312 0.125 +0.5 0.5312 0.1562 +0.5 0.5312 0.1875 +0.5 0.5312 0.2188 +0.5 0.5312 0.25 +0.5 0.5312 0.2812 +0.5 0.5312 0.3125 +0.5 0.5312 0.3438 +0.5 0.5312 0.375 +0.5 0.5312 0.4062 +0.5 0.5312 0.4375 +0.5 0.5312 0.4688 +0.5 0.5312 0.5 +0.5 0.5312 0.5312 +0.5 0.5312 0.5625 +0.5 0.5312 0.5938 +0.5 0.5312 0.625 +0.5 0.5312 0.6562 +0.5 0.5312 0.6875 +0.5 0.5312 0.7188 +0.5 0.5312 0.75 +0.5 0.5312 0.7812 +0.5 0.5312 0.8125 +0.5 0.5312 0.8438 +0.5 0.5312 0.875 +0.5 0.5312 0.9062 +0.5 0.5312 0.9375 +0.5 0.5312 0.9688 +0.5 0.5312 1 +0.5 0.5625 0 +0.5 0.5625 0.03125 +0.5 0.5625 0.0625 +0.5 0.5625 0.09375 +0.5 0.5625 0.125 +0.5 0.5625 0.1562 +0.5 0.5625 0.1875 +0.5 0.5625 0.2188 +0.5 0.5625 0.25 +0.5 0.5625 0.2812 +0.5 0.5625 0.3125 +0.5 0.5625 0.3438 +0.5 0.5625 0.375 +0.5 0.5625 0.4062 +0.5 0.5625 0.4375 +0.5 0.5625 0.4688 +0.5 0.5625 0.5 +0.5 0.5625 0.5312 +0.5 0.5625 0.5625 +0.5 0.5625 0.5938 +0.5 0.5625 0.625 +0.5 0.5625 0.6562 +0.5 0.5625 0.6875 +0.5 0.5625 0.7188 +0.5 0.5625 0.75 +0.5 0.5625 0.7812 +0.5 0.5625 0.8125 +0.5 0.5625 0.8438 +0.5 0.5625 0.875 +0.5 0.5625 0.9062 +0.5 0.5625 0.9375 +0.5 0.5625 0.9688 +0.5 0.5625 1 +0.5 0.5938 0 +0.5 0.5938 0.03125 +0.5 0.5938 0.0625 +0.5 0.5938 0.09375 +0.5 0.5938 0.125 +0.5 0.5938 0.1562 +0.5 0.5938 0.1875 +0.5 0.5938 0.2188 +0.5 0.5938 0.25 +0.5 0.5938 0.2812 +0.5 0.5938 0.3125 +0.5 0.5938 0.3438 +0.5 0.5938 0.375 +0.5 0.5938 0.4062 +0.5 0.5938 0.4375 +0.5 0.5938 0.4688 +0.5 0.5938 0.5 +0.5 0.5938 0.5312 +0.5 0.5938 0.5625 +0.5 0.5938 0.5938 +0.5 0.5938 0.625 +0.5 0.5938 0.6562 +0.5 0.5938 0.6875 +0.5 0.5938 0.7188 +0.5 0.5938 0.75 +0.5 0.5938 0.7812 +0.5 0.5938 0.8125 +0.5 0.5938 0.8438 +0.5 0.5938 0.875 +0.5 0.5938 0.9062 +0.5 0.5938 0.9375 +0.5 0.5938 0.9688 +0.5 0.5938 1 +0.5 0.625 0 +0.5 0.625 0.03125 +0.5 0.625 0.0625 +0.5 0.625 0.09375 +0.5 0.625 0.125 +0.5 0.625 0.1562 +0.5 0.625 0.1875 +0.5 0.625 0.2188 +0.5 0.625 0.25 +0.5 0.625 0.2812 +0.5 0.625 0.3125 +0.5 0.625 0.3438 +0.5 0.625 0.375 +0.5 0.625 0.4062 +0.5 0.625 0.4375 +0.5 0.625 0.4688 +0.5 0.625 0.5 +0.5 0.625 0.5312 +0.5 0.625 0.5625 +0.5 0.625 0.5938 +0.5 0.625 0.625 +0.5 0.625 0.6562 +0.5 0.625 0.6875 +0.5 0.625 0.7188 +0.5 0.625 0.75 +0.5 0.625 0.7812 +0.5 0.625 0.8125 +0.5 0.625 0.8438 +0.5 0.625 0.875 +0.5 0.625 0.9062 +0.5 0.625 0.9375 +0.5 0.625 0.9688 +0.5 0.625 1 +0.5 0.6562 0 +0.5 0.6562 0.03125 +0.5 0.6562 0.0625 +0.5 0.6562 0.09375 +0.5 0.6562 0.125 +0.5 0.6562 0.1562 +0.5 0.6562 0.1875 +0.5 0.6562 0.2188 +0.5 0.6562 0.25 +0.5 0.6562 0.2812 +0.5 0.6562 0.3125 +0.5 0.6562 0.3438 +0.5 0.6562 0.375 +0.5 0.6562 0.4062 +0.5 0.6562 0.4375 +0.5 0.6562 0.4688 +0.5 0.6562 0.5 +0.5 0.6562 0.5312 +0.5 0.6562 0.5625 +0.5 0.6562 0.5938 +0.5 0.6562 0.625 +0.5 0.6562 0.6562 +0.5 0.6562 0.6875 +0.5 0.6562 0.7188 +0.5 0.6562 0.75 +0.5 0.6562 0.7812 +0.5 0.6562 0.8125 +0.5 0.6562 0.8438 +0.5 0.6562 0.875 +0.5 0.6562 0.9062 +0.5 0.6562 0.9375 +0.5 0.6562 0.9688 +0.5 0.6562 1 +0.5 0.6875 0 +0.5 0.6875 0.03125 +0.5 0.6875 0.0625 +0.5 0.6875 0.09375 +0.5 0.6875 0.125 +0.5 0.6875 0.1562 +0.5 0.6875 0.1875 +0.5 0.6875 0.2188 +0.5 0.6875 0.25 +0.5 0.6875 0.2812 +0.5 0.6875 0.3125 +0.5 0.6875 0.3438 +0.5 0.6875 0.375 +0.5 0.6875 0.4062 +0.5 0.6875 0.4375 +0.5 0.6875 0.4688 +0.5 0.6875 0.5 +0.5 0.6875 0.5312 +0.5 0.6875 0.5625 +0.5 0.6875 0.5938 +0.5 0.6875 0.625 +0.5 0.6875 0.6562 +0.5 0.6875 0.6875 +0.5 0.6875 0.7188 +0.5 0.6875 0.75 +0.5 0.6875 0.7812 +0.5 0.6875 0.8125 +0.5 0.6875 0.8438 +0.5 0.6875 0.875 +0.5 0.6875 0.9062 +0.5 0.6875 0.9375 +0.5 0.6875 0.9688 +0.5 0.6875 1 +0.5 0.7188 0 +0.5 0.7188 0.03125 +0.5 0.7188 0.0625 +0.5 0.7188 0.09375 +0.5 0.7188 0.125 +0.5 0.7188 0.1562 +0.5 0.7188 0.1875 +0.5 0.7188 0.2188 +0.5 0.7188 0.25 +0.5 0.7188 0.2812 +0.5 0.7188 0.3125 +0.5 0.7188 0.3438 +0.5 0.7188 0.375 +0.5 0.7188 0.4062 +0.5 0.7188 0.4375 +0.5 0.7188 0.4688 +0.5 0.7188 0.5 +0.5 0.7188 0.5312 +0.5 0.7188 0.5625 +0.5 0.7188 0.5938 +0.5 0.7188 0.625 +0.5 0.7188 0.6562 +0.5 0.7188 0.6875 +0.5 0.7188 0.7188 +0.5 0.7188 0.75 +0.5 0.7188 0.7812 +0.5 0.7188 0.8125 +0.5 0.7188 0.8438 +0.5 0.7188 0.875 +0.5 0.7188 0.9062 +0.5 0.7188 0.9375 +0.5 0.7188 0.9688 +0.5 0.7188 1 +0.5 0.75 0 +0.5 0.75 0.03125 +0.5 0.75 0.0625 +0.5 0.75 0.09375 +0.5 0.75 0.125 +0.5 0.75 0.1562 +0.5 0.75 0.1875 +0.5 0.75 0.2188 +0.5 0.75 0.25 +0.5 0.75 0.2812 +0.5 0.75 0.3125 +0.5 0.75 0.3438 +0.5 0.75 0.375 +0.5 0.75 0.4062 +0.5 0.75 0.4375 +0.5 0.75 0.4688 +0.5 0.75 0.5 +0.5 0.75 0.5312 +0.5 0.75 0.5625 +0.5 0.75 0.5938 +0.5 0.75 0.625 +0.5 0.75 0.6562 +0.5 0.75 0.6875 +0.5 0.75 0.7188 +0.5 0.75 0.75 +0.5 0.75 0.7812 +0.5 0.75 0.8125 +0.5 0.75 0.8438 +0.5 0.75 0.875 +0.5 0.75 0.9062 +0.5 0.75 0.9375 +0.5 0.75 0.9688 +0.5 0.75 1 +0.5 0.7812 0 +0.5 0.7812 0.03125 +0.5 0.7812 0.0625 +0.5 0.7812 0.09375 +0.5 0.7812 0.125 +0.5 0.7812 0.1562 +0.5 0.7812 0.1875 +0.5 0.7812 0.2188 +0.5 0.7812 0.25 +0.5 0.7812 0.2812 +0.5 0.7812 0.3125 +0.5 0.7812 0.3438 +0.5 0.7812 0.375 +0.5 0.7812 0.4062 +0.5 0.7812 0.4375 +0.5 0.7812 0.4688 +0.5 0.7812 0.5 +0.5 0.7812 0.5312 +0.5 0.7812 0.5625 +0.5 0.7812 0.5938 +0.5 0.7812 0.625 +0.5 0.7812 0.6562 +0.5 0.7812 0.6875 +0.5 0.7812 0.7188 +0.5 0.7812 0.75 +0.5 0.7812 0.7812 +0.5 0.7812 0.8125 +0.5 0.7812 0.8438 +0.5 0.7812 0.875 +0.5 0.7812 0.9062 +0.5 0.7812 0.9375 +0.5 0.7812 0.9688 +0.5 0.7812 1 +0.5 0.8125 0 +0.5 0.8125 0.03125 +0.5 0.8125 0.0625 +0.5 0.8125 0.09375 +0.5 0.8125 0.125 +0.5 0.8125 0.1562 +0.5 0.8125 0.1875 +0.5 0.8125 0.2188 +0.5 0.8125 0.25 +0.5 0.8125 0.2812 +0.5 0.8125 0.3125 +0.5 0.8125 0.3438 +0.5 0.8125 0.375 +0.5 0.8125 0.4062 +0.5 0.8125 0.4375 +0.5 0.8125 0.4688 +0.5 0.8125 0.5 +0.5 0.8125 0.5312 +0.5 0.8125 0.5625 +0.5 0.8125 0.5938 +0.5 0.8125 0.625 +0.5 0.8125 0.6562 +0.5 0.8125 0.6875 +0.5 0.8125 0.7188 +0.5 0.8125 0.75 +0.5 0.8125 0.7812 +0.5 0.8125 0.8125 +0.5 0.8125 0.8438 +0.5 0.8125 0.875 +0.5 0.8125 0.9062 +0.5 0.8125 0.9375 +0.5 0.8125 0.9688 +0.5 0.8125 1 +0.5 0.8438 0 +0.5 0.8438 0.03125 +0.5 0.8438 0.0625 +0.5 0.8438 0.09375 +0.5 0.8438 0.125 +0.5 0.8438 0.1562 +0.5 0.8438 0.1875 +0.5 0.8438 0.2188 +0.5 0.8438 0.25 +0.5 0.8438 0.2812 +0.5 0.8438 0.3125 +0.5 0.8438 0.3438 +0.5 0.8438 0.375 +0.5 0.8438 0.4062 +0.5 0.8438 0.4375 +0.5 0.8438 0.4688 +0.5 0.8438 0.5 +0.5 0.8438 0.5312 +0.5 0.8438 0.5625 +0.5 0.8438 0.5938 +0.5 0.8438 0.625 +0.5 0.8438 0.6562 +0.5 0.8438 0.6875 +0.5 0.8438 0.7188 +0.5 0.8438 0.75 +0.5 0.8438 0.7812 +0.5 0.8438 0.8125 +0.5 0.8438 0.8438 +0.5 0.8438 0.875 +0.5 0.8438 0.9062 +0.5 0.8438 0.9375 +0.5 0.8438 0.9688 +0.5 0.8438 1 +0.5 0.875 0 +0.5 0.875 0.03125 +0.5 0.875 0.0625 +0.5 0.875 0.09375 +0.5 0.875 0.125 +0.5 0.875 0.1562 +0.5 0.875 0.1875 +0.5 0.875 0.2188 +0.5 0.875 0.25 +0.5 0.875 0.2812 +0.5 0.875 0.3125 +0.5 0.875 0.3438 +0.5 0.875 0.375 +0.5 0.875 0.4062 +0.5 0.875 0.4375 +0.5 0.875 0.4688 +0.5 0.875 0.5 +0.5 0.875 0.5312 +0.5 0.875 0.5625 +0.5 0.875 0.5938 +0.5 0.875 0.625 +0.5 0.875 0.6562 +0.5 0.875 0.6875 +0.5 0.875 0.7188 +0.5 0.875 0.75 +0.5 0.875 0.7812 +0.5 0.875 0.8125 +0.5 0.875 0.8438 +0.5 0.875 0.875 +0.5 0.875 0.9062 +0.5 0.875 0.9375 +0.5 0.875 0.9688 +0.5 0.875 1 +0.5 0.9062 0 +0.5 0.9062 0.03125 +0.5 0.9062 0.0625 +0.5 0.9062 0.09375 +0.5 0.9062 0.125 +0.5 0.9062 0.1562 +0.5 0.9062 0.1875 +0.5 0.9062 0.2188 +0.5 0.9062 0.25 +0.5 0.9062 0.2812 +0.5 0.9062 0.3125 +0.5 0.9062 0.3438 +0.5 0.9062 0.375 +0.5 0.9062 0.4062 +0.5 0.9062 0.4375 +0.5 0.9062 0.4688 +0.5 0.9062 0.5 +0.5 0.9062 0.5312 +0.5 0.9062 0.5625 +0.5 0.9062 0.5938 +0.5 0.9062 0.625 +0.5 0.9062 0.6562 +0.5 0.9062 0.6875 +0.5 0.9062 0.7188 +0.5 0.9062 0.75 +0.5 0.9062 0.7812 +0.5 0.9062 0.8125 +0.5 0.9062 0.8438 +0.5 0.9062 0.875 +0.5 0.9062 0.9062 +0.5 0.9062 0.9375 +0.5 0.9062 0.9688 +0.5 0.9062 1 +0.5 0.9375 0 +0.5 0.9375 0.03125 +0.5 0.9375 0.0625 +0.5 0.9375 0.09375 +0.5 0.9375 0.125 +0.5 0.9375 0.1562 +0.5 0.9375 0.1875 +0.5 0.9375 0.2188 +0.5 0.9375 0.25 +0.5 0.9375 0.2812 +0.5 0.9375 0.3125 +0.5 0.9375 0.3438 +0.5 0.9375 0.375 +0.5 0.9375 0.4062 +0.5 0.9375 0.4375 +0.5 0.9375 0.4688 +0.5 0.9375 0.5 +0.5 0.9375 0.5312 +0.5 0.9375 0.5625 +0.5 0.9375 0.5938 +0.5 0.9375 0.625 +0.5 0.9375 0.6562 +0.5 0.9375 0.6875 +0.5 0.9375 0.7188 +0.5 0.9375 0.75 +0.5 0.9375 0.7812 +0.5 0.9375 0.8125 +0.5 0.9375 0.8438 +0.5 0.9375 0.875 +0.5 0.9375 0.9062 +0.5 0.9375 0.9375 +0.5 0.9375 0.9688 +0.5 0.9375 1 +0.5 0.9688 0 +0.5 0.9688 0.03125 +0.5 0.9688 0.0625 +0.5 0.9688 0.09375 +0.5 0.9688 0.125 +0.5 0.9688 0.1562 +0.5 0.9688 0.1875 +0.5 0.9688 0.2188 +0.5 0.9688 0.25 +0.5 0.9688 0.2812 +0.5 0.9688 0.3125 +0.5 0.9688 0.3438 +0.5 0.9688 0.375 +0.5 0.9688 0.4062 +0.5 0.9688 0.4375 +0.5 0.9688 0.4688 +0.5 0.9688 0.5 +0.5 0.9688 0.5312 +0.5 0.9688 0.5625 +0.5 0.9688 0.5938 +0.5 0.9688 0.625 +0.5 0.9688 0.6562 +0.5 0.9688 0.6875 +0.5 0.9688 0.7188 +0.5 0.9688 0.75 +0.5 0.9688 0.7812 +0.5 0.9688 0.8125 +0.5 0.9688 0.8438 +0.5 0.9688 0.875 +0.5 0.9688 0.9062 +0.5 0.9688 0.9375 +0.5 0.9688 0.9688 +0.5 0.9688 1 +0.5 1 0 +0.5 1 0.03125 +0.5 1 0.0625 +0.5 1 0.09375 +0.5 1 0.125 +0.5 1 0.1562 +0.5 1 0.1875 +0.5 1 0.2188 +0.5 1 0.25 +0.5 1 0.2812 +0.5 1 0.3125 +0.5 1 0.3438 +0.5 1 0.375 +0.5 1 0.4062 +0.5 1 0.4375 +0.5 1 0.4688 +0.5 1 0.5 +0.5 1 0.5312 +0.5 1 0.5625 +0.5 1 0.5938 +0.5 1 0.625 +0.5 1 0.6562 +0.5 1 0.6875 +0.5 1 0.7188 +0.5 1 0.75 +0.5 1 0.7812 +0.5 1 0.8125 +0.5 1 0.8438 +0.5 1 0.875 +0.5 1 0.9062 +0.5 1 0.9375 +0.5 1 0.9688 +0.5 1 1 +0.5312 0 0 +0.5312 0 0.03125 +0.5312 0 0.0625 +0.5312 0 0.09375 +0.5312 0 0.125 +0.5312 0 0.1562 +0.5312 0 0.1875 +0.5312 0 0.2188 +0.5312 0 0.25 +0.5312 0 0.2812 +0.5312 0 0.3125 +0.5312 0 0.3438 +0.5312 0 0.375 +0.5312 0 0.4062 +0.5312 0 0.4375 +0.5312 0 0.4688 +0.5312 0 0.5 +0.5312 0 0.5312 +0.5312 0 0.5625 +0.5312 0 0.5938 +0.5312 0 0.625 +0.5312 0 0.6562 +0.5312 0 0.6875 +0.5312 0 0.7188 +0.5312 0 0.75 +0.5312 0 0.7812 +0.5312 0 0.8125 +0.5312 0 0.8438 +0.5312 0 0.875 +0.5312 0 0.9062 +0.5312 0 0.9375 +0.5312 0 0.9688 +0.5312 0 1 +0.5312 0.03125 0 +0.5312 0.03125 0.03125 +0.5312 0.03125 0.0625 +0.5312 0.03125 0.09375 +0.5312 0.03125 0.125 +0.5312 0.03125 0.1562 +0.5312 0.03125 0.1875 +0.5312 0.03125 0.2188 +0.5312 0.03125 0.25 +0.5312 0.03125 0.2812 +0.5312 0.03125 0.3125 +0.5312 0.03125 0.3438 +0.5312 0.03125 0.375 +0.5312 0.03125 0.4062 +0.5312 0.03125 0.4375 +0.5312 0.03125 0.4688 +0.5312 0.03125 0.5 +0.5312 0.03125 0.5312 +0.5312 0.03125 0.5625 +0.5312 0.03125 0.5938 +0.5312 0.03125 0.625 +0.5312 0.03125 0.6562 +0.5312 0.03125 0.6875 +0.5312 0.03125 0.7188 +0.5312 0.03125 0.75 +0.5312 0.03125 0.7812 +0.5312 0.03125 0.8125 +0.5312 0.03125 0.8438 +0.5312 0.03125 0.875 +0.5312 0.03125 0.9062 +0.5312 0.03125 0.9375 +0.5312 0.03125 0.9688 +0.5312 0.03125 1 +0.5312 0.0625 0 +0.5312 0.0625 0.03125 +0.5312 0.0625 0.0625 +0.5312 0.0625 0.09375 +0.5312 0.0625 0.125 +0.5312 0.0625 0.1562 +0.5312 0.0625 0.1875 +0.5312 0.0625 0.2188 +0.5312 0.0625 0.25 +0.5312 0.0625 0.2812 +0.5312 0.0625 0.3125 +0.5312 0.0625 0.3438 +0.5312 0.0625 0.375 +0.5312 0.0625 0.4062 +0.5312 0.0625 0.4375 +0.5312 0.0625 0.4688 +0.5312 0.0625 0.5 +0.5312 0.0625 0.5312 +0.5312 0.0625 0.5625 +0.5312 0.0625 0.5938 +0.5312 0.0625 0.625 +0.5312 0.0625 0.6562 +0.5312 0.0625 0.6875 +0.5312 0.0625 0.7188 +0.5312 0.0625 0.75 +0.5312 0.0625 0.7812 +0.5312 0.0625 0.8125 +0.5312 0.0625 0.8438 +0.5312 0.0625 0.875 +0.5312 0.0625 0.9062 +0.5312 0.0625 0.9375 +0.5312 0.0625 0.9688 +0.5312 0.0625 1 +0.5312 0.09375 0 +0.5312 0.09375 0.03125 +0.5312 0.09375 0.0625 +0.5312 0.09375 0.09375 +0.5312 0.09375 0.125 +0.5312 0.09375 0.1562 +0.5312 0.09375 0.1875 +0.5312 0.09375 0.2188 +0.5312 0.09375 0.25 +0.5312 0.09375 0.2812 +0.5312 0.09375 0.3125 +0.5312 0.09375 0.3438 +0.5312 0.09375 0.375 +0.5312 0.09375 0.4062 +0.5312 0.09375 0.4375 +0.5312 0.09375 0.4688 +0.5312 0.09375 0.5 +0.5312 0.09375 0.5312 +0.5312 0.09375 0.5625 +0.5312 0.09375 0.5938 +0.5312 0.09375 0.625 +0.5312 0.09375 0.6562 +0.5312 0.09375 0.6875 +0.5312 0.09375 0.7188 +0.5312 0.09375 0.75 +0.5312 0.09375 0.7812 +0.5312 0.09375 0.8125 +0.5312 0.09375 0.8438 +0.5312 0.09375 0.875 +0.5312 0.09375 0.9062 +0.5312 0.09375 0.9375 +0.5312 0.09375 0.9688 +0.5312 0.09375 1 +0.5312 0.125 0 +0.5312 0.125 0.03125 +0.5312 0.125 0.0625 +0.5312 0.125 0.09375 +0.5312 0.125 0.125 +0.5312 0.125 0.1562 +0.5312 0.125 0.1875 +0.5312 0.125 0.2188 +0.5312 0.125 0.25 +0.5312 0.125 0.2812 +0.5312 0.125 0.3125 +0.5312 0.125 0.3438 +0.5312 0.125 0.375 +0.5312 0.125 0.4062 +0.5312 0.125 0.4375 +0.5312 0.125 0.4688 +0.5312 0.125 0.5 +0.5312 0.125 0.5312 +0.5312 0.125 0.5625 +0.5312 0.125 0.5938 +0.5312 0.125 0.625 +0.5312 0.125 0.6562 +0.5312 0.125 0.6875 +0.5312 0.125 0.7188 +0.5312 0.125 0.75 +0.5312 0.125 0.7812 +0.5312 0.125 0.8125 +0.5312 0.125 0.8438 +0.5312 0.125 0.875 +0.5312 0.125 0.9062 +0.5312 0.125 0.9375 +0.5312 0.125 0.9688 +0.5312 0.125 1 +0.5312 0.1562 0 +0.5312 0.1562 0.03125 +0.5312 0.1562 0.0625 +0.5312 0.1562 0.09375 +0.5312 0.1562 0.125 +0.5312 0.1562 0.1562 +0.5312 0.1562 0.1875 +0.5312 0.1562 0.2188 +0.5312 0.1562 0.25 +0.5312 0.1562 0.2812 +0.5312 0.1562 0.3125 +0.5312 0.1562 0.3438 +0.5312 0.1562 0.375 +0.5312 0.1562 0.4062 +0.5312 0.1562 0.4375 +0.5312 0.1562 0.4688 +0.5312 0.1562 0.5 +0.5312 0.1562 0.5312 +0.5312 0.1562 0.5625 +0.5312 0.1562 0.5938 +0.5312 0.1562 0.625 +0.5312 0.1562 0.6562 +0.5312 0.1562 0.6875 +0.5312 0.1562 0.7188 +0.5312 0.1562 0.75 +0.5312 0.1562 0.7812 +0.5312 0.1562 0.8125 +0.5312 0.1562 0.8438 +0.5312 0.1562 0.875 +0.5312 0.1562 0.9062 +0.5312 0.1562 0.9375 +0.5312 0.1562 0.9688 +0.5312 0.1562 1 +0.5312 0.1875 0 +0.5312 0.1875 0.03125 +0.5312 0.1875 0.0625 +0.5312 0.1875 0.09375 +0.5312 0.1875 0.125 +0.5312 0.1875 0.1562 +0.5312 0.1875 0.1875 +0.5312 0.1875 0.2188 +0.5312 0.1875 0.25 +0.5312 0.1875 0.2812 +0.5312 0.1875 0.3125 +0.5312 0.1875 0.3438 +0.5312 0.1875 0.375 +0.5312 0.1875 0.4062 +0.5312 0.1875 0.4375 +0.5312 0.1875 0.4688 +0.5312 0.1875 0.5 +0.5312 0.1875 0.5312 +0.5312 0.1875 0.5625 +0.5312 0.1875 0.5938 +0.5312 0.1875 0.625 +0.5312 0.1875 0.6562 +0.5312 0.1875 0.6875 +0.5312 0.1875 0.7188 +0.5312 0.1875 0.75 +0.5312 0.1875 0.7812 +0.5312 0.1875 0.8125 +0.5312 0.1875 0.8438 +0.5312 0.1875 0.875 +0.5312 0.1875 0.9062 +0.5312 0.1875 0.9375 +0.5312 0.1875 0.9688 +0.5312 0.1875 1 +0.5312 0.2188 0 +0.5312 0.2188 0.03125 +0.5312 0.2188 0.0625 +0.5312 0.2188 0.09375 +0.5312 0.2188 0.125 +0.5312 0.2188 0.1562 +0.5312 0.2188 0.1875 +0.5312 0.2188 0.2188 +0.5312 0.2188 0.25 +0.5312 0.2188 0.2812 +0.5312 0.2188 0.3125 +0.5312 0.2188 0.3438 +0.5312 0.2188 0.375 +0.5312 0.2188 0.4062 +0.5312 0.2188 0.4375 +0.5312 0.2188 0.4688 +0.5312 0.2188 0.5 +0.5312 0.2188 0.5312 +0.5312 0.2188 0.5625 +0.5312 0.2188 0.5938 +0.5312 0.2188 0.625 +0.5312 0.2188 0.6562 +0.5312 0.2188 0.6875 +0.5312 0.2188 0.7188 +0.5312 0.2188 0.75 +0.5312 0.2188 0.7812 +0.5312 0.2188 0.8125 +0.5312 0.2188 0.8438 +0.5312 0.2188 0.875 +0.5312 0.2188 0.9062 +0.5312 0.2188 0.9375 +0.5312 0.2188 0.9688 +0.5312 0.2188 1 +0.5312 0.25 0 +0.5312 0.25 0.03125 +0.5312 0.25 0.0625 +0.5312 0.25 0.09375 +0.5312 0.25 0.125 +0.5312 0.25 0.1562 +0.5312 0.25 0.1875 +0.5312 0.25 0.2188 +0.5312 0.25 0.25 +0.5312 0.25 0.2812 +0.5312 0.25 0.3125 +0.5312 0.25 0.3438 +0.5312 0.25 0.375 +0.5312 0.25 0.4062 +0.5312 0.25 0.4375 +0.5312 0.25 0.4688 +0.5312 0.25 0.5 +0.5312 0.25 0.5312 +0.5312 0.25 0.5625 +0.5312 0.25 0.5938 +0.5312 0.25 0.625 +0.5312 0.25 0.6562 +0.5312 0.25 0.6875 +0.5312 0.25 0.7188 +0.5312 0.25 0.75 +0.5312 0.25 0.7812 +0.5312 0.25 0.8125 +0.5312 0.25 0.8438 +0.5312 0.25 0.875 +0.5312 0.25 0.9062 +0.5312 0.25 0.9375 +0.5312 0.25 0.9688 +0.5312 0.25 1 +0.5312 0.2812 0 +0.5312 0.2812 0.03125 +0.5312 0.2812 0.0625 +0.5312 0.2812 0.09375 +0.5312 0.2812 0.125 +0.5312 0.2812 0.1562 +0.5312 0.2812 0.1875 +0.5312 0.2812 0.2188 +0.5312 0.2812 0.25 +0.5312 0.2812 0.2812 +0.5312 0.2812 0.3125 +0.5312 0.2812 0.3438 +0.5312 0.2812 0.375 +0.5312 0.2812 0.4062 +0.5312 0.2812 0.4375 +0.5312 0.2812 0.4688 +0.5312 0.2812 0.5 +0.5312 0.2812 0.5312 +0.5312 0.2812 0.5625 +0.5312 0.2812 0.5938 +0.5312 0.2812 0.625 +0.5312 0.2812 0.6562 +0.5312 0.2812 0.6875 +0.5312 0.2812 0.7188 +0.5312 0.2812 0.75 +0.5312 0.2812 0.7812 +0.5312 0.2812 0.8125 +0.5312 0.2812 0.8438 +0.5312 0.2812 0.875 +0.5312 0.2812 0.9062 +0.5312 0.2812 0.9375 +0.5312 0.2812 0.9688 +0.5312 0.2812 1 +0.5312 0.3125 0 +0.5312 0.3125 0.03125 +0.5312 0.3125 0.0625 +0.5312 0.3125 0.09375 +0.5312 0.3125 0.125 +0.5312 0.3125 0.1562 +0.5312 0.3125 0.1875 +0.5312 0.3125 0.2188 +0.5312 0.3125 0.25 +0.5312 0.3125 0.2812 +0.5312 0.3125 0.3125 +0.5312 0.3125 0.3438 +0.5312 0.3125 0.375 +0.5312 0.3125 0.4062 +0.5312 0.3125 0.4375 +0.5312 0.3125 0.4688 +0.5312 0.3125 0.5 +0.5312 0.3125 0.5312 +0.5312 0.3125 0.5625 +0.5312 0.3125 0.5938 +0.5312 0.3125 0.625 +0.5312 0.3125 0.6562 +0.5312 0.3125 0.6875 +0.5312 0.3125 0.7188 +0.5312 0.3125 0.75 +0.5312 0.3125 0.7812 +0.5312 0.3125 0.8125 +0.5312 0.3125 0.8438 +0.5312 0.3125 0.875 +0.5312 0.3125 0.9062 +0.5312 0.3125 0.9375 +0.5312 0.3125 0.9688 +0.5312 0.3125 1 +0.5312 0.3438 0 +0.5312 0.3438 0.03125 +0.5312 0.3438 0.0625 +0.5312 0.3438 0.09375 +0.5312 0.3438 0.125 +0.5312 0.3438 0.1562 +0.5312 0.3438 0.1875 +0.5312 0.3438 0.2188 +0.5312 0.3438 0.25 +0.5312 0.3438 0.2812 +0.5312 0.3438 0.3125 +0.5312 0.3438 0.3438 +0.5312 0.3438 0.375 +0.5312 0.3438 0.4062 +0.5312 0.3438 0.4375 +0.5312 0.3438 0.4688 +0.5312 0.3438 0.5 +0.5312 0.3438 0.5312 +0.5312 0.3438 0.5625 +0.5312 0.3438 0.5938 +0.5312 0.3438 0.625 +0.5312 0.3438 0.6562 +0.5312 0.3438 0.6875 +0.5312 0.3438 0.7188 +0.5312 0.3438 0.75 +0.5312 0.3438 0.7812 +0.5312 0.3438 0.8125 +0.5312 0.3438 0.8438 +0.5312 0.3438 0.875 +0.5312 0.3438 0.9062 +0.5312 0.3438 0.9375 +0.5312 0.3438 0.9688 +0.5312 0.3438 1 +0.5312 0.375 0 +0.5312 0.375 0.03125 +0.5312 0.375 0.0625 +0.5312 0.375 0.09375 +0.5312 0.375 0.125 +0.5312 0.375 0.1562 +0.5312 0.375 0.1875 +0.5312 0.375 0.2188 +0.5312 0.375 0.25 +0.5312 0.375 0.2812 +0.5312 0.375 0.3125 +0.5312 0.375 0.3438 +0.5312 0.375 0.375 +0.5312 0.375 0.4062 +0.5312 0.375 0.4375 +0.5312 0.375 0.4688 +0.5312 0.375 0.5 +0.5312 0.375 0.5312 +0.5312 0.375 0.5625 +0.5312 0.375 0.5938 +0.5312 0.375 0.625 +0.5312 0.375 0.6562 +0.5312 0.375 0.6875 +0.5312 0.375 0.7188 +0.5312 0.375 0.75 +0.5312 0.375 0.7812 +0.5312 0.375 0.8125 +0.5312 0.375 0.8438 +0.5312 0.375 0.875 +0.5312 0.375 0.9062 +0.5312 0.375 0.9375 +0.5312 0.375 0.9688 +0.5312 0.375 1 +0.5312 0.4062 0 +0.5312 0.4062 0.03125 +0.5312 0.4062 0.0625 +0.5312 0.4062 0.09375 +0.5312 0.4062 0.125 +0.5312 0.4062 0.1562 +0.5312 0.4062 0.1875 +0.5312 0.4062 0.2188 +0.5312 0.4062 0.25 +0.5312 0.4062 0.2812 +0.5312 0.4062 0.3125 +0.5312 0.4062 0.3438 +0.5312 0.4062 0.375 +0.5312 0.4062 0.4062 +0.5312 0.4062 0.4375 +0.5312 0.4062 0.4688 +0.5312 0.4062 0.5 +0.5312 0.4062 0.5312 +0.5312 0.4062 0.5625 +0.5312 0.4062 0.5938 +0.5312 0.4062 0.625 +0.5312 0.4062 0.6562 +0.5312 0.4062 0.6875 +0.5312 0.4062 0.7188 +0.5312 0.4062 0.75 +0.5312 0.4062 0.7812 +0.5312 0.4062 0.8125 +0.5312 0.4062 0.8438 +0.5312 0.4062 0.875 +0.5312 0.4062 0.9062 +0.5312 0.4062 0.9375 +0.5312 0.4062 0.9688 +0.5312 0.4062 1 +0.5312 0.4375 0 +0.5312 0.4375 0.03125 +0.5312 0.4375 0.0625 +0.5312 0.4375 0.09375 +0.5312 0.4375 0.125 +0.5312 0.4375 0.1562 +0.5312 0.4375 0.1875 +0.5312 0.4375 0.2188 +0.5312 0.4375 0.25 +0.5312 0.4375 0.2812 +0.5312 0.4375 0.3125 +0.5312 0.4375 0.3438 +0.5312 0.4375 0.375 +0.5312 0.4375 0.4062 +0.5312 0.4375 0.4375 +0.5312 0.4375 0.4688 +0.5312 0.4375 0.5 +0.5312 0.4375 0.5312 +0.5312 0.4375 0.5625 +0.5312 0.4375 0.5938 +0.5312 0.4375 0.625 +0.5312 0.4375 0.6562 +0.5312 0.4375 0.6875 +0.5312 0.4375 0.7188 +0.5312 0.4375 0.75 +0.5312 0.4375 0.7812 +0.5312 0.4375 0.8125 +0.5312 0.4375 0.8438 +0.5312 0.4375 0.875 +0.5312 0.4375 0.9062 +0.5312 0.4375 0.9375 +0.5312 0.4375 0.9688 +0.5312 0.4375 1 +0.5312 0.4688 0 +0.5312 0.4688 0.03125 +0.5312 0.4688 0.0625 +0.5312 0.4688 0.09375 +0.5312 0.4688 0.125 +0.5312 0.4688 0.1562 +0.5312 0.4688 0.1875 +0.5312 0.4688 0.2188 +0.5312 0.4688 0.25 +0.5312 0.4688 0.2812 +0.5312 0.4688 0.3125 +0.5312 0.4688 0.3438 +0.5312 0.4688 0.375 +0.5312 0.4688 0.4062 +0.5312 0.4688 0.4375 +0.5312 0.4688 0.4688 +0.5312 0.4688 0.5 +0.5312 0.4688 0.5312 +0.5312 0.4688 0.5625 +0.5312 0.4688 0.5938 +0.5312 0.4688 0.625 +0.5312 0.4688 0.6562 +0.5312 0.4688 0.6875 +0.5312 0.4688 0.7188 +0.5312 0.4688 0.75 +0.5312 0.4688 0.7812 +0.5312 0.4688 0.8125 +0.5312 0.4688 0.8438 +0.5312 0.4688 0.875 +0.5312 0.4688 0.9062 +0.5312 0.4688 0.9375 +0.5312 0.4688 0.9688 +0.5312 0.4688 1 +0.5312 0.5 0 +0.5312 0.5 0.03125 +0.5312 0.5 0.0625 +0.5312 0.5 0.09375 +0.5312 0.5 0.125 +0.5312 0.5 0.1562 +0.5312 0.5 0.1875 +0.5312 0.5 0.2188 +0.5312 0.5 0.25 +0.5312 0.5 0.2812 +0.5312 0.5 0.3125 +0.5312 0.5 0.3438 +0.5312 0.5 0.375 +0.5312 0.5 0.4062 +0.5312 0.5 0.4375 +0.5312 0.5 0.4688 +0.5312 0.5 0.5 +0.5312 0.5 0.5312 +0.5312 0.5 0.5625 +0.5312 0.5 0.5938 +0.5312 0.5 0.625 +0.5312 0.5 0.6562 +0.5312 0.5 0.6875 +0.5312 0.5 0.7188 +0.5312 0.5 0.75 +0.5312 0.5 0.7812 +0.5312 0.5 0.8125 +0.5312 0.5 0.8438 +0.5312 0.5 0.875 +0.5312 0.5 0.9062 +0.5312 0.5 0.9375 +0.5312 0.5 0.9688 +0.5312 0.5 1 +0.5312 0.5312 0 +0.5312 0.5312 0.03125 +0.5312 0.5312 0.0625 +0.5312 0.5312 0.09375 +0.5312 0.5312 0.125 +0.5312 0.5312 0.1562 +0.5312 0.5312 0.1875 +0.5312 0.5312 0.2188 +0.5312 0.5312 0.25 +0.5312 0.5312 0.2812 +0.5312 0.5312 0.3125 +0.5312 0.5312 0.3438 +0.5312 0.5312 0.375 +0.5312 0.5312 0.4062 +0.5312 0.5312 0.4375 +0.5312 0.5312 0.4688 +0.5312 0.5312 0.5 +0.5312 0.5312 0.5312 +0.5312 0.5312 0.5625 +0.5312 0.5312 0.5938 +0.5312 0.5312 0.625 +0.5312 0.5312 0.6562 +0.5312 0.5312 0.6875 +0.5312 0.5312 0.7188 +0.5312 0.5312 0.75 +0.5312 0.5312 0.7812 +0.5312 0.5312 0.8125 +0.5312 0.5312 0.8438 +0.5312 0.5312 0.875 +0.5312 0.5312 0.9062 +0.5312 0.5312 0.9375 +0.5312 0.5312 0.9688 +0.5312 0.5312 1 +0.5312 0.5625 0 +0.5312 0.5625 0.03125 +0.5312 0.5625 0.0625 +0.5312 0.5625 0.09375 +0.5312 0.5625 0.125 +0.5312 0.5625 0.1562 +0.5312 0.5625 0.1875 +0.5312 0.5625 0.2188 +0.5312 0.5625 0.25 +0.5312 0.5625 0.2812 +0.5312 0.5625 0.3125 +0.5312 0.5625 0.3438 +0.5312 0.5625 0.375 +0.5312 0.5625 0.4062 +0.5312 0.5625 0.4375 +0.5312 0.5625 0.4688 +0.5312 0.5625 0.5 +0.5312 0.5625 0.5312 +0.5312 0.5625 0.5625 +0.5312 0.5625 0.5938 +0.5312 0.5625 0.625 +0.5312 0.5625 0.6562 +0.5312 0.5625 0.6875 +0.5312 0.5625 0.7188 +0.5312 0.5625 0.75 +0.5312 0.5625 0.7812 +0.5312 0.5625 0.8125 +0.5312 0.5625 0.8438 +0.5312 0.5625 0.875 +0.5312 0.5625 0.9062 +0.5312 0.5625 0.9375 +0.5312 0.5625 0.9688 +0.5312 0.5625 1 +0.5312 0.5938 0 +0.5312 0.5938 0.03125 +0.5312 0.5938 0.0625 +0.5312 0.5938 0.09375 +0.5312 0.5938 0.125 +0.5312 0.5938 0.1562 +0.5312 0.5938 0.1875 +0.5312 0.5938 0.2188 +0.5312 0.5938 0.25 +0.5312 0.5938 0.2812 +0.5312 0.5938 0.3125 +0.5312 0.5938 0.3438 +0.5312 0.5938 0.375 +0.5312 0.5938 0.4062 +0.5312 0.5938 0.4375 +0.5312 0.5938 0.4688 +0.5312 0.5938 0.5 +0.5312 0.5938 0.5312 +0.5312 0.5938 0.5625 +0.5312 0.5938 0.5938 +0.5312 0.5938 0.625 +0.5312 0.5938 0.6562 +0.5312 0.5938 0.6875 +0.5312 0.5938 0.7188 +0.5312 0.5938 0.75 +0.5312 0.5938 0.7812 +0.5312 0.5938 0.8125 +0.5312 0.5938 0.8438 +0.5312 0.5938 0.875 +0.5312 0.5938 0.9062 +0.5312 0.5938 0.9375 +0.5312 0.5938 0.9688 +0.5312 0.5938 1 +0.5312 0.625 0 +0.5312 0.625 0.03125 +0.5312 0.625 0.0625 +0.5312 0.625 0.09375 +0.5312 0.625 0.125 +0.5312 0.625 0.1562 +0.5312 0.625 0.1875 +0.5312 0.625 0.2188 +0.5312 0.625 0.25 +0.5312 0.625 0.2812 +0.5312 0.625 0.3125 +0.5312 0.625 0.3438 +0.5312 0.625 0.375 +0.5312 0.625 0.4062 +0.5312 0.625 0.4375 +0.5312 0.625 0.4688 +0.5312 0.625 0.5 +0.5312 0.625 0.5312 +0.5312 0.625 0.5625 +0.5312 0.625 0.5938 +0.5312 0.625 0.625 +0.5312 0.625 0.6562 +0.5312 0.625 0.6875 +0.5312 0.625 0.7188 +0.5312 0.625 0.75 +0.5312 0.625 0.7812 +0.5312 0.625 0.8125 +0.5312 0.625 0.8438 +0.5312 0.625 0.875 +0.5312 0.625 0.9062 +0.5312 0.625 0.9375 +0.5312 0.625 0.9688 +0.5312 0.625 1 +0.5312 0.6562 0 +0.5312 0.6562 0.03125 +0.5312 0.6562 0.0625 +0.5312 0.6562 0.09375 +0.5312 0.6562 0.125 +0.5312 0.6562 0.1562 +0.5312 0.6562 0.1875 +0.5312 0.6562 0.2188 +0.5312 0.6562 0.25 +0.5312 0.6562 0.2812 +0.5312 0.6562 0.3125 +0.5312 0.6562 0.3438 +0.5312 0.6562 0.375 +0.5312 0.6562 0.4062 +0.5312 0.6562 0.4375 +0.5312 0.6562 0.4688 +0.5312 0.6562 0.5 +0.5312 0.6562 0.5312 +0.5312 0.6562 0.5625 +0.5312 0.6562 0.5938 +0.5312 0.6562 0.625 +0.5312 0.6562 0.6562 +0.5312 0.6562 0.6875 +0.5312 0.6562 0.7188 +0.5312 0.6562 0.75 +0.5312 0.6562 0.7812 +0.5312 0.6562 0.8125 +0.5312 0.6562 0.8438 +0.5312 0.6562 0.875 +0.5312 0.6562 0.9062 +0.5312 0.6562 0.9375 +0.5312 0.6562 0.9688 +0.5312 0.6562 1 +0.5312 0.6875 0 +0.5312 0.6875 0.03125 +0.5312 0.6875 0.0625 +0.5312 0.6875 0.09375 +0.5312 0.6875 0.125 +0.5312 0.6875 0.1562 +0.5312 0.6875 0.1875 +0.5312 0.6875 0.2188 +0.5312 0.6875 0.25 +0.5312 0.6875 0.2812 +0.5312 0.6875 0.3125 +0.5312 0.6875 0.3438 +0.5312 0.6875 0.375 +0.5312 0.6875 0.4062 +0.5312 0.6875 0.4375 +0.5312 0.6875 0.4688 +0.5312 0.6875 0.5 +0.5312 0.6875 0.5312 +0.5312 0.6875 0.5625 +0.5312 0.6875 0.5938 +0.5312 0.6875 0.625 +0.5312 0.6875 0.6562 +0.5312 0.6875 0.6875 +0.5312 0.6875 0.7188 +0.5312 0.6875 0.75 +0.5312 0.6875 0.7812 +0.5312 0.6875 0.8125 +0.5312 0.6875 0.8438 +0.5312 0.6875 0.875 +0.5312 0.6875 0.9062 +0.5312 0.6875 0.9375 +0.5312 0.6875 0.9688 +0.5312 0.6875 1 +0.5312 0.7188 0 +0.5312 0.7188 0.03125 +0.5312 0.7188 0.0625 +0.5312 0.7188 0.09375 +0.5312 0.7188 0.125 +0.5312 0.7188 0.1562 +0.5312 0.7188 0.1875 +0.5312 0.7188 0.2188 +0.5312 0.7188 0.25 +0.5312 0.7188 0.2812 +0.5312 0.7188 0.3125 +0.5312 0.7188 0.3438 +0.5312 0.7188 0.375 +0.5312 0.7188 0.4062 +0.5312 0.7188 0.4375 +0.5312 0.7188 0.4688 +0.5312 0.7188 0.5 +0.5312 0.7188 0.5312 +0.5312 0.7188 0.5625 +0.5312 0.7188 0.5938 +0.5312 0.7188 0.625 +0.5312 0.7188 0.6562 +0.5312 0.7188 0.6875 +0.5312 0.7188 0.7188 +0.5312 0.7188 0.75 +0.5312 0.7188 0.7812 +0.5312 0.7188 0.8125 +0.5312 0.7188 0.8438 +0.5312 0.7188 0.875 +0.5312 0.7188 0.9062 +0.5312 0.7188 0.9375 +0.5312 0.7188 0.9688 +0.5312 0.7188 1 +0.5312 0.75 0 +0.5312 0.75 0.03125 +0.5312 0.75 0.0625 +0.5312 0.75 0.09375 +0.5312 0.75 0.125 +0.5312 0.75 0.1562 +0.5312 0.75 0.1875 +0.5312 0.75 0.2188 +0.5312 0.75 0.25 +0.5312 0.75 0.2812 +0.5312 0.75 0.3125 +0.5312 0.75 0.3438 +0.5312 0.75 0.375 +0.5312 0.75 0.4062 +0.5312 0.75 0.4375 +0.5312 0.75 0.4688 +0.5312 0.75 0.5 +0.5312 0.75 0.5312 +0.5312 0.75 0.5625 +0.5312 0.75 0.5938 +0.5312 0.75 0.625 +0.5312 0.75 0.6562 +0.5312 0.75 0.6875 +0.5312 0.75 0.7188 +0.5312 0.75 0.75 +0.5312 0.75 0.7812 +0.5312 0.75 0.8125 +0.5312 0.75 0.8438 +0.5312 0.75 0.875 +0.5312 0.75 0.9062 +0.5312 0.75 0.9375 +0.5312 0.75 0.9688 +0.5312 0.75 1 +0.5312 0.7812 0 +0.5312 0.7812 0.03125 +0.5312 0.7812 0.0625 +0.5312 0.7812 0.09375 +0.5312 0.7812 0.125 +0.5312 0.7812 0.1562 +0.5312 0.7812 0.1875 +0.5312 0.7812 0.2188 +0.5312 0.7812 0.25 +0.5312 0.7812 0.2812 +0.5312 0.7812 0.3125 +0.5312 0.7812 0.3438 +0.5312 0.7812 0.375 +0.5312 0.7812 0.4062 +0.5312 0.7812 0.4375 +0.5312 0.7812 0.4688 +0.5312 0.7812 0.5 +0.5312 0.7812 0.5312 +0.5312 0.7812 0.5625 +0.5312 0.7812 0.5938 +0.5312 0.7812 0.625 +0.5312 0.7812 0.6562 +0.5312 0.7812 0.6875 +0.5312 0.7812 0.7188 +0.5312 0.7812 0.75 +0.5312 0.7812 0.7812 +0.5312 0.7812 0.8125 +0.5312 0.7812 0.8438 +0.5312 0.7812 0.875 +0.5312 0.7812 0.9062 +0.5312 0.7812 0.9375 +0.5312 0.7812 0.9688 +0.5312 0.7812 1 +0.5312 0.8125 0 +0.5312 0.8125 0.03125 +0.5312 0.8125 0.0625 +0.5312 0.8125 0.09375 +0.5312 0.8125 0.125 +0.5312 0.8125 0.1562 +0.5312 0.8125 0.1875 +0.5312 0.8125 0.2188 +0.5312 0.8125 0.25 +0.5312 0.8125 0.2812 +0.5312 0.8125 0.3125 +0.5312 0.8125 0.3438 +0.5312 0.8125 0.375 +0.5312 0.8125 0.4062 +0.5312 0.8125 0.4375 +0.5312 0.8125 0.4688 +0.5312 0.8125 0.5 +0.5312 0.8125 0.5312 +0.5312 0.8125 0.5625 +0.5312 0.8125 0.5938 +0.5312 0.8125 0.625 +0.5312 0.8125 0.6562 +0.5312 0.8125 0.6875 +0.5312 0.8125 0.7188 +0.5312 0.8125 0.75 +0.5312 0.8125 0.7812 +0.5312 0.8125 0.8125 +0.5312 0.8125 0.8438 +0.5312 0.8125 0.875 +0.5312 0.8125 0.9062 +0.5312 0.8125 0.9375 +0.5312 0.8125 0.9688 +0.5312 0.8125 1 +0.5312 0.8438 0 +0.5312 0.8438 0.03125 +0.5312 0.8438 0.0625 +0.5312 0.8438 0.09375 +0.5312 0.8438 0.125 +0.5312 0.8438 0.1562 +0.5312 0.8438 0.1875 +0.5312 0.8438 0.2188 +0.5312 0.8438 0.25 +0.5312 0.8438 0.2812 +0.5312 0.8438 0.3125 +0.5312 0.8438 0.3438 +0.5312 0.8438 0.375 +0.5312 0.8438 0.4062 +0.5312 0.8438 0.4375 +0.5312 0.8438 0.4688 +0.5312 0.8438 0.5 +0.5312 0.8438 0.5312 +0.5312 0.8438 0.5625 +0.5312 0.8438 0.5938 +0.5312 0.8438 0.625 +0.5312 0.8438 0.6562 +0.5312 0.8438 0.6875 +0.5312 0.8438 0.7188 +0.5312 0.8438 0.75 +0.5312 0.8438 0.7812 +0.5312 0.8438 0.8125 +0.5312 0.8438 0.8438 +0.5312 0.8438 0.875 +0.5312 0.8438 0.9062 +0.5312 0.8438 0.9375 +0.5312 0.8438 0.9688 +0.5312 0.8438 1 +0.5312 0.875 0 +0.5312 0.875 0.03125 +0.5312 0.875 0.0625 +0.5312 0.875 0.09375 +0.5312 0.875 0.125 +0.5312 0.875 0.1562 +0.5312 0.875 0.1875 +0.5312 0.875 0.2188 +0.5312 0.875 0.25 +0.5312 0.875 0.2812 +0.5312 0.875 0.3125 +0.5312 0.875 0.3438 +0.5312 0.875 0.375 +0.5312 0.875 0.4062 +0.5312 0.875 0.4375 +0.5312 0.875 0.4688 +0.5312 0.875 0.5 +0.5312 0.875 0.5312 +0.5312 0.875 0.5625 +0.5312 0.875 0.5938 +0.5312 0.875 0.625 +0.5312 0.875 0.6562 +0.5312 0.875 0.6875 +0.5312 0.875 0.7188 +0.5312 0.875 0.75 +0.5312 0.875 0.7812 +0.5312 0.875 0.8125 +0.5312 0.875 0.8438 +0.5312 0.875 0.875 +0.5312 0.875 0.9062 +0.5312 0.875 0.9375 +0.5312 0.875 0.9688 +0.5312 0.875 1 +0.5312 0.9062 0 +0.5312 0.9062 0.03125 +0.5312 0.9062 0.0625 +0.5312 0.9062 0.09375 +0.5312 0.9062 0.125 +0.5312 0.9062 0.1562 +0.5312 0.9062 0.1875 +0.5312 0.9062 0.2188 +0.5312 0.9062 0.25 +0.5312 0.9062 0.2812 +0.5312 0.9062 0.3125 +0.5312 0.9062 0.3438 +0.5312 0.9062 0.375 +0.5312 0.9062 0.4062 +0.5312 0.9062 0.4375 +0.5312 0.9062 0.4688 +0.5312 0.9062 0.5 +0.5312 0.9062 0.5312 +0.5312 0.9062 0.5625 +0.5312 0.9062 0.5938 +0.5312 0.9062 0.625 +0.5312 0.9062 0.6562 +0.5312 0.9062 0.6875 +0.5312 0.9062 0.7188 +0.5312 0.9062 0.75 +0.5312 0.9062 0.7812 +0.5312 0.9062 0.8125 +0.5312 0.9062 0.8438 +0.5312 0.9062 0.875 +0.5312 0.9062 0.9062 +0.5312 0.9062 0.9375 +0.5312 0.9062 0.9688 +0.5312 0.9062 1 +0.5312 0.9375 0 +0.5312 0.9375 0.03125 +0.5312 0.9375 0.0625 +0.5312 0.9375 0.09375 +0.5312 0.9375 0.125 +0.5312 0.9375 0.1562 +0.5312 0.9375 0.1875 +0.5312 0.9375 0.2188 +0.5312 0.9375 0.25 +0.5312 0.9375 0.2812 +0.5312 0.9375 0.3125 +0.5312 0.9375 0.3438 +0.5312 0.9375 0.375 +0.5312 0.9375 0.4062 +0.5312 0.9375 0.4375 +0.5312 0.9375 0.4688 +0.5312 0.9375 0.5 +0.5312 0.9375 0.5312 +0.5312 0.9375 0.5625 +0.5312 0.9375 0.5938 +0.5312 0.9375 0.625 +0.5312 0.9375 0.6562 +0.5312 0.9375 0.6875 +0.5312 0.9375 0.7188 +0.5312 0.9375 0.75 +0.5312 0.9375 0.7812 +0.5312 0.9375 0.8125 +0.5312 0.9375 0.8438 +0.5312 0.9375 0.875 +0.5312 0.9375 0.9062 +0.5312 0.9375 0.9375 +0.5312 0.9375 0.9688 +0.5312 0.9375 1 +0.5312 0.9688 0 +0.5312 0.9688 0.03125 +0.5312 0.9688 0.0625 +0.5312 0.9688 0.09375 +0.5312 0.9688 0.125 +0.5312 0.9688 0.1562 +0.5312 0.9688 0.1875 +0.5312 0.9688 0.2188 +0.5312 0.9688 0.25 +0.5312 0.9688 0.2812 +0.5312 0.9688 0.3125 +0.5312 0.9688 0.3438 +0.5312 0.9688 0.375 +0.5312 0.9688 0.4062 +0.5312 0.9688 0.4375 +0.5312 0.9688 0.4688 +0.5312 0.9688 0.5 +0.5312 0.9688 0.5312 +0.5312 0.9688 0.5625 +0.5312 0.9688 0.5938 +0.5312 0.9688 0.625 +0.5312 0.9688 0.6562 +0.5312 0.9688 0.6875 +0.5312 0.9688 0.7188 +0.5312 0.9688 0.75 +0.5312 0.9688 0.7812 +0.5312 0.9688 0.8125 +0.5312 0.9688 0.8438 +0.5312 0.9688 0.875 +0.5312 0.9688 0.9062 +0.5312 0.9688 0.9375 +0.5312 0.9688 0.9688 +0.5312 0.9688 1 +0.5312 1 0 +0.5312 1 0.03125 +0.5312 1 0.0625 +0.5312 1 0.09375 +0.5312 1 0.125 +0.5312 1 0.1562 +0.5312 1 0.1875 +0.5312 1 0.2188 +0.5312 1 0.25 +0.5312 1 0.2812 +0.5312 1 0.3125 +0.5312 1 0.3438 +0.5312 1 0.375 +0.5312 1 0.4062 +0.5312 1 0.4375 +0.5312 1 0.4688 +0.5312 1 0.5 +0.5312 1 0.5312 +0.5312 1 0.5625 +0.5312 1 0.5938 +0.5312 1 0.625 +0.5312 1 0.6562 +0.5312 1 0.6875 +0.5312 1 0.7188 +0.5312 1 0.75 +0.5312 1 0.7812 +0.5312 1 0.8125 +0.5312 1 0.8438 +0.5312 1 0.875 +0.5312 1 0.9062 +0.5312 1 0.9375 +0.5312 1 0.9688 +0.5312 1 1 +0.5625 0 0 +0.5625 0 0.03125 +0.5625 0 0.0625 +0.5625 0 0.09375 +0.5625 0 0.125 +0.5625 0 0.1562 +0.5625 0 0.1875 +0.5625 0 0.2188 +0.5625 0 0.25 +0.5625 0 0.2812 +0.5625 0 0.3125 +0.5625 0 0.3438 +0.5625 0 0.375 +0.5625 0 0.4062 +0.5625 0 0.4375 +0.5625 0 0.4688 +0.5625 0 0.5 +0.5625 0 0.5312 +0.5625 0 0.5625 +0.5625 0 0.5938 +0.5625 0 0.625 +0.5625 0 0.6562 +0.5625 0 0.6875 +0.5625 0 0.7188 +0.5625 0 0.75 +0.5625 0 0.7812 +0.5625 0 0.8125 +0.5625 0 0.8438 +0.5625 0 0.875 +0.5625 0 0.9062 +0.5625 0 0.9375 +0.5625 0 0.9688 +0.5625 0 1 +0.5625 0.03125 0 +0.5625 0.03125 0.03125 +0.5625 0.03125 0.0625 +0.5625 0.03125 0.09375 +0.5625 0.03125 0.125 +0.5625 0.03125 0.1562 +0.5625 0.03125 0.1875 +0.5625 0.03125 0.2188 +0.5625 0.03125 0.25 +0.5625 0.03125 0.2812 +0.5625 0.03125 0.3125 +0.5625 0.03125 0.3438 +0.5625 0.03125 0.375 +0.5625 0.03125 0.4062 +0.5625 0.03125 0.4375 +0.5625 0.03125 0.4688 +0.5625 0.03125 0.5 +0.5625 0.03125 0.5312 +0.5625 0.03125 0.5625 +0.5625 0.03125 0.5938 +0.5625 0.03125 0.625 +0.5625 0.03125 0.6562 +0.5625 0.03125 0.6875 +0.5625 0.03125 0.7188 +0.5625 0.03125 0.75 +0.5625 0.03125 0.7812 +0.5625 0.03125 0.8125 +0.5625 0.03125 0.8438 +0.5625 0.03125 0.875 +0.5625 0.03125 0.9062 +0.5625 0.03125 0.9375 +0.5625 0.03125 0.9688 +0.5625 0.03125 1 +0.5625 0.0625 0 +0.5625 0.0625 0.03125 +0.5625 0.0625 0.0625 +0.5625 0.0625 0.09375 +0.5625 0.0625 0.125 +0.5625 0.0625 0.1562 +0.5625 0.0625 0.1875 +0.5625 0.0625 0.2188 +0.5625 0.0625 0.25 +0.5625 0.0625 0.2812 +0.5625 0.0625 0.3125 +0.5625 0.0625 0.3438 +0.5625 0.0625 0.375 +0.5625 0.0625 0.4062 +0.5625 0.0625 0.4375 +0.5625 0.0625 0.4688 +0.5625 0.0625 0.5 +0.5625 0.0625 0.5312 +0.5625 0.0625 0.5625 +0.5625 0.0625 0.5938 +0.5625 0.0625 0.625 +0.5625 0.0625 0.6562 +0.5625 0.0625 0.6875 +0.5625 0.0625 0.7188 +0.5625 0.0625 0.75 +0.5625 0.0625 0.7812 +0.5625 0.0625 0.8125 +0.5625 0.0625 0.8438 +0.5625 0.0625 0.875 +0.5625 0.0625 0.9062 +0.5625 0.0625 0.9375 +0.5625 0.0625 0.9688 +0.5625 0.0625 1 +0.5625 0.09375 0 +0.5625 0.09375 0.03125 +0.5625 0.09375 0.0625 +0.5625 0.09375 0.09375 +0.5625 0.09375 0.125 +0.5625 0.09375 0.1562 +0.5625 0.09375 0.1875 +0.5625 0.09375 0.2188 +0.5625 0.09375 0.25 +0.5625 0.09375 0.2812 +0.5625 0.09375 0.3125 +0.5625 0.09375 0.3438 +0.5625 0.09375 0.375 +0.5625 0.09375 0.4062 +0.5625 0.09375 0.4375 +0.5625 0.09375 0.4688 +0.5625 0.09375 0.5 +0.5625 0.09375 0.5312 +0.5625 0.09375 0.5625 +0.5625 0.09375 0.5938 +0.5625 0.09375 0.625 +0.5625 0.09375 0.6562 +0.5625 0.09375 0.6875 +0.5625 0.09375 0.7188 +0.5625 0.09375 0.75 +0.5625 0.09375 0.7812 +0.5625 0.09375 0.8125 +0.5625 0.09375 0.8438 +0.5625 0.09375 0.875 +0.5625 0.09375 0.9062 +0.5625 0.09375 0.9375 +0.5625 0.09375 0.9688 +0.5625 0.09375 1 +0.5625 0.125 0 +0.5625 0.125 0.03125 +0.5625 0.125 0.0625 +0.5625 0.125 0.09375 +0.5625 0.125 0.125 +0.5625 0.125 0.1562 +0.5625 0.125 0.1875 +0.5625 0.125 0.2188 +0.5625 0.125 0.25 +0.5625 0.125 0.2812 +0.5625 0.125 0.3125 +0.5625 0.125 0.3438 +0.5625 0.125 0.375 +0.5625 0.125 0.4062 +0.5625 0.125 0.4375 +0.5625 0.125 0.4688 +0.5625 0.125 0.5 +0.5625 0.125 0.5312 +0.5625 0.125 0.5625 +0.5625 0.125 0.5938 +0.5625 0.125 0.625 +0.5625 0.125 0.6562 +0.5625 0.125 0.6875 +0.5625 0.125 0.7188 +0.5625 0.125 0.75 +0.5625 0.125 0.7812 +0.5625 0.125 0.8125 +0.5625 0.125 0.8438 +0.5625 0.125 0.875 +0.5625 0.125 0.9062 +0.5625 0.125 0.9375 +0.5625 0.125 0.9688 +0.5625 0.125 1 +0.5625 0.1562 0 +0.5625 0.1562 0.03125 +0.5625 0.1562 0.0625 +0.5625 0.1562 0.09375 +0.5625 0.1562 0.125 +0.5625 0.1562 0.1562 +0.5625 0.1562 0.1875 +0.5625 0.1562 0.2188 +0.5625 0.1562 0.25 +0.5625 0.1562 0.2812 +0.5625 0.1562 0.3125 +0.5625 0.1562 0.3438 +0.5625 0.1562 0.375 +0.5625 0.1562 0.4062 +0.5625 0.1562 0.4375 +0.5625 0.1562 0.4688 +0.5625 0.1562 0.5 +0.5625 0.1562 0.5312 +0.5625 0.1562 0.5625 +0.5625 0.1562 0.5938 +0.5625 0.1562 0.625 +0.5625 0.1562 0.6562 +0.5625 0.1562 0.6875 +0.5625 0.1562 0.7188 +0.5625 0.1562 0.75 +0.5625 0.1562 0.7812 +0.5625 0.1562 0.8125 +0.5625 0.1562 0.8438 +0.5625 0.1562 0.875 +0.5625 0.1562 0.9062 +0.5625 0.1562 0.9375 +0.5625 0.1562 0.9688 +0.5625 0.1562 1 +0.5625 0.1875 0 +0.5625 0.1875 0.03125 +0.5625 0.1875 0.0625 +0.5625 0.1875 0.09375 +0.5625 0.1875 0.125 +0.5625 0.1875 0.1562 +0.5625 0.1875 0.1875 +0.5625 0.1875 0.2188 +0.5625 0.1875 0.25 +0.5625 0.1875 0.2812 +0.5625 0.1875 0.3125 +0.5625 0.1875 0.3438 +0.5625 0.1875 0.375 +0.5625 0.1875 0.4062 +0.5625 0.1875 0.4375 +0.5625 0.1875 0.4688 +0.5625 0.1875 0.5 +0.5625 0.1875 0.5312 +0.5625 0.1875 0.5625 +0.5625 0.1875 0.5938 +0.5625 0.1875 0.625 +0.5625 0.1875 0.6562 +0.5625 0.1875 0.6875 +0.5625 0.1875 0.7188 +0.5625 0.1875 0.75 +0.5625 0.1875 0.7812 +0.5625 0.1875 0.8125 +0.5625 0.1875 0.8438 +0.5625 0.1875 0.875 +0.5625 0.1875 0.9062 +0.5625 0.1875 0.9375 +0.5625 0.1875 0.9688 +0.5625 0.1875 1 +0.5625 0.2188 0 +0.5625 0.2188 0.03125 +0.5625 0.2188 0.0625 +0.5625 0.2188 0.09375 +0.5625 0.2188 0.125 +0.5625 0.2188 0.1562 +0.5625 0.2188 0.1875 +0.5625 0.2188 0.2188 +0.5625 0.2188 0.25 +0.5625 0.2188 0.2812 +0.5625 0.2188 0.3125 +0.5625 0.2188 0.3438 +0.5625 0.2188 0.375 +0.5625 0.2188 0.4062 +0.5625 0.2188 0.4375 +0.5625 0.2188 0.4688 +0.5625 0.2188 0.5 +0.5625 0.2188 0.5312 +0.5625 0.2188 0.5625 +0.5625 0.2188 0.5938 +0.5625 0.2188 0.625 +0.5625 0.2188 0.6562 +0.5625 0.2188 0.6875 +0.5625 0.2188 0.7188 +0.5625 0.2188 0.75 +0.5625 0.2188 0.7812 +0.5625 0.2188 0.8125 +0.5625 0.2188 0.8438 +0.5625 0.2188 0.875 +0.5625 0.2188 0.9062 +0.5625 0.2188 0.9375 +0.5625 0.2188 0.9688 +0.5625 0.2188 1 +0.5625 0.25 0 +0.5625 0.25 0.03125 +0.5625 0.25 0.0625 +0.5625 0.25 0.09375 +0.5625 0.25 0.125 +0.5625 0.25 0.1562 +0.5625 0.25 0.1875 +0.5625 0.25 0.2188 +0.5625 0.25 0.25 +0.5625 0.25 0.2812 +0.5625 0.25 0.3125 +0.5625 0.25 0.3438 +0.5625 0.25 0.375 +0.5625 0.25 0.4062 +0.5625 0.25 0.4375 +0.5625 0.25 0.4688 +0.5625 0.25 0.5 +0.5625 0.25 0.5312 +0.5625 0.25 0.5625 +0.5625 0.25 0.5938 +0.5625 0.25 0.625 +0.5625 0.25 0.6562 +0.5625 0.25 0.6875 +0.5625 0.25 0.7188 +0.5625 0.25 0.75 +0.5625 0.25 0.7812 +0.5625 0.25 0.8125 +0.5625 0.25 0.8438 +0.5625 0.25 0.875 +0.5625 0.25 0.9062 +0.5625 0.25 0.9375 +0.5625 0.25 0.9688 +0.5625 0.25 1 +0.5625 0.2812 0 +0.5625 0.2812 0.03125 +0.5625 0.2812 0.0625 +0.5625 0.2812 0.09375 +0.5625 0.2812 0.125 +0.5625 0.2812 0.1562 +0.5625 0.2812 0.1875 +0.5625 0.2812 0.2188 +0.5625 0.2812 0.25 +0.5625 0.2812 0.2812 +0.5625 0.2812 0.3125 +0.5625 0.2812 0.3438 +0.5625 0.2812 0.375 +0.5625 0.2812 0.4062 +0.5625 0.2812 0.4375 +0.5625 0.2812 0.4688 +0.5625 0.2812 0.5 +0.5625 0.2812 0.5312 +0.5625 0.2812 0.5625 +0.5625 0.2812 0.5938 +0.5625 0.2812 0.625 +0.5625 0.2812 0.6562 +0.5625 0.2812 0.6875 +0.5625 0.2812 0.7188 +0.5625 0.2812 0.75 +0.5625 0.2812 0.7812 +0.5625 0.2812 0.8125 +0.5625 0.2812 0.8438 +0.5625 0.2812 0.875 +0.5625 0.2812 0.9062 +0.5625 0.2812 0.9375 +0.5625 0.2812 0.9688 +0.5625 0.2812 1 +0.5625 0.3125 0 +0.5625 0.3125 0.03125 +0.5625 0.3125 0.0625 +0.5625 0.3125 0.09375 +0.5625 0.3125 0.125 +0.5625 0.3125 0.1562 +0.5625 0.3125 0.1875 +0.5625 0.3125 0.2188 +0.5625 0.3125 0.25 +0.5625 0.3125 0.2812 +0.5625 0.3125 0.3125 +0.5625 0.3125 0.3438 +0.5625 0.3125 0.375 +0.5625 0.3125 0.4062 +0.5625 0.3125 0.4375 +0.5625 0.3125 0.4688 +0.5625 0.3125 0.5 +0.5625 0.3125 0.5312 +0.5625 0.3125 0.5625 +0.5625 0.3125 0.5938 +0.5625 0.3125 0.625 +0.5625 0.3125 0.6562 +0.5625 0.3125 0.6875 +0.5625 0.3125 0.7188 +0.5625 0.3125 0.75 +0.5625 0.3125 0.7812 +0.5625 0.3125 0.8125 +0.5625 0.3125 0.8438 +0.5625 0.3125 0.875 +0.5625 0.3125 0.9062 +0.5625 0.3125 0.9375 +0.5625 0.3125 0.9688 +0.5625 0.3125 1 +0.5625 0.3438 0 +0.5625 0.3438 0.03125 +0.5625 0.3438 0.0625 +0.5625 0.3438 0.09375 +0.5625 0.3438 0.125 +0.5625 0.3438 0.1562 +0.5625 0.3438 0.1875 +0.5625 0.3438 0.2188 +0.5625 0.3438 0.25 +0.5625 0.3438 0.2812 +0.5625 0.3438 0.3125 +0.5625 0.3438 0.3438 +0.5625 0.3438 0.375 +0.5625 0.3438 0.4062 +0.5625 0.3438 0.4375 +0.5625 0.3438 0.4688 +0.5625 0.3438 0.5 +0.5625 0.3438 0.5312 +0.5625 0.3438 0.5625 +0.5625 0.3438 0.5938 +0.5625 0.3438 0.625 +0.5625 0.3438 0.6562 +0.5625 0.3438 0.6875 +0.5625 0.3438 0.7188 +0.5625 0.3438 0.75 +0.5625 0.3438 0.7812 +0.5625 0.3438 0.8125 +0.5625 0.3438 0.8438 +0.5625 0.3438 0.875 +0.5625 0.3438 0.9062 +0.5625 0.3438 0.9375 +0.5625 0.3438 0.9688 +0.5625 0.3438 1 +0.5625 0.375 0 +0.5625 0.375 0.03125 +0.5625 0.375 0.0625 +0.5625 0.375 0.09375 +0.5625 0.375 0.125 +0.5625 0.375 0.1562 +0.5625 0.375 0.1875 +0.5625 0.375 0.2188 +0.5625 0.375 0.25 +0.5625 0.375 0.2812 +0.5625 0.375 0.3125 +0.5625 0.375 0.3438 +0.5625 0.375 0.375 +0.5625 0.375 0.4062 +0.5625 0.375 0.4375 +0.5625 0.375 0.4688 +0.5625 0.375 0.5 +0.5625 0.375 0.5312 +0.5625 0.375 0.5625 +0.5625 0.375 0.5938 +0.5625 0.375 0.625 +0.5625 0.375 0.6562 +0.5625 0.375 0.6875 +0.5625 0.375 0.7188 +0.5625 0.375 0.75 +0.5625 0.375 0.7812 +0.5625 0.375 0.8125 +0.5625 0.375 0.8438 +0.5625 0.375 0.875 +0.5625 0.375 0.9062 +0.5625 0.375 0.9375 +0.5625 0.375 0.9688 +0.5625 0.375 1 +0.5625 0.4062 0 +0.5625 0.4062 0.03125 +0.5625 0.4062 0.0625 +0.5625 0.4062 0.09375 +0.5625 0.4062 0.125 +0.5625 0.4062 0.1562 +0.5625 0.4062 0.1875 +0.5625 0.4062 0.2188 +0.5625 0.4062 0.25 +0.5625 0.4062 0.2812 +0.5625 0.4062 0.3125 +0.5625 0.4062 0.3438 +0.5625 0.4062 0.375 +0.5625 0.4062 0.4062 +0.5625 0.4062 0.4375 +0.5625 0.4062 0.4688 +0.5625 0.4062 0.5 +0.5625 0.4062 0.5312 +0.5625 0.4062 0.5625 +0.5625 0.4062 0.5938 +0.5625 0.4062 0.625 +0.5625 0.4062 0.6562 +0.5625 0.4062 0.6875 +0.5625 0.4062 0.7188 +0.5625 0.4062 0.75 +0.5625 0.4062 0.7812 +0.5625 0.4062 0.8125 +0.5625 0.4062 0.8438 +0.5625 0.4062 0.875 +0.5625 0.4062 0.9062 +0.5625 0.4062 0.9375 +0.5625 0.4062 0.9688 +0.5625 0.4062 1 +0.5625 0.4375 0 +0.5625 0.4375 0.03125 +0.5625 0.4375 0.0625 +0.5625 0.4375 0.09375 +0.5625 0.4375 0.125 +0.5625 0.4375 0.1562 +0.5625 0.4375 0.1875 +0.5625 0.4375 0.2188 +0.5625 0.4375 0.25 +0.5625 0.4375 0.2812 +0.5625 0.4375 0.3125 +0.5625 0.4375 0.3438 +0.5625 0.4375 0.375 +0.5625 0.4375 0.4062 +0.5625 0.4375 0.4375 +0.5625 0.4375 0.4688 +0.5625 0.4375 0.5 +0.5625 0.4375 0.5312 +0.5625 0.4375 0.5625 +0.5625 0.4375 0.5938 +0.5625 0.4375 0.625 +0.5625 0.4375 0.6562 +0.5625 0.4375 0.6875 +0.5625 0.4375 0.7188 +0.5625 0.4375 0.75 +0.5625 0.4375 0.7812 +0.5625 0.4375 0.8125 +0.5625 0.4375 0.8438 +0.5625 0.4375 0.875 +0.5625 0.4375 0.9062 +0.5625 0.4375 0.9375 +0.5625 0.4375 0.9688 +0.5625 0.4375 1 +0.5625 0.4688 0 +0.5625 0.4688 0.03125 +0.5625 0.4688 0.0625 +0.5625 0.4688 0.09375 +0.5625 0.4688 0.125 +0.5625 0.4688 0.1562 +0.5625 0.4688 0.1875 +0.5625 0.4688 0.2188 +0.5625 0.4688 0.25 +0.5625 0.4688 0.2812 +0.5625 0.4688 0.3125 +0.5625 0.4688 0.3438 +0.5625 0.4688 0.375 +0.5625 0.4688 0.4062 +0.5625 0.4688 0.4375 +0.5625 0.4688 0.4688 +0.5625 0.4688 0.5 +0.5625 0.4688 0.5312 +0.5625 0.4688 0.5625 +0.5625 0.4688 0.5938 +0.5625 0.4688 0.625 +0.5625 0.4688 0.6562 +0.5625 0.4688 0.6875 +0.5625 0.4688 0.7188 +0.5625 0.4688 0.75 +0.5625 0.4688 0.7812 +0.5625 0.4688 0.8125 +0.5625 0.4688 0.8438 +0.5625 0.4688 0.875 +0.5625 0.4688 0.9062 +0.5625 0.4688 0.9375 +0.5625 0.4688 0.9688 +0.5625 0.4688 1 +0.5625 0.5 0 +0.5625 0.5 0.03125 +0.5625 0.5 0.0625 +0.5625 0.5 0.09375 +0.5625 0.5 0.125 +0.5625 0.5 0.1562 +0.5625 0.5 0.1875 +0.5625 0.5 0.2188 +0.5625 0.5 0.25 +0.5625 0.5 0.2812 +0.5625 0.5 0.3125 +0.5625 0.5 0.3438 +0.5625 0.5 0.375 +0.5625 0.5 0.4062 +0.5625 0.5 0.4375 +0.5625 0.5 0.4688 +0.5625 0.5 0.5 +0.5625 0.5 0.5312 +0.5625 0.5 0.5625 +0.5625 0.5 0.5938 +0.5625 0.5 0.625 +0.5625 0.5 0.6562 +0.5625 0.5 0.6875 +0.5625 0.5 0.7188 +0.5625 0.5 0.75 +0.5625 0.5 0.7812 +0.5625 0.5 0.8125 +0.5625 0.5 0.8438 +0.5625 0.5 0.875 +0.5625 0.5 0.9062 +0.5625 0.5 0.9375 +0.5625 0.5 0.9688 +0.5625 0.5 1 +0.5625 0.5312 0 +0.5625 0.5312 0.03125 +0.5625 0.5312 0.0625 +0.5625 0.5312 0.09375 +0.5625 0.5312 0.125 +0.5625 0.5312 0.1562 +0.5625 0.5312 0.1875 +0.5625 0.5312 0.2188 +0.5625 0.5312 0.25 +0.5625 0.5312 0.2812 +0.5625 0.5312 0.3125 +0.5625 0.5312 0.3438 +0.5625 0.5312 0.375 +0.5625 0.5312 0.4062 +0.5625 0.5312 0.4375 +0.5625 0.5312 0.4688 +0.5625 0.5312 0.5 +0.5625 0.5312 0.5312 +0.5625 0.5312 0.5625 +0.5625 0.5312 0.5938 +0.5625 0.5312 0.625 +0.5625 0.5312 0.6562 +0.5625 0.5312 0.6875 +0.5625 0.5312 0.7188 +0.5625 0.5312 0.75 +0.5625 0.5312 0.7812 +0.5625 0.5312 0.8125 +0.5625 0.5312 0.8438 +0.5625 0.5312 0.875 +0.5625 0.5312 0.9062 +0.5625 0.5312 0.9375 +0.5625 0.5312 0.9688 +0.5625 0.5312 1 +0.5625 0.5625 0 +0.5625 0.5625 0.03125 +0.5625 0.5625 0.0625 +0.5625 0.5625 0.09375 +0.5625 0.5625 0.125 +0.5625 0.5625 0.1562 +0.5625 0.5625 0.1875 +0.5625 0.5625 0.2188 +0.5625 0.5625 0.25 +0.5625 0.5625 0.2812 +0.5625 0.5625 0.3125 +0.5625 0.5625 0.3438 +0.5625 0.5625 0.375 +0.5625 0.5625 0.4062 +0.5625 0.5625 0.4375 +0.5625 0.5625 0.4688 +0.5625 0.5625 0.5 +0.5625 0.5625 0.5312 +0.5625 0.5625 0.5625 +0.5625 0.5625 0.5938 +0.5625 0.5625 0.625 +0.5625 0.5625 0.6562 +0.5625 0.5625 0.6875 +0.5625 0.5625 0.7188 +0.5625 0.5625 0.75 +0.5625 0.5625 0.7812 +0.5625 0.5625 0.8125 +0.5625 0.5625 0.8438 +0.5625 0.5625 0.875 +0.5625 0.5625 0.9062 +0.5625 0.5625 0.9375 +0.5625 0.5625 0.9688 +0.5625 0.5625 1 +0.5625 0.5938 0 +0.5625 0.5938 0.03125 +0.5625 0.5938 0.0625 +0.5625 0.5938 0.09375 +0.5625 0.5938 0.125 +0.5625 0.5938 0.1562 +0.5625 0.5938 0.1875 +0.5625 0.5938 0.2188 +0.5625 0.5938 0.25 +0.5625 0.5938 0.2812 +0.5625 0.5938 0.3125 +0.5625 0.5938 0.3438 +0.5625 0.5938 0.375 +0.5625 0.5938 0.4062 +0.5625 0.5938 0.4375 +0.5625 0.5938 0.4688 +0.5625 0.5938 0.5 +0.5625 0.5938 0.5312 +0.5625 0.5938 0.5625 +0.5625 0.5938 0.5938 +0.5625 0.5938 0.625 +0.5625 0.5938 0.6562 +0.5625 0.5938 0.6875 +0.5625 0.5938 0.7188 +0.5625 0.5938 0.75 +0.5625 0.5938 0.7812 +0.5625 0.5938 0.8125 +0.5625 0.5938 0.8438 +0.5625 0.5938 0.875 +0.5625 0.5938 0.9062 +0.5625 0.5938 0.9375 +0.5625 0.5938 0.9688 +0.5625 0.5938 1 +0.5625 0.625 0 +0.5625 0.625 0.03125 +0.5625 0.625 0.0625 +0.5625 0.625 0.09375 +0.5625 0.625 0.125 +0.5625 0.625 0.1562 +0.5625 0.625 0.1875 +0.5625 0.625 0.2188 +0.5625 0.625 0.25 +0.5625 0.625 0.2812 +0.5625 0.625 0.3125 +0.5625 0.625 0.3438 +0.5625 0.625 0.375 +0.5625 0.625 0.4062 +0.5625 0.625 0.4375 +0.5625 0.625 0.4688 +0.5625 0.625 0.5 +0.5625 0.625 0.5312 +0.5625 0.625 0.5625 +0.5625 0.625 0.5938 +0.5625 0.625 0.625 +0.5625 0.625 0.6562 +0.5625 0.625 0.6875 +0.5625 0.625 0.7188 +0.5625 0.625 0.75 +0.5625 0.625 0.7812 +0.5625 0.625 0.8125 +0.5625 0.625 0.8438 +0.5625 0.625 0.875 +0.5625 0.625 0.9062 +0.5625 0.625 0.9375 +0.5625 0.625 0.9688 +0.5625 0.625 1 +0.5625 0.6562 0 +0.5625 0.6562 0.03125 +0.5625 0.6562 0.0625 +0.5625 0.6562 0.09375 +0.5625 0.6562 0.125 +0.5625 0.6562 0.1562 +0.5625 0.6562 0.1875 +0.5625 0.6562 0.2188 +0.5625 0.6562 0.25 +0.5625 0.6562 0.2812 +0.5625 0.6562 0.3125 +0.5625 0.6562 0.3438 +0.5625 0.6562 0.375 +0.5625 0.6562 0.4062 +0.5625 0.6562 0.4375 +0.5625 0.6562 0.4688 +0.5625 0.6562 0.5 +0.5625 0.6562 0.5312 +0.5625 0.6562 0.5625 +0.5625 0.6562 0.5938 +0.5625 0.6562 0.625 +0.5625 0.6562 0.6562 +0.5625 0.6562 0.6875 +0.5625 0.6562 0.7188 +0.5625 0.6562 0.75 +0.5625 0.6562 0.7812 +0.5625 0.6562 0.8125 +0.5625 0.6562 0.8438 +0.5625 0.6562 0.875 +0.5625 0.6562 0.9062 +0.5625 0.6562 0.9375 +0.5625 0.6562 0.9688 +0.5625 0.6562 1 +0.5625 0.6875 0 +0.5625 0.6875 0.03125 +0.5625 0.6875 0.0625 +0.5625 0.6875 0.09375 +0.5625 0.6875 0.125 +0.5625 0.6875 0.1562 +0.5625 0.6875 0.1875 +0.5625 0.6875 0.2188 +0.5625 0.6875 0.25 +0.5625 0.6875 0.2812 +0.5625 0.6875 0.3125 +0.5625 0.6875 0.3438 +0.5625 0.6875 0.375 +0.5625 0.6875 0.4062 +0.5625 0.6875 0.4375 +0.5625 0.6875 0.4688 +0.5625 0.6875 0.5 +0.5625 0.6875 0.5312 +0.5625 0.6875 0.5625 +0.5625 0.6875 0.5938 +0.5625 0.6875 0.625 +0.5625 0.6875 0.6562 +0.5625 0.6875 0.6875 +0.5625 0.6875 0.7188 +0.5625 0.6875 0.75 +0.5625 0.6875 0.7812 +0.5625 0.6875 0.8125 +0.5625 0.6875 0.8438 +0.5625 0.6875 0.875 +0.5625 0.6875 0.9062 +0.5625 0.6875 0.9375 +0.5625 0.6875 0.9688 +0.5625 0.6875 1 +0.5625 0.7188 0 +0.5625 0.7188 0.03125 +0.5625 0.7188 0.0625 +0.5625 0.7188 0.09375 +0.5625 0.7188 0.125 +0.5625 0.7188 0.1562 +0.5625 0.7188 0.1875 +0.5625 0.7188 0.2188 +0.5625 0.7188 0.25 +0.5625 0.7188 0.2812 +0.5625 0.7188 0.3125 +0.5625 0.7188 0.3438 +0.5625 0.7188 0.375 +0.5625 0.7188 0.4062 +0.5625 0.7188 0.4375 +0.5625 0.7188 0.4688 +0.5625 0.7188 0.5 +0.5625 0.7188 0.5312 +0.5625 0.7188 0.5625 +0.5625 0.7188 0.5938 +0.5625 0.7188 0.625 +0.5625 0.7188 0.6562 +0.5625 0.7188 0.6875 +0.5625 0.7188 0.7188 +0.5625 0.7188 0.75 +0.5625 0.7188 0.7812 +0.5625 0.7188 0.8125 +0.5625 0.7188 0.8438 +0.5625 0.7188 0.875 +0.5625 0.7188 0.9062 +0.5625 0.7188 0.9375 +0.5625 0.7188 0.9688 +0.5625 0.7188 1 +0.5625 0.75 0 +0.5625 0.75 0.03125 +0.5625 0.75 0.0625 +0.5625 0.75 0.09375 +0.5625 0.75 0.125 +0.5625 0.75 0.1562 +0.5625 0.75 0.1875 +0.5625 0.75 0.2188 +0.5625 0.75 0.25 +0.5625 0.75 0.2812 +0.5625 0.75 0.3125 +0.5625 0.75 0.3438 +0.5625 0.75 0.375 +0.5625 0.75 0.4062 +0.5625 0.75 0.4375 +0.5625 0.75 0.4688 +0.5625 0.75 0.5 +0.5625 0.75 0.5312 +0.5625 0.75 0.5625 +0.5625 0.75 0.5938 +0.5625 0.75 0.625 +0.5625 0.75 0.6562 +0.5625 0.75 0.6875 +0.5625 0.75 0.7188 +0.5625 0.75 0.75 +0.5625 0.75 0.7812 +0.5625 0.75 0.8125 +0.5625 0.75 0.8438 +0.5625 0.75 0.875 +0.5625 0.75 0.9062 +0.5625 0.75 0.9375 +0.5625 0.75 0.9688 +0.5625 0.75 1 +0.5625 0.7812 0 +0.5625 0.7812 0.03125 +0.5625 0.7812 0.0625 +0.5625 0.7812 0.09375 +0.5625 0.7812 0.125 +0.5625 0.7812 0.1562 +0.5625 0.7812 0.1875 +0.5625 0.7812 0.2188 +0.5625 0.7812 0.25 +0.5625 0.7812 0.2812 +0.5625 0.7812 0.3125 +0.5625 0.7812 0.3438 +0.5625 0.7812 0.375 +0.5625 0.7812 0.4062 +0.5625 0.7812 0.4375 +0.5625 0.7812 0.4688 +0.5625 0.7812 0.5 +0.5625 0.7812 0.5312 +0.5625 0.7812 0.5625 +0.5625 0.7812 0.5938 +0.5625 0.7812 0.625 +0.5625 0.7812 0.6562 +0.5625 0.7812 0.6875 +0.5625 0.7812 0.7188 +0.5625 0.7812 0.75 +0.5625 0.7812 0.7812 +0.5625 0.7812 0.8125 +0.5625 0.7812 0.8438 +0.5625 0.7812 0.875 +0.5625 0.7812 0.9062 +0.5625 0.7812 0.9375 +0.5625 0.7812 0.9688 +0.5625 0.7812 1 +0.5625 0.8125 0 +0.5625 0.8125 0.03125 +0.5625 0.8125 0.0625 +0.5625 0.8125 0.09375 +0.5625 0.8125 0.125 +0.5625 0.8125 0.1562 +0.5625 0.8125 0.1875 +0.5625 0.8125 0.2188 +0.5625 0.8125 0.25 +0.5625 0.8125 0.2812 +0.5625 0.8125 0.3125 +0.5625 0.8125 0.3438 +0.5625 0.8125 0.375 +0.5625 0.8125 0.4062 +0.5625 0.8125 0.4375 +0.5625 0.8125 0.4688 +0.5625 0.8125 0.5 +0.5625 0.8125 0.5312 +0.5625 0.8125 0.5625 +0.5625 0.8125 0.5938 +0.5625 0.8125 0.625 +0.5625 0.8125 0.6562 +0.5625 0.8125 0.6875 +0.5625 0.8125 0.7188 +0.5625 0.8125 0.75 +0.5625 0.8125 0.7812 +0.5625 0.8125 0.8125 +0.5625 0.8125 0.8438 +0.5625 0.8125 0.875 +0.5625 0.8125 0.9062 +0.5625 0.8125 0.9375 +0.5625 0.8125 0.9688 +0.5625 0.8125 1 +0.5625 0.8438 0 +0.5625 0.8438 0.03125 +0.5625 0.8438 0.0625 +0.5625 0.8438 0.09375 +0.5625 0.8438 0.125 +0.5625 0.8438 0.1562 +0.5625 0.8438 0.1875 +0.5625 0.8438 0.2188 +0.5625 0.8438 0.25 +0.5625 0.8438 0.2812 +0.5625 0.8438 0.3125 +0.5625 0.8438 0.3438 +0.5625 0.8438 0.375 +0.5625 0.8438 0.4062 +0.5625 0.8438 0.4375 +0.5625 0.8438 0.4688 +0.5625 0.8438 0.5 +0.5625 0.8438 0.5312 +0.5625 0.8438 0.5625 +0.5625 0.8438 0.5938 +0.5625 0.8438 0.625 +0.5625 0.8438 0.6562 +0.5625 0.8438 0.6875 +0.5625 0.8438 0.7188 +0.5625 0.8438 0.75 +0.5625 0.8438 0.7812 +0.5625 0.8438 0.8125 +0.5625 0.8438 0.8438 +0.5625 0.8438 0.875 +0.5625 0.8438 0.9062 +0.5625 0.8438 0.9375 +0.5625 0.8438 0.9688 +0.5625 0.8438 1 +0.5625 0.875 0 +0.5625 0.875 0.03125 +0.5625 0.875 0.0625 +0.5625 0.875 0.09375 +0.5625 0.875 0.125 +0.5625 0.875 0.1562 +0.5625 0.875 0.1875 +0.5625 0.875 0.2188 +0.5625 0.875 0.25 +0.5625 0.875 0.2812 +0.5625 0.875 0.3125 +0.5625 0.875 0.3438 +0.5625 0.875 0.375 +0.5625 0.875 0.4062 +0.5625 0.875 0.4375 +0.5625 0.875 0.4688 +0.5625 0.875 0.5 +0.5625 0.875 0.5312 +0.5625 0.875 0.5625 +0.5625 0.875 0.5938 +0.5625 0.875 0.625 +0.5625 0.875 0.6562 +0.5625 0.875 0.6875 +0.5625 0.875 0.7188 +0.5625 0.875 0.75 +0.5625 0.875 0.7812 +0.5625 0.875 0.8125 +0.5625 0.875 0.8438 +0.5625 0.875 0.875 +0.5625 0.875 0.9062 +0.5625 0.875 0.9375 +0.5625 0.875 0.9688 +0.5625 0.875 1 +0.5625 0.9062 0 +0.5625 0.9062 0.03125 +0.5625 0.9062 0.0625 +0.5625 0.9062 0.09375 +0.5625 0.9062 0.125 +0.5625 0.9062 0.1562 +0.5625 0.9062 0.1875 +0.5625 0.9062 0.2188 +0.5625 0.9062 0.25 +0.5625 0.9062 0.2812 +0.5625 0.9062 0.3125 +0.5625 0.9062 0.3438 +0.5625 0.9062 0.375 +0.5625 0.9062 0.4062 +0.5625 0.9062 0.4375 +0.5625 0.9062 0.4688 +0.5625 0.9062 0.5 +0.5625 0.9062 0.5312 +0.5625 0.9062 0.5625 +0.5625 0.9062 0.5938 +0.5625 0.9062 0.625 +0.5625 0.9062 0.6562 +0.5625 0.9062 0.6875 +0.5625 0.9062 0.7188 +0.5625 0.9062 0.75 +0.5625 0.9062 0.7812 +0.5625 0.9062 0.8125 +0.5625 0.9062 0.8438 +0.5625 0.9062 0.875 +0.5625 0.9062 0.9062 +0.5625 0.9062 0.9375 +0.5625 0.9062 0.9688 +0.5625 0.9062 1 +0.5625 0.9375 0 +0.5625 0.9375 0.03125 +0.5625 0.9375 0.0625 +0.5625 0.9375 0.09375 +0.5625 0.9375 0.125 +0.5625 0.9375 0.1562 +0.5625 0.9375 0.1875 +0.5625 0.9375 0.2188 +0.5625 0.9375 0.25 +0.5625 0.9375 0.2812 +0.5625 0.9375 0.3125 +0.5625 0.9375 0.3438 +0.5625 0.9375 0.375 +0.5625 0.9375 0.4062 +0.5625 0.9375 0.4375 +0.5625 0.9375 0.4688 +0.5625 0.9375 0.5 +0.5625 0.9375 0.5312 +0.5625 0.9375 0.5625 +0.5625 0.9375 0.5938 +0.5625 0.9375 0.625 +0.5625 0.9375 0.6562 +0.5625 0.9375 0.6875 +0.5625 0.9375 0.7188 +0.5625 0.9375 0.75 +0.5625 0.9375 0.7812 +0.5625 0.9375 0.8125 +0.5625 0.9375 0.8438 +0.5625 0.9375 0.875 +0.5625 0.9375 0.9062 +0.5625 0.9375 0.9375 +0.5625 0.9375 0.9688 +0.5625 0.9375 1 +0.5625 0.9688 0 +0.5625 0.9688 0.03125 +0.5625 0.9688 0.0625 +0.5625 0.9688 0.09375 +0.5625 0.9688 0.125 +0.5625 0.9688 0.1562 +0.5625 0.9688 0.1875 +0.5625 0.9688 0.2188 +0.5625 0.9688 0.25 +0.5625 0.9688 0.2812 +0.5625 0.9688 0.3125 +0.5625 0.9688 0.3438 +0.5625 0.9688 0.375 +0.5625 0.9688 0.4062 +0.5625 0.9688 0.4375 +0.5625 0.9688 0.4688 +0.5625 0.9688 0.5 +0.5625 0.9688 0.5312 +0.5625 0.9688 0.5625 +0.5625 0.9688 0.5938 +0.5625 0.9688 0.625 +0.5625 0.9688 0.6562 +0.5625 0.9688 0.6875 +0.5625 0.9688 0.7188 +0.5625 0.9688 0.75 +0.5625 0.9688 0.7812 +0.5625 0.9688 0.8125 +0.5625 0.9688 0.8438 +0.5625 0.9688 0.875 +0.5625 0.9688 0.9062 +0.5625 0.9688 0.9375 +0.5625 0.9688 0.9688 +0.5625 0.9688 1 +0.5625 1 0 +0.5625 1 0.03125 +0.5625 1 0.0625 +0.5625 1 0.09375 +0.5625 1 0.125 +0.5625 1 0.1562 +0.5625 1 0.1875 +0.5625 1 0.2188 +0.5625 1 0.25 +0.5625 1 0.2812 +0.5625 1 0.3125 +0.5625 1 0.3438 +0.5625 1 0.375 +0.5625 1 0.4062 +0.5625 1 0.4375 +0.5625 1 0.4688 +0.5625 1 0.5 +0.5625 1 0.5312 +0.5625 1 0.5625 +0.5625 1 0.5938 +0.5625 1 0.625 +0.5625 1 0.6562 +0.5625 1 0.6875 +0.5625 1 0.7188 +0.5625 1 0.75 +0.5625 1 0.7812 +0.5625 1 0.8125 +0.5625 1 0.8438 +0.5625 1 0.875 +0.5625 1 0.9062 +0.5625 1 0.9375 +0.5625 1 0.9688 +0.5625 1 1 +0.5938 0 0 +0.5938 0 0.03125 +0.5938 0 0.0625 +0.5938 0 0.09375 +0.5938 0 0.125 +0.5938 0 0.1562 +0.5938 0 0.1875 +0.5938 0 0.2188 +0.5938 0 0.25 +0.5938 0 0.2812 +0.5938 0 0.3125 +0.5938 0 0.3438 +0.5938 0 0.375 +0.5938 0 0.4062 +0.5938 0 0.4375 +0.5938 0 0.4688 +0.5938 0 0.5 +0.5938 0 0.5312 +0.5938 0 0.5625 +0.5938 0 0.5938 +0.5938 0 0.625 +0.5938 0 0.6562 +0.5938 0 0.6875 +0.5938 0 0.7188 +0.5938 0 0.75 +0.5938 0 0.7812 +0.5938 0 0.8125 +0.5938 0 0.8438 +0.5938 0 0.875 +0.5938 0 0.9062 +0.5938 0 0.9375 +0.5938 0 0.9688 +0.5938 0 1 +0.5938 0.03125 0 +0.5938 0.03125 0.03125 +0.5938 0.03125 0.0625 +0.5938 0.03125 0.09375 +0.5938 0.03125 0.125 +0.5938 0.03125 0.1562 +0.5938 0.03125 0.1875 +0.5938 0.03125 0.2188 +0.5938 0.03125 0.25 +0.5938 0.03125 0.2812 +0.5938 0.03125 0.3125 +0.5938 0.03125 0.3438 +0.5938 0.03125 0.375 +0.5938 0.03125 0.4062 +0.5938 0.03125 0.4375 +0.5938 0.03125 0.4688 +0.5938 0.03125 0.5 +0.5938 0.03125 0.5312 +0.5938 0.03125 0.5625 +0.5938 0.03125 0.5938 +0.5938 0.03125 0.625 +0.5938 0.03125 0.6562 +0.5938 0.03125 0.6875 +0.5938 0.03125 0.7188 +0.5938 0.03125 0.75 +0.5938 0.03125 0.7812 +0.5938 0.03125 0.8125 +0.5938 0.03125 0.8438 +0.5938 0.03125 0.875 +0.5938 0.03125 0.9062 +0.5938 0.03125 0.9375 +0.5938 0.03125 0.9688 +0.5938 0.03125 1 +0.5938 0.0625 0 +0.5938 0.0625 0.03125 +0.5938 0.0625 0.0625 +0.5938 0.0625 0.09375 +0.5938 0.0625 0.125 +0.5938 0.0625 0.1562 +0.5938 0.0625 0.1875 +0.5938 0.0625 0.2188 +0.5938 0.0625 0.25 +0.5938 0.0625 0.2812 +0.5938 0.0625 0.3125 +0.5938 0.0625 0.3438 +0.5938 0.0625 0.375 +0.5938 0.0625 0.4062 +0.5938 0.0625 0.4375 +0.5938 0.0625 0.4688 +0.5938 0.0625 0.5 +0.5938 0.0625 0.5312 +0.5938 0.0625 0.5625 +0.5938 0.0625 0.5938 +0.5938 0.0625 0.625 +0.5938 0.0625 0.6562 +0.5938 0.0625 0.6875 +0.5938 0.0625 0.7188 +0.5938 0.0625 0.75 +0.5938 0.0625 0.7812 +0.5938 0.0625 0.8125 +0.5938 0.0625 0.8438 +0.5938 0.0625 0.875 +0.5938 0.0625 0.9062 +0.5938 0.0625 0.9375 +0.5938 0.0625 0.9688 +0.5938 0.0625 1 +0.5938 0.09375 0 +0.5938 0.09375 0.03125 +0.5938 0.09375 0.0625 +0.5938 0.09375 0.09375 +0.5938 0.09375 0.125 +0.5938 0.09375 0.1562 +0.5938 0.09375 0.1875 +0.5938 0.09375 0.2188 +0.5938 0.09375 0.25 +0.5938 0.09375 0.2812 +0.5938 0.09375 0.3125 +0.5938 0.09375 0.3438 +0.5938 0.09375 0.375 +0.5938 0.09375 0.4062 +0.5938 0.09375 0.4375 +0.5938 0.09375 0.4688 +0.5938 0.09375 0.5 +0.5938 0.09375 0.5312 +0.5938 0.09375 0.5625 +0.5938 0.09375 0.5938 +0.5938 0.09375 0.625 +0.5938 0.09375 0.6562 +0.5938 0.09375 0.6875 +0.5938 0.09375 0.7188 +0.5938 0.09375 0.75 +0.5938 0.09375 0.7812 +0.5938 0.09375 0.8125 +0.5938 0.09375 0.8438 +0.5938 0.09375 0.875 +0.5938 0.09375 0.9062 +0.5938 0.09375 0.9375 +0.5938 0.09375 0.9688 +0.5938 0.09375 1 +0.5938 0.125 0 +0.5938 0.125 0.03125 +0.5938 0.125 0.0625 +0.5938 0.125 0.09375 +0.5938 0.125 0.125 +0.5938 0.125 0.1562 +0.5938 0.125 0.1875 +0.5938 0.125 0.2188 +0.5938 0.125 0.25 +0.5938 0.125 0.2812 +0.5938 0.125 0.3125 +0.5938 0.125 0.3438 +0.5938 0.125 0.375 +0.5938 0.125 0.4062 +0.5938 0.125 0.4375 +0.5938 0.125 0.4688 +0.5938 0.125 0.5 +0.5938 0.125 0.5312 +0.5938 0.125 0.5625 +0.5938 0.125 0.5938 +0.5938 0.125 0.625 +0.5938 0.125 0.6562 +0.5938 0.125 0.6875 +0.5938 0.125 0.7188 +0.5938 0.125 0.75 +0.5938 0.125 0.7812 +0.5938 0.125 0.8125 +0.5938 0.125 0.8438 +0.5938 0.125 0.875 +0.5938 0.125 0.9062 +0.5938 0.125 0.9375 +0.5938 0.125 0.9688 +0.5938 0.125 1 +0.5938 0.1562 0 +0.5938 0.1562 0.03125 +0.5938 0.1562 0.0625 +0.5938 0.1562 0.09375 +0.5938 0.1562 0.125 +0.5938 0.1562 0.1562 +0.5938 0.1562 0.1875 +0.5938 0.1562 0.2188 +0.5938 0.1562 0.25 +0.5938 0.1562 0.2812 +0.5938 0.1562 0.3125 +0.5938 0.1562 0.3438 +0.5938 0.1562 0.375 +0.5938 0.1562 0.4062 +0.5938 0.1562 0.4375 +0.5938 0.1562 0.4688 +0.5938 0.1562 0.5 +0.5938 0.1562 0.5312 +0.5938 0.1562 0.5625 +0.5938 0.1562 0.5938 +0.5938 0.1562 0.625 +0.5938 0.1562 0.6562 +0.5938 0.1562 0.6875 +0.5938 0.1562 0.7188 +0.5938 0.1562 0.75 +0.5938 0.1562 0.7812 +0.5938 0.1562 0.8125 +0.5938 0.1562 0.8438 +0.5938 0.1562 0.875 +0.5938 0.1562 0.9062 +0.5938 0.1562 0.9375 +0.5938 0.1562 0.9688 +0.5938 0.1562 1 +0.5938 0.1875 0 +0.5938 0.1875 0.03125 +0.5938 0.1875 0.0625 +0.5938 0.1875 0.09375 +0.5938 0.1875 0.125 +0.5938 0.1875 0.1562 +0.5938 0.1875 0.1875 +0.5938 0.1875 0.2188 +0.5938 0.1875 0.25 +0.5938 0.1875 0.2812 +0.5938 0.1875 0.3125 +0.5938 0.1875 0.3438 +0.5938 0.1875 0.375 +0.5938 0.1875 0.4062 +0.5938 0.1875 0.4375 +0.5938 0.1875 0.4688 +0.5938 0.1875 0.5 +0.5938 0.1875 0.5312 +0.5938 0.1875 0.5625 +0.5938 0.1875 0.5938 +0.5938 0.1875 0.625 +0.5938 0.1875 0.6562 +0.5938 0.1875 0.6875 +0.5938 0.1875 0.7188 +0.5938 0.1875 0.75 +0.5938 0.1875 0.7812 +0.5938 0.1875 0.8125 +0.5938 0.1875 0.8438 +0.5938 0.1875 0.875 +0.5938 0.1875 0.9062 +0.5938 0.1875 0.9375 +0.5938 0.1875 0.9688 +0.5938 0.1875 1 +0.5938 0.2188 0 +0.5938 0.2188 0.03125 +0.5938 0.2188 0.0625 +0.5938 0.2188 0.09375 +0.5938 0.2188 0.125 +0.5938 0.2188 0.1562 +0.5938 0.2188 0.1875 +0.5938 0.2188 0.2188 +0.5938 0.2188 0.25 +0.5938 0.2188 0.2812 +0.5938 0.2188 0.3125 +0.5938 0.2188 0.3438 +0.5938 0.2188 0.375 +0.5938 0.2188 0.4062 +0.5938 0.2188 0.4375 +0.5938 0.2188 0.4688 +0.5938 0.2188 0.5 +0.5938 0.2188 0.5312 +0.5938 0.2188 0.5625 +0.5938 0.2188 0.5938 +0.5938 0.2188 0.625 +0.5938 0.2188 0.6562 +0.5938 0.2188 0.6875 +0.5938 0.2188 0.7188 +0.5938 0.2188 0.75 +0.5938 0.2188 0.7812 +0.5938 0.2188 0.8125 +0.5938 0.2188 0.8438 +0.5938 0.2188 0.875 +0.5938 0.2188 0.9062 +0.5938 0.2188 0.9375 +0.5938 0.2188 0.9688 +0.5938 0.2188 1 +0.5938 0.25 0 +0.5938 0.25 0.03125 +0.5938 0.25 0.0625 +0.5938 0.25 0.09375 +0.5938 0.25 0.125 +0.5938 0.25 0.1562 +0.5938 0.25 0.1875 +0.5938 0.25 0.2188 +0.5938 0.25 0.25 +0.5938 0.25 0.2812 +0.5938 0.25 0.3125 +0.5938 0.25 0.3438 +0.5938 0.25 0.375 +0.5938 0.25 0.4062 +0.5938 0.25 0.4375 +0.5938 0.25 0.4688 +0.5938 0.25 0.5 +0.5938 0.25 0.5312 +0.5938 0.25 0.5625 +0.5938 0.25 0.5938 +0.5938 0.25 0.625 +0.5938 0.25 0.6562 +0.5938 0.25 0.6875 +0.5938 0.25 0.7188 +0.5938 0.25 0.75 +0.5938 0.25 0.7812 +0.5938 0.25 0.8125 +0.5938 0.25 0.8438 +0.5938 0.25 0.875 +0.5938 0.25 0.9062 +0.5938 0.25 0.9375 +0.5938 0.25 0.9688 +0.5938 0.25 1 +0.5938 0.2812 0 +0.5938 0.2812 0.03125 +0.5938 0.2812 0.0625 +0.5938 0.2812 0.09375 +0.5938 0.2812 0.125 +0.5938 0.2812 0.1562 +0.5938 0.2812 0.1875 +0.5938 0.2812 0.2188 +0.5938 0.2812 0.25 +0.5938 0.2812 0.2812 +0.5938 0.2812 0.3125 +0.5938 0.2812 0.3438 +0.5938 0.2812 0.375 +0.5938 0.2812 0.4062 +0.5938 0.2812 0.4375 +0.5938 0.2812 0.4688 +0.5938 0.2812 0.5 +0.5938 0.2812 0.5312 +0.5938 0.2812 0.5625 +0.5938 0.2812 0.5938 +0.5938 0.2812 0.625 +0.5938 0.2812 0.6562 +0.5938 0.2812 0.6875 +0.5938 0.2812 0.7188 +0.5938 0.2812 0.75 +0.5938 0.2812 0.7812 +0.5938 0.2812 0.8125 +0.5938 0.2812 0.8438 +0.5938 0.2812 0.875 +0.5938 0.2812 0.9062 +0.5938 0.2812 0.9375 +0.5938 0.2812 0.9688 +0.5938 0.2812 1 +0.5938 0.3125 0 +0.5938 0.3125 0.03125 +0.5938 0.3125 0.0625 +0.5938 0.3125 0.09375 +0.5938 0.3125 0.125 +0.5938 0.3125 0.1562 +0.5938 0.3125 0.1875 +0.5938 0.3125 0.2188 +0.5938 0.3125 0.25 +0.5938 0.3125 0.2812 +0.5938 0.3125 0.3125 +0.5938 0.3125 0.3438 +0.5938 0.3125 0.375 +0.5938 0.3125 0.4062 +0.5938 0.3125 0.4375 +0.5938 0.3125 0.4688 +0.5938 0.3125 0.5 +0.5938 0.3125 0.5312 +0.5938 0.3125 0.5625 +0.5938 0.3125 0.5938 +0.5938 0.3125 0.625 +0.5938 0.3125 0.6562 +0.5938 0.3125 0.6875 +0.5938 0.3125 0.7188 +0.5938 0.3125 0.75 +0.5938 0.3125 0.7812 +0.5938 0.3125 0.8125 +0.5938 0.3125 0.8438 +0.5938 0.3125 0.875 +0.5938 0.3125 0.9062 +0.5938 0.3125 0.9375 +0.5938 0.3125 0.9688 +0.5938 0.3125 1 +0.5938 0.3438 0 +0.5938 0.3438 0.03125 +0.5938 0.3438 0.0625 +0.5938 0.3438 0.09375 +0.5938 0.3438 0.125 +0.5938 0.3438 0.1562 +0.5938 0.3438 0.1875 +0.5938 0.3438 0.2188 +0.5938 0.3438 0.25 +0.5938 0.3438 0.2812 +0.5938 0.3438 0.3125 +0.5938 0.3438 0.3438 +0.5938 0.3438 0.375 +0.5938 0.3438 0.4062 +0.5938 0.3438 0.4375 +0.5938 0.3438 0.4688 +0.5938 0.3438 0.5 +0.5938 0.3438 0.5312 +0.5938 0.3438 0.5625 +0.5938 0.3438 0.5938 +0.5938 0.3438 0.625 +0.5938 0.3438 0.6562 +0.5938 0.3438 0.6875 +0.5938 0.3438 0.7188 +0.5938 0.3438 0.75 +0.5938 0.3438 0.7812 +0.5938 0.3438 0.8125 +0.5938 0.3438 0.8438 +0.5938 0.3438 0.875 +0.5938 0.3438 0.9062 +0.5938 0.3438 0.9375 +0.5938 0.3438 0.9688 +0.5938 0.3438 1 +0.5938 0.375 0 +0.5938 0.375 0.03125 +0.5938 0.375 0.0625 +0.5938 0.375 0.09375 +0.5938 0.375 0.125 +0.5938 0.375 0.1562 +0.5938 0.375 0.1875 +0.5938 0.375 0.2188 +0.5938 0.375 0.25 +0.5938 0.375 0.2812 +0.5938 0.375 0.3125 +0.5938 0.375 0.3438 +0.5938 0.375 0.375 +0.5938 0.375 0.4062 +0.5938 0.375 0.4375 +0.5938 0.375 0.4688 +0.5938 0.375 0.5 +0.5938 0.375 0.5312 +0.5938 0.375 0.5625 +0.5938 0.375 0.5938 +0.5938 0.375 0.625 +0.5938 0.375 0.6562 +0.5938 0.375 0.6875 +0.5938 0.375 0.7188 +0.5938 0.375 0.75 +0.5938 0.375 0.7812 +0.5938 0.375 0.8125 +0.5938 0.375 0.8438 +0.5938 0.375 0.875 +0.5938 0.375 0.9062 +0.5938 0.375 0.9375 +0.5938 0.375 0.9688 +0.5938 0.375 1 +0.5938 0.4062 0 +0.5938 0.4062 0.03125 +0.5938 0.4062 0.0625 +0.5938 0.4062 0.09375 +0.5938 0.4062 0.125 +0.5938 0.4062 0.1562 +0.5938 0.4062 0.1875 +0.5938 0.4062 0.2188 +0.5938 0.4062 0.25 +0.5938 0.4062 0.2812 +0.5938 0.4062 0.3125 +0.5938 0.4062 0.3438 +0.5938 0.4062 0.375 +0.5938 0.4062 0.4062 +0.5938 0.4062 0.4375 +0.5938 0.4062 0.4688 +0.5938 0.4062 0.5 +0.5938 0.4062 0.5312 +0.5938 0.4062 0.5625 +0.5938 0.4062 0.5938 +0.5938 0.4062 0.625 +0.5938 0.4062 0.6562 +0.5938 0.4062 0.6875 +0.5938 0.4062 0.7188 +0.5938 0.4062 0.75 +0.5938 0.4062 0.7812 +0.5938 0.4062 0.8125 +0.5938 0.4062 0.8438 +0.5938 0.4062 0.875 +0.5938 0.4062 0.9062 +0.5938 0.4062 0.9375 +0.5938 0.4062 0.9688 +0.5938 0.4062 1 +0.5938 0.4375 0 +0.5938 0.4375 0.03125 +0.5938 0.4375 0.0625 +0.5938 0.4375 0.09375 +0.5938 0.4375 0.125 +0.5938 0.4375 0.1562 +0.5938 0.4375 0.1875 +0.5938 0.4375 0.2188 +0.5938 0.4375 0.25 +0.5938 0.4375 0.2812 +0.5938 0.4375 0.3125 +0.5938 0.4375 0.3438 +0.5938 0.4375 0.375 +0.5938 0.4375 0.4062 +0.5938 0.4375 0.4375 +0.5938 0.4375 0.4688 +0.5938 0.4375 0.5 +0.5938 0.4375 0.5312 +0.5938 0.4375 0.5625 +0.5938 0.4375 0.5938 +0.5938 0.4375 0.625 +0.5938 0.4375 0.6562 +0.5938 0.4375 0.6875 +0.5938 0.4375 0.7188 +0.5938 0.4375 0.75 +0.5938 0.4375 0.7812 +0.5938 0.4375 0.8125 +0.5938 0.4375 0.8438 +0.5938 0.4375 0.875 +0.5938 0.4375 0.9062 +0.5938 0.4375 0.9375 +0.5938 0.4375 0.9688 +0.5938 0.4375 1 +0.5938 0.4688 0 +0.5938 0.4688 0.03125 +0.5938 0.4688 0.0625 +0.5938 0.4688 0.09375 +0.5938 0.4688 0.125 +0.5938 0.4688 0.1562 +0.5938 0.4688 0.1875 +0.5938 0.4688 0.2188 +0.5938 0.4688 0.25 +0.5938 0.4688 0.2812 +0.5938 0.4688 0.3125 +0.5938 0.4688 0.3438 +0.5938 0.4688 0.375 +0.5938 0.4688 0.4062 +0.5938 0.4688 0.4375 +0.5938 0.4688 0.4688 +0.5938 0.4688 0.5 +0.5938 0.4688 0.5312 +0.5938 0.4688 0.5625 +0.5938 0.4688 0.5938 +0.5938 0.4688 0.625 +0.5938 0.4688 0.6562 +0.5938 0.4688 0.6875 +0.5938 0.4688 0.7188 +0.5938 0.4688 0.75 +0.5938 0.4688 0.7812 +0.5938 0.4688 0.8125 +0.5938 0.4688 0.8438 +0.5938 0.4688 0.875 +0.5938 0.4688 0.9062 +0.5938 0.4688 0.9375 +0.5938 0.4688 0.9688 +0.5938 0.4688 1 +0.5938 0.5 0 +0.5938 0.5 0.03125 +0.5938 0.5 0.0625 +0.5938 0.5 0.09375 +0.5938 0.5 0.125 +0.5938 0.5 0.1562 +0.5938 0.5 0.1875 +0.5938 0.5 0.2188 +0.5938 0.5 0.25 +0.5938 0.5 0.2812 +0.5938 0.5 0.3125 +0.5938 0.5 0.3438 +0.5938 0.5 0.375 +0.5938 0.5 0.4062 +0.5938 0.5 0.4375 +0.5938 0.5 0.4688 +0.5938 0.5 0.5 +0.5938 0.5 0.5312 +0.5938 0.5 0.5625 +0.5938 0.5 0.5938 +0.5938 0.5 0.625 +0.5938 0.5 0.6562 +0.5938 0.5 0.6875 +0.5938 0.5 0.7188 +0.5938 0.5 0.75 +0.5938 0.5 0.7812 +0.5938 0.5 0.8125 +0.5938 0.5 0.8438 +0.5938 0.5 0.875 +0.5938 0.5 0.9062 +0.5938 0.5 0.9375 +0.5938 0.5 0.9688 +0.5938 0.5 1 +0.5938 0.5312 0 +0.5938 0.5312 0.03125 +0.5938 0.5312 0.0625 +0.5938 0.5312 0.09375 +0.5938 0.5312 0.125 +0.5938 0.5312 0.1562 +0.5938 0.5312 0.1875 +0.5938 0.5312 0.2188 +0.5938 0.5312 0.25 +0.5938 0.5312 0.2812 +0.5938 0.5312 0.3125 +0.5938 0.5312 0.3438 +0.5938 0.5312 0.375 +0.5938 0.5312 0.4062 +0.5938 0.5312 0.4375 +0.5938 0.5312 0.4688 +0.5938 0.5312 0.5 +0.5938 0.5312 0.5312 +0.5938 0.5312 0.5625 +0.5938 0.5312 0.5938 +0.5938 0.5312 0.625 +0.5938 0.5312 0.6562 +0.5938 0.5312 0.6875 +0.5938 0.5312 0.7188 +0.5938 0.5312 0.75 +0.5938 0.5312 0.7812 +0.5938 0.5312 0.8125 +0.5938 0.5312 0.8438 +0.5938 0.5312 0.875 +0.5938 0.5312 0.9062 +0.5938 0.5312 0.9375 +0.5938 0.5312 0.9688 +0.5938 0.5312 1 +0.5938 0.5625 0 +0.5938 0.5625 0.03125 +0.5938 0.5625 0.0625 +0.5938 0.5625 0.09375 +0.5938 0.5625 0.125 +0.5938 0.5625 0.1562 +0.5938 0.5625 0.1875 +0.5938 0.5625 0.2188 +0.5938 0.5625 0.25 +0.5938 0.5625 0.2812 +0.5938 0.5625 0.3125 +0.5938 0.5625 0.3438 +0.5938 0.5625 0.375 +0.5938 0.5625 0.4062 +0.5938 0.5625 0.4375 +0.5938 0.5625 0.4688 +0.5938 0.5625 0.5 +0.5938 0.5625 0.5312 +0.5938 0.5625 0.5625 +0.5938 0.5625 0.5938 +0.5938 0.5625 0.625 +0.5938 0.5625 0.6562 +0.5938 0.5625 0.6875 +0.5938 0.5625 0.7188 +0.5938 0.5625 0.75 +0.5938 0.5625 0.7812 +0.5938 0.5625 0.8125 +0.5938 0.5625 0.8438 +0.5938 0.5625 0.875 +0.5938 0.5625 0.9062 +0.5938 0.5625 0.9375 +0.5938 0.5625 0.9688 +0.5938 0.5625 1 +0.5938 0.5938 0 +0.5938 0.5938 0.03125 +0.5938 0.5938 0.0625 +0.5938 0.5938 0.09375 +0.5938 0.5938 0.125 +0.5938 0.5938 0.1562 +0.5938 0.5938 0.1875 +0.5938 0.5938 0.2188 +0.5938 0.5938 0.25 +0.5938 0.5938 0.2812 +0.5938 0.5938 0.3125 +0.5938 0.5938 0.3438 +0.5938 0.5938 0.375 +0.5938 0.5938 0.4062 +0.5938 0.5938 0.4375 +0.5938 0.5938 0.4688 +0.5938 0.5938 0.5 +0.5938 0.5938 0.5312 +0.5938 0.5938 0.5625 +0.5938 0.5938 0.5938 +0.5938 0.5938 0.625 +0.5938 0.5938 0.6562 +0.5938 0.5938 0.6875 +0.5938 0.5938 0.7188 +0.5938 0.5938 0.75 +0.5938 0.5938 0.7812 +0.5938 0.5938 0.8125 +0.5938 0.5938 0.8438 +0.5938 0.5938 0.875 +0.5938 0.5938 0.9062 +0.5938 0.5938 0.9375 +0.5938 0.5938 0.9688 +0.5938 0.5938 1 +0.5938 0.625 0 +0.5938 0.625 0.03125 +0.5938 0.625 0.0625 +0.5938 0.625 0.09375 +0.5938 0.625 0.125 +0.5938 0.625 0.1562 +0.5938 0.625 0.1875 +0.5938 0.625 0.2188 +0.5938 0.625 0.25 +0.5938 0.625 0.2812 +0.5938 0.625 0.3125 +0.5938 0.625 0.3438 +0.5938 0.625 0.375 +0.5938 0.625 0.4062 +0.5938 0.625 0.4375 +0.5938 0.625 0.4688 +0.5938 0.625 0.5 +0.5938 0.625 0.5312 +0.5938 0.625 0.5625 +0.5938 0.625 0.5938 +0.5938 0.625 0.625 +0.5938 0.625 0.6562 +0.5938 0.625 0.6875 +0.5938 0.625 0.7188 +0.5938 0.625 0.75 +0.5938 0.625 0.7812 +0.5938 0.625 0.8125 +0.5938 0.625 0.8438 +0.5938 0.625 0.875 +0.5938 0.625 0.9062 +0.5938 0.625 0.9375 +0.5938 0.625 0.9688 +0.5938 0.625 1 +0.5938 0.6562 0 +0.5938 0.6562 0.03125 +0.5938 0.6562 0.0625 +0.5938 0.6562 0.09375 +0.5938 0.6562 0.125 +0.5938 0.6562 0.1562 +0.5938 0.6562 0.1875 +0.5938 0.6562 0.2188 +0.5938 0.6562 0.25 +0.5938 0.6562 0.2812 +0.5938 0.6562 0.3125 +0.5938 0.6562 0.3438 +0.5938 0.6562 0.375 +0.5938 0.6562 0.4062 +0.5938 0.6562 0.4375 +0.5938 0.6562 0.4688 +0.5938 0.6562 0.5 +0.5938 0.6562 0.5312 +0.5938 0.6562 0.5625 +0.5938 0.6562 0.5938 +0.5938 0.6562 0.625 +0.5938 0.6562 0.6562 +0.5938 0.6562 0.6875 +0.5938 0.6562 0.7188 +0.5938 0.6562 0.75 +0.5938 0.6562 0.7812 +0.5938 0.6562 0.8125 +0.5938 0.6562 0.8438 +0.5938 0.6562 0.875 +0.5938 0.6562 0.9062 +0.5938 0.6562 0.9375 +0.5938 0.6562 0.9688 +0.5938 0.6562 1 +0.5938 0.6875 0 +0.5938 0.6875 0.03125 +0.5938 0.6875 0.0625 +0.5938 0.6875 0.09375 +0.5938 0.6875 0.125 +0.5938 0.6875 0.1562 +0.5938 0.6875 0.1875 +0.5938 0.6875 0.2188 +0.5938 0.6875 0.25 +0.5938 0.6875 0.2812 +0.5938 0.6875 0.3125 +0.5938 0.6875 0.3438 +0.5938 0.6875 0.375 +0.5938 0.6875 0.4062 +0.5938 0.6875 0.4375 +0.5938 0.6875 0.4688 +0.5938 0.6875 0.5 +0.5938 0.6875 0.5312 +0.5938 0.6875 0.5625 +0.5938 0.6875 0.5938 +0.5938 0.6875 0.625 +0.5938 0.6875 0.6562 +0.5938 0.6875 0.6875 +0.5938 0.6875 0.7188 +0.5938 0.6875 0.75 +0.5938 0.6875 0.7812 +0.5938 0.6875 0.8125 +0.5938 0.6875 0.8438 +0.5938 0.6875 0.875 +0.5938 0.6875 0.9062 +0.5938 0.6875 0.9375 +0.5938 0.6875 0.9688 +0.5938 0.6875 1 +0.5938 0.7188 0 +0.5938 0.7188 0.03125 +0.5938 0.7188 0.0625 +0.5938 0.7188 0.09375 +0.5938 0.7188 0.125 +0.5938 0.7188 0.1562 +0.5938 0.7188 0.1875 +0.5938 0.7188 0.2188 +0.5938 0.7188 0.25 +0.5938 0.7188 0.2812 +0.5938 0.7188 0.3125 +0.5938 0.7188 0.3438 +0.5938 0.7188 0.375 +0.5938 0.7188 0.4062 +0.5938 0.7188 0.4375 +0.5938 0.7188 0.4688 +0.5938 0.7188 0.5 +0.5938 0.7188 0.5312 +0.5938 0.7188 0.5625 +0.5938 0.7188 0.5938 +0.5938 0.7188 0.625 +0.5938 0.7188 0.6562 +0.5938 0.7188 0.6875 +0.5938 0.7188 0.7188 +0.5938 0.7188 0.75 +0.5938 0.7188 0.7812 +0.5938 0.7188 0.8125 +0.5938 0.7188 0.8438 +0.5938 0.7188 0.875 +0.5938 0.7188 0.9062 +0.5938 0.7188 0.9375 +0.5938 0.7188 0.9688 +0.5938 0.7188 1 +0.5938 0.75 0 +0.5938 0.75 0.03125 +0.5938 0.75 0.0625 +0.5938 0.75 0.09375 +0.5938 0.75 0.125 +0.5938 0.75 0.1562 +0.5938 0.75 0.1875 +0.5938 0.75 0.2188 +0.5938 0.75 0.25 +0.5938 0.75 0.2812 +0.5938 0.75 0.3125 +0.5938 0.75 0.3438 +0.5938 0.75 0.375 +0.5938 0.75 0.4062 +0.5938 0.75 0.4375 +0.5938 0.75 0.4688 +0.5938 0.75 0.5 +0.5938 0.75 0.5312 +0.5938 0.75 0.5625 +0.5938 0.75 0.5938 +0.5938 0.75 0.625 +0.5938 0.75 0.6562 +0.5938 0.75 0.6875 +0.5938 0.75 0.7188 +0.5938 0.75 0.75 +0.5938 0.75 0.7812 +0.5938 0.75 0.8125 +0.5938 0.75 0.8438 +0.5938 0.75 0.875 +0.5938 0.75 0.9062 +0.5938 0.75 0.9375 +0.5938 0.75 0.9688 +0.5938 0.75 1 +0.5938 0.7812 0 +0.5938 0.7812 0.03125 +0.5938 0.7812 0.0625 +0.5938 0.7812 0.09375 +0.5938 0.7812 0.125 +0.5938 0.7812 0.1562 +0.5938 0.7812 0.1875 +0.5938 0.7812 0.2188 +0.5938 0.7812 0.25 +0.5938 0.7812 0.2812 +0.5938 0.7812 0.3125 +0.5938 0.7812 0.3438 +0.5938 0.7812 0.375 +0.5938 0.7812 0.4062 +0.5938 0.7812 0.4375 +0.5938 0.7812 0.4688 +0.5938 0.7812 0.5 +0.5938 0.7812 0.5312 +0.5938 0.7812 0.5625 +0.5938 0.7812 0.5938 +0.5938 0.7812 0.625 +0.5938 0.7812 0.6562 +0.5938 0.7812 0.6875 +0.5938 0.7812 0.7188 +0.5938 0.7812 0.75 +0.5938 0.7812 0.7812 +0.5938 0.7812 0.8125 +0.5938 0.7812 0.8438 +0.5938 0.7812 0.875 +0.5938 0.7812 0.9062 +0.5938 0.7812 0.9375 +0.5938 0.7812 0.9688 +0.5938 0.7812 1 +0.5938 0.8125 0 +0.5938 0.8125 0.03125 +0.5938 0.8125 0.0625 +0.5938 0.8125 0.09375 +0.5938 0.8125 0.125 +0.5938 0.8125 0.1562 +0.5938 0.8125 0.1875 +0.5938 0.8125 0.2188 +0.5938 0.8125 0.25 +0.5938 0.8125 0.2812 +0.5938 0.8125 0.3125 +0.5938 0.8125 0.3438 +0.5938 0.8125 0.375 +0.5938 0.8125 0.4062 +0.5938 0.8125 0.4375 +0.5938 0.8125 0.4688 +0.5938 0.8125 0.5 +0.5938 0.8125 0.5312 +0.5938 0.8125 0.5625 +0.5938 0.8125 0.5938 +0.5938 0.8125 0.625 +0.5938 0.8125 0.6562 +0.5938 0.8125 0.6875 +0.5938 0.8125 0.7188 +0.5938 0.8125 0.75 +0.5938 0.8125 0.7812 +0.5938 0.8125 0.8125 +0.5938 0.8125 0.8438 +0.5938 0.8125 0.875 +0.5938 0.8125 0.9062 +0.5938 0.8125 0.9375 +0.5938 0.8125 0.9688 +0.5938 0.8125 1 +0.5938 0.8438 0 +0.5938 0.8438 0.03125 +0.5938 0.8438 0.0625 +0.5938 0.8438 0.09375 +0.5938 0.8438 0.125 +0.5938 0.8438 0.1562 +0.5938 0.8438 0.1875 +0.5938 0.8438 0.2188 +0.5938 0.8438 0.25 +0.5938 0.8438 0.2812 +0.5938 0.8438 0.3125 +0.5938 0.8438 0.3438 +0.5938 0.8438 0.375 +0.5938 0.8438 0.4062 +0.5938 0.8438 0.4375 +0.5938 0.8438 0.4688 +0.5938 0.8438 0.5 +0.5938 0.8438 0.5312 +0.5938 0.8438 0.5625 +0.5938 0.8438 0.5938 +0.5938 0.8438 0.625 +0.5938 0.8438 0.6562 +0.5938 0.8438 0.6875 +0.5938 0.8438 0.7188 +0.5938 0.8438 0.75 +0.5938 0.8438 0.7812 +0.5938 0.8438 0.8125 +0.5938 0.8438 0.8438 +0.5938 0.8438 0.875 +0.5938 0.8438 0.9062 +0.5938 0.8438 0.9375 +0.5938 0.8438 0.9688 +0.5938 0.8438 1 +0.5938 0.875 0 +0.5938 0.875 0.03125 +0.5938 0.875 0.0625 +0.5938 0.875 0.09375 +0.5938 0.875 0.125 +0.5938 0.875 0.1562 +0.5938 0.875 0.1875 +0.5938 0.875 0.2188 +0.5938 0.875 0.25 +0.5938 0.875 0.2812 +0.5938 0.875 0.3125 +0.5938 0.875 0.3438 +0.5938 0.875 0.375 +0.5938 0.875 0.4062 +0.5938 0.875 0.4375 +0.5938 0.875 0.4688 +0.5938 0.875 0.5 +0.5938 0.875 0.5312 +0.5938 0.875 0.5625 +0.5938 0.875 0.5938 +0.5938 0.875 0.625 +0.5938 0.875 0.6562 +0.5938 0.875 0.6875 +0.5938 0.875 0.7188 +0.5938 0.875 0.75 +0.5938 0.875 0.7812 +0.5938 0.875 0.8125 +0.5938 0.875 0.8438 +0.5938 0.875 0.875 +0.5938 0.875 0.9062 +0.5938 0.875 0.9375 +0.5938 0.875 0.9688 +0.5938 0.875 1 +0.5938 0.9062 0 +0.5938 0.9062 0.03125 +0.5938 0.9062 0.0625 +0.5938 0.9062 0.09375 +0.5938 0.9062 0.125 +0.5938 0.9062 0.1562 +0.5938 0.9062 0.1875 +0.5938 0.9062 0.2188 +0.5938 0.9062 0.25 +0.5938 0.9062 0.2812 +0.5938 0.9062 0.3125 +0.5938 0.9062 0.3438 +0.5938 0.9062 0.375 +0.5938 0.9062 0.4062 +0.5938 0.9062 0.4375 +0.5938 0.9062 0.4688 +0.5938 0.9062 0.5 +0.5938 0.9062 0.5312 +0.5938 0.9062 0.5625 +0.5938 0.9062 0.5938 +0.5938 0.9062 0.625 +0.5938 0.9062 0.6562 +0.5938 0.9062 0.6875 +0.5938 0.9062 0.7188 +0.5938 0.9062 0.75 +0.5938 0.9062 0.7812 +0.5938 0.9062 0.8125 +0.5938 0.9062 0.8438 +0.5938 0.9062 0.875 +0.5938 0.9062 0.9062 +0.5938 0.9062 0.9375 +0.5938 0.9062 0.9688 +0.5938 0.9062 1 +0.5938 0.9375 0 +0.5938 0.9375 0.03125 +0.5938 0.9375 0.0625 +0.5938 0.9375 0.09375 +0.5938 0.9375 0.125 +0.5938 0.9375 0.1562 +0.5938 0.9375 0.1875 +0.5938 0.9375 0.2188 +0.5938 0.9375 0.25 +0.5938 0.9375 0.2812 +0.5938 0.9375 0.3125 +0.5938 0.9375 0.3438 +0.5938 0.9375 0.375 +0.5938 0.9375 0.4062 +0.5938 0.9375 0.4375 +0.5938 0.9375 0.4688 +0.5938 0.9375 0.5 +0.5938 0.9375 0.5312 +0.5938 0.9375 0.5625 +0.5938 0.9375 0.5938 +0.5938 0.9375 0.625 +0.5938 0.9375 0.6562 +0.5938 0.9375 0.6875 +0.5938 0.9375 0.7188 +0.5938 0.9375 0.75 +0.5938 0.9375 0.7812 +0.5938 0.9375 0.8125 +0.5938 0.9375 0.8438 +0.5938 0.9375 0.875 +0.5938 0.9375 0.9062 +0.5938 0.9375 0.9375 +0.5938 0.9375 0.9688 +0.5938 0.9375 1 +0.5938 0.9688 0 +0.5938 0.9688 0.03125 +0.5938 0.9688 0.0625 +0.5938 0.9688 0.09375 +0.5938 0.9688 0.125 +0.5938 0.9688 0.1562 +0.5938 0.9688 0.1875 +0.5938 0.9688 0.2188 +0.5938 0.9688 0.25 +0.5938 0.9688 0.2812 +0.5938 0.9688 0.3125 +0.5938 0.9688 0.3438 +0.5938 0.9688 0.375 +0.5938 0.9688 0.4062 +0.5938 0.9688 0.4375 +0.5938 0.9688 0.4688 +0.5938 0.9688 0.5 +0.5938 0.9688 0.5312 +0.5938 0.9688 0.5625 +0.5938 0.9688 0.5938 +0.5938 0.9688 0.625 +0.5938 0.9688 0.6562 +0.5938 0.9688 0.6875 +0.5938 0.9688 0.7188 +0.5938 0.9688 0.75 +0.5938 0.9688 0.7812 +0.5938 0.9688 0.8125 +0.5938 0.9688 0.8438 +0.5938 0.9688 0.875 +0.5938 0.9688 0.9062 +0.5938 0.9688 0.9375 +0.5938 0.9688 0.9688 +0.5938 0.9688 1 +0.5938 1 0 +0.5938 1 0.03125 +0.5938 1 0.0625 +0.5938 1 0.09375 +0.5938 1 0.125 +0.5938 1 0.1562 +0.5938 1 0.1875 +0.5938 1 0.2188 +0.5938 1 0.25 +0.5938 1 0.2812 +0.5938 1 0.3125 +0.5938 1 0.3438 +0.5938 1 0.375 +0.5938 1 0.4062 +0.5938 1 0.4375 +0.5938 1 0.4688 +0.5938 1 0.5 +0.5938 1 0.5312 +0.5938 1 0.5625 +0.5938 1 0.5938 +0.5938 1 0.625 +0.5938 1 0.6562 +0.5938 1 0.6875 +0.5938 1 0.7188 +0.5938 1 0.75 +0.5938 1 0.7812 +0.5938 1 0.8125 +0.5938 1 0.8438 +0.5938 1 0.875 +0.5938 1 0.9062 +0.5938 1 0.9375 +0.5938 1 0.9688 +0.5938 1 1 +0.625 0 0 +0.625 0 0.03125 +0.625 0 0.0625 +0.625 0 0.09375 +0.625 0 0.125 +0.625 0 0.1562 +0.625 0 0.1875 +0.625 0 0.2188 +0.625 0 0.25 +0.625 0 0.2812 +0.625 0 0.3125 +0.625 0 0.3438 +0.625 0 0.375 +0.625 0 0.4062 +0.625 0 0.4375 +0.625 0 0.4688 +0.625 0 0.5 +0.625 0 0.5312 +0.625 0 0.5625 +0.625 0 0.5938 +0.625 0 0.625 +0.625 0 0.6562 +0.625 0 0.6875 +0.625 0 0.7188 +0.625 0 0.75 +0.625 0 0.7812 +0.625 0 0.8125 +0.625 0 0.8438 +0.625 0 0.875 +0.625 0 0.9062 +0.625 0 0.9375 +0.625 0 0.9688 +0.625 0 1 +0.625 0.03125 0 +0.625 0.03125 0.03125 +0.625 0.03125 0.0625 +0.625 0.03125 0.09375 +0.625 0.03125 0.125 +0.625 0.03125 0.1562 +0.625 0.03125 0.1875 +0.625 0.03125 0.2188 +0.625 0.03125 0.25 +0.625 0.03125 0.2812 +0.625 0.03125 0.3125 +0.625 0.03125 0.3438 +0.625 0.03125 0.375 +0.625 0.03125 0.4062 +0.625 0.03125 0.4375 +0.625 0.03125 0.4688 +0.625 0.03125 0.5 +0.625 0.03125 0.5312 +0.625 0.03125 0.5625 +0.625 0.03125 0.5938 +0.625 0.03125 0.625 +0.625 0.03125 0.6562 +0.625 0.03125 0.6875 +0.625 0.03125 0.7188 +0.625 0.03125 0.75 +0.625 0.03125 0.7812 +0.625 0.03125 0.8125 +0.625 0.03125 0.8438 +0.625 0.03125 0.875 +0.625 0.03125 0.9062 +0.625 0.03125 0.9375 +0.625 0.03125 0.9688 +0.625 0.03125 1 +0.625 0.0625 0 +0.625 0.0625 0.03125 +0.625 0.0625 0.0625 +0.625 0.0625 0.09375 +0.625 0.0625 0.125 +0.625 0.0625 0.1562 +0.625 0.0625 0.1875 +0.625 0.0625 0.2188 +0.625 0.0625 0.25 +0.625 0.0625 0.2812 +0.625 0.0625 0.3125 +0.625 0.0625 0.3438 +0.625 0.0625 0.375 +0.625 0.0625 0.4062 +0.625 0.0625 0.4375 +0.625 0.0625 0.4688 +0.625 0.0625 0.5 +0.625 0.0625 0.5312 +0.625 0.0625 0.5625 +0.625 0.0625 0.5938 +0.625 0.0625 0.625 +0.625 0.0625 0.6562 +0.625 0.0625 0.6875 +0.625 0.0625 0.7188 +0.625 0.0625 0.75 +0.625 0.0625 0.7812 +0.625 0.0625 0.8125 +0.625 0.0625 0.8438 +0.625 0.0625 0.875 +0.625 0.0625 0.9062 +0.625 0.0625 0.9375 +0.625 0.0625 0.9688 +0.625 0.0625 1 +0.625 0.09375 0 +0.625 0.09375 0.03125 +0.625 0.09375 0.0625 +0.625 0.09375 0.09375 +0.625 0.09375 0.125 +0.625 0.09375 0.1562 +0.625 0.09375 0.1875 +0.625 0.09375 0.2188 +0.625 0.09375 0.25 +0.625 0.09375 0.2812 +0.625 0.09375 0.3125 +0.625 0.09375 0.3438 +0.625 0.09375 0.375 +0.625 0.09375 0.4062 +0.625 0.09375 0.4375 +0.625 0.09375 0.4688 +0.625 0.09375 0.5 +0.625 0.09375 0.5312 +0.625 0.09375 0.5625 +0.625 0.09375 0.5938 +0.625 0.09375 0.625 +0.625 0.09375 0.6562 +0.625 0.09375 0.6875 +0.625 0.09375 0.7188 +0.625 0.09375 0.75 +0.625 0.09375 0.7812 +0.625 0.09375 0.8125 +0.625 0.09375 0.8438 +0.625 0.09375 0.875 +0.625 0.09375 0.9062 +0.625 0.09375 0.9375 +0.625 0.09375 0.9688 +0.625 0.09375 1 +0.625 0.125 0 +0.625 0.125 0.03125 +0.625 0.125 0.0625 +0.625 0.125 0.09375 +0.625 0.125 0.125 +0.625 0.125 0.1562 +0.625 0.125 0.1875 +0.625 0.125 0.2188 +0.625 0.125 0.25 +0.625 0.125 0.2812 +0.625 0.125 0.3125 +0.625 0.125 0.3438 +0.625 0.125 0.375 +0.625 0.125 0.4062 +0.625 0.125 0.4375 +0.625 0.125 0.4688 +0.625 0.125 0.5 +0.625 0.125 0.5312 +0.625 0.125 0.5625 +0.625 0.125 0.5938 +0.625 0.125 0.625 +0.625 0.125 0.6562 +0.625 0.125 0.6875 +0.625 0.125 0.7188 +0.625 0.125 0.75 +0.625 0.125 0.7812 +0.625 0.125 0.8125 +0.625 0.125 0.8438 +0.625 0.125 0.875 +0.625 0.125 0.9062 +0.625 0.125 0.9375 +0.625 0.125 0.9688 +0.625 0.125 1 +0.625 0.1562 0 +0.625 0.1562 0.03125 +0.625 0.1562 0.0625 +0.625 0.1562 0.09375 +0.625 0.1562 0.125 +0.625 0.1562 0.1562 +0.625 0.1562 0.1875 +0.625 0.1562 0.2188 +0.625 0.1562 0.25 +0.625 0.1562 0.2812 +0.625 0.1562 0.3125 +0.625 0.1562 0.3438 +0.625 0.1562 0.375 +0.625 0.1562 0.4062 +0.625 0.1562 0.4375 +0.625 0.1562 0.4688 +0.625 0.1562 0.5 +0.625 0.1562 0.5312 +0.625 0.1562 0.5625 +0.625 0.1562 0.5938 +0.625 0.1562 0.625 +0.625 0.1562 0.6562 +0.625 0.1562 0.6875 +0.625 0.1562 0.7188 +0.625 0.1562 0.75 +0.625 0.1562 0.7812 +0.625 0.1562 0.8125 +0.625 0.1562 0.8438 +0.625 0.1562 0.875 +0.625 0.1562 0.9062 +0.625 0.1562 0.9375 +0.625 0.1562 0.9688 +0.625 0.1562 1 +0.625 0.1875 0 +0.625 0.1875 0.03125 +0.625 0.1875 0.0625 +0.625 0.1875 0.09375 +0.625 0.1875 0.125 +0.625 0.1875 0.1562 +0.625 0.1875 0.1875 +0.625 0.1875 0.2188 +0.625 0.1875 0.25 +0.625 0.1875 0.2812 +0.625 0.1875 0.3125 +0.625 0.1875 0.3438 +0.625 0.1875 0.375 +0.625 0.1875 0.4062 +0.625 0.1875 0.4375 +0.625 0.1875 0.4688 +0.625 0.1875 0.5 +0.625 0.1875 0.5312 +0.625 0.1875 0.5625 +0.625 0.1875 0.5938 +0.625 0.1875 0.625 +0.625 0.1875 0.6562 +0.625 0.1875 0.6875 +0.625 0.1875 0.7188 +0.625 0.1875 0.75 +0.625 0.1875 0.7812 +0.625 0.1875 0.8125 +0.625 0.1875 0.8438 +0.625 0.1875 0.875 +0.625 0.1875 0.9062 +0.625 0.1875 0.9375 +0.625 0.1875 0.9688 +0.625 0.1875 1 +0.625 0.2188 0 +0.625 0.2188 0.03125 +0.625 0.2188 0.0625 +0.625 0.2188 0.09375 +0.625 0.2188 0.125 +0.625 0.2188 0.1562 +0.625 0.2188 0.1875 +0.625 0.2188 0.2188 +0.625 0.2188 0.25 +0.625 0.2188 0.2812 +0.625 0.2188 0.3125 +0.625 0.2188 0.3438 +0.625 0.2188 0.375 +0.625 0.2188 0.4062 +0.625 0.2188 0.4375 +0.625 0.2188 0.4688 +0.625 0.2188 0.5 +0.625 0.2188 0.5312 +0.625 0.2188 0.5625 +0.625 0.2188 0.5938 +0.625 0.2188 0.625 +0.625 0.2188 0.6562 +0.625 0.2188 0.6875 +0.625 0.2188 0.7188 +0.625 0.2188 0.75 +0.625 0.2188 0.7812 +0.625 0.2188 0.8125 +0.625 0.2188 0.8438 +0.625 0.2188 0.875 +0.625 0.2188 0.9062 +0.625 0.2188 0.9375 +0.625 0.2188 0.9688 +0.625 0.2188 1 +0.625 0.25 0 +0.625 0.25 0.03125 +0.625 0.25 0.0625 +0.625 0.25 0.09375 +0.625 0.25 0.125 +0.625 0.25 0.1562 +0.625 0.25 0.1875 +0.625 0.25 0.2188 +0.625 0.25 0.25 +0.625 0.25 0.2812 +0.625 0.25 0.3125 +0.625 0.25 0.3438 +0.625 0.25 0.375 +0.625 0.25 0.4062 +0.625 0.25 0.4375 +0.625 0.25 0.4688 +0.625 0.25 0.5 +0.625 0.25 0.5312 +0.625 0.25 0.5625 +0.625 0.25 0.5938 +0.625 0.25 0.625 +0.625 0.25 0.6562 +0.625 0.25 0.6875 +0.625 0.25 0.7188 +0.625 0.25 0.75 +0.625 0.25 0.7812 +0.625 0.25 0.8125 +0.625 0.25 0.8438 +0.625 0.25 0.875 +0.625 0.25 0.9062 +0.625 0.25 0.9375 +0.625 0.25 0.9688 +0.625 0.25 1 +0.625 0.2812 0 +0.625 0.2812 0.03125 +0.625 0.2812 0.0625 +0.625 0.2812 0.09375 +0.625 0.2812 0.125 +0.625 0.2812 0.1562 +0.625 0.2812 0.1875 +0.625 0.2812 0.2188 +0.625 0.2812 0.25 +0.625 0.2812 0.2812 +0.625 0.2812 0.3125 +0.625 0.2812 0.3438 +0.625 0.2812 0.375 +0.625 0.2812 0.4062 +0.625 0.2812 0.4375 +0.625 0.2812 0.4688 +0.625 0.2812 0.5 +0.625 0.2812 0.5312 +0.625 0.2812 0.5625 +0.625 0.2812 0.5938 +0.625 0.2812 0.625 +0.625 0.2812 0.6562 +0.625 0.2812 0.6875 +0.625 0.2812 0.7188 +0.625 0.2812 0.75 +0.625 0.2812 0.7812 +0.625 0.2812 0.8125 +0.625 0.2812 0.8438 +0.625 0.2812 0.875 +0.625 0.2812 0.9062 +0.625 0.2812 0.9375 +0.625 0.2812 0.9688 +0.625 0.2812 1 +0.625 0.3125 0 +0.625 0.3125 0.03125 +0.625 0.3125 0.0625 +0.625 0.3125 0.09375 +0.625 0.3125 0.125 +0.625 0.3125 0.1562 +0.625 0.3125 0.1875 +0.625 0.3125 0.2188 +0.625 0.3125 0.25 +0.625 0.3125 0.2812 +0.625 0.3125 0.3125 +0.625 0.3125 0.3438 +0.625 0.3125 0.375 +0.625 0.3125 0.4062 +0.625 0.3125 0.4375 +0.625 0.3125 0.4688 +0.625 0.3125 0.5 +0.625 0.3125 0.5312 +0.625 0.3125 0.5625 +0.625 0.3125 0.5938 +0.625 0.3125 0.625 +0.625 0.3125 0.6562 +0.625 0.3125 0.6875 +0.625 0.3125 0.7188 +0.625 0.3125 0.75 +0.625 0.3125 0.7812 +0.625 0.3125 0.8125 +0.625 0.3125 0.8438 +0.625 0.3125 0.875 +0.625 0.3125 0.9062 +0.625 0.3125 0.9375 +0.625 0.3125 0.9688 +0.625 0.3125 1 +0.625 0.3438 0 +0.625 0.3438 0.03125 +0.625 0.3438 0.0625 +0.625 0.3438 0.09375 +0.625 0.3438 0.125 +0.625 0.3438 0.1562 +0.625 0.3438 0.1875 +0.625 0.3438 0.2188 +0.625 0.3438 0.25 +0.625 0.3438 0.2812 +0.625 0.3438 0.3125 +0.625 0.3438 0.3438 +0.625 0.3438 0.375 +0.625 0.3438 0.4062 +0.625 0.3438 0.4375 +0.625 0.3438 0.4688 +0.625 0.3438 0.5 +0.625 0.3438 0.5312 +0.625 0.3438 0.5625 +0.625 0.3438 0.5938 +0.625 0.3438 0.625 +0.625 0.3438 0.6562 +0.625 0.3438 0.6875 +0.625 0.3438 0.7188 +0.625 0.3438 0.75 +0.625 0.3438 0.7812 +0.625 0.3438 0.8125 +0.625 0.3438 0.8438 +0.625 0.3438 0.875 +0.625 0.3438 0.9062 +0.625 0.3438 0.9375 +0.625 0.3438 0.9688 +0.625 0.3438 1 +0.625 0.375 0 +0.625 0.375 0.03125 +0.625 0.375 0.0625 +0.625 0.375 0.09375 +0.625 0.375 0.125 +0.625 0.375 0.1562 +0.625 0.375 0.1875 +0.625 0.375 0.2188 +0.625 0.375 0.25 +0.625 0.375 0.2812 +0.625 0.375 0.3125 +0.625 0.375 0.3438 +0.625 0.375 0.375 +0.625 0.375 0.4062 +0.625 0.375 0.4375 +0.625 0.375 0.4688 +0.625 0.375 0.5 +0.625 0.375 0.5312 +0.625 0.375 0.5625 +0.625 0.375 0.5938 +0.625 0.375 0.625 +0.625 0.375 0.6562 +0.625 0.375 0.6875 +0.625 0.375 0.7188 +0.625 0.375 0.75 +0.625 0.375 0.7812 +0.625 0.375 0.8125 +0.625 0.375 0.8438 +0.625 0.375 0.875 +0.625 0.375 0.9062 +0.625 0.375 0.9375 +0.625 0.375 0.9688 +0.625 0.375 1 +0.625 0.4062 0 +0.625 0.4062 0.03125 +0.625 0.4062 0.0625 +0.625 0.4062 0.09375 +0.625 0.4062 0.125 +0.625 0.4062 0.1562 +0.625 0.4062 0.1875 +0.625 0.4062 0.2188 +0.625 0.4062 0.25 +0.625 0.4062 0.2812 +0.625 0.4062 0.3125 +0.625 0.4062 0.3438 +0.625 0.4062 0.375 +0.625 0.4062 0.4062 +0.625 0.4062 0.4375 +0.625 0.4062 0.4688 +0.625 0.4062 0.5 +0.625 0.4062 0.5312 +0.625 0.4062 0.5625 +0.625 0.4062 0.5938 +0.625 0.4062 0.625 +0.625 0.4062 0.6562 +0.625 0.4062 0.6875 +0.625 0.4062 0.7188 +0.625 0.4062 0.75 +0.625 0.4062 0.7812 +0.625 0.4062 0.8125 +0.625 0.4062 0.8438 +0.625 0.4062 0.875 +0.625 0.4062 0.9062 +0.625 0.4062 0.9375 +0.625 0.4062 0.9688 +0.625 0.4062 1 +0.625 0.4375 0 +0.625 0.4375 0.03125 +0.625 0.4375 0.0625 +0.625 0.4375 0.09375 +0.625 0.4375 0.125 +0.625 0.4375 0.1562 +0.625 0.4375 0.1875 +0.625 0.4375 0.2188 +0.625 0.4375 0.25 +0.625 0.4375 0.2812 +0.625 0.4375 0.3125 +0.625 0.4375 0.3438 +0.625 0.4375 0.375 +0.625 0.4375 0.4062 +0.625 0.4375 0.4375 +0.625 0.4375 0.4688 +0.625 0.4375 0.5 +0.625 0.4375 0.5312 +0.625 0.4375 0.5625 +0.625 0.4375 0.5938 +0.625 0.4375 0.625 +0.625 0.4375 0.6562 +0.625 0.4375 0.6875 +0.625 0.4375 0.7188 +0.625 0.4375 0.75 +0.625 0.4375 0.7812 +0.625 0.4375 0.8125 +0.625 0.4375 0.8438 +0.625 0.4375 0.875 +0.625 0.4375 0.9062 +0.625 0.4375 0.9375 +0.625 0.4375 0.9688 +0.625 0.4375 1 +0.625 0.4688 0 +0.625 0.4688 0.03125 +0.625 0.4688 0.0625 +0.625 0.4688 0.09375 +0.625 0.4688 0.125 +0.625 0.4688 0.1562 +0.625 0.4688 0.1875 +0.625 0.4688 0.2188 +0.625 0.4688 0.25 +0.625 0.4688 0.2812 +0.625 0.4688 0.3125 +0.625 0.4688 0.3438 +0.625 0.4688 0.375 +0.625 0.4688 0.4062 +0.625 0.4688 0.4375 +0.625 0.4688 0.4688 +0.625 0.4688 0.5 +0.625 0.4688 0.5312 +0.625 0.4688 0.5625 +0.625 0.4688 0.5938 +0.625 0.4688 0.625 +0.625 0.4688 0.6562 +0.625 0.4688 0.6875 +0.625 0.4688 0.7188 +0.625 0.4688 0.75 +0.625 0.4688 0.7812 +0.625 0.4688 0.8125 +0.625 0.4688 0.8438 +0.625 0.4688 0.875 +0.625 0.4688 0.9062 +0.625 0.4688 0.9375 +0.625 0.4688 0.9688 +0.625 0.4688 1 +0.625 0.5 0 +0.625 0.5 0.03125 +0.625 0.5 0.0625 +0.625 0.5 0.09375 +0.625 0.5 0.125 +0.625 0.5 0.1562 +0.625 0.5 0.1875 +0.625 0.5 0.2188 +0.625 0.5 0.25 +0.625 0.5 0.2812 +0.625 0.5 0.3125 +0.625 0.5 0.3438 +0.625 0.5 0.375 +0.625 0.5 0.4062 +0.625 0.5 0.4375 +0.625 0.5 0.4688 +0.625 0.5 0.5 +0.625 0.5 0.5312 +0.625 0.5 0.5625 +0.625 0.5 0.5938 +0.625 0.5 0.625 +0.625 0.5 0.6562 +0.625 0.5 0.6875 +0.625 0.5 0.7188 +0.625 0.5 0.75 +0.625 0.5 0.7812 +0.625 0.5 0.8125 +0.625 0.5 0.8438 +0.625 0.5 0.875 +0.625 0.5 0.9062 +0.625 0.5 0.9375 +0.625 0.5 0.9688 +0.625 0.5 1 +0.625 0.5312 0 +0.625 0.5312 0.03125 +0.625 0.5312 0.0625 +0.625 0.5312 0.09375 +0.625 0.5312 0.125 +0.625 0.5312 0.1562 +0.625 0.5312 0.1875 +0.625 0.5312 0.2188 +0.625 0.5312 0.25 +0.625 0.5312 0.2812 +0.625 0.5312 0.3125 +0.625 0.5312 0.3438 +0.625 0.5312 0.375 +0.625 0.5312 0.4062 +0.625 0.5312 0.4375 +0.625 0.5312 0.4688 +0.625 0.5312 0.5 +0.625 0.5312 0.5312 +0.625 0.5312 0.5625 +0.625 0.5312 0.5938 +0.625 0.5312 0.625 +0.625 0.5312 0.6562 +0.625 0.5312 0.6875 +0.625 0.5312 0.7188 +0.625 0.5312 0.75 +0.625 0.5312 0.7812 +0.625 0.5312 0.8125 +0.625 0.5312 0.8438 +0.625 0.5312 0.875 +0.625 0.5312 0.9062 +0.625 0.5312 0.9375 +0.625 0.5312 0.9688 +0.625 0.5312 1 +0.625 0.5625 0 +0.625 0.5625 0.03125 +0.625 0.5625 0.0625 +0.625 0.5625 0.09375 +0.625 0.5625 0.125 +0.625 0.5625 0.1562 +0.625 0.5625 0.1875 +0.625 0.5625 0.2188 +0.625 0.5625 0.25 +0.625 0.5625 0.2812 +0.625 0.5625 0.3125 +0.625 0.5625 0.3438 +0.625 0.5625 0.375 +0.625 0.5625 0.4062 +0.625 0.5625 0.4375 +0.625 0.5625 0.4688 +0.625 0.5625 0.5 +0.625 0.5625 0.5312 +0.625 0.5625 0.5625 +0.625 0.5625 0.5938 +0.625 0.5625 0.625 +0.625 0.5625 0.6562 +0.625 0.5625 0.6875 +0.625 0.5625 0.7188 +0.625 0.5625 0.75 +0.625 0.5625 0.7812 +0.625 0.5625 0.8125 +0.625 0.5625 0.8438 +0.625 0.5625 0.875 +0.625 0.5625 0.9062 +0.625 0.5625 0.9375 +0.625 0.5625 0.9688 +0.625 0.5625 1 +0.625 0.5938 0 +0.625 0.5938 0.03125 +0.625 0.5938 0.0625 +0.625 0.5938 0.09375 +0.625 0.5938 0.125 +0.625 0.5938 0.1562 +0.625 0.5938 0.1875 +0.625 0.5938 0.2188 +0.625 0.5938 0.25 +0.625 0.5938 0.2812 +0.625 0.5938 0.3125 +0.625 0.5938 0.3438 +0.625 0.5938 0.375 +0.625 0.5938 0.4062 +0.625 0.5938 0.4375 +0.625 0.5938 0.4688 +0.625 0.5938 0.5 +0.625 0.5938 0.5312 +0.625 0.5938 0.5625 +0.625 0.5938 0.5938 +0.625 0.5938 0.625 +0.625 0.5938 0.6562 +0.625 0.5938 0.6875 +0.625 0.5938 0.7188 +0.625 0.5938 0.75 +0.625 0.5938 0.7812 +0.625 0.5938 0.8125 +0.625 0.5938 0.8438 +0.625 0.5938 0.875 +0.625 0.5938 0.9062 +0.625 0.5938 0.9375 +0.625 0.5938 0.9688 +0.625 0.5938 1 +0.625 0.625 0 +0.625 0.625 0.03125 +0.625 0.625 0.0625 +0.625 0.625 0.09375 +0.625 0.625 0.125 +0.625 0.625 0.1562 +0.625 0.625 0.1875 +0.625 0.625 0.2188 +0.625 0.625 0.25 +0.625 0.625 0.2812 +0.625 0.625 0.3125 +0.625 0.625 0.3438 +0.625 0.625 0.375 +0.625 0.625 0.4062 +0.625 0.625 0.4375 +0.625 0.625 0.4688 +0.625 0.625 0.5 +0.625 0.625 0.5312 +0.625 0.625 0.5625 +0.625 0.625 0.5938 +0.625 0.625 0.625 +0.625 0.625 0.6562 +0.625 0.625 0.6875 +0.625 0.625 0.7188 +0.625 0.625 0.75 +0.625 0.625 0.7812 +0.625 0.625 0.8125 +0.625 0.625 0.8438 +0.625 0.625 0.875 +0.625 0.625 0.9062 +0.625 0.625 0.9375 +0.625 0.625 0.9688 +0.625 0.625 1 +0.625 0.6562 0 +0.625 0.6562 0.03125 +0.625 0.6562 0.0625 +0.625 0.6562 0.09375 +0.625 0.6562 0.125 +0.625 0.6562 0.1562 +0.625 0.6562 0.1875 +0.625 0.6562 0.2188 +0.625 0.6562 0.25 +0.625 0.6562 0.2812 +0.625 0.6562 0.3125 +0.625 0.6562 0.3438 +0.625 0.6562 0.375 +0.625 0.6562 0.4062 +0.625 0.6562 0.4375 +0.625 0.6562 0.4688 +0.625 0.6562 0.5 +0.625 0.6562 0.5312 +0.625 0.6562 0.5625 +0.625 0.6562 0.5938 +0.625 0.6562 0.625 +0.625 0.6562 0.6562 +0.625 0.6562 0.6875 +0.625 0.6562 0.7188 +0.625 0.6562 0.75 +0.625 0.6562 0.7812 +0.625 0.6562 0.8125 +0.625 0.6562 0.8438 +0.625 0.6562 0.875 +0.625 0.6562 0.9062 +0.625 0.6562 0.9375 +0.625 0.6562 0.9688 +0.625 0.6562 1 +0.625 0.6875 0 +0.625 0.6875 0.03125 +0.625 0.6875 0.0625 +0.625 0.6875 0.09375 +0.625 0.6875 0.125 +0.625 0.6875 0.1562 +0.625 0.6875 0.1875 +0.625 0.6875 0.2188 +0.625 0.6875 0.25 +0.625 0.6875 0.2812 +0.625 0.6875 0.3125 +0.625 0.6875 0.3438 +0.625 0.6875 0.375 +0.625 0.6875 0.4062 +0.625 0.6875 0.4375 +0.625 0.6875 0.4688 +0.625 0.6875 0.5 +0.625 0.6875 0.5312 +0.625 0.6875 0.5625 +0.625 0.6875 0.5938 +0.625 0.6875 0.625 +0.625 0.6875 0.6562 +0.625 0.6875 0.6875 +0.625 0.6875 0.7188 +0.625 0.6875 0.75 +0.625 0.6875 0.7812 +0.625 0.6875 0.8125 +0.625 0.6875 0.8438 +0.625 0.6875 0.875 +0.625 0.6875 0.9062 +0.625 0.6875 0.9375 +0.625 0.6875 0.9688 +0.625 0.6875 1 +0.625 0.7188 0 +0.625 0.7188 0.03125 +0.625 0.7188 0.0625 +0.625 0.7188 0.09375 +0.625 0.7188 0.125 +0.625 0.7188 0.1562 +0.625 0.7188 0.1875 +0.625 0.7188 0.2188 +0.625 0.7188 0.25 +0.625 0.7188 0.2812 +0.625 0.7188 0.3125 +0.625 0.7188 0.3438 +0.625 0.7188 0.375 +0.625 0.7188 0.4062 +0.625 0.7188 0.4375 +0.625 0.7188 0.4688 +0.625 0.7188 0.5 +0.625 0.7188 0.5312 +0.625 0.7188 0.5625 +0.625 0.7188 0.5938 +0.625 0.7188 0.625 +0.625 0.7188 0.6562 +0.625 0.7188 0.6875 +0.625 0.7188 0.7188 +0.625 0.7188 0.75 +0.625 0.7188 0.7812 +0.625 0.7188 0.8125 +0.625 0.7188 0.8438 +0.625 0.7188 0.875 +0.625 0.7188 0.9062 +0.625 0.7188 0.9375 +0.625 0.7188 0.9688 +0.625 0.7188 1 +0.625 0.75 0 +0.625 0.75 0.03125 +0.625 0.75 0.0625 +0.625 0.75 0.09375 +0.625 0.75 0.125 +0.625 0.75 0.1562 +0.625 0.75 0.1875 +0.625 0.75 0.2188 +0.625 0.75 0.25 +0.625 0.75 0.2812 +0.625 0.75 0.3125 +0.625 0.75 0.3438 +0.625 0.75 0.375 +0.625 0.75 0.4062 +0.625 0.75 0.4375 +0.625 0.75 0.4688 +0.625 0.75 0.5 +0.625 0.75 0.5312 +0.625 0.75 0.5625 +0.625 0.75 0.5938 +0.625 0.75 0.625 +0.625 0.75 0.6562 +0.625 0.75 0.6875 +0.625 0.75 0.7188 +0.625 0.75 0.75 +0.625 0.75 0.7812 +0.625 0.75 0.8125 +0.625 0.75 0.8438 +0.625 0.75 0.875 +0.625 0.75 0.9062 +0.625 0.75 0.9375 +0.625 0.75 0.9688 +0.625 0.75 1 +0.625 0.7812 0 +0.625 0.7812 0.03125 +0.625 0.7812 0.0625 +0.625 0.7812 0.09375 +0.625 0.7812 0.125 +0.625 0.7812 0.1562 +0.625 0.7812 0.1875 +0.625 0.7812 0.2188 +0.625 0.7812 0.25 +0.625 0.7812 0.2812 +0.625 0.7812 0.3125 +0.625 0.7812 0.3438 +0.625 0.7812 0.375 +0.625 0.7812 0.4062 +0.625 0.7812 0.4375 +0.625 0.7812 0.4688 +0.625 0.7812 0.5 +0.625 0.7812 0.5312 +0.625 0.7812 0.5625 +0.625 0.7812 0.5938 +0.625 0.7812 0.625 +0.625 0.7812 0.6562 +0.625 0.7812 0.6875 +0.625 0.7812 0.7188 +0.625 0.7812 0.75 +0.625 0.7812 0.7812 +0.625 0.7812 0.8125 +0.625 0.7812 0.8438 +0.625 0.7812 0.875 +0.625 0.7812 0.9062 +0.625 0.7812 0.9375 +0.625 0.7812 0.9688 +0.625 0.7812 1 +0.625 0.8125 0 +0.625 0.8125 0.03125 +0.625 0.8125 0.0625 +0.625 0.8125 0.09375 +0.625 0.8125 0.125 +0.625 0.8125 0.1562 +0.625 0.8125 0.1875 +0.625 0.8125 0.2188 +0.625 0.8125 0.25 +0.625 0.8125 0.2812 +0.625 0.8125 0.3125 +0.625 0.8125 0.3438 +0.625 0.8125 0.375 +0.625 0.8125 0.4062 +0.625 0.8125 0.4375 +0.625 0.8125 0.4688 +0.625 0.8125 0.5 +0.625 0.8125 0.5312 +0.625 0.8125 0.5625 +0.625 0.8125 0.5938 +0.625 0.8125 0.625 +0.625 0.8125 0.6562 +0.625 0.8125 0.6875 +0.625 0.8125 0.7188 +0.625 0.8125 0.75 +0.625 0.8125 0.7812 +0.625 0.8125 0.8125 +0.625 0.8125 0.8438 +0.625 0.8125 0.875 +0.625 0.8125 0.9062 +0.625 0.8125 0.9375 +0.625 0.8125 0.9688 +0.625 0.8125 1 +0.625 0.8438 0 +0.625 0.8438 0.03125 +0.625 0.8438 0.0625 +0.625 0.8438 0.09375 +0.625 0.8438 0.125 +0.625 0.8438 0.1562 +0.625 0.8438 0.1875 +0.625 0.8438 0.2188 +0.625 0.8438 0.25 +0.625 0.8438 0.2812 +0.625 0.8438 0.3125 +0.625 0.8438 0.3438 +0.625 0.8438 0.375 +0.625 0.8438 0.4062 +0.625 0.8438 0.4375 +0.625 0.8438 0.4688 +0.625 0.8438 0.5 +0.625 0.8438 0.5312 +0.625 0.8438 0.5625 +0.625 0.8438 0.5938 +0.625 0.8438 0.625 +0.625 0.8438 0.6562 +0.625 0.8438 0.6875 +0.625 0.8438 0.7188 +0.625 0.8438 0.75 +0.625 0.8438 0.7812 +0.625 0.8438 0.8125 +0.625 0.8438 0.8438 +0.625 0.8438 0.875 +0.625 0.8438 0.9062 +0.625 0.8438 0.9375 +0.625 0.8438 0.9688 +0.625 0.8438 1 +0.625 0.875 0 +0.625 0.875 0.03125 +0.625 0.875 0.0625 +0.625 0.875 0.09375 +0.625 0.875 0.125 +0.625 0.875 0.1562 +0.625 0.875 0.1875 +0.625 0.875 0.2188 +0.625 0.875 0.25 +0.625 0.875 0.2812 +0.625 0.875 0.3125 +0.625 0.875 0.3438 +0.625 0.875 0.375 +0.625 0.875 0.4062 +0.625 0.875 0.4375 +0.625 0.875 0.4688 +0.625 0.875 0.5 +0.625 0.875 0.5312 +0.625 0.875 0.5625 +0.625 0.875 0.5938 +0.625 0.875 0.625 +0.625 0.875 0.6562 +0.625 0.875 0.6875 +0.625 0.875 0.7188 +0.625 0.875 0.75 +0.625 0.875 0.7812 +0.625 0.875 0.8125 +0.625 0.875 0.8438 +0.625 0.875 0.875 +0.625 0.875 0.9062 +0.625 0.875 0.9375 +0.625 0.875 0.9688 +0.625 0.875 1 +0.625 0.9062 0 +0.625 0.9062 0.03125 +0.625 0.9062 0.0625 +0.625 0.9062 0.09375 +0.625 0.9062 0.125 +0.625 0.9062 0.1562 +0.625 0.9062 0.1875 +0.625 0.9062 0.2188 +0.625 0.9062 0.25 +0.625 0.9062 0.2812 +0.625 0.9062 0.3125 +0.625 0.9062 0.3438 +0.625 0.9062 0.375 +0.625 0.9062 0.4062 +0.625 0.9062 0.4375 +0.625 0.9062 0.4688 +0.625 0.9062 0.5 +0.625 0.9062 0.5312 +0.625 0.9062 0.5625 +0.625 0.9062 0.5938 +0.625 0.9062 0.625 +0.625 0.9062 0.6562 +0.625 0.9062 0.6875 +0.625 0.9062 0.7188 +0.625 0.9062 0.75 +0.625 0.9062 0.7812 +0.625 0.9062 0.8125 +0.625 0.9062 0.8438 +0.625 0.9062 0.875 +0.625 0.9062 0.9062 +0.625 0.9062 0.9375 +0.625 0.9062 0.9688 +0.625 0.9062 1 +0.625 0.9375 0 +0.625 0.9375 0.03125 +0.625 0.9375 0.0625 +0.625 0.9375 0.09375 +0.625 0.9375 0.125 +0.625 0.9375 0.1562 +0.625 0.9375 0.1875 +0.625 0.9375 0.2188 +0.625 0.9375 0.25 +0.625 0.9375 0.2812 +0.625 0.9375 0.3125 +0.625 0.9375 0.3438 +0.625 0.9375 0.375 +0.625 0.9375 0.4062 +0.625 0.9375 0.4375 +0.625 0.9375 0.4688 +0.625 0.9375 0.5 +0.625 0.9375 0.5312 +0.625 0.9375 0.5625 +0.625 0.9375 0.5938 +0.625 0.9375 0.625 +0.625 0.9375 0.6562 +0.625 0.9375 0.6875 +0.625 0.9375 0.7188 +0.625 0.9375 0.75 +0.625 0.9375 0.7812 +0.625 0.9375 0.8125 +0.625 0.9375 0.8438 +0.625 0.9375 0.875 +0.625 0.9375 0.9062 +0.625 0.9375 0.9375 +0.625 0.9375 0.9688 +0.625 0.9375 1 +0.625 0.9688 0 +0.625 0.9688 0.03125 +0.625 0.9688 0.0625 +0.625 0.9688 0.09375 +0.625 0.9688 0.125 +0.625 0.9688 0.1562 +0.625 0.9688 0.1875 +0.625 0.9688 0.2188 +0.625 0.9688 0.25 +0.625 0.9688 0.2812 +0.625 0.9688 0.3125 +0.625 0.9688 0.3438 +0.625 0.9688 0.375 +0.625 0.9688 0.4062 +0.625 0.9688 0.4375 +0.625 0.9688 0.4688 +0.625 0.9688 0.5 +0.625 0.9688 0.5312 +0.625 0.9688 0.5625 +0.625 0.9688 0.5938 +0.625 0.9688 0.625 +0.625 0.9688 0.6562 +0.625 0.9688 0.6875 +0.625 0.9688 0.7188 +0.625 0.9688 0.75 +0.625 0.9688 0.7812 +0.625 0.9688 0.8125 +0.625 0.9688 0.8438 +0.625 0.9688 0.875 +0.625 0.9688 0.9062 +0.625 0.9688 0.9375 +0.625 0.9688 0.9688 +0.625 0.9688 1 +0.625 1 0 +0.625 1 0.03125 +0.625 1 0.0625 +0.625 1 0.09375 +0.625 1 0.125 +0.625 1 0.1562 +0.625 1 0.1875 +0.625 1 0.2188 +0.625 1 0.25 +0.625 1 0.2812 +0.625 1 0.3125 +0.625 1 0.3438 +0.625 1 0.375 +0.625 1 0.4062 +0.625 1 0.4375 +0.625 1 0.4688 +0.625 1 0.5 +0.625 1 0.5312 +0.625 1 0.5625 +0.625 1 0.5938 +0.625 1 0.625 +0.625 1 0.6562 +0.625 1 0.6875 +0.625 1 0.7188 +0.625 1 0.75 +0.625 1 0.7812 +0.625 1 0.8125 +0.625 1 0.8438 +0.625 1 0.875 +0.625 1 0.9062 +0.625 1 0.9375 +0.625 1 0.9688 +0.625 1 1 +0.6562 0 0 +0.6562 0 0.03125 +0.6562 0 0.0625 +0.6562 0 0.09375 +0.6562 0 0.125 +0.6562 0 0.1562 +0.6562 0 0.1875 +0.6562 0 0.2188 +0.6562 0 0.25 +0.6562 0 0.2812 +0.6562 0 0.3125 +0.6562 0 0.3438 +0.6562 0 0.375 +0.6562 0 0.4062 +0.6562 0 0.4375 +0.6562 0 0.4688 +0.6562 0 0.5 +0.6562 0 0.5312 +0.6562 0 0.5625 +0.6562 0 0.5938 +0.6562 0 0.625 +0.6562 0 0.6562 +0.6562 0 0.6875 +0.6562 0 0.7188 +0.6562 0 0.75 +0.6562 0 0.7812 +0.6562 0 0.8125 +0.6562 0 0.8438 +0.6562 0 0.875 +0.6562 0 0.9062 +0.6562 0 0.9375 +0.6562 0 0.9688 +0.6562 0 1 +0.6562 0.03125 0 +0.6562 0.03125 0.03125 +0.6562 0.03125 0.0625 +0.6562 0.03125 0.09375 +0.6562 0.03125 0.125 +0.6562 0.03125 0.1562 +0.6562 0.03125 0.1875 +0.6562 0.03125 0.2188 +0.6562 0.03125 0.25 +0.6562 0.03125 0.2812 +0.6562 0.03125 0.3125 +0.6562 0.03125 0.3438 +0.6562 0.03125 0.375 +0.6562 0.03125 0.4062 +0.6562 0.03125 0.4375 +0.6562 0.03125 0.4688 +0.6562 0.03125 0.5 +0.6562 0.03125 0.5312 +0.6562 0.03125 0.5625 +0.6562 0.03125 0.5938 +0.6562 0.03125 0.625 +0.6562 0.03125 0.6562 +0.6562 0.03125 0.6875 +0.6562 0.03125 0.7188 +0.6562 0.03125 0.75 +0.6562 0.03125 0.7812 +0.6562 0.03125 0.8125 +0.6562 0.03125 0.8438 +0.6562 0.03125 0.875 +0.6562 0.03125 0.9062 +0.6562 0.03125 0.9375 +0.6562 0.03125 0.9688 +0.6562 0.03125 1 +0.6562 0.0625 0 +0.6562 0.0625 0.03125 +0.6562 0.0625 0.0625 +0.6562 0.0625 0.09375 +0.6562 0.0625 0.125 +0.6562 0.0625 0.1562 +0.6562 0.0625 0.1875 +0.6562 0.0625 0.2188 +0.6562 0.0625 0.25 +0.6562 0.0625 0.2812 +0.6562 0.0625 0.3125 +0.6562 0.0625 0.3438 +0.6562 0.0625 0.375 +0.6562 0.0625 0.4062 +0.6562 0.0625 0.4375 +0.6562 0.0625 0.4688 +0.6562 0.0625 0.5 +0.6562 0.0625 0.5312 +0.6562 0.0625 0.5625 +0.6562 0.0625 0.5938 +0.6562 0.0625 0.625 +0.6562 0.0625 0.6562 +0.6562 0.0625 0.6875 +0.6562 0.0625 0.7188 +0.6562 0.0625 0.75 +0.6562 0.0625 0.7812 +0.6562 0.0625 0.8125 +0.6562 0.0625 0.8438 +0.6562 0.0625 0.875 +0.6562 0.0625 0.9062 +0.6562 0.0625 0.9375 +0.6562 0.0625 0.9688 +0.6562 0.0625 1 +0.6562 0.09375 0 +0.6562 0.09375 0.03125 +0.6562 0.09375 0.0625 +0.6562 0.09375 0.09375 +0.6562 0.09375 0.125 +0.6562 0.09375 0.1562 +0.6562 0.09375 0.1875 +0.6562 0.09375 0.2188 +0.6562 0.09375 0.25 +0.6562 0.09375 0.2812 +0.6562 0.09375 0.3125 +0.6562 0.09375 0.3438 +0.6562 0.09375 0.375 +0.6562 0.09375 0.4062 +0.6562 0.09375 0.4375 +0.6562 0.09375 0.4688 +0.6562 0.09375 0.5 +0.6562 0.09375 0.5312 +0.6562 0.09375 0.5625 +0.6562 0.09375 0.5938 +0.6562 0.09375 0.625 +0.6562 0.09375 0.6562 +0.6562 0.09375 0.6875 +0.6562 0.09375 0.7188 +0.6562 0.09375 0.75 +0.6562 0.09375 0.7812 +0.6562 0.09375 0.8125 +0.6562 0.09375 0.8438 +0.6562 0.09375 0.875 +0.6562 0.09375 0.9062 +0.6562 0.09375 0.9375 +0.6562 0.09375 0.9688 +0.6562 0.09375 1 +0.6562 0.125 0 +0.6562 0.125 0.03125 +0.6562 0.125 0.0625 +0.6562 0.125 0.09375 +0.6562 0.125 0.125 +0.6562 0.125 0.1562 +0.6562 0.125 0.1875 +0.6562 0.125 0.2188 +0.6562 0.125 0.25 +0.6562 0.125 0.2812 +0.6562 0.125 0.3125 +0.6562 0.125 0.3438 +0.6562 0.125 0.375 +0.6562 0.125 0.4062 +0.6562 0.125 0.4375 +0.6562 0.125 0.4688 +0.6562 0.125 0.5 +0.6562 0.125 0.5312 +0.6562 0.125 0.5625 +0.6562 0.125 0.5938 +0.6562 0.125 0.625 +0.6562 0.125 0.6562 +0.6562 0.125 0.6875 +0.6562 0.125 0.7188 +0.6562 0.125 0.75 +0.6562 0.125 0.7812 +0.6562 0.125 0.8125 +0.6562 0.125 0.8438 +0.6562 0.125 0.875 +0.6562 0.125 0.9062 +0.6562 0.125 0.9375 +0.6562 0.125 0.9688 +0.6562 0.125 1 +0.6562 0.1562 0 +0.6562 0.1562 0.03125 +0.6562 0.1562 0.0625 +0.6562 0.1562 0.09375 +0.6562 0.1562 0.125 +0.6562 0.1562 0.1562 +0.6562 0.1562 0.1875 +0.6562 0.1562 0.2188 +0.6562 0.1562 0.25 +0.6562 0.1562 0.2812 +0.6562 0.1562 0.3125 +0.6562 0.1562 0.3438 +0.6562 0.1562 0.375 +0.6562 0.1562 0.4062 +0.6562 0.1562 0.4375 +0.6562 0.1562 0.4688 +0.6562 0.1562 0.5 +0.6562 0.1562 0.5312 +0.6562 0.1562 0.5625 +0.6562 0.1562 0.5938 +0.6562 0.1562 0.625 +0.6562 0.1562 0.6562 +0.6562 0.1562 0.6875 +0.6562 0.1562 0.7188 +0.6562 0.1562 0.75 +0.6562 0.1562 0.7812 +0.6562 0.1562 0.8125 +0.6562 0.1562 0.8438 +0.6562 0.1562 0.875 +0.6562 0.1562 0.9062 +0.6562 0.1562 0.9375 +0.6562 0.1562 0.9688 +0.6562 0.1562 1 +0.6562 0.1875 0 +0.6562 0.1875 0.03125 +0.6562 0.1875 0.0625 +0.6562 0.1875 0.09375 +0.6562 0.1875 0.125 +0.6562 0.1875 0.1562 +0.6562 0.1875 0.1875 +0.6562 0.1875 0.2188 +0.6562 0.1875 0.25 +0.6562 0.1875 0.2812 +0.6562 0.1875 0.3125 +0.6562 0.1875 0.3438 +0.6562 0.1875 0.375 +0.6562 0.1875 0.4062 +0.6562 0.1875 0.4375 +0.6562 0.1875 0.4688 +0.6562 0.1875 0.5 +0.6562 0.1875 0.5312 +0.6562 0.1875 0.5625 +0.6562 0.1875 0.5938 +0.6562 0.1875 0.625 +0.6562 0.1875 0.6562 +0.6562 0.1875 0.6875 +0.6562 0.1875 0.7188 +0.6562 0.1875 0.75 +0.6562 0.1875 0.7812 +0.6562 0.1875 0.8125 +0.6562 0.1875 0.8438 +0.6562 0.1875 0.875 +0.6562 0.1875 0.9062 +0.6562 0.1875 0.9375 +0.6562 0.1875 0.9688 +0.6562 0.1875 1 +0.6562 0.2188 0 +0.6562 0.2188 0.03125 +0.6562 0.2188 0.0625 +0.6562 0.2188 0.09375 +0.6562 0.2188 0.125 +0.6562 0.2188 0.1562 +0.6562 0.2188 0.1875 +0.6562 0.2188 0.2188 +0.6562 0.2188 0.25 +0.6562 0.2188 0.2812 +0.6562 0.2188 0.3125 +0.6562 0.2188 0.3438 +0.6562 0.2188 0.375 +0.6562 0.2188 0.4062 +0.6562 0.2188 0.4375 +0.6562 0.2188 0.4688 +0.6562 0.2188 0.5 +0.6562 0.2188 0.5312 +0.6562 0.2188 0.5625 +0.6562 0.2188 0.5938 +0.6562 0.2188 0.625 +0.6562 0.2188 0.6562 +0.6562 0.2188 0.6875 +0.6562 0.2188 0.7188 +0.6562 0.2188 0.75 +0.6562 0.2188 0.7812 +0.6562 0.2188 0.8125 +0.6562 0.2188 0.8438 +0.6562 0.2188 0.875 +0.6562 0.2188 0.9062 +0.6562 0.2188 0.9375 +0.6562 0.2188 0.9688 +0.6562 0.2188 1 +0.6562 0.25 0 +0.6562 0.25 0.03125 +0.6562 0.25 0.0625 +0.6562 0.25 0.09375 +0.6562 0.25 0.125 +0.6562 0.25 0.1562 +0.6562 0.25 0.1875 +0.6562 0.25 0.2188 +0.6562 0.25 0.25 +0.6562 0.25 0.2812 +0.6562 0.25 0.3125 +0.6562 0.25 0.3438 +0.6562 0.25 0.375 +0.6562 0.25 0.4062 +0.6562 0.25 0.4375 +0.6562 0.25 0.4688 +0.6562 0.25 0.5 +0.6562 0.25 0.5312 +0.6562 0.25 0.5625 +0.6562 0.25 0.5938 +0.6562 0.25 0.625 +0.6562 0.25 0.6562 +0.6562 0.25 0.6875 +0.6562 0.25 0.7188 +0.6562 0.25 0.75 +0.6562 0.25 0.7812 +0.6562 0.25 0.8125 +0.6562 0.25 0.8438 +0.6562 0.25 0.875 +0.6562 0.25 0.9062 +0.6562 0.25 0.9375 +0.6562 0.25 0.9688 +0.6562 0.25 1 +0.6562 0.2812 0 +0.6562 0.2812 0.03125 +0.6562 0.2812 0.0625 +0.6562 0.2812 0.09375 +0.6562 0.2812 0.125 +0.6562 0.2812 0.1562 +0.6562 0.2812 0.1875 +0.6562 0.2812 0.2188 +0.6562 0.2812 0.25 +0.6562 0.2812 0.2812 +0.6562 0.2812 0.3125 +0.6562 0.2812 0.3438 +0.6562 0.2812 0.375 +0.6562 0.2812 0.4062 +0.6562 0.2812 0.4375 +0.6562 0.2812 0.4688 +0.6562 0.2812 0.5 +0.6562 0.2812 0.5312 +0.6562 0.2812 0.5625 +0.6562 0.2812 0.5938 +0.6562 0.2812 0.625 +0.6562 0.2812 0.6562 +0.6562 0.2812 0.6875 +0.6562 0.2812 0.7188 +0.6562 0.2812 0.75 +0.6562 0.2812 0.7812 +0.6562 0.2812 0.8125 +0.6562 0.2812 0.8438 +0.6562 0.2812 0.875 +0.6562 0.2812 0.9062 +0.6562 0.2812 0.9375 +0.6562 0.2812 0.9688 +0.6562 0.2812 1 +0.6562 0.3125 0 +0.6562 0.3125 0.03125 +0.6562 0.3125 0.0625 +0.6562 0.3125 0.09375 +0.6562 0.3125 0.125 +0.6562 0.3125 0.1562 +0.6562 0.3125 0.1875 +0.6562 0.3125 0.2188 +0.6562 0.3125 0.25 +0.6562 0.3125 0.2812 +0.6562 0.3125 0.3125 +0.6562 0.3125 0.3438 +0.6562 0.3125 0.375 +0.6562 0.3125 0.4062 +0.6562 0.3125 0.4375 +0.6562 0.3125 0.4688 +0.6562 0.3125 0.5 +0.6562 0.3125 0.5312 +0.6562 0.3125 0.5625 +0.6562 0.3125 0.5938 +0.6562 0.3125 0.625 +0.6562 0.3125 0.6562 +0.6562 0.3125 0.6875 +0.6562 0.3125 0.7188 +0.6562 0.3125 0.75 +0.6562 0.3125 0.7812 +0.6562 0.3125 0.8125 +0.6562 0.3125 0.8438 +0.6562 0.3125 0.875 +0.6562 0.3125 0.9062 +0.6562 0.3125 0.9375 +0.6562 0.3125 0.9688 +0.6562 0.3125 1 +0.6562 0.3438 0 +0.6562 0.3438 0.03125 +0.6562 0.3438 0.0625 +0.6562 0.3438 0.09375 +0.6562 0.3438 0.125 +0.6562 0.3438 0.1562 +0.6562 0.3438 0.1875 +0.6562 0.3438 0.2188 +0.6562 0.3438 0.25 +0.6562 0.3438 0.2812 +0.6562 0.3438 0.3125 +0.6562 0.3438 0.3438 +0.6562 0.3438 0.375 +0.6562 0.3438 0.4062 +0.6562 0.3438 0.4375 +0.6562 0.3438 0.4688 +0.6562 0.3438 0.5 +0.6562 0.3438 0.5312 +0.6562 0.3438 0.5625 +0.6562 0.3438 0.5938 +0.6562 0.3438 0.625 +0.6562 0.3438 0.6562 +0.6562 0.3438 0.6875 +0.6562 0.3438 0.7188 +0.6562 0.3438 0.75 +0.6562 0.3438 0.7812 +0.6562 0.3438 0.8125 +0.6562 0.3438 0.8438 +0.6562 0.3438 0.875 +0.6562 0.3438 0.9062 +0.6562 0.3438 0.9375 +0.6562 0.3438 0.9688 +0.6562 0.3438 1 +0.6562 0.375 0 +0.6562 0.375 0.03125 +0.6562 0.375 0.0625 +0.6562 0.375 0.09375 +0.6562 0.375 0.125 +0.6562 0.375 0.1562 +0.6562 0.375 0.1875 +0.6562 0.375 0.2188 +0.6562 0.375 0.25 +0.6562 0.375 0.2812 +0.6562 0.375 0.3125 +0.6562 0.375 0.3438 +0.6562 0.375 0.375 +0.6562 0.375 0.4062 +0.6562 0.375 0.4375 +0.6562 0.375 0.4688 +0.6562 0.375 0.5 +0.6562 0.375 0.5312 +0.6562 0.375 0.5625 +0.6562 0.375 0.5938 +0.6562 0.375 0.625 +0.6562 0.375 0.6562 +0.6562 0.375 0.6875 +0.6562 0.375 0.7188 +0.6562 0.375 0.75 +0.6562 0.375 0.7812 +0.6562 0.375 0.8125 +0.6562 0.375 0.8438 +0.6562 0.375 0.875 +0.6562 0.375 0.9062 +0.6562 0.375 0.9375 +0.6562 0.375 0.9688 +0.6562 0.375 1 +0.6562 0.4062 0 +0.6562 0.4062 0.03125 +0.6562 0.4062 0.0625 +0.6562 0.4062 0.09375 +0.6562 0.4062 0.125 +0.6562 0.4062 0.1562 +0.6562 0.4062 0.1875 +0.6562 0.4062 0.2188 +0.6562 0.4062 0.25 +0.6562 0.4062 0.2812 +0.6562 0.4062 0.3125 +0.6562 0.4062 0.3438 +0.6562 0.4062 0.375 +0.6562 0.4062 0.4062 +0.6562 0.4062 0.4375 +0.6562 0.4062 0.4688 +0.6562 0.4062 0.5 +0.6562 0.4062 0.5312 +0.6562 0.4062 0.5625 +0.6562 0.4062 0.5938 +0.6562 0.4062 0.625 +0.6562 0.4062 0.6562 +0.6562 0.4062 0.6875 +0.6562 0.4062 0.7188 +0.6562 0.4062 0.75 +0.6562 0.4062 0.7812 +0.6562 0.4062 0.8125 +0.6562 0.4062 0.8438 +0.6562 0.4062 0.875 +0.6562 0.4062 0.9062 +0.6562 0.4062 0.9375 +0.6562 0.4062 0.9688 +0.6562 0.4062 1 +0.6562 0.4375 0 +0.6562 0.4375 0.03125 +0.6562 0.4375 0.0625 +0.6562 0.4375 0.09375 +0.6562 0.4375 0.125 +0.6562 0.4375 0.1562 +0.6562 0.4375 0.1875 +0.6562 0.4375 0.2188 +0.6562 0.4375 0.25 +0.6562 0.4375 0.2812 +0.6562 0.4375 0.3125 +0.6562 0.4375 0.3438 +0.6562 0.4375 0.375 +0.6562 0.4375 0.4062 +0.6562 0.4375 0.4375 +0.6562 0.4375 0.4688 +0.6562 0.4375 0.5 +0.6562 0.4375 0.5312 +0.6562 0.4375 0.5625 +0.6562 0.4375 0.5938 +0.6562 0.4375 0.625 +0.6562 0.4375 0.6562 +0.6562 0.4375 0.6875 +0.6562 0.4375 0.7188 +0.6562 0.4375 0.75 +0.6562 0.4375 0.7812 +0.6562 0.4375 0.8125 +0.6562 0.4375 0.8438 +0.6562 0.4375 0.875 +0.6562 0.4375 0.9062 +0.6562 0.4375 0.9375 +0.6562 0.4375 0.9688 +0.6562 0.4375 1 +0.6562 0.4688 0 +0.6562 0.4688 0.03125 +0.6562 0.4688 0.0625 +0.6562 0.4688 0.09375 +0.6562 0.4688 0.125 +0.6562 0.4688 0.1562 +0.6562 0.4688 0.1875 +0.6562 0.4688 0.2188 +0.6562 0.4688 0.25 +0.6562 0.4688 0.2812 +0.6562 0.4688 0.3125 +0.6562 0.4688 0.3438 +0.6562 0.4688 0.375 +0.6562 0.4688 0.4062 +0.6562 0.4688 0.4375 +0.6562 0.4688 0.4688 +0.6562 0.4688 0.5 +0.6562 0.4688 0.5312 +0.6562 0.4688 0.5625 +0.6562 0.4688 0.5938 +0.6562 0.4688 0.625 +0.6562 0.4688 0.6562 +0.6562 0.4688 0.6875 +0.6562 0.4688 0.7188 +0.6562 0.4688 0.75 +0.6562 0.4688 0.7812 +0.6562 0.4688 0.8125 +0.6562 0.4688 0.8438 +0.6562 0.4688 0.875 +0.6562 0.4688 0.9062 +0.6562 0.4688 0.9375 +0.6562 0.4688 0.9688 +0.6562 0.4688 1 +0.6562 0.5 0 +0.6562 0.5 0.03125 +0.6562 0.5 0.0625 +0.6562 0.5 0.09375 +0.6562 0.5 0.125 +0.6562 0.5 0.1562 +0.6562 0.5 0.1875 +0.6562 0.5 0.2188 +0.6562 0.5 0.25 +0.6562 0.5 0.2812 +0.6562 0.5 0.3125 +0.6562 0.5 0.3438 +0.6562 0.5 0.375 +0.6562 0.5 0.4062 +0.6562 0.5 0.4375 +0.6562 0.5 0.4688 +0.6562 0.5 0.5 +0.6562 0.5 0.5312 +0.6562 0.5 0.5625 +0.6562 0.5 0.5938 +0.6562 0.5 0.625 +0.6562 0.5 0.6562 +0.6562 0.5 0.6875 +0.6562 0.5 0.7188 +0.6562 0.5 0.75 +0.6562 0.5 0.7812 +0.6562 0.5 0.8125 +0.6562 0.5 0.8438 +0.6562 0.5 0.875 +0.6562 0.5 0.9062 +0.6562 0.5 0.9375 +0.6562 0.5 0.9688 +0.6562 0.5 1 +0.6562 0.5312 0 +0.6562 0.5312 0.03125 +0.6562 0.5312 0.0625 +0.6562 0.5312 0.09375 +0.6562 0.5312 0.125 +0.6562 0.5312 0.1562 +0.6562 0.5312 0.1875 +0.6562 0.5312 0.2188 +0.6562 0.5312 0.25 +0.6562 0.5312 0.2812 +0.6562 0.5312 0.3125 +0.6562 0.5312 0.3438 +0.6562 0.5312 0.375 +0.6562 0.5312 0.4062 +0.6562 0.5312 0.4375 +0.6562 0.5312 0.4688 +0.6562 0.5312 0.5 +0.6562 0.5312 0.5312 +0.6562 0.5312 0.5625 +0.6562 0.5312 0.5938 +0.6562 0.5312 0.625 +0.6562 0.5312 0.6562 +0.6562 0.5312 0.6875 +0.6562 0.5312 0.7188 +0.6562 0.5312 0.75 +0.6562 0.5312 0.7812 +0.6562 0.5312 0.8125 +0.6562 0.5312 0.8438 +0.6562 0.5312 0.875 +0.6562 0.5312 0.9062 +0.6562 0.5312 0.9375 +0.6562 0.5312 0.9688 +0.6562 0.5312 1 +0.6562 0.5625 0 +0.6562 0.5625 0.03125 +0.6562 0.5625 0.0625 +0.6562 0.5625 0.09375 +0.6562 0.5625 0.125 +0.6562 0.5625 0.1562 +0.6562 0.5625 0.1875 +0.6562 0.5625 0.2188 +0.6562 0.5625 0.25 +0.6562 0.5625 0.2812 +0.6562 0.5625 0.3125 +0.6562 0.5625 0.3438 +0.6562 0.5625 0.375 +0.6562 0.5625 0.4062 +0.6562 0.5625 0.4375 +0.6562 0.5625 0.4688 +0.6562 0.5625 0.5 +0.6562 0.5625 0.5312 +0.6562 0.5625 0.5625 +0.6562 0.5625 0.5938 +0.6562 0.5625 0.625 +0.6562 0.5625 0.6562 +0.6562 0.5625 0.6875 +0.6562 0.5625 0.7188 +0.6562 0.5625 0.75 +0.6562 0.5625 0.7812 +0.6562 0.5625 0.8125 +0.6562 0.5625 0.8438 +0.6562 0.5625 0.875 +0.6562 0.5625 0.9062 +0.6562 0.5625 0.9375 +0.6562 0.5625 0.9688 +0.6562 0.5625 1 +0.6562 0.5938 0 +0.6562 0.5938 0.03125 +0.6562 0.5938 0.0625 +0.6562 0.5938 0.09375 +0.6562 0.5938 0.125 +0.6562 0.5938 0.1562 +0.6562 0.5938 0.1875 +0.6562 0.5938 0.2188 +0.6562 0.5938 0.25 +0.6562 0.5938 0.2812 +0.6562 0.5938 0.3125 +0.6562 0.5938 0.3438 +0.6562 0.5938 0.375 +0.6562 0.5938 0.4062 +0.6562 0.5938 0.4375 +0.6562 0.5938 0.4688 +0.6562 0.5938 0.5 +0.6562 0.5938 0.5312 +0.6562 0.5938 0.5625 +0.6562 0.5938 0.5938 +0.6562 0.5938 0.625 +0.6562 0.5938 0.6562 +0.6562 0.5938 0.6875 +0.6562 0.5938 0.7188 +0.6562 0.5938 0.75 +0.6562 0.5938 0.7812 +0.6562 0.5938 0.8125 +0.6562 0.5938 0.8438 +0.6562 0.5938 0.875 +0.6562 0.5938 0.9062 +0.6562 0.5938 0.9375 +0.6562 0.5938 0.9688 +0.6562 0.5938 1 +0.6562 0.625 0 +0.6562 0.625 0.03125 +0.6562 0.625 0.0625 +0.6562 0.625 0.09375 +0.6562 0.625 0.125 +0.6562 0.625 0.1562 +0.6562 0.625 0.1875 +0.6562 0.625 0.2188 +0.6562 0.625 0.25 +0.6562 0.625 0.2812 +0.6562 0.625 0.3125 +0.6562 0.625 0.3438 +0.6562 0.625 0.375 +0.6562 0.625 0.4062 +0.6562 0.625 0.4375 +0.6562 0.625 0.4688 +0.6562 0.625 0.5 +0.6562 0.625 0.5312 +0.6562 0.625 0.5625 +0.6562 0.625 0.5938 +0.6562 0.625 0.625 +0.6562 0.625 0.6562 +0.6562 0.625 0.6875 +0.6562 0.625 0.7188 +0.6562 0.625 0.75 +0.6562 0.625 0.7812 +0.6562 0.625 0.8125 +0.6562 0.625 0.8438 +0.6562 0.625 0.875 +0.6562 0.625 0.9062 +0.6562 0.625 0.9375 +0.6562 0.625 0.9688 +0.6562 0.625 1 +0.6562 0.6562 0 +0.6562 0.6562 0.03125 +0.6562 0.6562 0.0625 +0.6562 0.6562 0.09375 +0.6562 0.6562 0.125 +0.6562 0.6562 0.1562 +0.6562 0.6562 0.1875 +0.6562 0.6562 0.2188 +0.6562 0.6562 0.25 +0.6562 0.6562 0.2812 +0.6562 0.6562 0.3125 +0.6562 0.6562 0.3438 +0.6562 0.6562 0.375 +0.6562 0.6562 0.4062 +0.6562 0.6562 0.4375 +0.6562 0.6562 0.4688 +0.6562 0.6562 0.5 +0.6562 0.6562 0.5312 +0.6562 0.6562 0.5625 +0.6562 0.6562 0.5938 +0.6562 0.6562 0.625 +0.6562 0.6562 0.6562 +0.6562 0.6562 0.6875 +0.6562 0.6562 0.7188 +0.6562 0.6562 0.75 +0.6562 0.6562 0.7812 +0.6562 0.6562 0.8125 +0.6562 0.6562 0.8438 +0.6562 0.6562 0.875 +0.6562 0.6562 0.9062 +0.6562 0.6562 0.9375 +0.6562 0.6562 0.9688 +0.6562 0.6562 1 +0.6562 0.6875 0 +0.6562 0.6875 0.03125 +0.6562 0.6875 0.0625 +0.6562 0.6875 0.09375 +0.6562 0.6875 0.125 +0.6562 0.6875 0.1562 +0.6562 0.6875 0.1875 +0.6562 0.6875 0.2188 +0.6562 0.6875 0.25 +0.6562 0.6875 0.2812 +0.6562 0.6875 0.3125 +0.6562 0.6875 0.3438 +0.6562 0.6875 0.375 +0.6562 0.6875 0.4062 +0.6562 0.6875 0.4375 +0.6562 0.6875 0.4688 +0.6562 0.6875 0.5 +0.6562 0.6875 0.5312 +0.6562 0.6875 0.5625 +0.6562 0.6875 0.5938 +0.6562 0.6875 0.625 +0.6562 0.6875 0.6562 +0.6562 0.6875 0.6875 +0.6562 0.6875 0.7188 +0.6562 0.6875 0.75 +0.6562 0.6875 0.7812 +0.6562 0.6875 0.8125 +0.6562 0.6875 0.8438 +0.6562 0.6875 0.875 +0.6562 0.6875 0.9062 +0.6562 0.6875 0.9375 +0.6562 0.6875 0.9688 +0.6562 0.6875 1 +0.6562 0.7188 0 +0.6562 0.7188 0.03125 +0.6562 0.7188 0.0625 +0.6562 0.7188 0.09375 +0.6562 0.7188 0.125 +0.6562 0.7188 0.1562 +0.6562 0.7188 0.1875 +0.6562 0.7188 0.2188 +0.6562 0.7188 0.25 +0.6562 0.7188 0.2812 +0.6562 0.7188 0.3125 +0.6562 0.7188 0.3438 +0.6562 0.7188 0.375 +0.6562 0.7188 0.4062 +0.6562 0.7188 0.4375 +0.6562 0.7188 0.4688 +0.6562 0.7188 0.5 +0.6562 0.7188 0.5312 +0.6562 0.7188 0.5625 +0.6562 0.7188 0.5938 +0.6562 0.7188 0.625 +0.6562 0.7188 0.6562 +0.6562 0.7188 0.6875 +0.6562 0.7188 0.7188 +0.6562 0.7188 0.75 +0.6562 0.7188 0.7812 +0.6562 0.7188 0.8125 +0.6562 0.7188 0.8438 +0.6562 0.7188 0.875 +0.6562 0.7188 0.9062 +0.6562 0.7188 0.9375 +0.6562 0.7188 0.9688 +0.6562 0.7188 1 +0.6562 0.75 0 +0.6562 0.75 0.03125 +0.6562 0.75 0.0625 +0.6562 0.75 0.09375 +0.6562 0.75 0.125 +0.6562 0.75 0.1562 +0.6562 0.75 0.1875 +0.6562 0.75 0.2188 +0.6562 0.75 0.25 +0.6562 0.75 0.2812 +0.6562 0.75 0.3125 +0.6562 0.75 0.3438 +0.6562 0.75 0.375 +0.6562 0.75 0.4062 +0.6562 0.75 0.4375 +0.6562 0.75 0.4688 +0.6562 0.75 0.5 +0.6562 0.75 0.5312 +0.6562 0.75 0.5625 +0.6562 0.75 0.5938 +0.6562 0.75 0.625 +0.6562 0.75 0.6562 +0.6562 0.75 0.6875 +0.6562 0.75 0.7188 +0.6562 0.75 0.75 +0.6562 0.75 0.7812 +0.6562 0.75 0.8125 +0.6562 0.75 0.8438 +0.6562 0.75 0.875 +0.6562 0.75 0.9062 +0.6562 0.75 0.9375 +0.6562 0.75 0.9688 +0.6562 0.75 1 +0.6562 0.7812 0 +0.6562 0.7812 0.03125 +0.6562 0.7812 0.0625 +0.6562 0.7812 0.09375 +0.6562 0.7812 0.125 +0.6562 0.7812 0.1562 +0.6562 0.7812 0.1875 +0.6562 0.7812 0.2188 +0.6562 0.7812 0.25 +0.6562 0.7812 0.2812 +0.6562 0.7812 0.3125 +0.6562 0.7812 0.3438 +0.6562 0.7812 0.375 +0.6562 0.7812 0.4062 +0.6562 0.7812 0.4375 +0.6562 0.7812 0.4688 +0.6562 0.7812 0.5 +0.6562 0.7812 0.5312 +0.6562 0.7812 0.5625 +0.6562 0.7812 0.5938 +0.6562 0.7812 0.625 +0.6562 0.7812 0.6562 +0.6562 0.7812 0.6875 +0.6562 0.7812 0.7188 +0.6562 0.7812 0.75 +0.6562 0.7812 0.7812 +0.6562 0.7812 0.8125 +0.6562 0.7812 0.8438 +0.6562 0.7812 0.875 +0.6562 0.7812 0.9062 +0.6562 0.7812 0.9375 +0.6562 0.7812 0.9688 +0.6562 0.7812 1 +0.6562 0.8125 0 +0.6562 0.8125 0.03125 +0.6562 0.8125 0.0625 +0.6562 0.8125 0.09375 +0.6562 0.8125 0.125 +0.6562 0.8125 0.1562 +0.6562 0.8125 0.1875 +0.6562 0.8125 0.2188 +0.6562 0.8125 0.25 +0.6562 0.8125 0.2812 +0.6562 0.8125 0.3125 +0.6562 0.8125 0.3438 +0.6562 0.8125 0.375 +0.6562 0.8125 0.4062 +0.6562 0.8125 0.4375 +0.6562 0.8125 0.4688 +0.6562 0.8125 0.5 +0.6562 0.8125 0.5312 +0.6562 0.8125 0.5625 +0.6562 0.8125 0.5938 +0.6562 0.8125 0.625 +0.6562 0.8125 0.6562 +0.6562 0.8125 0.6875 +0.6562 0.8125 0.7188 +0.6562 0.8125 0.75 +0.6562 0.8125 0.7812 +0.6562 0.8125 0.8125 +0.6562 0.8125 0.8438 +0.6562 0.8125 0.875 +0.6562 0.8125 0.9062 +0.6562 0.8125 0.9375 +0.6562 0.8125 0.9688 +0.6562 0.8125 1 +0.6562 0.8438 0 +0.6562 0.8438 0.03125 +0.6562 0.8438 0.0625 +0.6562 0.8438 0.09375 +0.6562 0.8438 0.125 +0.6562 0.8438 0.1562 +0.6562 0.8438 0.1875 +0.6562 0.8438 0.2188 +0.6562 0.8438 0.25 +0.6562 0.8438 0.2812 +0.6562 0.8438 0.3125 +0.6562 0.8438 0.3438 +0.6562 0.8438 0.375 +0.6562 0.8438 0.4062 +0.6562 0.8438 0.4375 +0.6562 0.8438 0.4688 +0.6562 0.8438 0.5 +0.6562 0.8438 0.5312 +0.6562 0.8438 0.5625 +0.6562 0.8438 0.5938 +0.6562 0.8438 0.625 +0.6562 0.8438 0.6562 +0.6562 0.8438 0.6875 +0.6562 0.8438 0.7188 +0.6562 0.8438 0.75 +0.6562 0.8438 0.7812 +0.6562 0.8438 0.8125 +0.6562 0.8438 0.8438 +0.6562 0.8438 0.875 +0.6562 0.8438 0.9062 +0.6562 0.8438 0.9375 +0.6562 0.8438 0.9688 +0.6562 0.8438 1 +0.6562 0.875 0 +0.6562 0.875 0.03125 +0.6562 0.875 0.0625 +0.6562 0.875 0.09375 +0.6562 0.875 0.125 +0.6562 0.875 0.1562 +0.6562 0.875 0.1875 +0.6562 0.875 0.2188 +0.6562 0.875 0.25 +0.6562 0.875 0.2812 +0.6562 0.875 0.3125 +0.6562 0.875 0.3438 +0.6562 0.875 0.375 +0.6562 0.875 0.4062 +0.6562 0.875 0.4375 +0.6562 0.875 0.4688 +0.6562 0.875 0.5 +0.6562 0.875 0.5312 +0.6562 0.875 0.5625 +0.6562 0.875 0.5938 +0.6562 0.875 0.625 +0.6562 0.875 0.6562 +0.6562 0.875 0.6875 +0.6562 0.875 0.7188 +0.6562 0.875 0.75 +0.6562 0.875 0.7812 +0.6562 0.875 0.8125 +0.6562 0.875 0.8438 +0.6562 0.875 0.875 +0.6562 0.875 0.9062 +0.6562 0.875 0.9375 +0.6562 0.875 0.9688 +0.6562 0.875 1 +0.6562 0.9062 0 +0.6562 0.9062 0.03125 +0.6562 0.9062 0.0625 +0.6562 0.9062 0.09375 +0.6562 0.9062 0.125 +0.6562 0.9062 0.1562 +0.6562 0.9062 0.1875 +0.6562 0.9062 0.2188 +0.6562 0.9062 0.25 +0.6562 0.9062 0.2812 +0.6562 0.9062 0.3125 +0.6562 0.9062 0.3438 +0.6562 0.9062 0.375 +0.6562 0.9062 0.4062 +0.6562 0.9062 0.4375 +0.6562 0.9062 0.4688 +0.6562 0.9062 0.5 +0.6562 0.9062 0.5312 +0.6562 0.9062 0.5625 +0.6562 0.9062 0.5938 +0.6562 0.9062 0.625 +0.6562 0.9062 0.6562 +0.6562 0.9062 0.6875 +0.6562 0.9062 0.7188 +0.6562 0.9062 0.75 +0.6562 0.9062 0.7812 +0.6562 0.9062 0.8125 +0.6562 0.9062 0.8438 +0.6562 0.9062 0.875 +0.6562 0.9062 0.9062 +0.6562 0.9062 0.9375 +0.6562 0.9062 0.9688 +0.6562 0.9062 1 +0.6562 0.9375 0 +0.6562 0.9375 0.03125 +0.6562 0.9375 0.0625 +0.6562 0.9375 0.09375 +0.6562 0.9375 0.125 +0.6562 0.9375 0.1562 +0.6562 0.9375 0.1875 +0.6562 0.9375 0.2188 +0.6562 0.9375 0.25 +0.6562 0.9375 0.2812 +0.6562 0.9375 0.3125 +0.6562 0.9375 0.3438 +0.6562 0.9375 0.375 +0.6562 0.9375 0.4062 +0.6562 0.9375 0.4375 +0.6562 0.9375 0.4688 +0.6562 0.9375 0.5 +0.6562 0.9375 0.5312 +0.6562 0.9375 0.5625 +0.6562 0.9375 0.5938 +0.6562 0.9375 0.625 +0.6562 0.9375 0.6562 +0.6562 0.9375 0.6875 +0.6562 0.9375 0.7188 +0.6562 0.9375 0.75 +0.6562 0.9375 0.7812 +0.6562 0.9375 0.8125 +0.6562 0.9375 0.8438 +0.6562 0.9375 0.875 +0.6562 0.9375 0.9062 +0.6562 0.9375 0.9375 +0.6562 0.9375 0.9688 +0.6562 0.9375 1 +0.6562 0.9688 0 +0.6562 0.9688 0.03125 +0.6562 0.9688 0.0625 +0.6562 0.9688 0.09375 +0.6562 0.9688 0.125 +0.6562 0.9688 0.1562 +0.6562 0.9688 0.1875 +0.6562 0.9688 0.2188 +0.6562 0.9688 0.25 +0.6562 0.9688 0.2812 +0.6562 0.9688 0.3125 +0.6562 0.9688 0.3438 +0.6562 0.9688 0.375 +0.6562 0.9688 0.4062 +0.6562 0.9688 0.4375 +0.6562 0.9688 0.4688 +0.6562 0.9688 0.5 +0.6562 0.9688 0.5312 +0.6562 0.9688 0.5625 +0.6562 0.9688 0.5938 +0.6562 0.9688 0.625 +0.6562 0.9688 0.6562 +0.6562 0.9688 0.6875 +0.6562 0.9688 0.7188 +0.6562 0.9688 0.75 +0.6562 0.9688 0.7812 +0.6562 0.9688 0.8125 +0.6562 0.9688 0.8438 +0.6562 0.9688 0.875 +0.6562 0.9688 0.9062 +0.6562 0.9688 0.9375 +0.6562 0.9688 0.9688 +0.6562 0.9688 1 +0.6562 1 0 +0.6562 1 0.03125 +0.6562 1 0.0625 +0.6562 1 0.09375 +0.6562 1 0.125 +0.6562 1 0.1562 +0.6562 1 0.1875 +0.6562 1 0.2188 +0.6562 1 0.25 +0.6562 1 0.2812 +0.6562 1 0.3125 +0.6562 1 0.3438 +0.6562 1 0.375 +0.6562 1 0.4062 +0.6562 1 0.4375 +0.6562 1 0.4688 +0.6562 1 0.5 +0.6562 1 0.5312 +0.6562 1 0.5625 +0.6562 1 0.5938 +0.6562 1 0.625 +0.6562 1 0.6562 +0.6562 1 0.6875 +0.6562 1 0.7188 +0.6562 1 0.75 +0.6562 1 0.7812 +0.6562 1 0.8125 +0.6562 1 0.8438 +0.6562 1 0.875 +0.6562 1 0.9062 +0.6562 1 0.9375 +0.6562 1 0.9688 +0.6562 1 1 +0.6875 0 0 +0.6875 0 0.03125 +0.6875 0 0.0625 +0.6875 0 0.09375 +0.6875 0 0.125 +0.6875 0 0.1562 +0.6875 0 0.1875 +0.6875 0 0.2188 +0.6875 0 0.25 +0.6875 0 0.2812 +0.6875 0 0.3125 +0.6875 0 0.3438 +0.6875 0 0.375 +0.6875 0 0.4062 +0.6875 0 0.4375 +0.6875 0 0.4688 +0.6875 0 0.5 +0.6875 0 0.5312 +0.6875 0 0.5625 +0.6875 0 0.5938 +0.6875 0 0.625 +0.6875 0 0.6562 +0.6875 0 0.6875 +0.6875 0 0.7188 +0.6875 0 0.75 +0.6875 0 0.7812 +0.6875 0 0.8125 +0.6875 0 0.8438 +0.6875 0 0.875 +0.6875 0 0.9062 +0.6875 0 0.9375 +0.6875 0 0.9688 +0.6875 0 1 +0.6875 0.03125 0 +0.6875 0.03125 0.03125 +0.6875 0.03125 0.0625 +0.6875 0.03125 0.09375 +0.6875 0.03125 0.125 +0.6875 0.03125 0.1562 +0.6875 0.03125 0.1875 +0.6875 0.03125 0.2188 +0.6875 0.03125 0.25 +0.6875 0.03125 0.2812 +0.6875 0.03125 0.3125 +0.6875 0.03125 0.3438 +0.6875 0.03125 0.375 +0.6875 0.03125 0.4062 +0.6875 0.03125 0.4375 +0.6875 0.03125 0.4688 +0.6875 0.03125 0.5 +0.6875 0.03125 0.5312 +0.6875 0.03125 0.5625 +0.6875 0.03125 0.5938 +0.6875 0.03125 0.625 +0.6875 0.03125 0.6562 +0.6875 0.03125 0.6875 +0.6875 0.03125 0.7188 +0.6875 0.03125 0.75 +0.6875 0.03125 0.7812 +0.6875 0.03125 0.8125 +0.6875 0.03125 0.8438 +0.6875 0.03125 0.875 +0.6875 0.03125 0.9062 +0.6875 0.03125 0.9375 +0.6875 0.03125 0.9688 +0.6875 0.03125 1 +0.6875 0.0625 0 +0.6875 0.0625 0.03125 +0.6875 0.0625 0.0625 +0.6875 0.0625 0.09375 +0.6875 0.0625 0.125 +0.6875 0.0625 0.1562 +0.6875 0.0625 0.1875 +0.6875 0.0625 0.2188 +0.6875 0.0625 0.25 +0.6875 0.0625 0.2812 +0.6875 0.0625 0.3125 +0.6875 0.0625 0.3438 +0.6875 0.0625 0.375 +0.6875 0.0625 0.4062 +0.6875 0.0625 0.4375 +0.6875 0.0625 0.4688 +0.6875 0.0625 0.5 +0.6875 0.0625 0.5312 +0.6875 0.0625 0.5625 +0.6875 0.0625 0.5938 +0.6875 0.0625 0.625 +0.6875 0.0625 0.6562 +0.6875 0.0625 0.6875 +0.6875 0.0625 0.7188 +0.6875 0.0625 0.75 +0.6875 0.0625 0.7812 +0.6875 0.0625 0.8125 +0.6875 0.0625 0.8438 +0.6875 0.0625 0.875 +0.6875 0.0625 0.9062 +0.6875 0.0625 0.9375 +0.6875 0.0625 0.9688 +0.6875 0.0625 1 +0.6875 0.09375 0 +0.6875 0.09375 0.03125 +0.6875 0.09375 0.0625 +0.6875 0.09375 0.09375 +0.6875 0.09375 0.125 +0.6875 0.09375 0.1562 +0.6875 0.09375 0.1875 +0.6875 0.09375 0.2188 +0.6875 0.09375 0.25 +0.6875 0.09375 0.2812 +0.6875 0.09375 0.3125 +0.6875 0.09375 0.3438 +0.6875 0.09375 0.375 +0.6875 0.09375 0.4062 +0.6875 0.09375 0.4375 +0.6875 0.09375 0.4688 +0.6875 0.09375 0.5 +0.6875 0.09375 0.5312 +0.6875 0.09375 0.5625 +0.6875 0.09375 0.5938 +0.6875 0.09375 0.625 +0.6875 0.09375 0.6562 +0.6875 0.09375 0.6875 +0.6875 0.09375 0.7188 +0.6875 0.09375 0.75 +0.6875 0.09375 0.7812 +0.6875 0.09375 0.8125 +0.6875 0.09375 0.8438 +0.6875 0.09375 0.875 +0.6875 0.09375 0.9062 +0.6875 0.09375 0.9375 +0.6875 0.09375 0.9688 +0.6875 0.09375 1 +0.6875 0.125 0 +0.6875 0.125 0.03125 +0.6875 0.125 0.0625 +0.6875 0.125 0.09375 +0.6875 0.125 0.125 +0.6875 0.125 0.1562 +0.6875 0.125 0.1875 +0.6875 0.125 0.2188 +0.6875 0.125 0.25 +0.6875 0.125 0.2812 +0.6875 0.125 0.3125 +0.6875 0.125 0.3438 +0.6875 0.125 0.375 +0.6875 0.125 0.4062 +0.6875 0.125 0.4375 +0.6875 0.125 0.4688 +0.6875 0.125 0.5 +0.6875 0.125 0.5312 +0.6875 0.125 0.5625 +0.6875 0.125 0.5938 +0.6875 0.125 0.625 +0.6875 0.125 0.6562 +0.6875 0.125 0.6875 +0.6875 0.125 0.7188 +0.6875 0.125 0.75 +0.6875 0.125 0.7812 +0.6875 0.125 0.8125 +0.6875 0.125 0.8438 +0.6875 0.125 0.875 +0.6875 0.125 0.9062 +0.6875 0.125 0.9375 +0.6875 0.125 0.9688 +0.6875 0.125 1 +0.6875 0.1562 0 +0.6875 0.1562 0.03125 +0.6875 0.1562 0.0625 +0.6875 0.1562 0.09375 +0.6875 0.1562 0.125 +0.6875 0.1562 0.1562 +0.6875 0.1562 0.1875 +0.6875 0.1562 0.2188 +0.6875 0.1562 0.25 +0.6875 0.1562 0.2812 +0.6875 0.1562 0.3125 +0.6875 0.1562 0.3438 +0.6875 0.1562 0.375 +0.6875 0.1562 0.4062 +0.6875 0.1562 0.4375 +0.6875 0.1562 0.4688 +0.6875 0.1562 0.5 +0.6875 0.1562 0.5312 +0.6875 0.1562 0.5625 +0.6875 0.1562 0.5938 +0.6875 0.1562 0.625 +0.6875 0.1562 0.6562 +0.6875 0.1562 0.6875 +0.6875 0.1562 0.7188 +0.6875 0.1562 0.75 +0.6875 0.1562 0.7812 +0.6875 0.1562 0.8125 +0.6875 0.1562 0.8438 +0.6875 0.1562 0.875 +0.6875 0.1562 0.9062 +0.6875 0.1562 0.9375 +0.6875 0.1562 0.9688 +0.6875 0.1562 1 +0.6875 0.1875 0 +0.6875 0.1875 0.03125 +0.6875 0.1875 0.0625 +0.6875 0.1875 0.09375 +0.6875 0.1875 0.125 +0.6875 0.1875 0.1562 +0.6875 0.1875 0.1875 +0.6875 0.1875 0.2188 +0.6875 0.1875 0.25 +0.6875 0.1875 0.2812 +0.6875 0.1875 0.3125 +0.6875 0.1875 0.3438 +0.6875 0.1875 0.375 +0.6875 0.1875 0.4062 +0.6875 0.1875 0.4375 +0.6875 0.1875 0.4688 +0.6875 0.1875 0.5 +0.6875 0.1875 0.5312 +0.6875 0.1875 0.5625 +0.6875 0.1875 0.5938 +0.6875 0.1875 0.625 +0.6875 0.1875 0.6562 +0.6875 0.1875 0.6875 +0.6875 0.1875 0.7188 +0.6875 0.1875 0.75 +0.6875 0.1875 0.7812 +0.6875 0.1875 0.8125 +0.6875 0.1875 0.8438 +0.6875 0.1875 0.875 +0.6875 0.1875 0.9062 +0.6875 0.1875 0.9375 +0.6875 0.1875 0.9688 +0.6875 0.1875 1 +0.6875 0.2188 0 +0.6875 0.2188 0.03125 +0.6875 0.2188 0.0625 +0.6875 0.2188 0.09375 +0.6875 0.2188 0.125 +0.6875 0.2188 0.1562 +0.6875 0.2188 0.1875 +0.6875 0.2188 0.2188 +0.6875 0.2188 0.25 +0.6875 0.2188 0.2812 +0.6875 0.2188 0.3125 +0.6875 0.2188 0.3438 +0.6875 0.2188 0.375 +0.6875 0.2188 0.4062 +0.6875 0.2188 0.4375 +0.6875 0.2188 0.4688 +0.6875 0.2188 0.5 +0.6875 0.2188 0.5312 +0.6875 0.2188 0.5625 +0.6875 0.2188 0.5938 +0.6875 0.2188 0.625 +0.6875 0.2188 0.6562 +0.6875 0.2188 0.6875 +0.6875 0.2188 0.7188 +0.6875 0.2188 0.75 +0.6875 0.2188 0.7812 +0.6875 0.2188 0.8125 +0.6875 0.2188 0.8438 +0.6875 0.2188 0.875 +0.6875 0.2188 0.9062 +0.6875 0.2188 0.9375 +0.6875 0.2188 0.9688 +0.6875 0.2188 1 +0.6875 0.25 0 +0.6875 0.25 0.03125 +0.6875 0.25 0.0625 +0.6875 0.25 0.09375 +0.6875 0.25 0.125 +0.6875 0.25 0.1562 +0.6875 0.25 0.1875 +0.6875 0.25 0.2188 +0.6875 0.25 0.25 +0.6875 0.25 0.2812 +0.6875 0.25 0.3125 +0.6875 0.25 0.3438 +0.6875 0.25 0.375 +0.6875 0.25 0.4062 +0.6875 0.25 0.4375 +0.6875 0.25 0.4688 +0.6875 0.25 0.5 +0.6875 0.25 0.5312 +0.6875 0.25 0.5625 +0.6875 0.25 0.5938 +0.6875 0.25 0.625 +0.6875 0.25 0.6562 +0.6875 0.25 0.6875 +0.6875 0.25 0.7188 +0.6875 0.25 0.75 +0.6875 0.25 0.7812 +0.6875 0.25 0.8125 +0.6875 0.25 0.8438 +0.6875 0.25 0.875 +0.6875 0.25 0.9062 +0.6875 0.25 0.9375 +0.6875 0.25 0.9688 +0.6875 0.25 1 +0.6875 0.2812 0 +0.6875 0.2812 0.03125 +0.6875 0.2812 0.0625 +0.6875 0.2812 0.09375 +0.6875 0.2812 0.125 +0.6875 0.2812 0.1562 +0.6875 0.2812 0.1875 +0.6875 0.2812 0.2188 +0.6875 0.2812 0.25 +0.6875 0.2812 0.2812 +0.6875 0.2812 0.3125 +0.6875 0.2812 0.3438 +0.6875 0.2812 0.375 +0.6875 0.2812 0.4062 +0.6875 0.2812 0.4375 +0.6875 0.2812 0.4688 +0.6875 0.2812 0.5 +0.6875 0.2812 0.5312 +0.6875 0.2812 0.5625 +0.6875 0.2812 0.5938 +0.6875 0.2812 0.625 +0.6875 0.2812 0.6562 +0.6875 0.2812 0.6875 +0.6875 0.2812 0.7188 +0.6875 0.2812 0.75 +0.6875 0.2812 0.7812 +0.6875 0.2812 0.8125 +0.6875 0.2812 0.8438 +0.6875 0.2812 0.875 +0.6875 0.2812 0.9062 +0.6875 0.2812 0.9375 +0.6875 0.2812 0.9688 +0.6875 0.2812 1 +0.6875 0.3125 0 +0.6875 0.3125 0.03125 +0.6875 0.3125 0.0625 +0.6875 0.3125 0.09375 +0.6875 0.3125 0.125 +0.6875 0.3125 0.1562 +0.6875 0.3125 0.1875 +0.6875 0.3125 0.2188 +0.6875 0.3125 0.25 +0.6875 0.3125 0.2812 +0.6875 0.3125 0.3125 +0.6875 0.3125 0.3438 +0.6875 0.3125 0.375 +0.6875 0.3125 0.4062 +0.6875 0.3125 0.4375 +0.6875 0.3125 0.4688 +0.6875 0.3125 0.5 +0.6875 0.3125 0.5312 +0.6875 0.3125 0.5625 +0.6875 0.3125 0.5938 +0.6875 0.3125 0.625 +0.6875 0.3125 0.6562 +0.6875 0.3125 0.6875 +0.6875 0.3125 0.7188 +0.6875 0.3125 0.75 +0.6875 0.3125 0.7812 +0.6875 0.3125 0.8125 +0.6875 0.3125 0.8438 +0.6875 0.3125 0.875 +0.6875 0.3125 0.9062 +0.6875 0.3125 0.9375 +0.6875 0.3125 0.9688 +0.6875 0.3125 1 +0.6875 0.3438 0 +0.6875 0.3438 0.03125 +0.6875 0.3438 0.0625 +0.6875 0.3438 0.09375 +0.6875 0.3438 0.125 +0.6875 0.3438 0.1562 +0.6875 0.3438 0.1875 +0.6875 0.3438 0.2188 +0.6875 0.3438 0.25 +0.6875 0.3438 0.2812 +0.6875 0.3438 0.3125 +0.6875 0.3438 0.3438 +0.6875 0.3438 0.375 +0.6875 0.3438 0.4062 +0.6875 0.3438 0.4375 +0.6875 0.3438 0.4688 +0.6875 0.3438 0.5 +0.6875 0.3438 0.5312 +0.6875 0.3438 0.5625 +0.6875 0.3438 0.5938 +0.6875 0.3438 0.625 +0.6875 0.3438 0.6562 +0.6875 0.3438 0.6875 +0.6875 0.3438 0.7188 +0.6875 0.3438 0.75 +0.6875 0.3438 0.7812 +0.6875 0.3438 0.8125 +0.6875 0.3438 0.8438 +0.6875 0.3438 0.875 +0.6875 0.3438 0.9062 +0.6875 0.3438 0.9375 +0.6875 0.3438 0.9688 +0.6875 0.3438 1 +0.6875 0.375 0 +0.6875 0.375 0.03125 +0.6875 0.375 0.0625 +0.6875 0.375 0.09375 +0.6875 0.375 0.125 +0.6875 0.375 0.1562 +0.6875 0.375 0.1875 +0.6875 0.375 0.2188 +0.6875 0.375 0.25 +0.6875 0.375 0.2812 +0.6875 0.375 0.3125 +0.6875 0.375 0.3438 +0.6875 0.375 0.375 +0.6875 0.375 0.4062 +0.6875 0.375 0.4375 +0.6875 0.375 0.4688 +0.6875 0.375 0.5 +0.6875 0.375 0.5312 +0.6875 0.375 0.5625 +0.6875 0.375 0.5938 +0.6875 0.375 0.625 +0.6875 0.375 0.6562 +0.6875 0.375 0.6875 +0.6875 0.375 0.7188 +0.6875 0.375 0.75 +0.6875 0.375 0.7812 +0.6875 0.375 0.8125 +0.6875 0.375 0.8438 +0.6875 0.375 0.875 +0.6875 0.375 0.9062 +0.6875 0.375 0.9375 +0.6875 0.375 0.9688 +0.6875 0.375 1 +0.6875 0.4062 0 +0.6875 0.4062 0.03125 +0.6875 0.4062 0.0625 +0.6875 0.4062 0.09375 +0.6875 0.4062 0.125 +0.6875 0.4062 0.1562 +0.6875 0.4062 0.1875 +0.6875 0.4062 0.2188 +0.6875 0.4062 0.25 +0.6875 0.4062 0.2812 +0.6875 0.4062 0.3125 +0.6875 0.4062 0.3438 +0.6875 0.4062 0.375 +0.6875 0.4062 0.4062 +0.6875 0.4062 0.4375 +0.6875 0.4062 0.4688 +0.6875 0.4062 0.5 +0.6875 0.4062 0.5312 +0.6875 0.4062 0.5625 +0.6875 0.4062 0.5938 +0.6875 0.4062 0.625 +0.6875 0.4062 0.6562 +0.6875 0.4062 0.6875 +0.6875 0.4062 0.7188 +0.6875 0.4062 0.75 +0.6875 0.4062 0.7812 +0.6875 0.4062 0.8125 +0.6875 0.4062 0.8438 +0.6875 0.4062 0.875 +0.6875 0.4062 0.9062 +0.6875 0.4062 0.9375 +0.6875 0.4062 0.9688 +0.6875 0.4062 1 +0.6875 0.4375 0 +0.6875 0.4375 0.03125 +0.6875 0.4375 0.0625 +0.6875 0.4375 0.09375 +0.6875 0.4375 0.125 +0.6875 0.4375 0.1562 +0.6875 0.4375 0.1875 +0.6875 0.4375 0.2188 +0.6875 0.4375 0.25 +0.6875 0.4375 0.2812 +0.6875 0.4375 0.3125 +0.6875 0.4375 0.3438 +0.6875 0.4375 0.375 +0.6875 0.4375 0.4062 +0.6875 0.4375 0.4375 +0.6875 0.4375 0.4688 +0.6875 0.4375 0.5 +0.6875 0.4375 0.5312 +0.6875 0.4375 0.5625 +0.6875 0.4375 0.5938 +0.6875 0.4375 0.625 +0.6875 0.4375 0.6562 +0.6875 0.4375 0.6875 +0.6875 0.4375 0.7188 +0.6875 0.4375 0.75 +0.6875 0.4375 0.7812 +0.6875 0.4375 0.8125 +0.6875 0.4375 0.8438 +0.6875 0.4375 0.875 +0.6875 0.4375 0.9062 +0.6875 0.4375 0.9375 +0.6875 0.4375 0.9688 +0.6875 0.4375 1 +0.6875 0.4688 0 +0.6875 0.4688 0.03125 +0.6875 0.4688 0.0625 +0.6875 0.4688 0.09375 +0.6875 0.4688 0.125 +0.6875 0.4688 0.1562 +0.6875 0.4688 0.1875 +0.6875 0.4688 0.2188 +0.6875 0.4688 0.25 +0.6875 0.4688 0.2812 +0.6875 0.4688 0.3125 +0.6875 0.4688 0.3438 +0.6875 0.4688 0.375 +0.6875 0.4688 0.4062 +0.6875 0.4688 0.4375 +0.6875 0.4688 0.4688 +0.6875 0.4688 0.5 +0.6875 0.4688 0.5312 +0.6875 0.4688 0.5625 +0.6875 0.4688 0.5938 +0.6875 0.4688 0.625 +0.6875 0.4688 0.6562 +0.6875 0.4688 0.6875 +0.6875 0.4688 0.7188 +0.6875 0.4688 0.75 +0.6875 0.4688 0.7812 +0.6875 0.4688 0.8125 +0.6875 0.4688 0.8438 +0.6875 0.4688 0.875 +0.6875 0.4688 0.9062 +0.6875 0.4688 0.9375 +0.6875 0.4688 0.9688 +0.6875 0.4688 1 +0.6875 0.5 0 +0.6875 0.5 0.03125 +0.6875 0.5 0.0625 +0.6875 0.5 0.09375 +0.6875 0.5 0.125 +0.6875 0.5 0.1562 +0.6875 0.5 0.1875 +0.6875 0.5 0.2188 +0.6875 0.5 0.25 +0.6875 0.5 0.2812 +0.6875 0.5 0.3125 +0.6875 0.5 0.3438 +0.6875 0.5 0.375 +0.6875 0.5 0.4062 +0.6875 0.5 0.4375 +0.6875 0.5 0.4688 +0.6875 0.5 0.5 +0.6875 0.5 0.5312 +0.6875 0.5 0.5625 +0.6875 0.5 0.5938 +0.6875 0.5 0.625 +0.6875 0.5 0.6562 +0.6875 0.5 0.6875 +0.6875 0.5 0.7188 +0.6875 0.5 0.75 +0.6875 0.5 0.7812 +0.6875 0.5 0.8125 +0.6875 0.5 0.8438 +0.6875 0.5 0.875 +0.6875 0.5 0.9062 +0.6875 0.5 0.9375 +0.6875 0.5 0.9688 +0.6875 0.5 1 +0.6875 0.5312 0 +0.6875 0.5312 0.03125 +0.6875 0.5312 0.0625 +0.6875 0.5312 0.09375 +0.6875 0.5312 0.125 +0.6875 0.5312 0.1562 +0.6875 0.5312 0.1875 +0.6875 0.5312 0.2188 +0.6875 0.5312 0.25 +0.6875 0.5312 0.2812 +0.6875 0.5312 0.3125 +0.6875 0.5312 0.3438 +0.6875 0.5312 0.375 +0.6875 0.5312 0.4062 +0.6875 0.5312 0.4375 +0.6875 0.5312 0.4688 +0.6875 0.5312 0.5 +0.6875 0.5312 0.5312 +0.6875 0.5312 0.5625 +0.6875 0.5312 0.5938 +0.6875 0.5312 0.625 +0.6875 0.5312 0.6562 +0.6875 0.5312 0.6875 +0.6875 0.5312 0.7188 +0.6875 0.5312 0.75 +0.6875 0.5312 0.7812 +0.6875 0.5312 0.8125 +0.6875 0.5312 0.8438 +0.6875 0.5312 0.875 +0.6875 0.5312 0.9062 +0.6875 0.5312 0.9375 +0.6875 0.5312 0.9688 +0.6875 0.5312 1 +0.6875 0.5625 0 +0.6875 0.5625 0.03125 +0.6875 0.5625 0.0625 +0.6875 0.5625 0.09375 +0.6875 0.5625 0.125 +0.6875 0.5625 0.1562 +0.6875 0.5625 0.1875 +0.6875 0.5625 0.2188 +0.6875 0.5625 0.25 +0.6875 0.5625 0.2812 +0.6875 0.5625 0.3125 +0.6875 0.5625 0.3438 +0.6875 0.5625 0.375 +0.6875 0.5625 0.4062 +0.6875 0.5625 0.4375 +0.6875 0.5625 0.4688 +0.6875 0.5625 0.5 +0.6875 0.5625 0.5312 +0.6875 0.5625 0.5625 +0.6875 0.5625 0.5938 +0.6875 0.5625 0.625 +0.6875 0.5625 0.6562 +0.6875 0.5625 0.6875 +0.6875 0.5625 0.7188 +0.6875 0.5625 0.75 +0.6875 0.5625 0.7812 +0.6875 0.5625 0.8125 +0.6875 0.5625 0.8438 +0.6875 0.5625 0.875 +0.6875 0.5625 0.9062 +0.6875 0.5625 0.9375 +0.6875 0.5625 0.9688 +0.6875 0.5625 1 +0.6875 0.5938 0 +0.6875 0.5938 0.03125 +0.6875 0.5938 0.0625 +0.6875 0.5938 0.09375 +0.6875 0.5938 0.125 +0.6875 0.5938 0.1562 +0.6875 0.5938 0.1875 +0.6875 0.5938 0.2188 +0.6875 0.5938 0.25 +0.6875 0.5938 0.2812 +0.6875 0.5938 0.3125 +0.6875 0.5938 0.3438 +0.6875 0.5938 0.375 +0.6875 0.5938 0.4062 +0.6875 0.5938 0.4375 +0.6875 0.5938 0.4688 +0.6875 0.5938 0.5 +0.6875 0.5938 0.5312 +0.6875 0.5938 0.5625 +0.6875 0.5938 0.5938 +0.6875 0.5938 0.625 +0.6875 0.5938 0.6562 +0.6875 0.5938 0.6875 +0.6875 0.5938 0.7188 +0.6875 0.5938 0.75 +0.6875 0.5938 0.7812 +0.6875 0.5938 0.8125 +0.6875 0.5938 0.8438 +0.6875 0.5938 0.875 +0.6875 0.5938 0.9062 +0.6875 0.5938 0.9375 +0.6875 0.5938 0.9688 +0.6875 0.5938 1 +0.6875 0.625 0 +0.6875 0.625 0.03125 +0.6875 0.625 0.0625 +0.6875 0.625 0.09375 +0.6875 0.625 0.125 +0.6875 0.625 0.1562 +0.6875 0.625 0.1875 +0.6875 0.625 0.2188 +0.6875 0.625 0.25 +0.6875 0.625 0.2812 +0.6875 0.625 0.3125 +0.6875 0.625 0.3438 +0.6875 0.625 0.375 +0.6875 0.625 0.4062 +0.6875 0.625 0.4375 +0.6875 0.625 0.4688 +0.6875 0.625 0.5 +0.6875 0.625 0.5312 +0.6875 0.625 0.5625 +0.6875 0.625 0.5938 +0.6875 0.625 0.625 +0.6875 0.625 0.6562 +0.6875 0.625 0.6875 +0.6875 0.625 0.7188 +0.6875 0.625 0.75 +0.6875 0.625 0.7812 +0.6875 0.625 0.8125 +0.6875 0.625 0.8438 +0.6875 0.625 0.875 +0.6875 0.625 0.9062 +0.6875 0.625 0.9375 +0.6875 0.625 0.9688 +0.6875 0.625 1 +0.6875 0.6562 0 +0.6875 0.6562 0.03125 +0.6875 0.6562 0.0625 +0.6875 0.6562 0.09375 +0.6875 0.6562 0.125 +0.6875 0.6562 0.1562 +0.6875 0.6562 0.1875 +0.6875 0.6562 0.2188 +0.6875 0.6562 0.25 +0.6875 0.6562 0.2812 +0.6875 0.6562 0.3125 +0.6875 0.6562 0.3438 +0.6875 0.6562 0.375 +0.6875 0.6562 0.4062 +0.6875 0.6562 0.4375 +0.6875 0.6562 0.4688 +0.6875 0.6562 0.5 +0.6875 0.6562 0.5312 +0.6875 0.6562 0.5625 +0.6875 0.6562 0.5938 +0.6875 0.6562 0.625 +0.6875 0.6562 0.6562 +0.6875 0.6562 0.6875 +0.6875 0.6562 0.7188 +0.6875 0.6562 0.75 +0.6875 0.6562 0.7812 +0.6875 0.6562 0.8125 +0.6875 0.6562 0.8438 +0.6875 0.6562 0.875 +0.6875 0.6562 0.9062 +0.6875 0.6562 0.9375 +0.6875 0.6562 0.9688 +0.6875 0.6562 1 +0.6875 0.6875 0 +0.6875 0.6875 0.03125 +0.6875 0.6875 0.0625 +0.6875 0.6875 0.09375 +0.6875 0.6875 0.125 +0.6875 0.6875 0.1562 +0.6875 0.6875 0.1875 +0.6875 0.6875 0.2188 +0.6875 0.6875 0.25 +0.6875 0.6875 0.2812 +0.6875 0.6875 0.3125 +0.6875 0.6875 0.3438 +0.6875 0.6875 0.375 +0.6875 0.6875 0.4062 +0.6875 0.6875 0.4375 +0.6875 0.6875 0.4688 +0.6875 0.6875 0.5 +0.6875 0.6875 0.5312 +0.6875 0.6875 0.5625 +0.6875 0.6875 0.5938 +0.6875 0.6875 0.625 +0.6875 0.6875 0.6562 +0.6875 0.6875 0.6875 +0.6875 0.6875 0.7188 +0.6875 0.6875 0.75 +0.6875 0.6875 0.7812 +0.6875 0.6875 0.8125 +0.6875 0.6875 0.8438 +0.6875 0.6875 0.875 +0.6875 0.6875 0.9062 +0.6875 0.6875 0.9375 +0.6875 0.6875 0.9688 +0.6875 0.6875 1 +0.6875 0.7188 0 +0.6875 0.7188 0.03125 +0.6875 0.7188 0.0625 +0.6875 0.7188 0.09375 +0.6875 0.7188 0.125 +0.6875 0.7188 0.1562 +0.6875 0.7188 0.1875 +0.6875 0.7188 0.2188 +0.6875 0.7188 0.25 +0.6875 0.7188 0.2812 +0.6875 0.7188 0.3125 +0.6875 0.7188 0.3438 +0.6875 0.7188 0.375 +0.6875 0.7188 0.4062 +0.6875 0.7188 0.4375 +0.6875 0.7188 0.4688 +0.6875 0.7188 0.5 +0.6875 0.7188 0.5312 +0.6875 0.7188 0.5625 +0.6875 0.7188 0.5938 +0.6875 0.7188 0.625 +0.6875 0.7188 0.6562 +0.6875 0.7188 0.6875 +0.6875 0.7188 0.7188 +0.6875 0.7188 0.75 +0.6875 0.7188 0.7812 +0.6875 0.7188 0.8125 +0.6875 0.7188 0.8438 +0.6875 0.7188 0.875 +0.6875 0.7188 0.9062 +0.6875 0.7188 0.9375 +0.6875 0.7188 0.9688 +0.6875 0.7188 1 +0.6875 0.75 0 +0.6875 0.75 0.03125 +0.6875 0.75 0.0625 +0.6875 0.75 0.09375 +0.6875 0.75 0.125 +0.6875 0.75 0.1562 +0.6875 0.75 0.1875 +0.6875 0.75 0.2188 +0.6875 0.75 0.25 +0.6875 0.75 0.2812 +0.6875 0.75 0.3125 +0.6875 0.75 0.3438 +0.6875 0.75 0.375 +0.6875 0.75 0.4062 +0.6875 0.75 0.4375 +0.6875 0.75 0.4688 +0.6875 0.75 0.5 +0.6875 0.75 0.5312 +0.6875 0.75 0.5625 +0.6875 0.75 0.5938 +0.6875 0.75 0.625 +0.6875 0.75 0.6562 +0.6875 0.75 0.6875 +0.6875 0.75 0.7188 +0.6875 0.75 0.75 +0.6875 0.75 0.7812 +0.6875 0.75 0.8125 +0.6875 0.75 0.8438 +0.6875 0.75 0.875 +0.6875 0.75 0.9062 +0.6875 0.75 0.9375 +0.6875 0.75 0.9688 +0.6875 0.75 1 +0.6875 0.7812 0 +0.6875 0.7812 0.03125 +0.6875 0.7812 0.0625 +0.6875 0.7812 0.09375 +0.6875 0.7812 0.125 +0.6875 0.7812 0.1562 +0.6875 0.7812 0.1875 +0.6875 0.7812 0.2188 +0.6875 0.7812 0.25 +0.6875 0.7812 0.2812 +0.6875 0.7812 0.3125 +0.6875 0.7812 0.3438 +0.6875 0.7812 0.375 +0.6875 0.7812 0.4062 +0.6875 0.7812 0.4375 +0.6875 0.7812 0.4688 +0.6875 0.7812 0.5 +0.6875 0.7812 0.5312 +0.6875 0.7812 0.5625 +0.6875 0.7812 0.5938 +0.6875 0.7812 0.625 +0.6875 0.7812 0.6562 +0.6875 0.7812 0.6875 +0.6875 0.7812 0.7188 +0.6875 0.7812 0.75 +0.6875 0.7812 0.7812 +0.6875 0.7812 0.8125 +0.6875 0.7812 0.8438 +0.6875 0.7812 0.875 +0.6875 0.7812 0.9062 +0.6875 0.7812 0.9375 +0.6875 0.7812 0.9688 +0.6875 0.7812 1 +0.6875 0.8125 0 +0.6875 0.8125 0.03125 +0.6875 0.8125 0.0625 +0.6875 0.8125 0.09375 +0.6875 0.8125 0.125 +0.6875 0.8125 0.1562 +0.6875 0.8125 0.1875 +0.6875 0.8125 0.2188 +0.6875 0.8125 0.25 +0.6875 0.8125 0.2812 +0.6875 0.8125 0.3125 +0.6875 0.8125 0.3438 +0.6875 0.8125 0.375 +0.6875 0.8125 0.4062 +0.6875 0.8125 0.4375 +0.6875 0.8125 0.4688 +0.6875 0.8125 0.5 +0.6875 0.8125 0.5312 +0.6875 0.8125 0.5625 +0.6875 0.8125 0.5938 +0.6875 0.8125 0.625 +0.6875 0.8125 0.6562 +0.6875 0.8125 0.6875 +0.6875 0.8125 0.7188 +0.6875 0.8125 0.75 +0.6875 0.8125 0.7812 +0.6875 0.8125 0.8125 +0.6875 0.8125 0.8438 +0.6875 0.8125 0.875 +0.6875 0.8125 0.9062 +0.6875 0.8125 0.9375 +0.6875 0.8125 0.9688 +0.6875 0.8125 1 +0.6875 0.8438 0 +0.6875 0.8438 0.03125 +0.6875 0.8438 0.0625 +0.6875 0.8438 0.09375 +0.6875 0.8438 0.125 +0.6875 0.8438 0.1562 +0.6875 0.8438 0.1875 +0.6875 0.8438 0.2188 +0.6875 0.8438 0.25 +0.6875 0.8438 0.2812 +0.6875 0.8438 0.3125 +0.6875 0.8438 0.3438 +0.6875 0.8438 0.375 +0.6875 0.8438 0.4062 +0.6875 0.8438 0.4375 +0.6875 0.8438 0.4688 +0.6875 0.8438 0.5 +0.6875 0.8438 0.5312 +0.6875 0.8438 0.5625 +0.6875 0.8438 0.5938 +0.6875 0.8438 0.625 +0.6875 0.8438 0.6562 +0.6875 0.8438 0.6875 +0.6875 0.8438 0.7188 +0.6875 0.8438 0.75 +0.6875 0.8438 0.7812 +0.6875 0.8438 0.8125 +0.6875 0.8438 0.8438 +0.6875 0.8438 0.875 +0.6875 0.8438 0.9062 +0.6875 0.8438 0.9375 +0.6875 0.8438 0.9688 +0.6875 0.8438 1 +0.6875 0.875 0 +0.6875 0.875 0.03125 +0.6875 0.875 0.0625 +0.6875 0.875 0.09375 +0.6875 0.875 0.125 +0.6875 0.875 0.1562 +0.6875 0.875 0.1875 +0.6875 0.875 0.2188 +0.6875 0.875 0.25 +0.6875 0.875 0.2812 +0.6875 0.875 0.3125 +0.6875 0.875 0.3438 +0.6875 0.875 0.375 +0.6875 0.875 0.4062 +0.6875 0.875 0.4375 +0.6875 0.875 0.4688 +0.6875 0.875 0.5 +0.6875 0.875 0.5312 +0.6875 0.875 0.5625 +0.6875 0.875 0.5938 +0.6875 0.875 0.625 +0.6875 0.875 0.6562 +0.6875 0.875 0.6875 +0.6875 0.875 0.7188 +0.6875 0.875 0.75 +0.6875 0.875 0.7812 +0.6875 0.875 0.8125 +0.6875 0.875 0.8438 +0.6875 0.875 0.875 +0.6875 0.875 0.9062 +0.6875 0.875 0.9375 +0.6875 0.875 0.9688 +0.6875 0.875 1 +0.6875 0.9062 0 +0.6875 0.9062 0.03125 +0.6875 0.9062 0.0625 +0.6875 0.9062 0.09375 +0.6875 0.9062 0.125 +0.6875 0.9062 0.1562 +0.6875 0.9062 0.1875 +0.6875 0.9062 0.2188 +0.6875 0.9062 0.25 +0.6875 0.9062 0.2812 +0.6875 0.9062 0.3125 +0.6875 0.9062 0.3438 +0.6875 0.9062 0.375 +0.6875 0.9062 0.4062 +0.6875 0.9062 0.4375 +0.6875 0.9062 0.4688 +0.6875 0.9062 0.5 +0.6875 0.9062 0.5312 +0.6875 0.9062 0.5625 +0.6875 0.9062 0.5938 +0.6875 0.9062 0.625 +0.6875 0.9062 0.6562 +0.6875 0.9062 0.6875 +0.6875 0.9062 0.7188 +0.6875 0.9062 0.75 +0.6875 0.9062 0.7812 +0.6875 0.9062 0.8125 +0.6875 0.9062 0.8438 +0.6875 0.9062 0.875 +0.6875 0.9062 0.9062 +0.6875 0.9062 0.9375 +0.6875 0.9062 0.9688 +0.6875 0.9062 1 +0.6875 0.9375 0 +0.6875 0.9375 0.03125 +0.6875 0.9375 0.0625 +0.6875 0.9375 0.09375 +0.6875 0.9375 0.125 +0.6875 0.9375 0.1562 +0.6875 0.9375 0.1875 +0.6875 0.9375 0.2188 +0.6875 0.9375 0.25 +0.6875 0.9375 0.2812 +0.6875 0.9375 0.3125 +0.6875 0.9375 0.3438 +0.6875 0.9375 0.375 +0.6875 0.9375 0.4062 +0.6875 0.9375 0.4375 +0.6875 0.9375 0.4688 +0.6875 0.9375 0.5 +0.6875 0.9375 0.5312 +0.6875 0.9375 0.5625 +0.6875 0.9375 0.5938 +0.6875 0.9375 0.625 +0.6875 0.9375 0.6562 +0.6875 0.9375 0.6875 +0.6875 0.9375 0.7188 +0.6875 0.9375 0.75 +0.6875 0.9375 0.7812 +0.6875 0.9375 0.8125 +0.6875 0.9375 0.8438 +0.6875 0.9375 0.875 +0.6875 0.9375 0.9062 +0.6875 0.9375 0.9375 +0.6875 0.9375 0.9688 +0.6875 0.9375 1 +0.6875 0.9688 0 +0.6875 0.9688 0.03125 +0.6875 0.9688 0.0625 +0.6875 0.9688 0.09375 +0.6875 0.9688 0.125 +0.6875 0.9688 0.1562 +0.6875 0.9688 0.1875 +0.6875 0.9688 0.2188 +0.6875 0.9688 0.25 +0.6875 0.9688 0.2812 +0.6875 0.9688 0.3125 +0.6875 0.9688 0.3438 +0.6875 0.9688 0.375 +0.6875 0.9688 0.4062 +0.6875 0.9688 0.4375 +0.6875 0.9688 0.4688 +0.6875 0.9688 0.5 +0.6875 0.9688 0.5312 +0.6875 0.9688 0.5625 +0.6875 0.9688 0.5938 +0.6875 0.9688 0.625 +0.6875 0.9688 0.6562 +0.6875 0.9688 0.6875 +0.6875 0.9688 0.7188 +0.6875 0.9688 0.75 +0.6875 0.9688 0.7812 +0.6875 0.9688 0.8125 +0.6875 0.9688 0.8438 +0.6875 0.9688 0.875 +0.6875 0.9688 0.9062 +0.6875 0.9688 0.9375 +0.6875 0.9688 0.9688 +0.6875 0.9688 1 +0.6875 1 0 +0.6875 1 0.03125 +0.6875 1 0.0625 +0.6875 1 0.09375 +0.6875 1 0.125 +0.6875 1 0.1562 +0.6875 1 0.1875 +0.6875 1 0.2188 +0.6875 1 0.25 +0.6875 1 0.2812 +0.6875 1 0.3125 +0.6875 1 0.3438 +0.6875 1 0.375 +0.6875 1 0.4062 +0.6875 1 0.4375 +0.6875 1 0.4688 +0.6875 1 0.5 +0.6875 1 0.5312 +0.6875 1 0.5625 +0.6875 1 0.5938 +0.6875 1 0.625 +0.6875 1 0.6562 +0.6875 1 0.6875 +0.6875 1 0.7188 +0.6875 1 0.75 +0.6875 1 0.7812 +0.6875 1 0.8125 +0.6875 1 0.8438 +0.6875 1 0.875 +0.6875 1 0.9062 +0.6875 1 0.9375 +0.6875 1 0.9688 +0.6875 1 1 +0.7188 0 0 +0.7188 0 0.03125 +0.7188 0 0.0625 +0.7188 0 0.09375 +0.7188 0 0.125 +0.7188 0 0.1562 +0.7188 0 0.1875 +0.7188 0 0.2188 +0.7188 0 0.25 +0.7188 0 0.2812 +0.7188 0 0.3125 +0.7188 0 0.3438 +0.7188 0 0.375 +0.7188 0 0.4062 +0.7188 0 0.4375 +0.7188 0 0.4688 +0.7188 0 0.5 +0.7188 0 0.5312 +0.7188 0 0.5625 +0.7188 0 0.5938 +0.7188 0 0.625 +0.7188 0 0.6562 +0.7188 0 0.6875 +0.7188 0 0.7188 +0.7188 0 0.75 +0.7188 0 0.7812 +0.7188 0 0.8125 +0.7188 0 0.8438 +0.7188 0 0.875 +0.7188 0 0.9062 +0.7188 0 0.9375 +0.7188 0 0.9688 +0.7188 0 1 +0.7188 0.03125 0 +0.7188 0.03125 0.03125 +0.7188 0.03125 0.0625 +0.7188 0.03125 0.09375 +0.7188 0.03125 0.125 +0.7188 0.03125 0.1562 +0.7188 0.03125 0.1875 +0.7188 0.03125 0.2188 +0.7188 0.03125 0.25 +0.7188 0.03125 0.2812 +0.7188 0.03125 0.3125 +0.7188 0.03125 0.3438 +0.7188 0.03125 0.375 +0.7188 0.03125 0.4062 +0.7188 0.03125 0.4375 +0.7188 0.03125 0.4688 +0.7188 0.03125 0.5 +0.7188 0.03125 0.5312 +0.7188 0.03125 0.5625 +0.7188 0.03125 0.5938 +0.7188 0.03125 0.625 +0.7188 0.03125 0.6562 +0.7188 0.03125 0.6875 +0.7188 0.03125 0.7188 +0.7188 0.03125 0.75 +0.7188 0.03125 0.7812 +0.7188 0.03125 0.8125 +0.7188 0.03125 0.8438 +0.7188 0.03125 0.875 +0.7188 0.03125 0.9062 +0.7188 0.03125 0.9375 +0.7188 0.03125 0.9688 +0.7188 0.03125 1 +0.7188 0.0625 0 +0.7188 0.0625 0.03125 +0.7188 0.0625 0.0625 +0.7188 0.0625 0.09375 +0.7188 0.0625 0.125 +0.7188 0.0625 0.1562 +0.7188 0.0625 0.1875 +0.7188 0.0625 0.2188 +0.7188 0.0625 0.25 +0.7188 0.0625 0.2812 +0.7188 0.0625 0.3125 +0.7188 0.0625 0.3438 +0.7188 0.0625 0.375 +0.7188 0.0625 0.4062 +0.7188 0.0625 0.4375 +0.7188 0.0625 0.4688 +0.7188 0.0625 0.5 +0.7188 0.0625 0.5312 +0.7188 0.0625 0.5625 +0.7188 0.0625 0.5938 +0.7188 0.0625 0.625 +0.7188 0.0625 0.6562 +0.7188 0.0625 0.6875 +0.7188 0.0625 0.7188 +0.7188 0.0625 0.75 +0.7188 0.0625 0.7812 +0.7188 0.0625 0.8125 +0.7188 0.0625 0.8438 +0.7188 0.0625 0.875 +0.7188 0.0625 0.9062 +0.7188 0.0625 0.9375 +0.7188 0.0625 0.9688 +0.7188 0.0625 1 +0.7188 0.09375 0 +0.7188 0.09375 0.03125 +0.7188 0.09375 0.0625 +0.7188 0.09375 0.09375 +0.7188 0.09375 0.125 +0.7188 0.09375 0.1562 +0.7188 0.09375 0.1875 +0.7188 0.09375 0.2188 +0.7188 0.09375 0.25 +0.7188 0.09375 0.2812 +0.7188 0.09375 0.3125 +0.7188 0.09375 0.3438 +0.7188 0.09375 0.375 +0.7188 0.09375 0.4062 +0.7188 0.09375 0.4375 +0.7188 0.09375 0.4688 +0.7188 0.09375 0.5 +0.7188 0.09375 0.5312 +0.7188 0.09375 0.5625 +0.7188 0.09375 0.5938 +0.7188 0.09375 0.625 +0.7188 0.09375 0.6562 +0.7188 0.09375 0.6875 +0.7188 0.09375 0.7188 +0.7188 0.09375 0.75 +0.7188 0.09375 0.7812 +0.7188 0.09375 0.8125 +0.7188 0.09375 0.8438 +0.7188 0.09375 0.875 +0.7188 0.09375 0.9062 +0.7188 0.09375 0.9375 +0.7188 0.09375 0.9688 +0.7188 0.09375 1 +0.7188 0.125 0 +0.7188 0.125 0.03125 +0.7188 0.125 0.0625 +0.7188 0.125 0.09375 +0.7188 0.125 0.125 +0.7188 0.125 0.1562 +0.7188 0.125 0.1875 +0.7188 0.125 0.2188 +0.7188 0.125 0.25 +0.7188 0.125 0.2812 +0.7188 0.125 0.3125 +0.7188 0.125 0.3438 +0.7188 0.125 0.375 +0.7188 0.125 0.4062 +0.7188 0.125 0.4375 +0.7188 0.125 0.4688 +0.7188 0.125 0.5 +0.7188 0.125 0.5312 +0.7188 0.125 0.5625 +0.7188 0.125 0.5938 +0.7188 0.125 0.625 +0.7188 0.125 0.6562 +0.7188 0.125 0.6875 +0.7188 0.125 0.7188 +0.7188 0.125 0.75 +0.7188 0.125 0.7812 +0.7188 0.125 0.8125 +0.7188 0.125 0.8438 +0.7188 0.125 0.875 +0.7188 0.125 0.9062 +0.7188 0.125 0.9375 +0.7188 0.125 0.9688 +0.7188 0.125 1 +0.7188 0.1562 0 +0.7188 0.1562 0.03125 +0.7188 0.1562 0.0625 +0.7188 0.1562 0.09375 +0.7188 0.1562 0.125 +0.7188 0.1562 0.1562 +0.7188 0.1562 0.1875 +0.7188 0.1562 0.2188 +0.7188 0.1562 0.25 +0.7188 0.1562 0.2812 +0.7188 0.1562 0.3125 +0.7188 0.1562 0.3438 +0.7188 0.1562 0.375 +0.7188 0.1562 0.4062 +0.7188 0.1562 0.4375 +0.7188 0.1562 0.4688 +0.7188 0.1562 0.5 +0.7188 0.1562 0.5312 +0.7188 0.1562 0.5625 +0.7188 0.1562 0.5938 +0.7188 0.1562 0.625 +0.7188 0.1562 0.6562 +0.7188 0.1562 0.6875 +0.7188 0.1562 0.7188 +0.7188 0.1562 0.75 +0.7188 0.1562 0.7812 +0.7188 0.1562 0.8125 +0.7188 0.1562 0.8438 +0.7188 0.1562 0.875 +0.7188 0.1562 0.9062 +0.7188 0.1562 0.9375 +0.7188 0.1562 0.9688 +0.7188 0.1562 1 +0.7188 0.1875 0 +0.7188 0.1875 0.03125 +0.7188 0.1875 0.0625 +0.7188 0.1875 0.09375 +0.7188 0.1875 0.125 +0.7188 0.1875 0.1562 +0.7188 0.1875 0.1875 +0.7188 0.1875 0.2188 +0.7188 0.1875 0.25 +0.7188 0.1875 0.2812 +0.7188 0.1875 0.3125 +0.7188 0.1875 0.3438 +0.7188 0.1875 0.375 +0.7188 0.1875 0.4062 +0.7188 0.1875 0.4375 +0.7188 0.1875 0.4688 +0.7188 0.1875 0.5 +0.7188 0.1875 0.5312 +0.7188 0.1875 0.5625 +0.7188 0.1875 0.5938 +0.7188 0.1875 0.625 +0.7188 0.1875 0.6562 +0.7188 0.1875 0.6875 +0.7188 0.1875 0.7188 +0.7188 0.1875 0.75 +0.7188 0.1875 0.7812 +0.7188 0.1875 0.8125 +0.7188 0.1875 0.8438 +0.7188 0.1875 0.875 +0.7188 0.1875 0.9062 +0.7188 0.1875 0.9375 +0.7188 0.1875 0.9688 +0.7188 0.1875 1 +0.7188 0.2188 0 +0.7188 0.2188 0.03125 +0.7188 0.2188 0.0625 +0.7188 0.2188 0.09375 +0.7188 0.2188 0.125 +0.7188 0.2188 0.1562 +0.7188 0.2188 0.1875 +0.7188 0.2188 0.2188 +0.7188 0.2188 0.25 +0.7188 0.2188 0.2812 +0.7188 0.2188 0.3125 +0.7188 0.2188 0.3438 +0.7188 0.2188 0.375 +0.7188 0.2188 0.4062 +0.7188 0.2188 0.4375 +0.7188 0.2188 0.4688 +0.7188 0.2188 0.5 +0.7188 0.2188 0.5312 +0.7188 0.2188 0.5625 +0.7188 0.2188 0.5938 +0.7188 0.2188 0.625 +0.7188 0.2188 0.6562 +0.7188 0.2188 0.6875 +0.7188 0.2188 0.7188 +0.7188 0.2188 0.75 +0.7188 0.2188 0.7812 +0.7188 0.2188 0.8125 +0.7188 0.2188 0.8438 +0.7188 0.2188 0.875 +0.7188 0.2188 0.9062 +0.7188 0.2188 0.9375 +0.7188 0.2188 0.9688 +0.7188 0.2188 1 +0.7188 0.25 0 +0.7188 0.25 0.03125 +0.7188 0.25 0.0625 +0.7188 0.25 0.09375 +0.7188 0.25 0.125 +0.7188 0.25 0.1562 +0.7188 0.25 0.1875 +0.7188 0.25 0.2188 +0.7188 0.25 0.25 +0.7188 0.25 0.2812 +0.7188 0.25 0.3125 +0.7188 0.25 0.3438 +0.7188 0.25 0.375 +0.7188 0.25 0.4062 +0.7188 0.25 0.4375 +0.7188 0.25 0.4688 +0.7188 0.25 0.5 +0.7188 0.25 0.5312 +0.7188 0.25 0.5625 +0.7188 0.25 0.5938 +0.7188 0.25 0.625 +0.7188 0.25 0.6562 +0.7188 0.25 0.6875 +0.7188 0.25 0.7188 +0.7188 0.25 0.75 +0.7188 0.25 0.7812 +0.7188 0.25 0.8125 +0.7188 0.25 0.8438 +0.7188 0.25 0.875 +0.7188 0.25 0.9062 +0.7188 0.25 0.9375 +0.7188 0.25 0.9688 +0.7188 0.25 1 +0.7188 0.2812 0 +0.7188 0.2812 0.03125 +0.7188 0.2812 0.0625 +0.7188 0.2812 0.09375 +0.7188 0.2812 0.125 +0.7188 0.2812 0.1562 +0.7188 0.2812 0.1875 +0.7188 0.2812 0.2188 +0.7188 0.2812 0.25 +0.7188 0.2812 0.2812 +0.7188 0.2812 0.3125 +0.7188 0.2812 0.3438 +0.7188 0.2812 0.375 +0.7188 0.2812 0.4062 +0.7188 0.2812 0.4375 +0.7188 0.2812 0.4688 +0.7188 0.2812 0.5 +0.7188 0.2812 0.5312 +0.7188 0.2812 0.5625 +0.7188 0.2812 0.5938 +0.7188 0.2812 0.625 +0.7188 0.2812 0.6562 +0.7188 0.2812 0.6875 +0.7188 0.2812 0.7188 +0.7188 0.2812 0.75 +0.7188 0.2812 0.7812 +0.7188 0.2812 0.8125 +0.7188 0.2812 0.8438 +0.7188 0.2812 0.875 +0.7188 0.2812 0.9062 +0.7188 0.2812 0.9375 +0.7188 0.2812 0.9688 +0.7188 0.2812 1 +0.7188 0.3125 0 +0.7188 0.3125 0.03125 +0.7188 0.3125 0.0625 +0.7188 0.3125 0.09375 +0.7188 0.3125 0.125 +0.7188 0.3125 0.1562 +0.7188 0.3125 0.1875 +0.7188 0.3125 0.2188 +0.7188 0.3125 0.25 +0.7188 0.3125 0.2812 +0.7188 0.3125 0.3125 +0.7188 0.3125 0.3438 +0.7188 0.3125 0.375 +0.7188 0.3125 0.4062 +0.7188 0.3125 0.4375 +0.7188 0.3125 0.4688 +0.7188 0.3125 0.5 +0.7188 0.3125 0.5312 +0.7188 0.3125 0.5625 +0.7188 0.3125 0.5938 +0.7188 0.3125 0.625 +0.7188 0.3125 0.6562 +0.7188 0.3125 0.6875 +0.7188 0.3125 0.7188 +0.7188 0.3125 0.75 +0.7188 0.3125 0.7812 +0.7188 0.3125 0.8125 +0.7188 0.3125 0.8438 +0.7188 0.3125 0.875 +0.7188 0.3125 0.9062 +0.7188 0.3125 0.9375 +0.7188 0.3125 0.9688 +0.7188 0.3125 1 +0.7188 0.3438 0 +0.7188 0.3438 0.03125 +0.7188 0.3438 0.0625 +0.7188 0.3438 0.09375 +0.7188 0.3438 0.125 +0.7188 0.3438 0.1562 +0.7188 0.3438 0.1875 +0.7188 0.3438 0.2188 +0.7188 0.3438 0.25 +0.7188 0.3438 0.2812 +0.7188 0.3438 0.3125 +0.7188 0.3438 0.3438 +0.7188 0.3438 0.375 +0.7188 0.3438 0.4062 +0.7188 0.3438 0.4375 +0.7188 0.3438 0.4688 +0.7188 0.3438 0.5 +0.7188 0.3438 0.5312 +0.7188 0.3438 0.5625 +0.7188 0.3438 0.5938 +0.7188 0.3438 0.625 +0.7188 0.3438 0.6562 +0.7188 0.3438 0.6875 +0.7188 0.3438 0.7188 +0.7188 0.3438 0.75 +0.7188 0.3438 0.7812 +0.7188 0.3438 0.8125 +0.7188 0.3438 0.8438 +0.7188 0.3438 0.875 +0.7188 0.3438 0.9062 +0.7188 0.3438 0.9375 +0.7188 0.3438 0.9688 +0.7188 0.3438 1 +0.7188 0.375 0 +0.7188 0.375 0.03125 +0.7188 0.375 0.0625 +0.7188 0.375 0.09375 +0.7188 0.375 0.125 +0.7188 0.375 0.1562 +0.7188 0.375 0.1875 +0.7188 0.375 0.2188 +0.7188 0.375 0.25 +0.7188 0.375 0.2812 +0.7188 0.375 0.3125 +0.7188 0.375 0.3438 +0.7188 0.375 0.375 +0.7188 0.375 0.4062 +0.7188 0.375 0.4375 +0.7188 0.375 0.4688 +0.7188 0.375 0.5 +0.7188 0.375 0.5312 +0.7188 0.375 0.5625 +0.7188 0.375 0.5938 +0.7188 0.375 0.625 +0.7188 0.375 0.6562 +0.7188 0.375 0.6875 +0.7188 0.375 0.7188 +0.7188 0.375 0.75 +0.7188 0.375 0.7812 +0.7188 0.375 0.8125 +0.7188 0.375 0.8438 +0.7188 0.375 0.875 +0.7188 0.375 0.9062 +0.7188 0.375 0.9375 +0.7188 0.375 0.9688 +0.7188 0.375 1 +0.7188 0.4062 0 +0.7188 0.4062 0.03125 +0.7188 0.4062 0.0625 +0.7188 0.4062 0.09375 +0.7188 0.4062 0.125 +0.7188 0.4062 0.1562 +0.7188 0.4062 0.1875 +0.7188 0.4062 0.2188 +0.7188 0.4062 0.25 +0.7188 0.4062 0.2812 +0.7188 0.4062 0.3125 +0.7188 0.4062 0.3438 +0.7188 0.4062 0.375 +0.7188 0.4062 0.4062 +0.7188 0.4062 0.4375 +0.7188 0.4062 0.4688 +0.7188 0.4062 0.5 +0.7188 0.4062 0.5312 +0.7188 0.4062 0.5625 +0.7188 0.4062 0.5938 +0.7188 0.4062 0.625 +0.7188 0.4062 0.6562 +0.7188 0.4062 0.6875 +0.7188 0.4062 0.7188 +0.7188 0.4062 0.75 +0.7188 0.4062 0.7812 +0.7188 0.4062 0.8125 +0.7188 0.4062 0.8438 +0.7188 0.4062 0.875 +0.7188 0.4062 0.9062 +0.7188 0.4062 0.9375 +0.7188 0.4062 0.9688 +0.7188 0.4062 1 +0.7188 0.4375 0 +0.7188 0.4375 0.03125 +0.7188 0.4375 0.0625 +0.7188 0.4375 0.09375 +0.7188 0.4375 0.125 +0.7188 0.4375 0.1562 +0.7188 0.4375 0.1875 +0.7188 0.4375 0.2188 +0.7188 0.4375 0.25 +0.7188 0.4375 0.2812 +0.7188 0.4375 0.3125 +0.7188 0.4375 0.3438 +0.7188 0.4375 0.375 +0.7188 0.4375 0.4062 +0.7188 0.4375 0.4375 +0.7188 0.4375 0.4688 +0.7188 0.4375 0.5 +0.7188 0.4375 0.5312 +0.7188 0.4375 0.5625 +0.7188 0.4375 0.5938 +0.7188 0.4375 0.625 +0.7188 0.4375 0.6562 +0.7188 0.4375 0.6875 +0.7188 0.4375 0.7188 +0.7188 0.4375 0.75 +0.7188 0.4375 0.7812 +0.7188 0.4375 0.8125 +0.7188 0.4375 0.8438 +0.7188 0.4375 0.875 +0.7188 0.4375 0.9062 +0.7188 0.4375 0.9375 +0.7188 0.4375 0.9688 +0.7188 0.4375 1 +0.7188 0.4688 0 +0.7188 0.4688 0.03125 +0.7188 0.4688 0.0625 +0.7188 0.4688 0.09375 +0.7188 0.4688 0.125 +0.7188 0.4688 0.1562 +0.7188 0.4688 0.1875 +0.7188 0.4688 0.2188 +0.7188 0.4688 0.25 +0.7188 0.4688 0.2812 +0.7188 0.4688 0.3125 +0.7188 0.4688 0.3438 +0.7188 0.4688 0.375 +0.7188 0.4688 0.4062 +0.7188 0.4688 0.4375 +0.7188 0.4688 0.4688 +0.7188 0.4688 0.5 +0.7188 0.4688 0.5312 +0.7188 0.4688 0.5625 +0.7188 0.4688 0.5938 +0.7188 0.4688 0.625 +0.7188 0.4688 0.6562 +0.7188 0.4688 0.6875 +0.7188 0.4688 0.7188 +0.7188 0.4688 0.75 +0.7188 0.4688 0.7812 +0.7188 0.4688 0.8125 +0.7188 0.4688 0.8438 +0.7188 0.4688 0.875 +0.7188 0.4688 0.9062 +0.7188 0.4688 0.9375 +0.7188 0.4688 0.9688 +0.7188 0.4688 1 +0.7188 0.5 0 +0.7188 0.5 0.03125 +0.7188 0.5 0.0625 +0.7188 0.5 0.09375 +0.7188 0.5 0.125 +0.7188 0.5 0.1562 +0.7188 0.5 0.1875 +0.7188 0.5 0.2188 +0.7188 0.5 0.25 +0.7188 0.5 0.2812 +0.7188 0.5 0.3125 +0.7188 0.5 0.3438 +0.7188 0.5 0.375 +0.7188 0.5 0.4062 +0.7188 0.5 0.4375 +0.7188 0.5 0.4688 +0.7188 0.5 0.5 +0.7188 0.5 0.5312 +0.7188 0.5 0.5625 +0.7188 0.5 0.5938 +0.7188 0.5 0.625 +0.7188 0.5 0.6562 +0.7188 0.5 0.6875 +0.7188 0.5 0.7188 +0.7188 0.5 0.75 +0.7188 0.5 0.7812 +0.7188 0.5 0.8125 +0.7188 0.5 0.8438 +0.7188 0.5 0.875 +0.7188 0.5 0.9062 +0.7188 0.5 0.9375 +0.7188 0.5 0.9688 +0.7188 0.5 1 +0.7188 0.5312 0 +0.7188 0.5312 0.03125 +0.7188 0.5312 0.0625 +0.7188 0.5312 0.09375 +0.7188 0.5312 0.125 +0.7188 0.5312 0.1562 +0.7188 0.5312 0.1875 +0.7188 0.5312 0.2188 +0.7188 0.5312 0.25 +0.7188 0.5312 0.2812 +0.7188 0.5312 0.3125 +0.7188 0.5312 0.3438 +0.7188 0.5312 0.375 +0.7188 0.5312 0.4062 +0.7188 0.5312 0.4375 +0.7188 0.5312 0.4688 +0.7188 0.5312 0.5 +0.7188 0.5312 0.5312 +0.7188 0.5312 0.5625 +0.7188 0.5312 0.5938 +0.7188 0.5312 0.625 +0.7188 0.5312 0.6562 +0.7188 0.5312 0.6875 +0.7188 0.5312 0.7188 +0.7188 0.5312 0.75 +0.7188 0.5312 0.7812 +0.7188 0.5312 0.8125 +0.7188 0.5312 0.8438 +0.7188 0.5312 0.875 +0.7188 0.5312 0.9062 +0.7188 0.5312 0.9375 +0.7188 0.5312 0.9688 +0.7188 0.5312 1 +0.7188 0.5625 0 +0.7188 0.5625 0.03125 +0.7188 0.5625 0.0625 +0.7188 0.5625 0.09375 +0.7188 0.5625 0.125 +0.7188 0.5625 0.1562 +0.7188 0.5625 0.1875 +0.7188 0.5625 0.2188 +0.7188 0.5625 0.25 +0.7188 0.5625 0.2812 +0.7188 0.5625 0.3125 +0.7188 0.5625 0.3438 +0.7188 0.5625 0.375 +0.7188 0.5625 0.4062 +0.7188 0.5625 0.4375 +0.7188 0.5625 0.4688 +0.7188 0.5625 0.5 +0.7188 0.5625 0.5312 +0.7188 0.5625 0.5625 +0.7188 0.5625 0.5938 +0.7188 0.5625 0.625 +0.7188 0.5625 0.6562 +0.7188 0.5625 0.6875 +0.7188 0.5625 0.7188 +0.7188 0.5625 0.75 +0.7188 0.5625 0.7812 +0.7188 0.5625 0.8125 +0.7188 0.5625 0.8438 +0.7188 0.5625 0.875 +0.7188 0.5625 0.9062 +0.7188 0.5625 0.9375 +0.7188 0.5625 0.9688 +0.7188 0.5625 1 +0.7188 0.5938 0 +0.7188 0.5938 0.03125 +0.7188 0.5938 0.0625 +0.7188 0.5938 0.09375 +0.7188 0.5938 0.125 +0.7188 0.5938 0.1562 +0.7188 0.5938 0.1875 +0.7188 0.5938 0.2188 +0.7188 0.5938 0.25 +0.7188 0.5938 0.2812 +0.7188 0.5938 0.3125 +0.7188 0.5938 0.3438 +0.7188 0.5938 0.375 +0.7188 0.5938 0.4062 +0.7188 0.5938 0.4375 +0.7188 0.5938 0.4688 +0.7188 0.5938 0.5 +0.7188 0.5938 0.5312 +0.7188 0.5938 0.5625 +0.7188 0.5938 0.5938 +0.7188 0.5938 0.625 +0.7188 0.5938 0.6562 +0.7188 0.5938 0.6875 +0.7188 0.5938 0.7188 +0.7188 0.5938 0.75 +0.7188 0.5938 0.7812 +0.7188 0.5938 0.8125 +0.7188 0.5938 0.8438 +0.7188 0.5938 0.875 +0.7188 0.5938 0.9062 +0.7188 0.5938 0.9375 +0.7188 0.5938 0.9688 +0.7188 0.5938 1 +0.7188 0.625 0 +0.7188 0.625 0.03125 +0.7188 0.625 0.0625 +0.7188 0.625 0.09375 +0.7188 0.625 0.125 +0.7188 0.625 0.1562 +0.7188 0.625 0.1875 +0.7188 0.625 0.2188 +0.7188 0.625 0.25 +0.7188 0.625 0.2812 +0.7188 0.625 0.3125 +0.7188 0.625 0.3438 +0.7188 0.625 0.375 +0.7188 0.625 0.4062 +0.7188 0.625 0.4375 +0.7188 0.625 0.4688 +0.7188 0.625 0.5 +0.7188 0.625 0.5312 +0.7188 0.625 0.5625 +0.7188 0.625 0.5938 +0.7188 0.625 0.625 +0.7188 0.625 0.6562 +0.7188 0.625 0.6875 +0.7188 0.625 0.7188 +0.7188 0.625 0.75 +0.7188 0.625 0.7812 +0.7188 0.625 0.8125 +0.7188 0.625 0.8438 +0.7188 0.625 0.875 +0.7188 0.625 0.9062 +0.7188 0.625 0.9375 +0.7188 0.625 0.9688 +0.7188 0.625 1 +0.7188 0.6562 0 +0.7188 0.6562 0.03125 +0.7188 0.6562 0.0625 +0.7188 0.6562 0.09375 +0.7188 0.6562 0.125 +0.7188 0.6562 0.1562 +0.7188 0.6562 0.1875 +0.7188 0.6562 0.2188 +0.7188 0.6562 0.25 +0.7188 0.6562 0.2812 +0.7188 0.6562 0.3125 +0.7188 0.6562 0.3438 +0.7188 0.6562 0.375 +0.7188 0.6562 0.4062 +0.7188 0.6562 0.4375 +0.7188 0.6562 0.4688 +0.7188 0.6562 0.5 +0.7188 0.6562 0.5312 +0.7188 0.6562 0.5625 +0.7188 0.6562 0.5938 +0.7188 0.6562 0.625 +0.7188 0.6562 0.6562 +0.7188 0.6562 0.6875 +0.7188 0.6562 0.7188 +0.7188 0.6562 0.75 +0.7188 0.6562 0.7812 +0.7188 0.6562 0.8125 +0.7188 0.6562 0.8438 +0.7188 0.6562 0.875 +0.7188 0.6562 0.9062 +0.7188 0.6562 0.9375 +0.7188 0.6562 0.9688 +0.7188 0.6562 1 +0.7188 0.6875 0 +0.7188 0.6875 0.03125 +0.7188 0.6875 0.0625 +0.7188 0.6875 0.09375 +0.7188 0.6875 0.125 +0.7188 0.6875 0.1562 +0.7188 0.6875 0.1875 +0.7188 0.6875 0.2188 +0.7188 0.6875 0.25 +0.7188 0.6875 0.2812 +0.7188 0.6875 0.3125 +0.7188 0.6875 0.3438 +0.7188 0.6875 0.375 +0.7188 0.6875 0.4062 +0.7188 0.6875 0.4375 +0.7188 0.6875 0.4688 +0.7188 0.6875 0.5 +0.7188 0.6875 0.5312 +0.7188 0.6875 0.5625 +0.7188 0.6875 0.5938 +0.7188 0.6875 0.625 +0.7188 0.6875 0.6562 +0.7188 0.6875 0.6875 +0.7188 0.6875 0.7188 +0.7188 0.6875 0.75 +0.7188 0.6875 0.7812 +0.7188 0.6875 0.8125 +0.7188 0.6875 0.8438 +0.7188 0.6875 0.875 +0.7188 0.6875 0.9062 +0.7188 0.6875 0.9375 +0.7188 0.6875 0.9688 +0.7188 0.6875 1 +0.7188 0.7188 0 +0.7188 0.7188 0.03125 +0.7188 0.7188 0.0625 +0.7188 0.7188 0.09375 +0.7188 0.7188 0.125 +0.7188 0.7188 0.1562 +0.7188 0.7188 0.1875 +0.7188 0.7188 0.2188 +0.7188 0.7188 0.25 +0.7188 0.7188 0.2812 +0.7188 0.7188 0.3125 +0.7188 0.7188 0.3438 +0.7188 0.7188 0.375 +0.7188 0.7188 0.4062 +0.7188 0.7188 0.4375 +0.7188 0.7188 0.4688 +0.7188 0.7188 0.5 +0.7188 0.7188 0.5312 +0.7188 0.7188 0.5625 +0.7188 0.7188 0.5938 +0.7188 0.7188 0.625 +0.7188 0.7188 0.6562 +0.7188 0.7188 0.6875 +0.7188 0.7188 0.7188 +0.7188 0.7188 0.75 +0.7188 0.7188 0.7812 +0.7188 0.7188 0.8125 +0.7188 0.7188 0.8438 +0.7188 0.7188 0.875 +0.7188 0.7188 0.9062 +0.7188 0.7188 0.9375 +0.7188 0.7188 0.9688 +0.7188 0.7188 1 +0.7188 0.75 0 +0.7188 0.75 0.03125 +0.7188 0.75 0.0625 +0.7188 0.75 0.09375 +0.7188 0.75 0.125 +0.7188 0.75 0.1562 +0.7188 0.75 0.1875 +0.7188 0.75 0.2188 +0.7188 0.75 0.25 +0.7188 0.75 0.2812 +0.7188 0.75 0.3125 +0.7188 0.75 0.3438 +0.7188 0.75 0.375 +0.7188 0.75 0.4062 +0.7188 0.75 0.4375 +0.7188 0.75 0.4688 +0.7188 0.75 0.5 +0.7188 0.75 0.5312 +0.7188 0.75 0.5625 +0.7188 0.75 0.5938 +0.7188 0.75 0.625 +0.7188 0.75 0.6562 +0.7188 0.75 0.6875 +0.7188 0.75 0.7188 +0.7188 0.75 0.75 +0.7188 0.75 0.7812 +0.7188 0.75 0.8125 +0.7188 0.75 0.8438 +0.7188 0.75 0.875 +0.7188 0.75 0.9062 +0.7188 0.75 0.9375 +0.7188 0.75 0.9688 +0.7188 0.75 1 +0.7188 0.7812 0 +0.7188 0.7812 0.03125 +0.7188 0.7812 0.0625 +0.7188 0.7812 0.09375 +0.7188 0.7812 0.125 +0.7188 0.7812 0.1562 +0.7188 0.7812 0.1875 +0.7188 0.7812 0.2188 +0.7188 0.7812 0.25 +0.7188 0.7812 0.2812 +0.7188 0.7812 0.3125 +0.7188 0.7812 0.3438 +0.7188 0.7812 0.375 +0.7188 0.7812 0.4062 +0.7188 0.7812 0.4375 +0.7188 0.7812 0.4688 +0.7188 0.7812 0.5 +0.7188 0.7812 0.5312 +0.7188 0.7812 0.5625 +0.7188 0.7812 0.5938 +0.7188 0.7812 0.625 +0.7188 0.7812 0.6562 +0.7188 0.7812 0.6875 +0.7188 0.7812 0.7188 +0.7188 0.7812 0.75 +0.7188 0.7812 0.7812 +0.7188 0.7812 0.8125 +0.7188 0.7812 0.8438 +0.7188 0.7812 0.875 +0.7188 0.7812 0.9062 +0.7188 0.7812 0.9375 +0.7188 0.7812 0.9688 +0.7188 0.7812 1 +0.7188 0.8125 0 +0.7188 0.8125 0.03125 +0.7188 0.8125 0.0625 +0.7188 0.8125 0.09375 +0.7188 0.8125 0.125 +0.7188 0.8125 0.1562 +0.7188 0.8125 0.1875 +0.7188 0.8125 0.2188 +0.7188 0.8125 0.25 +0.7188 0.8125 0.2812 +0.7188 0.8125 0.3125 +0.7188 0.8125 0.3438 +0.7188 0.8125 0.375 +0.7188 0.8125 0.4062 +0.7188 0.8125 0.4375 +0.7188 0.8125 0.4688 +0.7188 0.8125 0.5 +0.7188 0.8125 0.5312 +0.7188 0.8125 0.5625 +0.7188 0.8125 0.5938 +0.7188 0.8125 0.625 +0.7188 0.8125 0.6562 +0.7188 0.8125 0.6875 +0.7188 0.8125 0.7188 +0.7188 0.8125 0.75 +0.7188 0.8125 0.7812 +0.7188 0.8125 0.8125 +0.7188 0.8125 0.8438 +0.7188 0.8125 0.875 +0.7188 0.8125 0.9062 +0.7188 0.8125 0.9375 +0.7188 0.8125 0.9688 +0.7188 0.8125 1 +0.7188 0.8438 0 +0.7188 0.8438 0.03125 +0.7188 0.8438 0.0625 +0.7188 0.8438 0.09375 +0.7188 0.8438 0.125 +0.7188 0.8438 0.1562 +0.7188 0.8438 0.1875 +0.7188 0.8438 0.2188 +0.7188 0.8438 0.25 +0.7188 0.8438 0.2812 +0.7188 0.8438 0.3125 +0.7188 0.8438 0.3438 +0.7188 0.8438 0.375 +0.7188 0.8438 0.4062 +0.7188 0.8438 0.4375 +0.7188 0.8438 0.4688 +0.7188 0.8438 0.5 +0.7188 0.8438 0.5312 +0.7188 0.8438 0.5625 +0.7188 0.8438 0.5938 +0.7188 0.8438 0.625 +0.7188 0.8438 0.6562 +0.7188 0.8438 0.6875 +0.7188 0.8438 0.7188 +0.7188 0.8438 0.75 +0.7188 0.8438 0.7812 +0.7188 0.8438 0.8125 +0.7188 0.8438 0.8438 +0.7188 0.8438 0.875 +0.7188 0.8438 0.9062 +0.7188 0.8438 0.9375 +0.7188 0.8438 0.9688 +0.7188 0.8438 1 +0.7188 0.875 0 +0.7188 0.875 0.03125 +0.7188 0.875 0.0625 +0.7188 0.875 0.09375 +0.7188 0.875 0.125 +0.7188 0.875 0.1562 +0.7188 0.875 0.1875 +0.7188 0.875 0.2188 +0.7188 0.875 0.25 +0.7188 0.875 0.2812 +0.7188 0.875 0.3125 +0.7188 0.875 0.3438 +0.7188 0.875 0.375 +0.7188 0.875 0.4062 +0.7188 0.875 0.4375 +0.7188 0.875 0.4688 +0.7188 0.875 0.5 +0.7188 0.875 0.5312 +0.7188 0.875 0.5625 +0.7188 0.875 0.5938 +0.7188 0.875 0.625 +0.7188 0.875 0.6562 +0.7188 0.875 0.6875 +0.7188 0.875 0.7188 +0.7188 0.875 0.75 +0.7188 0.875 0.7812 +0.7188 0.875 0.8125 +0.7188 0.875 0.8438 +0.7188 0.875 0.875 +0.7188 0.875 0.9062 +0.7188 0.875 0.9375 +0.7188 0.875 0.9688 +0.7188 0.875 1 +0.7188 0.9062 0 +0.7188 0.9062 0.03125 +0.7188 0.9062 0.0625 +0.7188 0.9062 0.09375 +0.7188 0.9062 0.125 +0.7188 0.9062 0.1562 +0.7188 0.9062 0.1875 +0.7188 0.9062 0.2188 +0.7188 0.9062 0.25 +0.7188 0.9062 0.2812 +0.7188 0.9062 0.3125 +0.7188 0.9062 0.3438 +0.7188 0.9062 0.375 +0.7188 0.9062 0.4062 +0.7188 0.9062 0.4375 +0.7188 0.9062 0.4688 +0.7188 0.9062 0.5 +0.7188 0.9062 0.5312 +0.7188 0.9062 0.5625 +0.7188 0.9062 0.5938 +0.7188 0.9062 0.625 +0.7188 0.9062 0.6562 +0.7188 0.9062 0.6875 +0.7188 0.9062 0.7188 +0.7188 0.9062 0.75 +0.7188 0.9062 0.7812 +0.7188 0.9062 0.8125 +0.7188 0.9062 0.8438 +0.7188 0.9062 0.875 +0.7188 0.9062 0.9062 +0.7188 0.9062 0.9375 +0.7188 0.9062 0.9688 +0.7188 0.9062 1 +0.7188 0.9375 0 +0.7188 0.9375 0.03125 +0.7188 0.9375 0.0625 +0.7188 0.9375 0.09375 +0.7188 0.9375 0.125 +0.7188 0.9375 0.1562 +0.7188 0.9375 0.1875 +0.7188 0.9375 0.2188 +0.7188 0.9375 0.25 +0.7188 0.9375 0.2812 +0.7188 0.9375 0.3125 +0.7188 0.9375 0.3438 +0.7188 0.9375 0.375 +0.7188 0.9375 0.4062 +0.7188 0.9375 0.4375 +0.7188 0.9375 0.4688 +0.7188 0.9375 0.5 +0.7188 0.9375 0.5312 +0.7188 0.9375 0.5625 +0.7188 0.9375 0.5938 +0.7188 0.9375 0.625 +0.7188 0.9375 0.6562 +0.7188 0.9375 0.6875 +0.7188 0.9375 0.7188 +0.7188 0.9375 0.75 +0.7188 0.9375 0.7812 +0.7188 0.9375 0.8125 +0.7188 0.9375 0.8438 +0.7188 0.9375 0.875 +0.7188 0.9375 0.9062 +0.7188 0.9375 0.9375 +0.7188 0.9375 0.9688 +0.7188 0.9375 1 +0.7188 0.9688 0 +0.7188 0.9688 0.03125 +0.7188 0.9688 0.0625 +0.7188 0.9688 0.09375 +0.7188 0.9688 0.125 +0.7188 0.9688 0.1562 +0.7188 0.9688 0.1875 +0.7188 0.9688 0.2188 +0.7188 0.9688 0.25 +0.7188 0.9688 0.2812 +0.7188 0.9688 0.3125 +0.7188 0.9688 0.3438 +0.7188 0.9688 0.375 +0.7188 0.9688 0.4062 +0.7188 0.9688 0.4375 +0.7188 0.9688 0.4688 +0.7188 0.9688 0.5 +0.7188 0.9688 0.5312 +0.7188 0.9688 0.5625 +0.7188 0.9688 0.5938 +0.7188 0.9688 0.625 +0.7188 0.9688 0.6562 +0.7188 0.9688 0.6875 +0.7188 0.9688 0.7188 +0.7188 0.9688 0.75 +0.7188 0.9688 0.7812 +0.7188 0.9688 0.8125 +0.7188 0.9688 0.8438 +0.7188 0.9688 0.875 +0.7188 0.9688 0.9062 +0.7188 0.9688 0.9375 +0.7188 0.9688 0.9688 +0.7188 0.9688 1 +0.7188 1 0 +0.7188 1 0.03125 +0.7188 1 0.0625 +0.7188 1 0.09375 +0.7188 1 0.125 +0.7188 1 0.1562 +0.7188 1 0.1875 +0.7188 1 0.2188 +0.7188 1 0.25 +0.7188 1 0.2812 +0.7188 1 0.3125 +0.7188 1 0.3438 +0.7188 1 0.375 +0.7188 1 0.4062 +0.7188 1 0.4375 +0.7188 1 0.4688 +0.7188 1 0.5 +0.7188 1 0.5312 +0.7188 1 0.5625 +0.7188 1 0.5938 +0.7188 1 0.625 +0.7188 1 0.6562 +0.7188 1 0.6875 +0.7188 1 0.7188 +0.7188 1 0.75 +0.7188 1 0.7812 +0.7188 1 0.8125 +0.7188 1 0.8438 +0.7188 1 0.875 +0.7188 1 0.9062 +0.7188 1 0.9375 +0.7188 1 0.9688 +0.7188 1 1 +0.75 0 0 +0.75 0 0.03125 +0.75 0 0.0625 +0.75 0 0.09375 +0.75 0 0.125 +0.75 0 0.1562 +0.75 0 0.1875 +0.75 0 0.2188 +0.75 0 0.25 +0.75 0 0.2812 +0.75 0 0.3125 +0.75 0 0.3438 +0.75 0 0.375 +0.75 0 0.4062 +0.75 0 0.4375 +0.75 0 0.4688 +0.75 0 0.5 +0.75 0 0.5312 +0.75 0 0.5625 +0.75 0 0.5938 +0.75 0 0.625 +0.75 0 0.6562 +0.75 0 0.6875 +0.75 0 0.7188 +0.75 0 0.75 +0.75 0 0.7812 +0.75 0 0.8125 +0.75 0 0.8438 +0.75 0 0.875 +0.75 0 0.9062 +0.75 0 0.9375 +0.75 0 0.9688 +0.75 0 1 +0.75 0.03125 0 +0.75 0.03125 0.03125 +0.75 0.03125 0.0625 +0.75 0.03125 0.09375 +0.75 0.03125 0.125 +0.75 0.03125 0.1562 +0.75 0.03125 0.1875 +0.75 0.03125 0.2188 +0.75 0.03125 0.25 +0.75 0.03125 0.2812 +0.75 0.03125 0.3125 +0.75 0.03125 0.3438 +0.75 0.03125 0.375 +0.75 0.03125 0.4062 +0.75 0.03125 0.4375 +0.75 0.03125 0.4688 +0.75 0.03125 0.5 +0.75 0.03125 0.5312 +0.75 0.03125 0.5625 +0.75 0.03125 0.5938 +0.75 0.03125 0.625 +0.75 0.03125 0.6562 +0.75 0.03125 0.6875 +0.75 0.03125 0.7188 +0.75 0.03125 0.75 +0.75 0.03125 0.7812 +0.75 0.03125 0.8125 +0.75 0.03125 0.8438 +0.75 0.03125 0.875 +0.75 0.03125 0.9062 +0.75 0.03125 0.9375 +0.75 0.03125 0.9688 +0.75 0.03125 1 +0.75 0.0625 0 +0.75 0.0625 0.03125 +0.75 0.0625 0.0625 +0.75 0.0625 0.09375 +0.75 0.0625 0.125 +0.75 0.0625 0.1562 +0.75 0.0625 0.1875 +0.75 0.0625 0.2188 +0.75 0.0625 0.25 +0.75 0.0625 0.2812 +0.75 0.0625 0.3125 +0.75 0.0625 0.3438 +0.75 0.0625 0.375 +0.75 0.0625 0.4062 +0.75 0.0625 0.4375 +0.75 0.0625 0.4688 +0.75 0.0625 0.5 +0.75 0.0625 0.5312 +0.75 0.0625 0.5625 +0.75 0.0625 0.5938 +0.75 0.0625 0.625 +0.75 0.0625 0.6562 +0.75 0.0625 0.6875 +0.75 0.0625 0.7188 +0.75 0.0625 0.75 +0.75 0.0625 0.7812 +0.75 0.0625 0.8125 +0.75 0.0625 0.8438 +0.75 0.0625 0.875 +0.75 0.0625 0.9062 +0.75 0.0625 0.9375 +0.75 0.0625 0.9688 +0.75 0.0625 1 +0.75 0.09375 0 +0.75 0.09375 0.03125 +0.75 0.09375 0.0625 +0.75 0.09375 0.09375 +0.75 0.09375 0.125 +0.75 0.09375 0.1562 +0.75 0.09375 0.1875 +0.75 0.09375 0.2188 +0.75 0.09375 0.25 +0.75 0.09375 0.2812 +0.75 0.09375 0.3125 +0.75 0.09375 0.3438 +0.75 0.09375 0.375 +0.75 0.09375 0.4062 +0.75 0.09375 0.4375 +0.75 0.09375 0.4688 +0.75 0.09375 0.5 +0.75 0.09375 0.5312 +0.75 0.09375 0.5625 +0.75 0.09375 0.5938 +0.75 0.09375 0.625 +0.75 0.09375 0.6562 +0.75 0.09375 0.6875 +0.75 0.09375 0.7188 +0.75 0.09375 0.75 +0.75 0.09375 0.7812 +0.75 0.09375 0.8125 +0.75 0.09375 0.8438 +0.75 0.09375 0.875 +0.75 0.09375 0.9062 +0.75 0.09375 0.9375 +0.75 0.09375 0.9688 +0.75 0.09375 1 +0.75 0.125 0 +0.75 0.125 0.03125 +0.75 0.125 0.0625 +0.75 0.125 0.09375 +0.75 0.125 0.125 +0.75 0.125 0.1562 +0.75 0.125 0.1875 +0.75 0.125 0.2188 +0.75 0.125 0.25 +0.75 0.125 0.2812 +0.75 0.125 0.3125 +0.75 0.125 0.3438 +0.75 0.125 0.375 +0.75 0.125 0.4062 +0.75 0.125 0.4375 +0.75 0.125 0.4688 +0.75 0.125 0.5 +0.75 0.125 0.5312 +0.75 0.125 0.5625 +0.75 0.125 0.5938 +0.75 0.125 0.625 +0.75 0.125 0.6562 +0.75 0.125 0.6875 +0.75 0.125 0.7188 +0.75 0.125 0.75 +0.75 0.125 0.7812 +0.75 0.125 0.8125 +0.75 0.125 0.8438 +0.75 0.125 0.875 +0.75 0.125 0.9062 +0.75 0.125 0.9375 +0.75 0.125 0.9688 +0.75 0.125 1 +0.75 0.1562 0 +0.75 0.1562 0.03125 +0.75 0.1562 0.0625 +0.75 0.1562 0.09375 +0.75 0.1562 0.125 +0.75 0.1562 0.1562 +0.75 0.1562 0.1875 +0.75 0.1562 0.2188 +0.75 0.1562 0.25 +0.75 0.1562 0.2812 +0.75 0.1562 0.3125 +0.75 0.1562 0.3438 +0.75 0.1562 0.375 +0.75 0.1562 0.4062 +0.75 0.1562 0.4375 +0.75 0.1562 0.4688 +0.75 0.1562 0.5 +0.75 0.1562 0.5312 +0.75 0.1562 0.5625 +0.75 0.1562 0.5938 +0.75 0.1562 0.625 +0.75 0.1562 0.6562 +0.75 0.1562 0.6875 +0.75 0.1562 0.7188 +0.75 0.1562 0.75 +0.75 0.1562 0.7812 +0.75 0.1562 0.8125 +0.75 0.1562 0.8438 +0.75 0.1562 0.875 +0.75 0.1562 0.9062 +0.75 0.1562 0.9375 +0.75 0.1562 0.9688 +0.75 0.1562 1 +0.75 0.1875 0 +0.75 0.1875 0.03125 +0.75 0.1875 0.0625 +0.75 0.1875 0.09375 +0.75 0.1875 0.125 +0.75 0.1875 0.1562 +0.75 0.1875 0.1875 +0.75 0.1875 0.2188 +0.75 0.1875 0.25 +0.75 0.1875 0.2812 +0.75 0.1875 0.3125 +0.75 0.1875 0.3438 +0.75 0.1875 0.375 +0.75 0.1875 0.4062 +0.75 0.1875 0.4375 +0.75 0.1875 0.4688 +0.75 0.1875 0.5 +0.75 0.1875 0.5312 +0.75 0.1875 0.5625 +0.75 0.1875 0.5938 +0.75 0.1875 0.625 +0.75 0.1875 0.6562 +0.75 0.1875 0.6875 +0.75 0.1875 0.7188 +0.75 0.1875 0.75 +0.75 0.1875 0.7812 +0.75 0.1875 0.8125 +0.75 0.1875 0.8438 +0.75 0.1875 0.875 +0.75 0.1875 0.9062 +0.75 0.1875 0.9375 +0.75 0.1875 0.9688 +0.75 0.1875 1 +0.75 0.2188 0 +0.75 0.2188 0.03125 +0.75 0.2188 0.0625 +0.75 0.2188 0.09375 +0.75 0.2188 0.125 +0.75 0.2188 0.1562 +0.75 0.2188 0.1875 +0.75 0.2188 0.2188 +0.75 0.2188 0.25 +0.75 0.2188 0.2812 +0.75 0.2188 0.3125 +0.75 0.2188 0.3438 +0.75 0.2188 0.375 +0.75 0.2188 0.4062 +0.75 0.2188 0.4375 +0.75 0.2188 0.4688 +0.75 0.2188 0.5 +0.75 0.2188 0.5312 +0.75 0.2188 0.5625 +0.75 0.2188 0.5938 +0.75 0.2188 0.625 +0.75 0.2188 0.6562 +0.75 0.2188 0.6875 +0.75 0.2188 0.7188 +0.75 0.2188 0.75 +0.75 0.2188 0.7812 +0.75 0.2188 0.8125 +0.75 0.2188 0.8438 +0.75 0.2188 0.875 +0.75 0.2188 0.9062 +0.75 0.2188 0.9375 +0.75 0.2188 0.9688 +0.75 0.2188 1 +0.75 0.25 0 +0.75 0.25 0.03125 +0.75 0.25 0.0625 +0.75 0.25 0.09375 +0.75 0.25 0.125 +0.75 0.25 0.1562 +0.75 0.25 0.1875 +0.75 0.25 0.2188 +0.75 0.25 0.25 +0.75 0.25 0.2812 +0.75 0.25 0.3125 +0.75 0.25 0.3438 +0.75 0.25 0.375 +0.75 0.25 0.4062 +0.75 0.25 0.4375 +0.75 0.25 0.4688 +0.75 0.25 0.5 +0.75 0.25 0.5312 +0.75 0.25 0.5625 +0.75 0.25 0.5938 +0.75 0.25 0.625 +0.75 0.25 0.6562 +0.75 0.25 0.6875 +0.75 0.25 0.7188 +0.75 0.25 0.75 +0.75 0.25 0.7812 +0.75 0.25 0.8125 +0.75 0.25 0.8438 +0.75 0.25 0.875 +0.75 0.25 0.9062 +0.75 0.25 0.9375 +0.75 0.25 0.9688 +0.75 0.25 1 +0.75 0.2812 0 +0.75 0.2812 0.03125 +0.75 0.2812 0.0625 +0.75 0.2812 0.09375 +0.75 0.2812 0.125 +0.75 0.2812 0.1562 +0.75 0.2812 0.1875 +0.75 0.2812 0.2188 +0.75 0.2812 0.25 +0.75 0.2812 0.2812 +0.75 0.2812 0.3125 +0.75 0.2812 0.3438 +0.75 0.2812 0.375 +0.75 0.2812 0.4062 +0.75 0.2812 0.4375 +0.75 0.2812 0.4688 +0.75 0.2812 0.5 +0.75 0.2812 0.5312 +0.75 0.2812 0.5625 +0.75 0.2812 0.5938 +0.75 0.2812 0.625 +0.75 0.2812 0.6562 +0.75 0.2812 0.6875 +0.75 0.2812 0.7188 +0.75 0.2812 0.75 +0.75 0.2812 0.7812 +0.75 0.2812 0.8125 +0.75 0.2812 0.8438 +0.75 0.2812 0.875 +0.75 0.2812 0.9062 +0.75 0.2812 0.9375 +0.75 0.2812 0.9688 +0.75 0.2812 1 +0.75 0.3125 0 +0.75 0.3125 0.03125 +0.75 0.3125 0.0625 +0.75 0.3125 0.09375 +0.75 0.3125 0.125 +0.75 0.3125 0.1562 +0.75 0.3125 0.1875 +0.75 0.3125 0.2188 +0.75 0.3125 0.25 +0.75 0.3125 0.2812 +0.75 0.3125 0.3125 +0.75 0.3125 0.3438 +0.75 0.3125 0.375 +0.75 0.3125 0.4062 +0.75 0.3125 0.4375 +0.75 0.3125 0.4688 +0.75 0.3125 0.5 +0.75 0.3125 0.5312 +0.75 0.3125 0.5625 +0.75 0.3125 0.5938 +0.75 0.3125 0.625 +0.75 0.3125 0.6562 +0.75 0.3125 0.6875 +0.75 0.3125 0.7188 +0.75 0.3125 0.75 +0.75 0.3125 0.7812 +0.75 0.3125 0.8125 +0.75 0.3125 0.8438 +0.75 0.3125 0.875 +0.75 0.3125 0.9062 +0.75 0.3125 0.9375 +0.75 0.3125 0.9688 +0.75 0.3125 1 +0.75 0.3438 0 +0.75 0.3438 0.03125 +0.75 0.3438 0.0625 +0.75 0.3438 0.09375 +0.75 0.3438 0.125 +0.75 0.3438 0.1562 +0.75 0.3438 0.1875 +0.75 0.3438 0.2188 +0.75 0.3438 0.25 +0.75 0.3438 0.2812 +0.75 0.3438 0.3125 +0.75 0.3438 0.3438 +0.75 0.3438 0.375 +0.75 0.3438 0.4062 +0.75 0.3438 0.4375 +0.75 0.3438 0.4688 +0.75 0.3438 0.5 +0.75 0.3438 0.5312 +0.75 0.3438 0.5625 +0.75 0.3438 0.5938 +0.75 0.3438 0.625 +0.75 0.3438 0.6562 +0.75 0.3438 0.6875 +0.75 0.3438 0.7188 +0.75 0.3438 0.75 +0.75 0.3438 0.7812 +0.75 0.3438 0.8125 +0.75 0.3438 0.8438 +0.75 0.3438 0.875 +0.75 0.3438 0.9062 +0.75 0.3438 0.9375 +0.75 0.3438 0.9688 +0.75 0.3438 1 +0.75 0.375 0 +0.75 0.375 0.03125 +0.75 0.375 0.0625 +0.75 0.375 0.09375 +0.75 0.375 0.125 +0.75 0.375 0.1562 +0.75 0.375 0.1875 +0.75 0.375 0.2188 +0.75 0.375 0.25 +0.75 0.375 0.2812 +0.75 0.375 0.3125 +0.75 0.375 0.3438 +0.75 0.375 0.375 +0.75 0.375 0.4062 +0.75 0.375 0.4375 +0.75 0.375 0.4688 +0.75 0.375 0.5 +0.75 0.375 0.5312 +0.75 0.375 0.5625 +0.75 0.375 0.5938 +0.75 0.375 0.625 +0.75 0.375 0.6562 +0.75 0.375 0.6875 +0.75 0.375 0.7188 +0.75 0.375 0.75 +0.75 0.375 0.7812 +0.75 0.375 0.8125 +0.75 0.375 0.8438 +0.75 0.375 0.875 +0.75 0.375 0.9062 +0.75 0.375 0.9375 +0.75 0.375 0.9688 +0.75 0.375 1 +0.75 0.4062 0 +0.75 0.4062 0.03125 +0.75 0.4062 0.0625 +0.75 0.4062 0.09375 +0.75 0.4062 0.125 +0.75 0.4062 0.1562 +0.75 0.4062 0.1875 +0.75 0.4062 0.2188 +0.75 0.4062 0.25 +0.75 0.4062 0.2812 +0.75 0.4062 0.3125 +0.75 0.4062 0.3438 +0.75 0.4062 0.375 +0.75 0.4062 0.4062 +0.75 0.4062 0.4375 +0.75 0.4062 0.4688 +0.75 0.4062 0.5 +0.75 0.4062 0.5312 +0.75 0.4062 0.5625 +0.75 0.4062 0.5938 +0.75 0.4062 0.625 +0.75 0.4062 0.6562 +0.75 0.4062 0.6875 +0.75 0.4062 0.7188 +0.75 0.4062 0.75 +0.75 0.4062 0.7812 +0.75 0.4062 0.8125 +0.75 0.4062 0.8438 +0.75 0.4062 0.875 +0.75 0.4062 0.9062 +0.75 0.4062 0.9375 +0.75 0.4062 0.9688 +0.75 0.4062 1 +0.75 0.4375 0 +0.75 0.4375 0.03125 +0.75 0.4375 0.0625 +0.75 0.4375 0.09375 +0.75 0.4375 0.125 +0.75 0.4375 0.1562 +0.75 0.4375 0.1875 +0.75 0.4375 0.2188 +0.75 0.4375 0.25 +0.75 0.4375 0.2812 +0.75 0.4375 0.3125 +0.75 0.4375 0.3438 +0.75 0.4375 0.375 +0.75 0.4375 0.4062 +0.75 0.4375 0.4375 +0.75 0.4375 0.4688 +0.75 0.4375 0.5 +0.75 0.4375 0.5312 +0.75 0.4375 0.5625 +0.75 0.4375 0.5938 +0.75 0.4375 0.625 +0.75 0.4375 0.6562 +0.75 0.4375 0.6875 +0.75 0.4375 0.7188 +0.75 0.4375 0.75 +0.75 0.4375 0.7812 +0.75 0.4375 0.8125 +0.75 0.4375 0.8438 +0.75 0.4375 0.875 +0.75 0.4375 0.9062 +0.75 0.4375 0.9375 +0.75 0.4375 0.9688 +0.75 0.4375 1 +0.75 0.4688 0 +0.75 0.4688 0.03125 +0.75 0.4688 0.0625 +0.75 0.4688 0.09375 +0.75 0.4688 0.125 +0.75 0.4688 0.1562 +0.75 0.4688 0.1875 +0.75 0.4688 0.2188 +0.75 0.4688 0.25 +0.75 0.4688 0.2812 +0.75 0.4688 0.3125 +0.75 0.4688 0.3438 +0.75 0.4688 0.375 +0.75 0.4688 0.4062 +0.75 0.4688 0.4375 +0.75 0.4688 0.4688 +0.75 0.4688 0.5 +0.75 0.4688 0.5312 +0.75 0.4688 0.5625 +0.75 0.4688 0.5938 +0.75 0.4688 0.625 +0.75 0.4688 0.6562 +0.75 0.4688 0.6875 +0.75 0.4688 0.7188 +0.75 0.4688 0.75 +0.75 0.4688 0.7812 +0.75 0.4688 0.8125 +0.75 0.4688 0.8438 +0.75 0.4688 0.875 +0.75 0.4688 0.9062 +0.75 0.4688 0.9375 +0.75 0.4688 0.9688 +0.75 0.4688 1 +0.75 0.5 0 +0.75 0.5 0.03125 +0.75 0.5 0.0625 +0.75 0.5 0.09375 +0.75 0.5 0.125 +0.75 0.5 0.1562 +0.75 0.5 0.1875 +0.75 0.5 0.2188 +0.75 0.5 0.25 +0.75 0.5 0.2812 +0.75 0.5 0.3125 +0.75 0.5 0.3438 +0.75 0.5 0.375 +0.75 0.5 0.4062 +0.75 0.5 0.4375 +0.75 0.5 0.4688 +0.75 0.5 0.5 +0.75 0.5 0.5312 +0.75 0.5 0.5625 +0.75 0.5 0.5938 +0.75 0.5 0.625 +0.75 0.5 0.6562 +0.75 0.5 0.6875 +0.75 0.5 0.7188 +0.75 0.5 0.75 +0.75 0.5 0.7812 +0.75 0.5 0.8125 +0.75 0.5 0.8438 +0.75 0.5 0.875 +0.75 0.5 0.9062 +0.75 0.5 0.9375 +0.75 0.5 0.9688 +0.75 0.5 1 +0.75 0.5312 0 +0.75 0.5312 0.03125 +0.75 0.5312 0.0625 +0.75 0.5312 0.09375 +0.75 0.5312 0.125 +0.75 0.5312 0.1562 +0.75 0.5312 0.1875 +0.75 0.5312 0.2188 +0.75 0.5312 0.25 +0.75 0.5312 0.2812 +0.75 0.5312 0.3125 +0.75 0.5312 0.3438 +0.75 0.5312 0.375 +0.75 0.5312 0.4062 +0.75 0.5312 0.4375 +0.75 0.5312 0.4688 +0.75 0.5312 0.5 +0.75 0.5312 0.5312 +0.75 0.5312 0.5625 +0.75 0.5312 0.5938 +0.75 0.5312 0.625 +0.75 0.5312 0.6562 +0.75 0.5312 0.6875 +0.75 0.5312 0.7188 +0.75 0.5312 0.75 +0.75 0.5312 0.7812 +0.75 0.5312 0.8125 +0.75 0.5312 0.8438 +0.75 0.5312 0.875 +0.75 0.5312 0.9062 +0.75 0.5312 0.9375 +0.75 0.5312 0.9688 +0.75 0.5312 1 +0.75 0.5625 0 +0.75 0.5625 0.03125 +0.75 0.5625 0.0625 +0.75 0.5625 0.09375 +0.75 0.5625 0.125 +0.75 0.5625 0.1562 +0.75 0.5625 0.1875 +0.75 0.5625 0.2188 +0.75 0.5625 0.25 +0.75 0.5625 0.2812 +0.75 0.5625 0.3125 +0.75 0.5625 0.3438 +0.75 0.5625 0.375 +0.75 0.5625 0.4062 +0.75 0.5625 0.4375 +0.75 0.5625 0.4688 +0.75 0.5625 0.5 +0.75 0.5625 0.5312 +0.75 0.5625 0.5625 +0.75 0.5625 0.5938 +0.75 0.5625 0.625 +0.75 0.5625 0.6562 +0.75 0.5625 0.6875 +0.75 0.5625 0.7188 +0.75 0.5625 0.75 +0.75 0.5625 0.7812 +0.75 0.5625 0.8125 +0.75 0.5625 0.8438 +0.75 0.5625 0.875 +0.75 0.5625 0.9062 +0.75 0.5625 0.9375 +0.75 0.5625 0.9688 +0.75 0.5625 1 +0.75 0.5938 0 +0.75 0.5938 0.03125 +0.75 0.5938 0.0625 +0.75 0.5938 0.09375 +0.75 0.5938 0.125 +0.75 0.5938 0.1562 +0.75 0.5938 0.1875 +0.75 0.5938 0.2188 +0.75 0.5938 0.25 +0.75 0.5938 0.2812 +0.75 0.5938 0.3125 +0.75 0.5938 0.3438 +0.75 0.5938 0.375 +0.75 0.5938 0.4062 +0.75 0.5938 0.4375 +0.75 0.5938 0.4688 +0.75 0.5938 0.5 +0.75 0.5938 0.5312 +0.75 0.5938 0.5625 +0.75 0.5938 0.5938 +0.75 0.5938 0.625 +0.75 0.5938 0.6562 +0.75 0.5938 0.6875 +0.75 0.5938 0.7188 +0.75 0.5938 0.75 +0.75 0.5938 0.7812 +0.75 0.5938 0.8125 +0.75 0.5938 0.8438 +0.75 0.5938 0.875 +0.75 0.5938 0.9062 +0.75 0.5938 0.9375 +0.75 0.5938 0.9688 +0.75 0.5938 1 +0.75 0.625 0 +0.75 0.625 0.03125 +0.75 0.625 0.0625 +0.75 0.625 0.09375 +0.75 0.625 0.125 +0.75 0.625 0.1562 +0.75 0.625 0.1875 +0.75 0.625 0.2188 +0.75 0.625 0.25 +0.75 0.625 0.2812 +0.75 0.625 0.3125 +0.75 0.625 0.3438 +0.75 0.625 0.375 +0.75 0.625 0.4062 +0.75 0.625 0.4375 +0.75 0.625 0.4688 +0.75 0.625 0.5 +0.75 0.625 0.5312 +0.75 0.625 0.5625 +0.75 0.625 0.5938 +0.75 0.625 0.625 +0.75 0.625 0.6562 +0.75 0.625 0.6875 +0.75 0.625 0.7188 +0.75 0.625 0.75 +0.75 0.625 0.7812 +0.75 0.625 0.8125 +0.75 0.625 0.8438 +0.75 0.625 0.875 +0.75 0.625 0.9062 +0.75 0.625 0.9375 +0.75 0.625 0.9688 +0.75 0.625 1 +0.75 0.6562 0 +0.75 0.6562 0.03125 +0.75 0.6562 0.0625 +0.75 0.6562 0.09375 +0.75 0.6562 0.125 +0.75 0.6562 0.1562 +0.75 0.6562 0.1875 +0.75 0.6562 0.2188 +0.75 0.6562 0.25 +0.75 0.6562 0.2812 +0.75 0.6562 0.3125 +0.75 0.6562 0.3438 +0.75 0.6562 0.375 +0.75 0.6562 0.4062 +0.75 0.6562 0.4375 +0.75 0.6562 0.4688 +0.75 0.6562 0.5 +0.75 0.6562 0.5312 +0.75 0.6562 0.5625 +0.75 0.6562 0.5938 +0.75 0.6562 0.625 +0.75 0.6562 0.6562 +0.75 0.6562 0.6875 +0.75 0.6562 0.7188 +0.75 0.6562 0.75 +0.75 0.6562 0.7812 +0.75 0.6562 0.8125 +0.75 0.6562 0.8438 +0.75 0.6562 0.875 +0.75 0.6562 0.9062 +0.75 0.6562 0.9375 +0.75 0.6562 0.9688 +0.75 0.6562 1 +0.75 0.6875 0 +0.75 0.6875 0.03125 +0.75 0.6875 0.0625 +0.75 0.6875 0.09375 +0.75 0.6875 0.125 +0.75 0.6875 0.1562 +0.75 0.6875 0.1875 +0.75 0.6875 0.2188 +0.75 0.6875 0.25 +0.75 0.6875 0.2812 +0.75 0.6875 0.3125 +0.75 0.6875 0.3438 +0.75 0.6875 0.375 +0.75 0.6875 0.4062 +0.75 0.6875 0.4375 +0.75 0.6875 0.4688 +0.75 0.6875 0.5 +0.75 0.6875 0.5312 +0.75 0.6875 0.5625 +0.75 0.6875 0.5938 +0.75 0.6875 0.625 +0.75 0.6875 0.6562 +0.75 0.6875 0.6875 +0.75 0.6875 0.7188 +0.75 0.6875 0.75 +0.75 0.6875 0.7812 +0.75 0.6875 0.8125 +0.75 0.6875 0.8438 +0.75 0.6875 0.875 +0.75 0.6875 0.9062 +0.75 0.6875 0.9375 +0.75 0.6875 0.9688 +0.75 0.6875 1 +0.75 0.7188 0 +0.75 0.7188 0.03125 +0.75 0.7188 0.0625 +0.75 0.7188 0.09375 +0.75 0.7188 0.125 +0.75 0.7188 0.1562 +0.75 0.7188 0.1875 +0.75 0.7188 0.2188 +0.75 0.7188 0.25 +0.75 0.7188 0.2812 +0.75 0.7188 0.3125 +0.75 0.7188 0.3438 +0.75 0.7188 0.375 +0.75 0.7188 0.4062 +0.75 0.7188 0.4375 +0.75 0.7188 0.4688 +0.75 0.7188 0.5 +0.75 0.7188 0.5312 +0.75 0.7188 0.5625 +0.75 0.7188 0.5938 +0.75 0.7188 0.625 +0.75 0.7188 0.6562 +0.75 0.7188 0.6875 +0.75 0.7188 0.7188 +0.75 0.7188 0.75 +0.75 0.7188 0.7812 +0.75 0.7188 0.8125 +0.75 0.7188 0.8438 +0.75 0.7188 0.875 +0.75 0.7188 0.9062 +0.75 0.7188 0.9375 +0.75 0.7188 0.9688 +0.75 0.7188 1 +0.75 0.75 0 +0.75 0.75 0.03125 +0.75 0.75 0.0625 +0.75 0.75 0.09375 +0.75 0.75 0.125 +0.75 0.75 0.1562 +0.75 0.75 0.1875 +0.75 0.75 0.2188 +0.75 0.75 0.25 +0.75 0.75 0.2812 +0.75 0.75 0.3125 +0.75 0.75 0.3438 +0.75 0.75 0.375 +0.75 0.75 0.4062 +0.75 0.75 0.4375 +0.75 0.75 0.4688 +0.75 0.75 0.5 +0.75 0.75 0.5312 +0.75 0.75 0.5625 +0.75 0.75 0.5938 +0.75 0.75 0.625 +0.75 0.75 0.6562 +0.75 0.75 0.6875 +0.75 0.75 0.7188 +0.75 0.75 0.75 +0.75 0.75 0.7812 +0.75 0.75 0.8125 +0.75 0.75 0.8438 +0.75 0.75 0.875 +0.75 0.75 0.9062 +0.75 0.75 0.9375 +0.75 0.75 0.9688 +0.75 0.75 1 +0.75 0.7812 0 +0.75 0.7812 0.03125 +0.75 0.7812 0.0625 +0.75 0.7812 0.09375 +0.75 0.7812 0.125 +0.75 0.7812 0.1562 +0.75 0.7812 0.1875 +0.75 0.7812 0.2188 +0.75 0.7812 0.25 +0.75 0.7812 0.2812 +0.75 0.7812 0.3125 +0.75 0.7812 0.3438 +0.75 0.7812 0.375 +0.75 0.7812 0.4062 +0.75 0.7812 0.4375 +0.75 0.7812 0.4688 +0.75 0.7812 0.5 +0.75 0.7812 0.5312 +0.75 0.7812 0.5625 +0.75 0.7812 0.5938 +0.75 0.7812 0.625 +0.75 0.7812 0.6562 +0.75 0.7812 0.6875 +0.75 0.7812 0.7188 +0.75 0.7812 0.75 +0.75 0.7812 0.7812 +0.75 0.7812 0.8125 +0.75 0.7812 0.8438 +0.75 0.7812 0.875 +0.75 0.7812 0.9062 +0.75 0.7812 0.9375 +0.75 0.7812 0.9688 +0.75 0.7812 1 +0.75 0.8125 0 +0.75 0.8125 0.03125 +0.75 0.8125 0.0625 +0.75 0.8125 0.09375 +0.75 0.8125 0.125 +0.75 0.8125 0.1562 +0.75 0.8125 0.1875 +0.75 0.8125 0.2188 +0.75 0.8125 0.25 +0.75 0.8125 0.2812 +0.75 0.8125 0.3125 +0.75 0.8125 0.3438 +0.75 0.8125 0.375 +0.75 0.8125 0.4062 +0.75 0.8125 0.4375 +0.75 0.8125 0.4688 +0.75 0.8125 0.5 +0.75 0.8125 0.5312 +0.75 0.8125 0.5625 +0.75 0.8125 0.5938 +0.75 0.8125 0.625 +0.75 0.8125 0.6562 +0.75 0.8125 0.6875 +0.75 0.8125 0.7188 +0.75 0.8125 0.75 +0.75 0.8125 0.7812 +0.75 0.8125 0.8125 +0.75 0.8125 0.8438 +0.75 0.8125 0.875 +0.75 0.8125 0.9062 +0.75 0.8125 0.9375 +0.75 0.8125 0.9688 +0.75 0.8125 1 +0.75 0.8438 0 +0.75 0.8438 0.03125 +0.75 0.8438 0.0625 +0.75 0.8438 0.09375 +0.75 0.8438 0.125 +0.75 0.8438 0.1562 +0.75 0.8438 0.1875 +0.75 0.8438 0.2188 +0.75 0.8438 0.25 +0.75 0.8438 0.2812 +0.75 0.8438 0.3125 +0.75 0.8438 0.3438 +0.75 0.8438 0.375 +0.75 0.8438 0.4062 +0.75 0.8438 0.4375 +0.75 0.8438 0.4688 +0.75 0.8438 0.5 +0.75 0.8438 0.5312 +0.75 0.8438 0.5625 +0.75 0.8438 0.5938 +0.75 0.8438 0.625 +0.75 0.8438 0.6562 +0.75 0.8438 0.6875 +0.75 0.8438 0.7188 +0.75 0.8438 0.75 +0.75 0.8438 0.7812 +0.75 0.8438 0.8125 +0.75 0.8438 0.8438 +0.75 0.8438 0.875 +0.75 0.8438 0.9062 +0.75 0.8438 0.9375 +0.75 0.8438 0.9688 +0.75 0.8438 1 +0.75 0.875 0 +0.75 0.875 0.03125 +0.75 0.875 0.0625 +0.75 0.875 0.09375 +0.75 0.875 0.125 +0.75 0.875 0.1562 +0.75 0.875 0.1875 +0.75 0.875 0.2188 +0.75 0.875 0.25 +0.75 0.875 0.2812 +0.75 0.875 0.3125 +0.75 0.875 0.3438 +0.75 0.875 0.375 +0.75 0.875 0.4062 +0.75 0.875 0.4375 +0.75 0.875 0.4688 +0.75 0.875 0.5 +0.75 0.875 0.5312 +0.75 0.875 0.5625 +0.75 0.875 0.5938 +0.75 0.875 0.625 +0.75 0.875 0.6562 +0.75 0.875 0.6875 +0.75 0.875 0.7188 +0.75 0.875 0.75 +0.75 0.875 0.7812 +0.75 0.875 0.8125 +0.75 0.875 0.8438 +0.75 0.875 0.875 +0.75 0.875 0.9062 +0.75 0.875 0.9375 +0.75 0.875 0.9688 +0.75 0.875 1 +0.75 0.9062 0 +0.75 0.9062 0.03125 +0.75 0.9062 0.0625 +0.75 0.9062 0.09375 +0.75 0.9062 0.125 +0.75 0.9062 0.1562 +0.75 0.9062 0.1875 +0.75 0.9062 0.2188 +0.75 0.9062 0.25 +0.75 0.9062 0.2812 +0.75 0.9062 0.3125 +0.75 0.9062 0.3438 +0.75 0.9062 0.375 +0.75 0.9062 0.4062 +0.75 0.9062 0.4375 +0.75 0.9062 0.4688 +0.75 0.9062 0.5 +0.75 0.9062 0.5312 +0.75 0.9062 0.5625 +0.75 0.9062 0.5938 +0.75 0.9062 0.625 +0.75 0.9062 0.6562 +0.75 0.9062 0.6875 +0.75 0.9062 0.7188 +0.75 0.9062 0.75 +0.75 0.9062 0.7812 +0.75 0.9062 0.8125 +0.75 0.9062 0.8438 +0.75 0.9062 0.875 +0.75 0.9062 0.9062 +0.75 0.9062 0.9375 +0.75 0.9062 0.9688 +0.75 0.9062 1 +0.75 0.9375 0 +0.75 0.9375 0.03125 +0.75 0.9375 0.0625 +0.75 0.9375 0.09375 +0.75 0.9375 0.125 +0.75 0.9375 0.1562 +0.75 0.9375 0.1875 +0.75 0.9375 0.2188 +0.75 0.9375 0.25 +0.75 0.9375 0.2812 +0.75 0.9375 0.3125 +0.75 0.9375 0.3438 +0.75 0.9375 0.375 +0.75 0.9375 0.4062 +0.75 0.9375 0.4375 +0.75 0.9375 0.4688 +0.75 0.9375 0.5 +0.75 0.9375 0.5312 +0.75 0.9375 0.5625 +0.75 0.9375 0.5938 +0.75 0.9375 0.625 +0.75 0.9375 0.6562 +0.75 0.9375 0.6875 +0.75 0.9375 0.7188 +0.75 0.9375 0.75 +0.75 0.9375 0.7812 +0.75 0.9375 0.8125 +0.75 0.9375 0.8438 +0.75 0.9375 0.875 +0.75 0.9375 0.9062 +0.75 0.9375 0.9375 +0.75 0.9375 0.9688 +0.75 0.9375 1 +0.75 0.9688 0 +0.75 0.9688 0.03125 +0.75 0.9688 0.0625 +0.75 0.9688 0.09375 +0.75 0.9688 0.125 +0.75 0.9688 0.1562 +0.75 0.9688 0.1875 +0.75 0.9688 0.2188 +0.75 0.9688 0.25 +0.75 0.9688 0.2812 +0.75 0.9688 0.3125 +0.75 0.9688 0.3438 +0.75 0.9688 0.375 +0.75 0.9688 0.4062 +0.75 0.9688 0.4375 +0.75 0.9688 0.4688 +0.75 0.9688 0.5 +0.75 0.9688 0.5312 +0.75 0.9688 0.5625 +0.75 0.9688 0.5938 +0.75 0.9688 0.625 +0.75 0.9688 0.6562 +0.75 0.9688 0.6875 +0.75 0.9688 0.7188 +0.75 0.9688 0.75 +0.75 0.9688 0.7812 +0.75 0.9688 0.8125 +0.75 0.9688 0.8438 +0.75 0.9688 0.875 +0.75 0.9688 0.9062 +0.75 0.9688 0.9375 +0.75 0.9688 0.9688 +0.75 0.9688 1 +0.75 1 0 +0.75 1 0.03125 +0.75 1 0.0625 +0.75 1 0.09375 +0.75 1 0.125 +0.75 1 0.1562 +0.75 1 0.1875 +0.75 1 0.2188 +0.75 1 0.25 +0.75 1 0.2812 +0.75 1 0.3125 +0.75 1 0.3438 +0.75 1 0.375 +0.75 1 0.4062 +0.75 1 0.4375 +0.75 1 0.4688 +0.75 1 0.5 +0.75 1 0.5312 +0.75 1 0.5625 +0.75 1 0.5938 +0.75 1 0.625 +0.75 1 0.6562 +0.75 1 0.6875 +0.75 1 0.7188 +0.75 1 0.75 +0.75 1 0.7812 +0.75 1 0.8125 +0.75 1 0.8438 +0.75 1 0.875 +0.75 1 0.9062 +0.75 1 0.9375 +0.75 1 0.9688 +0.75 1 1 +0.7812 0 0 +0.7812 0 0.03125 +0.7812 0 0.0625 +0.7812 0 0.09375 +0.7812 0 0.125 +0.7812 0 0.1562 +0.7812 0 0.1875 +0.7812 0 0.2188 +0.7812 0 0.25 +0.7812 0 0.2812 +0.7812 0 0.3125 +0.7812 0 0.3438 +0.7812 0 0.375 +0.7812 0 0.4062 +0.7812 0 0.4375 +0.7812 0 0.4688 +0.7812 0 0.5 +0.7812 0 0.5312 +0.7812 0 0.5625 +0.7812 0 0.5938 +0.7812 0 0.625 +0.7812 0 0.6562 +0.7812 0 0.6875 +0.7812 0 0.7188 +0.7812 0 0.75 +0.7812 0 0.7812 +0.7812 0 0.8125 +0.7812 0 0.8438 +0.7812 0 0.875 +0.7812 0 0.9062 +0.7812 0 0.9375 +0.7812 0 0.9688 +0.7812 0 1 +0.7812 0.03125 0 +0.7812 0.03125 0.03125 +0.7812 0.03125 0.0625 +0.7812 0.03125 0.09375 +0.7812 0.03125 0.125 +0.7812 0.03125 0.1562 +0.7812 0.03125 0.1875 +0.7812 0.03125 0.2188 +0.7812 0.03125 0.25 +0.7812 0.03125 0.2812 +0.7812 0.03125 0.3125 +0.7812 0.03125 0.3438 +0.7812 0.03125 0.375 +0.7812 0.03125 0.4062 +0.7812 0.03125 0.4375 +0.7812 0.03125 0.4688 +0.7812 0.03125 0.5 +0.7812 0.03125 0.5312 +0.7812 0.03125 0.5625 +0.7812 0.03125 0.5938 +0.7812 0.03125 0.625 +0.7812 0.03125 0.6562 +0.7812 0.03125 0.6875 +0.7812 0.03125 0.7188 +0.7812 0.03125 0.75 +0.7812 0.03125 0.7812 +0.7812 0.03125 0.8125 +0.7812 0.03125 0.8438 +0.7812 0.03125 0.875 +0.7812 0.03125 0.9062 +0.7812 0.03125 0.9375 +0.7812 0.03125 0.9688 +0.7812 0.03125 1 +0.7812 0.0625 0 +0.7812 0.0625 0.03125 +0.7812 0.0625 0.0625 +0.7812 0.0625 0.09375 +0.7812 0.0625 0.125 +0.7812 0.0625 0.1562 +0.7812 0.0625 0.1875 +0.7812 0.0625 0.2188 +0.7812 0.0625 0.25 +0.7812 0.0625 0.2812 +0.7812 0.0625 0.3125 +0.7812 0.0625 0.3438 +0.7812 0.0625 0.375 +0.7812 0.0625 0.4062 +0.7812 0.0625 0.4375 +0.7812 0.0625 0.4688 +0.7812 0.0625 0.5 +0.7812 0.0625 0.5312 +0.7812 0.0625 0.5625 +0.7812 0.0625 0.5938 +0.7812 0.0625 0.625 +0.7812 0.0625 0.6562 +0.7812 0.0625 0.6875 +0.7812 0.0625 0.7188 +0.7812 0.0625 0.75 +0.7812 0.0625 0.7812 +0.7812 0.0625 0.8125 +0.7812 0.0625 0.8438 +0.7812 0.0625 0.875 +0.7812 0.0625 0.9062 +0.7812 0.0625 0.9375 +0.7812 0.0625 0.9688 +0.7812 0.0625 1 +0.7812 0.09375 0 +0.7812 0.09375 0.03125 +0.7812 0.09375 0.0625 +0.7812 0.09375 0.09375 +0.7812 0.09375 0.125 +0.7812 0.09375 0.1562 +0.7812 0.09375 0.1875 +0.7812 0.09375 0.2188 +0.7812 0.09375 0.25 +0.7812 0.09375 0.2812 +0.7812 0.09375 0.3125 +0.7812 0.09375 0.3438 +0.7812 0.09375 0.375 +0.7812 0.09375 0.4062 +0.7812 0.09375 0.4375 +0.7812 0.09375 0.4688 +0.7812 0.09375 0.5 +0.7812 0.09375 0.5312 +0.7812 0.09375 0.5625 +0.7812 0.09375 0.5938 +0.7812 0.09375 0.625 +0.7812 0.09375 0.6562 +0.7812 0.09375 0.6875 +0.7812 0.09375 0.7188 +0.7812 0.09375 0.75 +0.7812 0.09375 0.7812 +0.7812 0.09375 0.8125 +0.7812 0.09375 0.8438 +0.7812 0.09375 0.875 +0.7812 0.09375 0.9062 +0.7812 0.09375 0.9375 +0.7812 0.09375 0.9688 +0.7812 0.09375 1 +0.7812 0.125 0 +0.7812 0.125 0.03125 +0.7812 0.125 0.0625 +0.7812 0.125 0.09375 +0.7812 0.125 0.125 +0.7812 0.125 0.1562 +0.7812 0.125 0.1875 +0.7812 0.125 0.2188 +0.7812 0.125 0.25 +0.7812 0.125 0.2812 +0.7812 0.125 0.3125 +0.7812 0.125 0.3438 +0.7812 0.125 0.375 +0.7812 0.125 0.4062 +0.7812 0.125 0.4375 +0.7812 0.125 0.4688 +0.7812 0.125 0.5 +0.7812 0.125 0.5312 +0.7812 0.125 0.5625 +0.7812 0.125 0.5938 +0.7812 0.125 0.625 +0.7812 0.125 0.6562 +0.7812 0.125 0.6875 +0.7812 0.125 0.7188 +0.7812 0.125 0.75 +0.7812 0.125 0.7812 +0.7812 0.125 0.8125 +0.7812 0.125 0.8438 +0.7812 0.125 0.875 +0.7812 0.125 0.9062 +0.7812 0.125 0.9375 +0.7812 0.125 0.9688 +0.7812 0.125 1 +0.7812 0.1562 0 +0.7812 0.1562 0.03125 +0.7812 0.1562 0.0625 +0.7812 0.1562 0.09375 +0.7812 0.1562 0.125 +0.7812 0.1562 0.1562 +0.7812 0.1562 0.1875 +0.7812 0.1562 0.2188 +0.7812 0.1562 0.25 +0.7812 0.1562 0.2812 +0.7812 0.1562 0.3125 +0.7812 0.1562 0.3438 +0.7812 0.1562 0.375 +0.7812 0.1562 0.4062 +0.7812 0.1562 0.4375 +0.7812 0.1562 0.4688 +0.7812 0.1562 0.5 +0.7812 0.1562 0.5312 +0.7812 0.1562 0.5625 +0.7812 0.1562 0.5938 +0.7812 0.1562 0.625 +0.7812 0.1562 0.6562 +0.7812 0.1562 0.6875 +0.7812 0.1562 0.7188 +0.7812 0.1562 0.75 +0.7812 0.1562 0.7812 +0.7812 0.1562 0.8125 +0.7812 0.1562 0.8438 +0.7812 0.1562 0.875 +0.7812 0.1562 0.9062 +0.7812 0.1562 0.9375 +0.7812 0.1562 0.9688 +0.7812 0.1562 1 +0.7812 0.1875 0 +0.7812 0.1875 0.03125 +0.7812 0.1875 0.0625 +0.7812 0.1875 0.09375 +0.7812 0.1875 0.125 +0.7812 0.1875 0.1562 +0.7812 0.1875 0.1875 +0.7812 0.1875 0.2188 +0.7812 0.1875 0.25 +0.7812 0.1875 0.2812 +0.7812 0.1875 0.3125 +0.7812 0.1875 0.3438 +0.7812 0.1875 0.375 +0.7812 0.1875 0.4062 +0.7812 0.1875 0.4375 +0.7812 0.1875 0.4688 +0.7812 0.1875 0.5 +0.7812 0.1875 0.5312 +0.7812 0.1875 0.5625 +0.7812 0.1875 0.5938 +0.7812 0.1875 0.625 +0.7812 0.1875 0.6562 +0.7812 0.1875 0.6875 +0.7812 0.1875 0.7188 +0.7812 0.1875 0.75 +0.7812 0.1875 0.7812 +0.7812 0.1875 0.8125 +0.7812 0.1875 0.8438 +0.7812 0.1875 0.875 +0.7812 0.1875 0.9062 +0.7812 0.1875 0.9375 +0.7812 0.1875 0.9688 +0.7812 0.1875 1 +0.7812 0.2188 0 +0.7812 0.2188 0.03125 +0.7812 0.2188 0.0625 +0.7812 0.2188 0.09375 +0.7812 0.2188 0.125 +0.7812 0.2188 0.1562 +0.7812 0.2188 0.1875 +0.7812 0.2188 0.2188 +0.7812 0.2188 0.25 +0.7812 0.2188 0.2812 +0.7812 0.2188 0.3125 +0.7812 0.2188 0.3438 +0.7812 0.2188 0.375 +0.7812 0.2188 0.4062 +0.7812 0.2188 0.4375 +0.7812 0.2188 0.4688 +0.7812 0.2188 0.5 +0.7812 0.2188 0.5312 +0.7812 0.2188 0.5625 +0.7812 0.2188 0.5938 +0.7812 0.2188 0.625 +0.7812 0.2188 0.6562 +0.7812 0.2188 0.6875 +0.7812 0.2188 0.7188 +0.7812 0.2188 0.75 +0.7812 0.2188 0.7812 +0.7812 0.2188 0.8125 +0.7812 0.2188 0.8438 +0.7812 0.2188 0.875 +0.7812 0.2188 0.9062 +0.7812 0.2188 0.9375 +0.7812 0.2188 0.9688 +0.7812 0.2188 1 +0.7812 0.25 0 +0.7812 0.25 0.03125 +0.7812 0.25 0.0625 +0.7812 0.25 0.09375 +0.7812 0.25 0.125 +0.7812 0.25 0.1562 +0.7812 0.25 0.1875 +0.7812 0.25 0.2188 +0.7812 0.25 0.25 +0.7812 0.25 0.2812 +0.7812 0.25 0.3125 +0.7812 0.25 0.3438 +0.7812 0.25 0.375 +0.7812 0.25 0.4062 +0.7812 0.25 0.4375 +0.7812 0.25 0.4688 +0.7812 0.25 0.5 +0.7812 0.25 0.5312 +0.7812 0.25 0.5625 +0.7812 0.25 0.5938 +0.7812 0.25 0.625 +0.7812 0.25 0.6562 +0.7812 0.25 0.6875 +0.7812 0.25 0.7188 +0.7812 0.25 0.75 +0.7812 0.25 0.7812 +0.7812 0.25 0.8125 +0.7812 0.25 0.8438 +0.7812 0.25 0.875 +0.7812 0.25 0.9062 +0.7812 0.25 0.9375 +0.7812 0.25 0.9688 +0.7812 0.25 1 +0.7812 0.2812 0 +0.7812 0.2812 0.03125 +0.7812 0.2812 0.0625 +0.7812 0.2812 0.09375 +0.7812 0.2812 0.125 +0.7812 0.2812 0.1562 +0.7812 0.2812 0.1875 +0.7812 0.2812 0.2188 +0.7812 0.2812 0.25 +0.7812 0.2812 0.2812 +0.7812 0.2812 0.3125 +0.7812 0.2812 0.3438 +0.7812 0.2812 0.375 +0.7812 0.2812 0.4062 +0.7812 0.2812 0.4375 +0.7812 0.2812 0.4688 +0.7812 0.2812 0.5 +0.7812 0.2812 0.5312 +0.7812 0.2812 0.5625 +0.7812 0.2812 0.5938 +0.7812 0.2812 0.625 +0.7812 0.2812 0.6562 +0.7812 0.2812 0.6875 +0.7812 0.2812 0.7188 +0.7812 0.2812 0.75 +0.7812 0.2812 0.7812 +0.7812 0.2812 0.8125 +0.7812 0.2812 0.8438 +0.7812 0.2812 0.875 +0.7812 0.2812 0.9062 +0.7812 0.2812 0.9375 +0.7812 0.2812 0.9688 +0.7812 0.2812 1 +0.7812 0.3125 0 +0.7812 0.3125 0.03125 +0.7812 0.3125 0.0625 +0.7812 0.3125 0.09375 +0.7812 0.3125 0.125 +0.7812 0.3125 0.1562 +0.7812 0.3125 0.1875 +0.7812 0.3125 0.2188 +0.7812 0.3125 0.25 +0.7812 0.3125 0.2812 +0.7812 0.3125 0.3125 +0.7812 0.3125 0.3438 +0.7812 0.3125 0.375 +0.7812 0.3125 0.4062 +0.7812 0.3125 0.4375 +0.7812 0.3125 0.4688 +0.7812 0.3125 0.5 +0.7812 0.3125 0.5312 +0.7812 0.3125 0.5625 +0.7812 0.3125 0.5938 +0.7812 0.3125 0.625 +0.7812 0.3125 0.6562 +0.7812 0.3125 0.6875 +0.7812 0.3125 0.7188 +0.7812 0.3125 0.75 +0.7812 0.3125 0.7812 +0.7812 0.3125 0.8125 +0.7812 0.3125 0.8438 +0.7812 0.3125 0.875 +0.7812 0.3125 0.9062 +0.7812 0.3125 0.9375 +0.7812 0.3125 0.9688 +0.7812 0.3125 1 +0.7812 0.3438 0 +0.7812 0.3438 0.03125 +0.7812 0.3438 0.0625 +0.7812 0.3438 0.09375 +0.7812 0.3438 0.125 +0.7812 0.3438 0.1562 +0.7812 0.3438 0.1875 +0.7812 0.3438 0.2188 +0.7812 0.3438 0.25 +0.7812 0.3438 0.2812 +0.7812 0.3438 0.3125 +0.7812 0.3438 0.3438 +0.7812 0.3438 0.375 +0.7812 0.3438 0.4062 +0.7812 0.3438 0.4375 +0.7812 0.3438 0.4688 +0.7812 0.3438 0.5 +0.7812 0.3438 0.5312 +0.7812 0.3438 0.5625 +0.7812 0.3438 0.5938 +0.7812 0.3438 0.625 +0.7812 0.3438 0.6562 +0.7812 0.3438 0.6875 +0.7812 0.3438 0.7188 +0.7812 0.3438 0.75 +0.7812 0.3438 0.7812 +0.7812 0.3438 0.8125 +0.7812 0.3438 0.8438 +0.7812 0.3438 0.875 +0.7812 0.3438 0.9062 +0.7812 0.3438 0.9375 +0.7812 0.3438 0.9688 +0.7812 0.3438 1 +0.7812 0.375 0 +0.7812 0.375 0.03125 +0.7812 0.375 0.0625 +0.7812 0.375 0.09375 +0.7812 0.375 0.125 +0.7812 0.375 0.1562 +0.7812 0.375 0.1875 +0.7812 0.375 0.2188 +0.7812 0.375 0.25 +0.7812 0.375 0.2812 +0.7812 0.375 0.3125 +0.7812 0.375 0.3438 +0.7812 0.375 0.375 +0.7812 0.375 0.4062 +0.7812 0.375 0.4375 +0.7812 0.375 0.4688 +0.7812 0.375 0.5 +0.7812 0.375 0.5312 +0.7812 0.375 0.5625 +0.7812 0.375 0.5938 +0.7812 0.375 0.625 +0.7812 0.375 0.6562 +0.7812 0.375 0.6875 +0.7812 0.375 0.7188 +0.7812 0.375 0.75 +0.7812 0.375 0.7812 +0.7812 0.375 0.8125 +0.7812 0.375 0.8438 +0.7812 0.375 0.875 +0.7812 0.375 0.9062 +0.7812 0.375 0.9375 +0.7812 0.375 0.9688 +0.7812 0.375 1 +0.7812 0.4062 0 +0.7812 0.4062 0.03125 +0.7812 0.4062 0.0625 +0.7812 0.4062 0.09375 +0.7812 0.4062 0.125 +0.7812 0.4062 0.1562 +0.7812 0.4062 0.1875 +0.7812 0.4062 0.2188 +0.7812 0.4062 0.25 +0.7812 0.4062 0.2812 +0.7812 0.4062 0.3125 +0.7812 0.4062 0.3438 +0.7812 0.4062 0.375 +0.7812 0.4062 0.4062 +0.7812 0.4062 0.4375 +0.7812 0.4062 0.4688 +0.7812 0.4062 0.5 +0.7812 0.4062 0.5312 +0.7812 0.4062 0.5625 +0.7812 0.4062 0.5938 +0.7812 0.4062 0.625 +0.7812 0.4062 0.6562 +0.7812 0.4062 0.6875 +0.7812 0.4062 0.7188 +0.7812 0.4062 0.75 +0.7812 0.4062 0.7812 +0.7812 0.4062 0.8125 +0.7812 0.4062 0.8438 +0.7812 0.4062 0.875 +0.7812 0.4062 0.9062 +0.7812 0.4062 0.9375 +0.7812 0.4062 0.9688 +0.7812 0.4062 1 +0.7812 0.4375 0 +0.7812 0.4375 0.03125 +0.7812 0.4375 0.0625 +0.7812 0.4375 0.09375 +0.7812 0.4375 0.125 +0.7812 0.4375 0.1562 +0.7812 0.4375 0.1875 +0.7812 0.4375 0.2188 +0.7812 0.4375 0.25 +0.7812 0.4375 0.2812 +0.7812 0.4375 0.3125 +0.7812 0.4375 0.3438 +0.7812 0.4375 0.375 +0.7812 0.4375 0.4062 +0.7812 0.4375 0.4375 +0.7812 0.4375 0.4688 +0.7812 0.4375 0.5 +0.7812 0.4375 0.5312 +0.7812 0.4375 0.5625 +0.7812 0.4375 0.5938 +0.7812 0.4375 0.625 +0.7812 0.4375 0.6562 +0.7812 0.4375 0.6875 +0.7812 0.4375 0.7188 +0.7812 0.4375 0.75 +0.7812 0.4375 0.7812 +0.7812 0.4375 0.8125 +0.7812 0.4375 0.8438 +0.7812 0.4375 0.875 +0.7812 0.4375 0.9062 +0.7812 0.4375 0.9375 +0.7812 0.4375 0.9688 +0.7812 0.4375 1 +0.7812 0.4688 0 +0.7812 0.4688 0.03125 +0.7812 0.4688 0.0625 +0.7812 0.4688 0.09375 +0.7812 0.4688 0.125 +0.7812 0.4688 0.1562 +0.7812 0.4688 0.1875 +0.7812 0.4688 0.2188 +0.7812 0.4688 0.25 +0.7812 0.4688 0.2812 +0.7812 0.4688 0.3125 +0.7812 0.4688 0.3438 +0.7812 0.4688 0.375 +0.7812 0.4688 0.4062 +0.7812 0.4688 0.4375 +0.7812 0.4688 0.4688 +0.7812 0.4688 0.5 +0.7812 0.4688 0.5312 +0.7812 0.4688 0.5625 +0.7812 0.4688 0.5938 +0.7812 0.4688 0.625 +0.7812 0.4688 0.6562 +0.7812 0.4688 0.6875 +0.7812 0.4688 0.7188 +0.7812 0.4688 0.75 +0.7812 0.4688 0.7812 +0.7812 0.4688 0.8125 +0.7812 0.4688 0.8438 +0.7812 0.4688 0.875 +0.7812 0.4688 0.9062 +0.7812 0.4688 0.9375 +0.7812 0.4688 0.9688 +0.7812 0.4688 1 +0.7812 0.5 0 +0.7812 0.5 0.03125 +0.7812 0.5 0.0625 +0.7812 0.5 0.09375 +0.7812 0.5 0.125 +0.7812 0.5 0.1562 +0.7812 0.5 0.1875 +0.7812 0.5 0.2188 +0.7812 0.5 0.25 +0.7812 0.5 0.2812 +0.7812 0.5 0.3125 +0.7812 0.5 0.3438 +0.7812 0.5 0.375 +0.7812 0.5 0.4062 +0.7812 0.5 0.4375 +0.7812 0.5 0.4688 +0.7812 0.5 0.5 +0.7812 0.5 0.5312 +0.7812 0.5 0.5625 +0.7812 0.5 0.5938 +0.7812 0.5 0.625 +0.7812 0.5 0.6562 +0.7812 0.5 0.6875 +0.7812 0.5 0.7188 +0.7812 0.5 0.75 +0.7812 0.5 0.7812 +0.7812 0.5 0.8125 +0.7812 0.5 0.8438 +0.7812 0.5 0.875 +0.7812 0.5 0.9062 +0.7812 0.5 0.9375 +0.7812 0.5 0.9688 +0.7812 0.5 1 +0.7812 0.5312 0 +0.7812 0.5312 0.03125 +0.7812 0.5312 0.0625 +0.7812 0.5312 0.09375 +0.7812 0.5312 0.125 +0.7812 0.5312 0.1562 +0.7812 0.5312 0.1875 +0.7812 0.5312 0.2188 +0.7812 0.5312 0.25 +0.7812 0.5312 0.2812 +0.7812 0.5312 0.3125 +0.7812 0.5312 0.3438 +0.7812 0.5312 0.375 +0.7812 0.5312 0.4062 +0.7812 0.5312 0.4375 +0.7812 0.5312 0.4688 +0.7812 0.5312 0.5 +0.7812 0.5312 0.5312 +0.7812 0.5312 0.5625 +0.7812 0.5312 0.5938 +0.7812 0.5312 0.625 +0.7812 0.5312 0.6562 +0.7812 0.5312 0.6875 +0.7812 0.5312 0.7188 +0.7812 0.5312 0.75 +0.7812 0.5312 0.7812 +0.7812 0.5312 0.8125 +0.7812 0.5312 0.8438 +0.7812 0.5312 0.875 +0.7812 0.5312 0.9062 +0.7812 0.5312 0.9375 +0.7812 0.5312 0.9688 +0.7812 0.5312 1 +0.7812 0.5625 0 +0.7812 0.5625 0.03125 +0.7812 0.5625 0.0625 +0.7812 0.5625 0.09375 +0.7812 0.5625 0.125 +0.7812 0.5625 0.1562 +0.7812 0.5625 0.1875 +0.7812 0.5625 0.2188 +0.7812 0.5625 0.25 +0.7812 0.5625 0.2812 +0.7812 0.5625 0.3125 +0.7812 0.5625 0.3438 +0.7812 0.5625 0.375 +0.7812 0.5625 0.4062 +0.7812 0.5625 0.4375 +0.7812 0.5625 0.4688 +0.7812 0.5625 0.5 +0.7812 0.5625 0.5312 +0.7812 0.5625 0.5625 +0.7812 0.5625 0.5938 +0.7812 0.5625 0.625 +0.7812 0.5625 0.6562 +0.7812 0.5625 0.6875 +0.7812 0.5625 0.7188 +0.7812 0.5625 0.75 +0.7812 0.5625 0.7812 +0.7812 0.5625 0.8125 +0.7812 0.5625 0.8438 +0.7812 0.5625 0.875 +0.7812 0.5625 0.9062 +0.7812 0.5625 0.9375 +0.7812 0.5625 0.9688 +0.7812 0.5625 1 +0.7812 0.5938 0 +0.7812 0.5938 0.03125 +0.7812 0.5938 0.0625 +0.7812 0.5938 0.09375 +0.7812 0.5938 0.125 +0.7812 0.5938 0.1562 +0.7812 0.5938 0.1875 +0.7812 0.5938 0.2188 +0.7812 0.5938 0.25 +0.7812 0.5938 0.2812 +0.7812 0.5938 0.3125 +0.7812 0.5938 0.3438 +0.7812 0.5938 0.375 +0.7812 0.5938 0.4062 +0.7812 0.5938 0.4375 +0.7812 0.5938 0.4688 +0.7812 0.5938 0.5 +0.7812 0.5938 0.5312 +0.7812 0.5938 0.5625 +0.7812 0.5938 0.5938 +0.7812 0.5938 0.625 +0.7812 0.5938 0.6562 +0.7812 0.5938 0.6875 +0.7812 0.5938 0.7188 +0.7812 0.5938 0.75 +0.7812 0.5938 0.7812 +0.7812 0.5938 0.8125 +0.7812 0.5938 0.8438 +0.7812 0.5938 0.875 +0.7812 0.5938 0.9062 +0.7812 0.5938 0.9375 +0.7812 0.5938 0.9688 +0.7812 0.5938 1 +0.7812 0.625 0 +0.7812 0.625 0.03125 +0.7812 0.625 0.0625 +0.7812 0.625 0.09375 +0.7812 0.625 0.125 +0.7812 0.625 0.1562 +0.7812 0.625 0.1875 +0.7812 0.625 0.2188 +0.7812 0.625 0.25 +0.7812 0.625 0.2812 +0.7812 0.625 0.3125 +0.7812 0.625 0.3438 +0.7812 0.625 0.375 +0.7812 0.625 0.4062 +0.7812 0.625 0.4375 +0.7812 0.625 0.4688 +0.7812 0.625 0.5 +0.7812 0.625 0.5312 +0.7812 0.625 0.5625 +0.7812 0.625 0.5938 +0.7812 0.625 0.625 +0.7812 0.625 0.6562 +0.7812 0.625 0.6875 +0.7812 0.625 0.7188 +0.7812 0.625 0.75 +0.7812 0.625 0.7812 +0.7812 0.625 0.8125 +0.7812 0.625 0.8438 +0.7812 0.625 0.875 +0.7812 0.625 0.9062 +0.7812 0.625 0.9375 +0.7812 0.625 0.9688 +0.7812 0.625 1 +0.7812 0.6562 0 +0.7812 0.6562 0.03125 +0.7812 0.6562 0.0625 +0.7812 0.6562 0.09375 +0.7812 0.6562 0.125 +0.7812 0.6562 0.1562 +0.7812 0.6562 0.1875 +0.7812 0.6562 0.2188 +0.7812 0.6562 0.25 +0.7812 0.6562 0.2812 +0.7812 0.6562 0.3125 +0.7812 0.6562 0.3438 +0.7812 0.6562 0.375 +0.7812 0.6562 0.4062 +0.7812 0.6562 0.4375 +0.7812 0.6562 0.4688 +0.7812 0.6562 0.5 +0.7812 0.6562 0.5312 +0.7812 0.6562 0.5625 +0.7812 0.6562 0.5938 +0.7812 0.6562 0.625 +0.7812 0.6562 0.6562 +0.7812 0.6562 0.6875 +0.7812 0.6562 0.7188 +0.7812 0.6562 0.75 +0.7812 0.6562 0.7812 +0.7812 0.6562 0.8125 +0.7812 0.6562 0.8438 +0.7812 0.6562 0.875 +0.7812 0.6562 0.9062 +0.7812 0.6562 0.9375 +0.7812 0.6562 0.9688 +0.7812 0.6562 1 +0.7812 0.6875 0 +0.7812 0.6875 0.03125 +0.7812 0.6875 0.0625 +0.7812 0.6875 0.09375 +0.7812 0.6875 0.125 +0.7812 0.6875 0.1562 +0.7812 0.6875 0.1875 +0.7812 0.6875 0.2188 +0.7812 0.6875 0.25 +0.7812 0.6875 0.2812 +0.7812 0.6875 0.3125 +0.7812 0.6875 0.3438 +0.7812 0.6875 0.375 +0.7812 0.6875 0.4062 +0.7812 0.6875 0.4375 +0.7812 0.6875 0.4688 +0.7812 0.6875 0.5 +0.7812 0.6875 0.5312 +0.7812 0.6875 0.5625 +0.7812 0.6875 0.5938 +0.7812 0.6875 0.625 +0.7812 0.6875 0.6562 +0.7812 0.6875 0.6875 +0.7812 0.6875 0.7188 +0.7812 0.6875 0.75 +0.7812 0.6875 0.7812 +0.7812 0.6875 0.8125 +0.7812 0.6875 0.8438 +0.7812 0.6875 0.875 +0.7812 0.6875 0.9062 +0.7812 0.6875 0.9375 +0.7812 0.6875 0.9688 +0.7812 0.6875 1 +0.7812 0.7188 0 +0.7812 0.7188 0.03125 +0.7812 0.7188 0.0625 +0.7812 0.7188 0.09375 +0.7812 0.7188 0.125 +0.7812 0.7188 0.1562 +0.7812 0.7188 0.1875 +0.7812 0.7188 0.2188 +0.7812 0.7188 0.25 +0.7812 0.7188 0.2812 +0.7812 0.7188 0.3125 +0.7812 0.7188 0.3438 +0.7812 0.7188 0.375 +0.7812 0.7188 0.4062 +0.7812 0.7188 0.4375 +0.7812 0.7188 0.4688 +0.7812 0.7188 0.5 +0.7812 0.7188 0.5312 +0.7812 0.7188 0.5625 +0.7812 0.7188 0.5938 +0.7812 0.7188 0.625 +0.7812 0.7188 0.6562 +0.7812 0.7188 0.6875 +0.7812 0.7188 0.7188 +0.7812 0.7188 0.75 +0.7812 0.7188 0.7812 +0.7812 0.7188 0.8125 +0.7812 0.7188 0.8438 +0.7812 0.7188 0.875 +0.7812 0.7188 0.9062 +0.7812 0.7188 0.9375 +0.7812 0.7188 0.9688 +0.7812 0.7188 1 +0.7812 0.75 0 +0.7812 0.75 0.03125 +0.7812 0.75 0.0625 +0.7812 0.75 0.09375 +0.7812 0.75 0.125 +0.7812 0.75 0.1562 +0.7812 0.75 0.1875 +0.7812 0.75 0.2188 +0.7812 0.75 0.25 +0.7812 0.75 0.2812 +0.7812 0.75 0.3125 +0.7812 0.75 0.3438 +0.7812 0.75 0.375 +0.7812 0.75 0.4062 +0.7812 0.75 0.4375 +0.7812 0.75 0.4688 +0.7812 0.75 0.5 +0.7812 0.75 0.5312 +0.7812 0.75 0.5625 +0.7812 0.75 0.5938 +0.7812 0.75 0.625 +0.7812 0.75 0.6562 +0.7812 0.75 0.6875 +0.7812 0.75 0.7188 +0.7812 0.75 0.75 +0.7812 0.75 0.7812 +0.7812 0.75 0.8125 +0.7812 0.75 0.8438 +0.7812 0.75 0.875 +0.7812 0.75 0.9062 +0.7812 0.75 0.9375 +0.7812 0.75 0.9688 +0.7812 0.75 1 +0.7812 0.7812 0 +0.7812 0.7812 0.03125 +0.7812 0.7812 0.0625 +0.7812 0.7812 0.09375 +0.7812 0.7812 0.125 +0.7812 0.7812 0.1562 +0.7812 0.7812 0.1875 +0.7812 0.7812 0.2188 +0.7812 0.7812 0.25 +0.7812 0.7812 0.2812 +0.7812 0.7812 0.3125 +0.7812 0.7812 0.3438 +0.7812 0.7812 0.375 +0.7812 0.7812 0.4062 +0.7812 0.7812 0.4375 +0.7812 0.7812 0.4688 +0.7812 0.7812 0.5 +0.7812 0.7812 0.5312 +0.7812 0.7812 0.5625 +0.7812 0.7812 0.5938 +0.7812 0.7812 0.625 +0.7812 0.7812 0.6562 +0.7812 0.7812 0.6875 +0.7812 0.7812 0.7188 +0.7812 0.7812 0.75 +0.7812 0.7812 0.7812 +0.7812 0.7812 0.8125 +0.7812 0.7812 0.8438 +0.7812 0.7812 0.875 +0.7812 0.7812 0.9062 +0.7812 0.7812 0.9375 +0.7812 0.7812 0.9688 +0.7812 0.7812 1 +0.7812 0.8125 0 +0.7812 0.8125 0.03125 +0.7812 0.8125 0.0625 +0.7812 0.8125 0.09375 +0.7812 0.8125 0.125 +0.7812 0.8125 0.1562 +0.7812 0.8125 0.1875 +0.7812 0.8125 0.2188 +0.7812 0.8125 0.25 +0.7812 0.8125 0.2812 +0.7812 0.8125 0.3125 +0.7812 0.8125 0.3438 +0.7812 0.8125 0.375 +0.7812 0.8125 0.4062 +0.7812 0.8125 0.4375 +0.7812 0.8125 0.4688 +0.7812 0.8125 0.5 +0.7812 0.8125 0.5312 +0.7812 0.8125 0.5625 +0.7812 0.8125 0.5938 +0.7812 0.8125 0.625 +0.7812 0.8125 0.6562 +0.7812 0.8125 0.6875 +0.7812 0.8125 0.7188 +0.7812 0.8125 0.75 +0.7812 0.8125 0.7812 +0.7812 0.8125 0.8125 +0.7812 0.8125 0.8438 +0.7812 0.8125 0.875 +0.7812 0.8125 0.9062 +0.7812 0.8125 0.9375 +0.7812 0.8125 0.9688 +0.7812 0.8125 1 +0.7812 0.8438 0 +0.7812 0.8438 0.03125 +0.7812 0.8438 0.0625 +0.7812 0.8438 0.09375 +0.7812 0.8438 0.125 +0.7812 0.8438 0.1562 +0.7812 0.8438 0.1875 +0.7812 0.8438 0.2188 +0.7812 0.8438 0.25 +0.7812 0.8438 0.2812 +0.7812 0.8438 0.3125 +0.7812 0.8438 0.3438 +0.7812 0.8438 0.375 +0.7812 0.8438 0.4062 +0.7812 0.8438 0.4375 +0.7812 0.8438 0.4688 +0.7812 0.8438 0.5 +0.7812 0.8438 0.5312 +0.7812 0.8438 0.5625 +0.7812 0.8438 0.5938 +0.7812 0.8438 0.625 +0.7812 0.8438 0.6562 +0.7812 0.8438 0.6875 +0.7812 0.8438 0.7188 +0.7812 0.8438 0.75 +0.7812 0.8438 0.7812 +0.7812 0.8438 0.8125 +0.7812 0.8438 0.8438 +0.7812 0.8438 0.875 +0.7812 0.8438 0.9062 +0.7812 0.8438 0.9375 +0.7812 0.8438 0.9688 +0.7812 0.8438 1 +0.7812 0.875 0 +0.7812 0.875 0.03125 +0.7812 0.875 0.0625 +0.7812 0.875 0.09375 +0.7812 0.875 0.125 +0.7812 0.875 0.1562 +0.7812 0.875 0.1875 +0.7812 0.875 0.2188 +0.7812 0.875 0.25 +0.7812 0.875 0.2812 +0.7812 0.875 0.3125 +0.7812 0.875 0.3438 +0.7812 0.875 0.375 +0.7812 0.875 0.4062 +0.7812 0.875 0.4375 +0.7812 0.875 0.4688 +0.7812 0.875 0.5 +0.7812 0.875 0.5312 +0.7812 0.875 0.5625 +0.7812 0.875 0.5938 +0.7812 0.875 0.625 +0.7812 0.875 0.6562 +0.7812 0.875 0.6875 +0.7812 0.875 0.7188 +0.7812 0.875 0.75 +0.7812 0.875 0.7812 +0.7812 0.875 0.8125 +0.7812 0.875 0.8438 +0.7812 0.875 0.875 +0.7812 0.875 0.9062 +0.7812 0.875 0.9375 +0.7812 0.875 0.9688 +0.7812 0.875 1 +0.7812 0.9062 0 +0.7812 0.9062 0.03125 +0.7812 0.9062 0.0625 +0.7812 0.9062 0.09375 +0.7812 0.9062 0.125 +0.7812 0.9062 0.1562 +0.7812 0.9062 0.1875 +0.7812 0.9062 0.2188 +0.7812 0.9062 0.25 +0.7812 0.9062 0.2812 +0.7812 0.9062 0.3125 +0.7812 0.9062 0.3438 +0.7812 0.9062 0.375 +0.7812 0.9062 0.4062 +0.7812 0.9062 0.4375 +0.7812 0.9062 0.4688 +0.7812 0.9062 0.5 +0.7812 0.9062 0.5312 +0.7812 0.9062 0.5625 +0.7812 0.9062 0.5938 +0.7812 0.9062 0.625 +0.7812 0.9062 0.6562 +0.7812 0.9062 0.6875 +0.7812 0.9062 0.7188 +0.7812 0.9062 0.75 +0.7812 0.9062 0.7812 +0.7812 0.9062 0.8125 +0.7812 0.9062 0.8438 +0.7812 0.9062 0.875 +0.7812 0.9062 0.9062 +0.7812 0.9062 0.9375 +0.7812 0.9062 0.9688 +0.7812 0.9062 1 +0.7812 0.9375 0 +0.7812 0.9375 0.03125 +0.7812 0.9375 0.0625 +0.7812 0.9375 0.09375 +0.7812 0.9375 0.125 +0.7812 0.9375 0.1562 +0.7812 0.9375 0.1875 +0.7812 0.9375 0.2188 +0.7812 0.9375 0.25 +0.7812 0.9375 0.2812 +0.7812 0.9375 0.3125 +0.7812 0.9375 0.3438 +0.7812 0.9375 0.375 +0.7812 0.9375 0.4062 +0.7812 0.9375 0.4375 +0.7812 0.9375 0.4688 +0.7812 0.9375 0.5 +0.7812 0.9375 0.5312 +0.7812 0.9375 0.5625 +0.7812 0.9375 0.5938 +0.7812 0.9375 0.625 +0.7812 0.9375 0.6562 +0.7812 0.9375 0.6875 +0.7812 0.9375 0.7188 +0.7812 0.9375 0.75 +0.7812 0.9375 0.7812 +0.7812 0.9375 0.8125 +0.7812 0.9375 0.8438 +0.7812 0.9375 0.875 +0.7812 0.9375 0.9062 +0.7812 0.9375 0.9375 +0.7812 0.9375 0.9688 +0.7812 0.9375 1 +0.7812 0.9688 0 +0.7812 0.9688 0.03125 +0.7812 0.9688 0.0625 +0.7812 0.9688 0.09375 +0.7812 0.9688 0.125 +0.7812 0.9688 0.1562 +0.7812 0.9688 0.1875 +0.7812 0.9688 0.2188 +0.7812 0.9688 0.25 +0.7812 0.9688 0.2812 +0.7812 0.9688 0.3125 +0.7812 0.9688 0.3438 +0.7812 0.9688 0.375 +0.7812 0.9688 0.4062 +0.7812 0.9688 0.4375 +0.7812 0.9688 0.4688 +0.7812 0.9688 0.5 +0.7812 0.9688 0.5312 +0.7812 0.9688 0.5625 +0.7812 0.9688 0.5938 +0.7812 0.9688 0.625 +0.7812 0.9688 0.6562 +0.7812 0.9688 0.6875 +0.7812 0.9688 0.7188 +0.7812 0.9688 0.75 +0.7812 0.9688 0.7812 +0.7812 0.9688 0.8125 +0.7812 0.9688 0.8438 +0.7812 0.9688 0.875 +0.7812 0.9688 0.9062 +0.7812 0.9688 0.9375 +0.7812 0.9688 0.9688 +0.7812 0.9688 1 +0.7812 1 0 +0.7812 1 0.03125 +0.7812 1 0.0625 +0.7812 1 0.09375 +0.7812 1 0.125 +0.7812 1 0.1562 +0.7812 1 0.1875 +0.7812 1 0.2188 +0.7812 1 0.25 +0.7812 1 0.2812 +0.7812 1 0.3125 +0.7812 1 0.3438 +0.7812 1 0.375 +0.7812 1 0.4062 +0.7812 1 0.4375 +0.7812 1 0.4688 +0.7812 1 0.5 +0.7812 1 0.5312 +0.7812 1 0.5625 +0.7812 1 0.5938 +0.7812 1 0.625 +0.7812 1 0.6562 +0.7812 1 0.6875 +0.7812 1 0.7188 +0.7812 1 0.75 +0.7812 1 0.7812 +0.7812 1 0.8125 +0.7812 1 0.8438 +0.7812 1 0.875 +0.7812 1 0.9062 +0.7812 1 0.9375 +0.7812 1 0.9688 +0.7812 1 1 +0.8125 0 0 +0.8125 0 0.03125 +0.8125 0 0.0625 +0.8125 0 0.09375 +0.8125 0 0.125 +0.8125 0 0.1562 +0.8125 0 0.1875 +0.8125 0 0.2188 +0.8125 0 0.25 +0.8125 0 0.2812 +0.8125 0 0.3125 +0.8125 0 0.3438 +0.8125 0 0.375 +0.8125 0 0.4062 +0.8125 0 0.4375 +0.8125 0 0.4688 +0.8125 0 0.5 +0.8125 0 0.5312 +0.8125 0 0.5625 +0.8125 0 0.5938 +0.8125 0 0.625 +0.8125 0 0.6562 +0.8125 0 0.6875 +0.8125 0 0.7188 +0.8125 0 0.75 +0.8125 0 0.7812 +0.8125 0 0.8125 +0.8125 0 0.8438 +0.8125 0 0.875 +0.8125 0 0.9062 +0.8125 0 0.9375 +0.8125 0 0.9688 +0.8125 0 1 +0.8125 0.03125 0 +0.8125 0.03125 0.03125 +0.8125 0.03125 0.0625 +0.8125 0.03125 0.09375 +0.8125 0.03125 0.125 +0.8125 0.03125 0.1562 +0.8125 0.03125 0.1875 +0.8125 0.03125 0.2188 +0.8125 0.03125 0.25 +0.8125 0.03125 0.2812 +0.8125 0.03125 0.3125 +0.8125 0.03125 0.3438 +0.8125 0.03125 0.375 +0.8125 0.03125 0.4062 +0.8125 0.03125 0.4375 +0.8125 0.03125 0.4688 +0.8125 0.03125 0.5 +0.8125 0.03125 0.5312 +0.8125 0.03125 0.5625 +0.8125 0.03125 0.5938 +0.8125 0.03125 0.625 +0.8125 0.03125 0.6562 +0.8125 0.03125 0.6875 +0.8125 0.03125 0.7188 +0.8125 0.03125 0.75 +0.8125 0.03125 0.7812 +0.8125 0.03125 0.8125 +0.8125 0.03125 0.8438 +0.8125 0.03125 0.875 +0.8125 0.03125 0.9062 +0.8125 0.03125 0.9375 +0.8125 0.03125 0.9688 +0.8125 0.03125 1 +0.8125 0.0625 0 +0.8125 0.0625 0.03125 +0.8125 0.0625 0.0625 +0.8125 0.0625 0.09375 +0.8125 0.0625 0.125 +0.8125 0.0625 0.1562 +0.8125 0.0625 0.1875 +0.8125 0.0625 0.2188 +0.8125 0.0625 0.25 +0.8125 0.0625 0.2812 +0.8125 0.0625 0.3125 +0.8125 0.0625 0.3438 +0.8125 0.0625 0.375 +0.8125 0.0625 0.4062 +0.8125 0.0625 0.4375 +0.8125 0.0625 0.4688 +0.8125 0.0625 0.5 +0.8125 0.0625 0.5312 +0.8125 0.0625 0.5625 +0.8125 0.0625 0.5938 +0.8125 0.0625 0.625 +0.8125 0.0625 0.6562 +0.8125 0.0625 0.6875 +0.8125 0.0625 0.7188 +0.8125 0.0625 0.75 +0.8125 0.0625 0.7812 +0.8125 0.0625 0.8125 +0.8125 0.0625 0.8438 +0.8125 0.0625 0.875 +0.8125 0.0625 0.9062 +0.8125 0.0625 0.9375 +0.8125 0.0625 0.9688 +0.8125 0.0625 1 +0.8125 0.09375 0 +0.8125 0.09375 0.03125 +0.8125 0.09375 0.0625 +0.8125 0.09375 0.09375 +0.8125 0.09375 0.125 +0.8125 0.09375 0.1562 +0.8125 0.09375 0.1875 +0.8125 0.09375 0.2188 +0.8125 0.09375 0.25 +0.8125 0.09375 0.2812 +0.8125 0.09375 0.3125 +0.8125 0.09375 0.3438 +0.8125 0.09375 0.375 +0.8125 0.09375 0.4062 +0.8125 0.09375 0.4375 +0.8125 0.09375 0.4688 +0.8125 0.09375 0.5 +0.8125 0.09375 0.5312 +0.8125 0.09375 0.5625 +0.8125 0.09375 0.5938 +0.8125 0.09375 0.625 +0.8125 0.09375 0.6562 +0.8125 0.09375 0.6875 +0.8125 0.09375 0.7188 +0.8125 0.09375 0.75 +0.8125 0.09375 0.7812 +0.8125 0.09375 0.8125 +0.8125 0.09375 0.8438 +0.8125 0.09375 0.875 +0.8125 0.09375 0.9062 +0.8125 0.09375 0.9375 +0.8125 0.09375 0.9688 +0.8125 0.09375 1 +0.8125 0.125 0 +0.8125 0.125 0.03125 +0.8125 0.125 0.0625 +0.8125 0.125 0.09375 +0.8125 0.125 0.125 +0.8125 0.125 0.1562 +0.8125 0.125 0.1875 +0.8125 0.125 0.2188 +0.8125 0.125 0.25 +0.8125 0.125 0.2812 +0.8125 0.125 0.3125 +0.8125 0.125 0.3438 +0.8125 0.125 0.375 +0.8125 0.125 0.4062 +0.8125 0.125 0.4375 +0.8125 0.125 0.4688 +0.8125 0.125 0.5 +0.8125 0.125 0.5312 +0.8125 0.125 0.5625 +0.8125 0.125 0.5938 +0.8125 0.125 0.625 +0.8125 0.125 0.6562 +0.8125 0.125 0.6875 +0.8125 0.125 0.7188 +0.8125 0.125 0.75 +0.8125 0.125 0.7812 +0.8125 0.125 0.8125 +0.8125 0.125 0.8438 +0.8125 0.125 0.875 +0.8125 0.125 0.9062 +0.8125 0.125 0.9375 +0.8125 0.125 0.9688 +0.8125 0.125 1 +0.8125 0.1562 0 +0.8125 0.1562 0.03125 +0.8125 0.1562 0.0625 +0.8125 0.1562 0.09375 +0.8125 0.1562 0.125 +0.8125 0.1562 0.1562 +0.8125 0.1562 0.1875 +0.8125 0.1562 0.2188 +0.8125 0.1562 0.25 +0.8125 0.1562 0.2812 +0.8125 0.1562 0.3125 +0.8125 0.1562 0.3438 +0.8125 0.1562 0.375 +0.8125 0.1562 0.4062 +0.8125 0.1562 0.4375 +0.8125 0.1562 0.4688 +0.8125 0.1562 0.5 +0.8125 0.1562 0.5312 +0.8125 0.1562 0.5625 +0.8125 0.1562 0.5938 +0.8125 0.1562 0.625 +0.8125 0.1562 0.6562 +0.8125 0.1562 0.6875 +0.8125 0.1562 0.7188 +0.8125 0.1562 0.75 +0.8125 0.1562 0.7812 +0.8125 0.1562 0.8125 +0.8125 0.1562 0.8438 +0.8125 0.1562 0.875 +0.8125 0.1562 0.9062 +0.8125 0.1562 0.9375 +0.8125 0.1562 0.9688 +0.8125 0.1562 1 +0.8125 0.1875 0 +0.8125 0.1875 0.03125 +0.8125 0.1875 0.0625 +0.8125 0.1875 0.09375 +0.8125 0.1875 0.125 +0.8125 0.1875 0.1562 +0.8125 0.1875 0.1875 +0.8125 0.1875 0.2188 +0.8125 0.1875 0.25 +0.8125 0.1875 0.2812 +0.8125 0.1875 0.3125 +0.8125 0.1875 0.3438 +0.8125 0.1875 0.375 +0.8125 0.1875 0.4062 +0.8125 0.1875 0.4375 +0.8125 0.1875 0.4688 +0.8125 0.1875 0.5 +0.8125 0.1875 0.5312 +0.8125 0.1875 0.5625 +0.8125 0.1875 0.5938 +0.8125 0.1875 0.625 +0.8125 0.1875 0.6562 +0.8125 0.1875 0.6875 +0.8125 0.1875 0.7188 +0.8125 0.1875 0.75 +0.8125 0.1875 0.7812 +0.8125 0.1875 0.8125 +0.8125 0.1875 0.8438 +0.8125 0.1875 0.875 +0.8125 0.1875 0.9062 +0.8125 0.1875 0.9375 +0.8125 0.1875 0.9688 +0.8125 0.1875 1 +0.8125 0.2188 0 +0.8125 0.2188 0.03125 +0.8125 0.2188 0.0625 +0.8125 0.2188 0.09375 +0.8125 0.2188 0.125 +0.8125 0.2188 0.1562 +0.8125 0.2188 0.1875 +0.8125 0.2188 0.2188 +0.8125 0.2188 0.25 +0.8125 0.2188 0.2812 +0.8125 0.2188 0.3125 +0.8125 0.2188 0.3438 +0.8125 0.2188 0.375 +0.8125 0.2188 0.4062 +0.8125 0.2188 0.4375 +0.8125 0.2188 0.4688 +0.8125 0.2188 0.5 +0.8125 0.2188 0.5312 +0.8125 0.2188 0.5625 +0.8125 0.2188 0.5938 +0.8125 0.2188 0.625 +0.8125 0.2188 0.6562 +0.8125 0.2188 0.6875 +0.8125 0.2188 0.7188 +0.8125 0.2188 0.75 +0.8125 0.2188 0.7812 +0.8125 0.2188 0.8125 +0.8125 0.2188 0.8438 +0.8125 0.2188 0.875 +0.8125 0.2188 0.9062 +0.8125 0.2188 0.9375 +0.8125 0.2188 0.9688 +0.8125 0.2188 1 +0.8125 0.25 0 +0.8125 0.25 0.03125 +0.8125 0.25 0.0625 +0.8125 0.25 0.09375 +0.8125 0.25 0.125 +0.8125 0.25 0.1562 +0.8125 0.25 0.1875 +0.8125 0.25 0.2188 +0.8125 0.25 0.25 +0.8125 0.25 0.2812 +0.8125 0.25 0.3125 +0.8125 0.25 0.3438 +0.8125 0.25 0.375 +0.8125 0.25 0.4062 +0.8125 0.25 0.4375 +0.8125 0.25 0.4688 +0.8125 0.25 0.5 +0.8125 0.25 0.5312 +0.8125 0.25 0.5625 +0.8125 0.25 0.5938 +0.8125 0.25 0.625 +0.8125 0.25 0.6562 +0.8125 0.25 0.6875 +0.8125 0.25 0.7188 +0.8125 0.25 0.75 +0.8125 0.25 0.7812 +0.8125 0.25 0.8125 +0.8125 0.25 0.8438 +0.8125 0.25 0.875 +0.8125 0.25 0.9062 +0.8125 0.25 0.9375 +0.8125 0.25 0.9688 +0.8125 0.25 1 +0.8125 0.2812 0 +0.8125 0.2812 0.03125 +0.8125 0.2812 0.0625 +0.8125 0.2812 0.09375 +0.8125 0.2812 0.125 +0.8125 0.2812 0.1562 +0.8125 0.2812 0.1875 +0.8125 0.2812 0.2188 +0.8125 0.2812 0.25 +0.8125 0.2812 0.2812 +0.8125 0.2812 0.3125 +0.8125 0.2812 0.3438 +0.8125 0.2812 0.375 +0.8125 0.2812 0.4062 +0.8125 0.2812 0.4375 +0.8125 0.2812 0.4688 +0.8125 0.2812 0.5 +0.8125 0.2812 0.5312 +0.8125 0.2812 0.5625 +0.8125 0.2812 0.5938 +0.8125 0.2812 0.625 +0.8125 0.2812 0.6562 +0.8125 0.2812 0.6875 +0.8125 0.2812 0.7188 +0.8125 0.2812 0.75 +0.8125 0.2812 0.7812 +0.8125 0.2812 0.8125 +0.8125 0.2812 0.8438 +0.8125 0.2812 0.875 +0.8125 0.2812 0.9062 +0.8125 0.2812 0.9375 +0.8125 0.2812 0.9688 +0.8125 0.2812 1 +0.8125 0.3125 0 +0.8125 0.3125 0.03125 +0.8125 0.3125 0.0625 +0.8125 0.3125 0.09375 +0.8125 0.3125 0.125 +0.8125 0.3125 0.1562 +0.8125 0.3125 0.1875 +0.8125 0.3125 0.2188 +0.8125 0.3125 0.25 +0.8125 0.3125 0.2812 +0.8125 0.3125 0.3125 +0.8125 0.3125 0.3438 +0.8125 0.3125 0.375 +0.8125 0.3125 0.4062 +0.8125 0.3125 0.4375 +0.8125 0.3125 0.4688 +0.8125 0.3125 0.5 +0.8125 0.3125 0.5312 +0.8125 0.3125 0.5625 +0.8125 0.3125 0.5938 +0.8125 0.3125 0.625 +0.8125 0.3125 0.6562 +0.8125 0.3125 0.6875 +0.8125 0.3125 0.7188 +0.8125 0.3125 0.75 +0.8125 0.3125 0.7812 +0.8125 0.3125 0.8125 +0.8125 0.3125 0.8438 +0.8125 0.3125 0.875 +0.8125 0.3125 0.9062 +0.8125 0.3125 0.9375 +0.8125 0.3125 0.9688 +0.8125 0.3125 1 +0.8125 0.3438 0 +0.8125 0.3438 0.03125 +0.8125 0.3438 0.0625 +0.8125 0.3438 0.09375 +0.8125 0.3438 0.125 +0.8125 0.3438 0.1562 +0.8125 0.3438 0.1875 +0.8125 0.3438 0.2188 +0.8125 0.3438 0.25 +0.8125 0.3438 0.2812 +0.8125 0.3438 0.3125 +0.8125 0.3438 0.3438 +0.8125 0.3438 0.375 +0.8125 0.3438 0.4062 +0.8125 0.3438 0.4375 +0.8125 0.3438 0.4688 +0.8125 0.3438 0.5 +0.8125 0.3438 0.5312 +0.8125 0.3438 0.5625 +0.8125 0.3438 0.5938 +0.8125 0.3438 0.625 +0.8125 0.3438 0.6562 +0.8125 0.3438 0.6875 +0.8125 0.3438 0.7188 +0.8125 0.3438 0.75 +0.8125 0.3438 0.7812 +0.8125 0.3438 0.8125 +0.8125 0.3438 0.8438 +0.8125 0.3438 0.875 +0.8125 0.3438 0.9062 +0.8125 0.3438 0.9375 +0.8125 0.3438 0.9688 +0.8125 0.3438 1 +0.8125 0.375 0 +0.8125 0.375 0.03125 +0.8125 0.375 0.0625 +0.8125 0.375 0.09375 +0.8125 0.375 0.125 +0.8125 0.375 0.1562 +0.8125 0.375 0.1875 +0.8125 0.375 0.2188 +0.8125 0.375 0.25 +0.8125 0.375 0.2812 +0.8125 0.375 0.3125 +0.8125 0.375 0.3438 +0.8125 0.375 0.375 +0.8125 0.375 0.4062 +0.8125 0.375 0.4375 +0.8125 0.375 0.4688 +0.8125 0.375 0.5 +0.8125 0.375 0.5312 +0.8125 0.375 0.5625 +0.8125 0.375 0.5938 +0.8125 0.375 0.625 +0.8125 0.375 0.6562 +0.8125 0.375 0.6875 +0.8125 0.375 0.7188 +0.8125 0.375 0.75 +0.8125 0.375 0.7812 +0.8125 0.375 0.8125 +0.8125 0.375 0.8438 +0.8125 0.375 0.875 +0.8125 0.375 0.9062 +0.8125 0.375 0.9375 +0.8125 0.375 0.9688 +0.8125 0.375 1 +0.8125 0.4062 0 +0.8125 0.4062 0.03125 +0.8125 0.4062 0.0625 +0.8125 0.4062 0.09375 +0.8125 0.4062 0.125 +0.8125 0.4062 0.1562 +0.8125 0.4062 0.1875 +0.8125 0.4062 0.2188 +0.8125 0.4062 0.25 +0.8125 0.4062 0.2812 +0.8125 0.4062 0.3125 +0.8125 0.4062 0.3438 +0.8125 0.4062 0.375 +0.8125 0.4062 0.4062 +0.8125 0.4062 0.4375 +0.8125 0.4062 0.4688 +0.8125 0.4062 0.5 +0.8125 0.4062 0.5312 +0.8125 0.4062 0.5625 +0.8125 0.4062 0.5938 +0.8125 0.4062 0.625 +0.8125 0.4062 0.6562 +0.8125 0.4062 0.6875 +0.8125 0.4062 0.7188 +0.8125 0.4062 0.75 +0.8125 0.4062 0.7812 +0.8125 0.4062 0.8125 +0.8125 0.4062 0.8438 +0.8125 0.4062 0.875 +0.8125 0.4062 0.9062 +0.8125 0.4062 0.9375 +0.8125 0.4062 0.9688 +0.8125 0.4062 1 +0.8125 0.4375 0 +0.8125 0.4375 0.03125 +0.8125 0.4375 0.0625 +0.8125 0.4375 0.09375 +0.8125 0.4375 0.125 +0.8125 0.4375 0.1562 +0.8125 0.4375 0.1875 +0.8125 0.4375 0.2188 +0.8125 0.4375 0.25 +0.8125 0.4375 0.2812 +0.8125 0.4375 0.3125 +0.8125 0.4375 0.3438 +0.8125 0.4375 0.375 +0.8125 0.4375 0.4062 +0.8125 0.4375 0.4375 +0.8125 0.4375 0.4688 +0.8125 0.4375 0.5 +0.8125 0.4375 0.5312 +0.8125 0.4375 0.5625 +0.8125 0.4375 0.5938 +0.8125 0.4375 0.625 +0.8125 0.4375 0.6562 +0.8125 0.4375 0.6875 +0.8125 0.4375 0.7188 +0.8125 0.4375 0.75 +0.8125 0.4375 0.7812 +0.8125 0.4375 0.8125 +0.8125 0.4375 0.8438 +0.8125 0.4375 0.875 +0.8125 0.4375 0.9062 +0.8125 0.4375 0.9375 +0.8125 0.4375 0.9688 +0.8125 0.4375 1 +0.8125 0.4688 0 +0.8125 0.4688 0.03125 +0.8125 0.4688 0.0625 +0.8125 0.4688 0.09375 +0.8125 0.4688 0.125 +0.8125 0.4688 0.1562 +0.8125 0.4688 0.1875 +0.8125 0.4688 0.2188 +0.8125 0.4688 0.25 +0.8125 0.4688 0.2812 +0.8125 0.4688 0.3125 +0.8125 0.4688 0.3438 +0.8125 0.4688 0.375 +0.8125 0.4688 0.4062 +0.8125 0.4688 0.4375 +0.8125 0.4688 0.4688 +0.8125 0.4688 0.5 +0.8125 0.4688 0.5312 +0.8125 0.4688 0.5625 +0.8125 0.4688 0.5938 +0.8125 0.4688 0.625 +0.8125 0.4688 0.6562 +0.8125 0.4688 0.6875 +0.8125 0.4688 0.7188 +0.8125 0.4688 0.75 +0.8125 0.4688 0.7812 +0.8125 0.4688 0.8125 +0.8125 0.4688 0.8438 +0.8125 0.4688 0.875 +0.8125 0.4688 0.9062 +0.8125 0.4688 0.9375 +0.8125 0.4688 0.9688 +0.8125 0.4688 1 +0.8125 0.5 0 +0.8125 0.5 0.03125 +0.8125 0.5 0.0625 +0.8125 0.5 0.09375 +0.8125 0.5 0.125 +0.8125 0.5 0.1562 +0.8125 0.5 0.1875 +0.8125 0.5 0.2188 +0.8125 0.5 0.25 +0.8125 0.5 0.2812 +0.8125 0.5 0.3125 +0.8125 0.5 0.3438 +0.8125 0.5 0.375 +0.8125 0.5 0.4062 +0.8125 0.5 0.4375 +0.8125 0.5 0.4688 +0.8125 0.5 0.5 +0.8125 0.5 0.5312 +0.8125 0.5 0.5625 +0.8125 0.5 0.5938 +0.8125 0.5 0.625 +0.8125 0.5 0.6562 +0.8125 0.5 0.6875 +0.8125 0.5 0.7188 +0.8125 0.5 0.75 +0.8125 0.5 0.7812 +0.8125 0.5 0.8125 +0.8125 0.5 0.8438 +0.8125 0.5 0.875 +0.8125 0.5 0.9062 +0.8125 0.5 0.9375 +0.8125 0.5 0.9688 +0.8125 0.5 1 +0.8125 0.5312 0 +0.8125 0.5312 0.03125 +0.8125 0.5312 0.0625 +0.8125 0.5312 0.09375 +0.8125 0.5312 0.125 +0.8125 0.5312 0.1562 +0.8125 0.5312 0.1875 +0.8125 0.5312 0.2188 +0.8125 0.5312 0.25 +0.8125 0.5312 0.2812 +0.8125 0.5312 0.3125 +0.8125 0.5312 0.3438 +0.8125 0.5312 0.375 +0.8125 0.5312 0.4062 +0.8125 0.5312 0.4375 +0.8125 0.5312 0.4688 +0.8125 0.5312 0.5 +0.8125 0.5312 0.5312 +0.8125 0.5312 0.5625 +0.8125 0.5312 0.5938 +0.8125 0.5312 0.625 +0.8125 0.5312 0.6562 +0.8125 0.5312 0.6875 +0.8125 0.5312 0.7188 +0.8125 0.5312 0.75 +0.8125 0.5312 0.7812 +0.8125 0.5312 0.8125 +0.8125 0.5312 0.8438 +0.8125 0.5312 0.875 +0.8125 0.5312 0.9062 +0.8125 0.5312 0.9375 +0.8125 0.5312 0.9688 +0.8125 0.5312 1 +0.8125 0.5625 0 +0.8125 0.5625 0.03125 +0.8125 0.5625 0.0625 +0.8125 0.5625 0.09375 +0.8125 0.5625 0.125 +0.8125 0.5625 0.1562 +0.8125 0.5625 0.1875 +0.8125 0.5625 0.2188 +0.8125 0.5625 0.25 +0.8125 0.5625 0.2812 +0.8125 0.5625 0.3125 +0.8125 0.5625 0.3438 +0.8125 0.5625 0.375 +0.8125 0.5625 0.4062 +0.8125 0.5625 0.4375 +0.8125 0.5625 0.4688 +0.8125 0.5625 0.5 +0.8125 0.5625 0.5312 +0.8125 0.5625 0.5625 +0.8125 0.5625 0.5938 +0.8125 0.5625 0.625 +0.8125 0.5625 0.6562 +0.8125 0.5625 0.6875 +0.8125 0.5625 0.7188 +0.8125 0.5625 0.75 +0.8125 0.5625 0.7812 +0.8125 0.5625 0.8125 +0.8125 0.5625 0.8438 +0.8125 0.5625 0.875 +0.8125 0.5625 0.9062 +0.8125 0.5625 0.9375 +0.8125 0.5625 0.9688 +0.8125 0.5625 1 +0.8125 0.5938 0 +0.8125 0.5938 0.03125 +0.8125 0.5938 0.0625 +0.8125 0.5938 0.09375 +0.8125 0.5938 0.125 +0.8125 0.5938 0.1562 +0.8125 0.5938 0.1875 +0.8125 0.5938 0.2188 +0.8125 0.5938 0.25 +0.8125 0.5938 0.2812 +0.8125 0.5938 0.3125 +0.8125 0.5938 0.3438 +0.8125 0.5938 0.375 +0.8125 0.5938 0.4062 +0.8125 0.5938 0.4375 +0.8125 0.5938 0.4688 +0.8125 0.5938 0.5 +0.8125 0.5938 0.5312 +0.8125 0.5938 0.5625 +0.8125 0.5938 0.5938 +0.8125 0.5938 0.625 +0.8125 0.5938 0.6562 +0.8125 0.5938 0.6875 +0.8125 0.5938 0.7188 +0.8125 0.5938 0.75 +0.8125 0.5938 0.7812 +0.8125 0.5938 0.8125 +0.8125 0.5938 0.8438 +0.8125 0.5938 0.875 +0.8125 0.5938 0.9062 +0.8125 0.5938 0.9375 +0.8125 0.5938 0.9688 +0.8125 0.5938 1 +0.8125 0.625 0 +0.8125 0.625 0.03125 +0.8125 0.625 0.0625 +0.8125 0.625 0.09375 +0.8125 0.625 0.125 +0.8125 0.625 0.1562 +0.8125 0.625 0.1875 +0.8125 0.625 0.2188 +0.8125 0.625 0.25 +0.8125 0.625 0.2812 +0.8125 0.625 0.3125 +0.8125 0.625 0.3438 +0.8125 0.625 0.375 +0.8125 0.625 0.4062 +0.8125 0.625 0.4375 +0.8125 0.625 0.4688 +0.8125 0.625 0.5 +0.8125 0.625 0.5312 +0.8125 0.625 0.5625 +0.8125 0.625 0.5938 +0.8125 0.625 0.625 +0.8125 0.625 0.6562 +0.8125 0.625 0.6875 +0.8125 0.625 0.7188 +0.8125 0.625 0.75 +0.8125 0.625 0.7812 +0.8125 0.625 0.8125 +0.8125 0.625 0.8438 +0.8125 0.625 0.875 +0.8125 0.625 0.9062 +0.8125 0.625 0.9375 +0.8125 0.625 0.9688 +0.8125 0.625 1 +0.8125 0.6562 0 +0.8125 0.6562 0.03125 +0.8125 0.6562 0.0625 +0.8125 0.6562 0.09375 +0.8125 0.6562 0.125 +0.8125 0.6562 0.1562 +0.8125 0.6562 0.1875 +0.8125 0.6562 0.2188 +0.8125 0.6562 0.25 +0.8125 0.6562 0.2812 +0.8125 0.6562 0.3125 +0.8125 0.6562 0.3438 +0.8125 0.6562 0.375 +0.8125 0.6562 0.4062 +0.8125 0.6562 0.4375 +0.8125 0.6562 0.4688 +0.8125 0.6562 0.5 +0.8125 0.6562 0.5312 +0.8125 0.6562 0.5625 +0.8125 0.6562 0.5938 +0.8125 0.6562 0.625 +0.8125 0.6562 0.6562 +0.8125 0.6562 0.6875 +0.8125 0.6562 0.7188 +0.8125 0.6562 0.75 +0.8125 0.6562 0.7812 +0.8125 0.6562 0.8125 +0.8125 0.6562 0.8438 +0.8125 0.6562 0.875 +0.8125 0.6562 0.9062 +0.8125 0.6562 0.9375 +0.8125 0.6562 0.9688 +0.8125 0.6562 1 +0.8125 0.6875 0 +0.8125 0.6875 0.03125 +0.8125 0.6875 0.0625 +0.8125 0.6875 0.09375 +0.8125 0.6875 0.125 +0.8125 0.6875 0.1562 +0.8125 0.6875 0.1875 +0.8125 0.6875 0.2188 +0.8125 0.6875 0.25 +0.8125 0.6875 0.2812 +0.8125 0.6875 0.3125 +0.8125 0.6875 0.3438 +0.8125 0.6875 0.375 +0.8125 0.6875 0.4062 +0.8125 0.6875 0.4375 +0.8125 0.6875 0.4688 +0.8125 0.6875 0.5 +0.8125 0.6875 0.5312 +0.8125 0.6875 0.5625 +0.8125 0.6875 0.5938 +0.8125 0.6875 0.625 +0.8125 0.6875 0.6562 +0.8125 0.6875 0.6875 +0.8125 0.6875 0.7188 +0.8125 0.6875 0.75 +0.8125 0.6875 0.7812 +0.8125 0.6875 0.8125 +0.8125 0.6875 0.8438 +0.8125 0.6875 0.875 +0.8125 0.6875 0.9062 +0.8125 0.6875 0.9375 +0.8125 0.6875 0.9688 +0.8125 0.6875 1 +0.8125 0.7188 0 +0.8125 0.7188 0.03125 +0.8125 0.7188 0.0625 +0.8125 0.7188 0.09375 +0.8125 0.7188 0.125 +0.8125 0.7188 0.1562 +0.8125 0.7188 0.1875 +0.8125 0.7188 0.2188 +0.8125 0.7188 0.25 +0.8125 0.7188 0.2812 +0.8125 0.7188 0.3125 +0.8125 0.7188 0.3438 +0.8125 0.7188 0.375 +0.8125 0.7188 0.4062 +0.8125 0.7188 0.4375 +0.8125 0.7188 0.4688 +0.8125 0.7188 0.5 +0.8125 0.7188 0.5312 +0.8125 0.7188 0.5625 +0.8125 0.7188 0.5938 +0.8125 0.7188 0.625 +0.8125 0.7188 0.6562 +0.8125 0.7188 0.6875 +0.8125 0.7188 0.7188 +0.8125 0.7188 0.75 +0.8125 0.7188 0.7812 +0.8125 0.7188 0.8125 +0.8125 0.7188 0.8438 +0.8125 0.7188 0.875 +0.8125 0.7188 0.9062 +0.8125 0.7188 0.9375 +0.8125 0.7188 0.9688 +0.8125 0.7188 1 +0.8125 0.75 0 +0.8125 0.75 0.03125 +0.8125 0.75 0.0625 +0.8125 0.75 0.09375 +0.8125 0.75 0.125 +0.8125 0.75 0.1562 +0.8125 0.75 0.1875 +0.8125 0.75 0.2188 +0.8125 0.75 0.25 +0.8125 0.75 0.2812 +0.8125 0.75 0.3125 +0.8125 0.75 0.3438 +0.8125 0.75 0.375 +0.8125 0.75 0.4062 +0.8125 0.75 0.4375 +0.8125 0.75 0.4688 +0.8125 0.75 0.5 +0.8125 0.75 0.5312 +0.8125 0.75 0.5625 +0.8125 0.75 0.5938 +0.8125 0.75 0.625 +0.8125 0.75 0.6562 +0.8125 0.75 0.6875 +0.8125 0.75 0.7188 +0.8125 0.75 0.75 +0.8125 0.75 0.7812 +0.8125 0.75 0.8125 +0.8125 0.75 0.8438 +0.8125 0.75 0.875 +0.8125 0.75 0.9062 +0.8125 0.75 0.9375 +0.8125 0.75 0.9688 +0.8125 0.75 1 +0.8125 0.7812 0 +0.8125 0.7812 0.03125 +0.8125 0.7812 0.0625 +0.8125 0.7812 0.09375 +0.8125 0.7812 0.125 +0.8125 0.7812 0.1562 +0.8125 0.7812 0.1875 +0.8125 0.7812 0.2188 +0.8125 0.7812 0.25 +0.8125 0.7812 0.2812 +0.8125 0.7812 0.3125 +0.8125 0.7812 0.3438 +0.8125 0.7812 0.375 +0.8125 0.7812 0.4062 +0.8125 0.7812 0.4375 +0.8125 0.7812 0.4688 +0.8125 0.7812 0.5 +0.8125 0.7812 0.5312 +0.8125 0.7812 0.5625 +0.8125 0.7812 0.5938 +0.8125 0.7812 0.625 +0.8125 0.7812 0.6562 +0.8125 0.7812 0.6875 +0.8125 0.7812 0.7188 +0.8125 0.7812 0.75 +0.8125 0.7812 0.7812 +0.8125 0.7812 0.8125 +0.8125 0.7812 0.8438 +0.8125 0.7812 0.875 +0.8125 0.7812 0.9062 +0.8125 0.7812 0.9375 +0.8125 0.7812 0.9688 +0.8125 0.7812 1 +0.8125 0.8125 0 +0.8125 0.8125 0.03125 +0.8125 0.8125 0.0625 +0.8125 0.8125 0.09375 +0.8125 0.8125 0.125 +0.8125 0.8125 0.1562 +0.8125 0.8125 0.1875 +0.8125 0.8125 0.2188 +0.8125 0.8125 0.25 +0.8125 0.8125 0.2812 +0.8125 0.8125 0.3125 +0.8125 0.8125 0.3438 +0.8125 0.8125 0.375 +0.8125 0.8125 0.4062 +0.8125 0.8125 0.4375 +0.8125 0.8125 0.4688 +0.8125 0.8125 0.5 +0.8125 0.8125 0.5312 +0.8125 0.8125 0.5625 +0.8125 0.8125 0.5938 +0.8125 0.8125 0.625 +0.8125 0.8125 0.6562 +0.8125 0.8125 0.6875 +0.8125 0.8125 0.7188 +0.8125 0.8125 0.75 +0.8125 0.8125 0.7812 +0.8125 0.8125 0.8125 +0.8125 0.8125 0.8438 +0.8125 0.8125 0.875 +0.8125 0.8125 0.9062 +0.8125 0.8125 0.9375 +0.8125 0.8125 0.9688 +0.8125 0.8125 1 +0.8125 0.8438 0 +0.8125 0.8438 0.03125 +0.8125 0.8438 0.0625 +0.8125 0.8438 0.09375 +0.8125 0.8438 0.125 +0.8125 0.8438 0.1562 +0.8125 0.8438 0.1875 +0.8125 0.8438 0.2188 +0.8125 0.8438 0.25 +0.8125 0.8438 0.2812 +0.8125 0.8438 0.3125 +0.8125 0.8438 0.3438 +0.8125 0.8438 0.375 +0.8125 0.8438 0.4062 +0.8125 0.8438 0.4375 +0.8125 0.8438 0.4688 +0.8125 0.8438 0.5 +0.8125 0.8438 0.5312 +0.8125 0.8438 0.5625 +0.8125 0.8438 0.5938 +0.8125 0.8438 0.625 +0.8125 0.8438 0.6562 +0.8125 0.8438 0.6875 +0.8125 0.8438 0.7188 +0.8125 0.8438 0.75 +0.8125 0.8438 0.7812 +0.8125 0.8438 0.8125 +0.8125 0.8438 0.8438 +0.8125 0.8438 0.875 +0.8125 0.8438 0.9062 +0.8125 0.8438 0.9375 +0.8125 0.8438 0.9688 +0.8125 0.8438 1 +0.8125 0.875 0 +0.8125 0.875 0.03125 +0.8125 0.875 0.0625 +0.8125 0.875 0.09375 +0.8125 0.875 0.125 +0.8125 0.875 0.1562 +0.8125 0.875 0.1875 +0.8125 0.875 0.2188 +0.8125 0.875 0.25 +0.8125 0.875 0.2812 +0.8125 0.875 0.3125 +0.8125 0.875 0.3438 +0.8125 0.875 0.375 +0.8125 0.875 0.4062 +0.8125 0.875 0.4375 +0.8125 0.875 0.4688 +0.8125 0.875 0.5 +0.8125 0.875 0.5312 +0.8125 0.875 0.5625 +0.8125 0.875 0.5938 +0.8125 0.875 0.625 +0.8125 0.875 0.6562 +0.8125 0.875 0.6875 +0.8125 0.875 0.7188 +0.8125 0.875 0.75 +0.8125 0.875 0.7812 +0.8125 0.875 0.8125 +0.8125 0.875 0.8438 +0.8125 0.875 0.875 +0.8125 0.875 0.9062 +0.8125 0.875 0.9375 +0.8125 0.875 0.9688 +0.8125 0.875 1 +0.8125 0.9062 0 +0.8125 0.9062 0.03125 +0.8125 0.9062 0.0625 +0.8125 0.9062 0.09375 +0.8125 0.9062 0.125 +0.8125 0.9062 0.1562 +0.8125 0.9062 0.1875 +0.8125 0.9062 0.2188 +0.8125 0.9062 0.25 +0.8125 0.9062 0.2812 +0.8125 0.9062 0.3125 +0.8125 0.9062 0.3438 +0.8125 0.9062 0.375 +0.8125 0.9062 0.4062 +0.8125 0.9062 0.4375 +0.8125 0.9062 0.4688 +0.8125 0.9062 0.5 +0.8125 0.9062 0.5312 +0.8125 0.9062 0.5625 +0.8125 0.9062 0.5938 +0.8125 0.9062 0.625 +0.8125 0.9062 0.6562 +0.8125 0.9062 0.6875 +0.8125 0.9062 0.7188 +0.8125 0.9062 0.75 +0.8125 0.9062 0.7812 +0.8125 0.9062 0.8125 +0.8125 0.9062 0.8438 +0.8125 0.9062 0.875 +0.8125 0.9062 0.9062 +0.8125 0.9062 0.9375 +0.8125 0.9062 0.9688 +0.8125 0.9062 1 +0.8125 0.9375 0 +0.8125 0.9375 0.03125 +0.8125 0.9375 0.0625 +0.8125 0.9375 0.09375 +0.8125 0.9375 0.125 +0.8125 0.9375 0.1562 +0.8125 0.9375 0.1875 +0.8125 0.9375 0.2188 +0.8125 0.9375 0.25 +0.8125 0.9375 0.2812 +0.8125 0.9375 0.3125 +0.8125 0.9375 0.3438 +0.8125 0.9375 0.375 +0.8125 0.9375 0.4062 +0.8125 0.9375 0.4375 +0.8125 0.9375 0.4688 +0.8125 0.9375 0.5 +0.8125 0.9375 0.5312 +0.8125 0.9375 0.5625 +0.8125 0.9375 0.5938 +0.8125 0.9375 0.625 +0.8125 0.9375 0.6562 +0.8125 0.9375 0.6875 +0.8125 0.9375 0.7188 +0.8125 0.9375 0.75 +0.8125 0.9375 0.7812 +0.8125 0.9375 0.8125 +0.8125 0.9375 0.8438 +0.8125 0.9375 0.875 +0.8125 0.9375 0.9062 +0.8125 0.9375 0.9375 +0.8125 0.9375 0.9688 +0.8125 0.9375 1 +0.8125 0.9688 0 +0.8125 0.9688 0.03125 +0.8125 0.9688 0.0625 +0.8125 0.9688 0.09375 +0.8125 0.9688 0.125 +0.8125 0.9688 0.1562 +0.8125 0.9688 0.1875 +0.8125 0.9688 0.2188 +0.8125 0.9688 0.25 +0.8125 0.9688 0.2812 +0.8125 0.9688 0.3125 +0.8125 0.9688 0.3438 +0.8125 0.9688 0.375 +0.8125 0.9688 0.4062 +0.8125 0.9688 0.4375 +0.8125 0.9688 0.4688 +0.8125 0.9688 0.5 +0.8125 0.9688 0.5312 +0.8125 0.9688 0.5625 +0.8125 0.9688 0.5938 +0.8125 0.9688 0.625 +0.8125 0.9688 0.6562 +0.8125 0.9688 0.6875 +0.8125 0.9688 0.7188 +0.8125 0.9688 0.75 +0.8125 0.9688 0.7812 +0.8125 0.9688 0.8125 +0.8125 0.9688 0.8438 +0.8125 0.9688 0.875 +0.8125 0.9688 0.9062 +0.8125 0.9688 0.9375 +0.8125 0.9688 0.9688 +0.8125 0.9688 1 +0.8125 1 0 +0.8125 1 0.03125 +0.8125 1 0.0625 +0.8125 1 0.09375 +0.8125 1 0.125 +0.8125 1 0.1562 +0.8125 1 0.1875 +0.8125 1 0.2188 +0.8125 1 0.25 +0.8125 1 0.2812 +0.8125 1 0.3125 +0.8125 1 0.3438 +0.8125 1 0.375 +0.8125 1 0.4062 +0.8125 1 0.4375 +0.8125 1 0.4688 +0.8125 1 0.5 +0.8125 1 0.5312 +0.8125 1 0.5625 +0.8125 1 0.5938 +0.8125 1 0.625 +0.8125 1 0.6562 +0.8125 1 0.6875 +0.8125 1 0.7188 +0.8125 1 0.75 +0.8125 1 0.7812 +0.8125 1 0.8125 +0.8125 1 0.8438 +0.8125 1 0.875 +0.8125 1 0.9062 +0.8125 1 0.9375 +0.8125 1 0.9688 +0.8125 1 1 +0.8438 0 0 +0.8438 0 0.03125 +0.8438 0 0.0625 +0.8438 0 0.09375 +0.8438 0 0.125 +0.8438 0 0.1562 +0.8438 0 0.1875 +0.8438 0 0.2188 +0.8438 0 0.25 +0.8438 0 0.2812 +0.8438 0 0.3125 +0.8438 0 0.3438 +0.8438 0 0.375 +0.8438 0 0.4062 +0.8438 0 0.4375 +0.8438 0 0.4688 +0.8438 0 0.5 +0.8438 0 0.5312 +0.8438 0 0.5625 +0.8438 0 0.5938 +0.8438 0 0.625 +0.8438 0 0.6562 +0.8438 0 0.6875 +0.8438 0 0.7188 +0.8438 0 0.75 +0.8438 0 0.7812 +0.8438 0 0.8125 +0.8438 0 0.8438 +0.8438 0 0.875 +0.8438 0 0.9062 +0.8438 0 0.9375 +0.8438 0 0.9688 +0.8438 0 1 +0.8438 0.03125 0 +0.8438 0.03125 0.03125 +0.8438 0.03125 0.0625 +0.8438 0.03125 0.09375 +0.8438 0.03125 0.125 +0.8438 0.03125 0.1562 +0.8438 0.03125 0.1875 +0.8438 0.03125 0.2188 +0.8438 0.03125 0.25 +0.8438 0.03125 0.2812 +0.8438 0.03125 0.3125 +0.8438 0.03125 0.3438 +0.8438 0.03125 0.375 +0.8438 0.03125 0.4062 +0.8438 0.03125 0.4375 +0.8438 0.03125 0.4688 +0.8438 0.03125 0.5 +0.8438 0.03125 0.5312 +0.8438 0.03125 0.5625 +0.8438 0.03125 0.5938 +0.8438 0.03125 0.625 +0.8438 0.03125 0.6562 +0.8438 0.03125 0.6875 +0.8438 0.03125 0.7188 +0.8438 0.03125 0.75 +0.8438 0.03125 0.7812 +0.8438 0.03125 0.8125 +0.8438 0.03125 0.8438 +0.8438 0.03125 0.875 +0.8438 0.03125 0.9062 +0.8438 0.03125 0.9375 +0.8438 0.03125 0.9688 +0.8438 0.03125 1 +0.8438 0.0625 0 +0.8438 0.0625 0.03125 +0.8438 0.0625 0.0625 +0.8438 0.0625 0.09375 +0.8438 0.0625 0.125 +0.8438 0.0625 0.1562 +0.8438 0.0625 0.1875 +0.8438 0.0625 0.2188 +0.8438 0.0625 0.25 +0.8438 0.0625 0.2812 +0.8438 0.0625 0.3125 +0.8438 0.0625 0.3438 +0.8438 0.0625 0.375 +0.8438 0.0625 0.4062 +0.8438 0.0625 0.4375 +0.8438 0.0625 0.4688 +0.8438 0.0625 0.5 +0.8438 0.0625 0.5312 +0.8438 0.0625 0.5625 +0.8438 0.0625 0.5938 +0.8438 0.0625 0.625 +0.8438 0.0625 0.6562 +0.8438 0.0625 0.6875 +0.8438 0.0625 0.7188 +0.8438 0.0625 0.75 +0.8438 0.0625 0.7812 +0.8438 0.0625 0.8125 +0.8438 0.0625 0.8438 +0.8438 0.0625 0.875 +0.8438 0.0625 0.9062 +0.8438 0.0625 0.9375 +0.8438 0.0625 0.9688 +0.8438 0.0625 1 +0.8438 0.09375 0 +0.8438 0.09375 0.03125 +0.8438 0.09375 0.0625 +0.8438 0.09375 0.09375 +0.8438 0.09375 0.125 +0.8438 0.09375 0.1562 +0.8438 0.09375 0.1875 +0.8438 0.09375 0.2188 +0.8438 0.09375 0.25 +0.8438 0.09375 0.2812 +0.8438 0.09375 0.3125 +0.8438 0.09375 0.3438 +0.8438 0.09375 0.375 +0.8438 0.09375 0.4062 +0.8438 0.09375 0.4375 +0.8438 0.09375 0.4688 +0.8438 0.09375 0.5 +0.8438 0.09375 0.5312 +0.8438 0.09375 0.5625 +0.8438 0.09375 0.5938 +0.8438 0.09375 0.625 +0.8438 0.09375 0.6562 +0.8438 0.09375 0.6875 +0.8438 0.09375 0.7188 +0.8438 0.09375 0.75 +0.8438 0.09375 0.7812 +0.8438 0.09375 0.8125 +0.8438 0.09375 0.8438 +0.8438 0.09375 0.875 +0.8438 0.09375 0.9062 +0.8438 0.09375 0.9375 +0.8438 0.09375 0.9688 +0.8438 0.09375 1 +0.8438 0.125 0 +0.8438 0.125 0.03125 +0.8438 0.125 0.0625 +0.8438 0.125 0.09375 +0.8438 0.125 0.125 +0.8438 0.125 0.1562 +0.8438 0.125 0.1875 +0.8438 0.125 0.2188 +0.8438 0.125 0.25 +0.8438 0.125 0.2812 +0.8438 0.125 0.3125 +0.8438 0.125 0.3438 +0.8438 0.125 0.375 +0.8438 0.125 0.4062 +0.8438 0.125 0.4375 +0.8438 0.125 0.4688 +0.8438 0.125 0.5 +0.8438 0.125 0.5312 +0.8438 0.125 0.5625 +0.8438 0.125 0.5938 +0.8438 0.125 0.625 +0.8438 0.125 0.6562 +0.8438 0.125 0.6875 +0.8438 0.125 0.7188 +0.8438 0.125 0.75 +0.8438 0.125 0.7812 +0.8438 0.125 0.8125 +0.8438 0.125 0.8438 +0.8438 0.125 0.875 +0.8438 0.125 0.9062 +0.8438 0.125 0.9375 +0.8438 0.125 0.9688 +0.8438 0.125 1 +0.8438 0.1562 0 +0.8438 0.1562 0.03125 +0.8438 0.1562 0.0625 +0.8438 0.1562 0.09375 +0.8438 0.1562 0.125 +0.8438 0.1562 0.1562 +0.8438 0.1562 0.1875 +0.8438 0.1562 0.2188 +0.8438 0.1562 0.25 +0.8438 0.1562 0.2812 +0.8438 0.1562 0.3125 +0.8438 0.1562 0.3438 +0.8438 0.1562 0.375 +0.8438 0.1562 0.4062 +0.8438 0.1562 0.4375 +0.8438 0.1562 0.4688 +0.8438 0.1562 0.5 +0.8438 0.1562 0.5312 +0.8438 0.1562 0.5625 +0.8438 0.1562 0.5938 +0.8438 0.1562 0.625 +0.8438 0.1562 0.6562 +0.8438 0.1562 0.6875 +0.8438 0.1562 0.7188 +0.8438 0.1562 0.75 +0.8438 0.1562 0.7812 +0.8438 0.1562 0.8125 +0.8438 0.1562 0.8438 +0.8438 0.1562 0.875 +0.8438 0.1562 0.9062 +0.8438 0.1562 0.9375 +0.8438 0.1562 0.9688 +0.8438 0.1562 1 +0.8438 0.1875 0 +0.8438 0.1875 0.03125 +0.8438 0.1875 0.0625 +0.8438 0.1875 0.09375 +0.8438 0.1875 0.125 +0.8438 0.1875 0.1562 +0.8438 0.1875 0.1875 +0.8438 0.1875 0.2188 +0.8438 0.1875 0.25 +0.8438 0.1875 0.2812 +0.8438 0.1875 0.3125 +0.8438 0.1875 0.3438 +0.8438 0.1875 0.375 +0.8438 0.1875 0.4062 +0.8438 0.1875 0.4375 +0.8438 0.1875 0.4688 +0.8438 0.1875 0.5 +0.8438 0.1875 0.5312 +0.8438 0.1875 0.5625 +0.8438 0.1875 0.5938 +0.8438 0.1875 0.625 +0.8438 0.1875 0.6562 +0.8438 0.1875 0.6875 +0.8438 0.1875 0.7188 +0.8438 0.1875 0.75 +0.8438 0.1875 0.7812 +0.8438 0.1875 0.8125 +0.8438 0.1875 0.8438 +0.8438 0.1875 0.875 +0.8438 0.1875 0.9062 +0.8438 0.1875 0.9375 +0.8438 0.1875 0.9688 +0.8438 0.1875 1 +0.8438 0.2188 0 +0.8438 0.2188 0.03125 +0.8438 0.2188 0.0625 +0.8438 0.2188 0.09375 +0.8438 0.2188 0.125 +0.8438 0.2188 0.1562 +0.8438 0.2188 0.1875 +0.8438 0.2188 0.2188 +0.8438 0.2188 0.25 +0.8438 0.2188 0.2812 +0.8438 0.2188 0.3125 +0.8438 0.2188 0.3438 +0.8438 0.2188 0.375 +0.8438 0.2188 0.4062 +0.8438 0.2188 0.4375 +0.8438 0.2188 0.4688 +0.8438 0.2188 0.5 +0.8438 0.2188 0.5312 +0.8438 0.2188 0.5625 +0.8438 0.2188 0.5938 +0.8438 0.2188 0.625 +0.8438 0.2188 0.6562 +0.8438 0.2188 0.6875 +0.8438 0.2188 0.7188 +0.8438 0.2188 0.75 +0.8438 0.2188 0.7812 +0.8438 0.2188 0.8125 +0.8438 0.2188 0.8438 +0.8438 0.2188 0.875 +0.8438 0.2188 0.9062 +0.8438 0.2188 0.9375 +0.8438 0.2188 0.9688 +0.8438 0.2188 1 +0.8438 0.25 0 +0.8438 0.25 0.03125 +0.8438 0.25 0.0625 +0.8438 0.25 0.09375 +0.8438 0.25 0.125 +0.8438 0.25 0.1562 +0.8438 0.25 0.1875 +0.8438 0.25 0.2188 +0.8438 0.25 0.25 +0.8438 0.25 0.2812 +0.8438 0.25 0.3125 +0.8438 0.25 0.3438 +0.8438 0.25 0.375 +0.8438 0.25 0.4062 +0.8438 0.25 0.4375 +0.8438 0.25 0.4688 +0.8438 0.25 0.5 +0.8438 0.25 0.5312 +0.8438 0.25 0.5625 +0.8438 0.25 0.5938 +0.8438 0.25 0.625 +0.8438 0.25 0.6562 +0.8438 0.25 0.6875 +0.8438 0.25 0.7188 +0.8438 0.25 0.75 +0.8438 0.25 0.7812 +0.8438 0.25 0.8125 +0.8438 0.25 0.8438 +0.8438 0.25 0.875 +0.8438 0.25 0.9062 +0.8438 0.25 0.9375 +0.8438 0.25 0.9688 +0.8438 0.25 1 +0.8438 0.2812 0 +0.8438 0.2812 0.03125 +0.8438 0.2812 0.0625 +0.8438 0.2812 0.09375 +0.8438 0.2812 0.125 +0.8438 0.2812 0.1562 +0.8438 0.2812 0.1875 +0.8438 0.2812 0.2188 +0.8438 0.2812 0.25 +0.8438 0.2812 0.2812 +0.8438 0.2812 0.3125 +0.8438 0.2812 0.3438 +0.8438 0.2812 0.375 +0.8438 0.2812 0.4062 +0.8438 0.2812 0.4375 +0.8438 0.2812 0.4688 +0.8438 0.2812 0.5 +0.8438 0.2812 0.5312 +0.8438 0.2812 0.5625 +0.8438 0.2812 0.5938 +0.8438 0.2812 0.625 +0.8438 0.2812 0.6562 +0.8438 0.2812 0.6875 +0.8438 0.2812 0.7188 +0.8438 0.2812 0.75 +0.8438 0.2812 0.7812 +0.8438 0.2812 0.8125 +0.8438 0.2812 0.8438 +0.8438 0.2812 0.875 +0.8438 0.2812 0.9062 +0.8438 0.2812 0.9375 +0.8438 0.2812 0.9688 +0.8438 0.2812 1 +0.8438 0.3125 0 +0.8438 0.3125 0.03125 +0.8438 0.3125 0.0625 +0.8438 0.3125 0.09375 +0.8438 0.3125 0.125 +0.8438 0.3125 0.1562 +0.8438 0.3125 0.1875 +0.8438 0.3125 0.2188 +0.8438 0.3125 0.25 +0.8438 0.3125 0.2812 +0.8438 0.3125 0.3125 +0.8438 0.3125 0.3438 +0.8438 0.3125 0.375 +0.8438 0.3125 0.4062 +0.8438 0.3125 0.4375 +0.8438 0.3125 0.4688 +0.8438 0.3125 0.5 +0.8438 0.3125 0.5312 +0.8438 0.3125 0.5625 +0.8438 0.3125 0.5938 +0.8438 0.3125 0.625 +0.8438 0.3125 0.6562 +0.8438 0.3125 0.6875 +0.8438 0.3125 0.7188 +0.8438 0.3125 0.75 +0.8438 0.3125 0.7812 +0.8438 0.3125 0.8125 +0.8438 0.3125 0.8438 +0.8438 0.3125 0.875 +0.8438 0.3125 0.9062 +0.8438 0.3125 0.9375 +0.8438 0.3125 0.9688 +0.8438 0.3125 1 +0.8438 0.3438 0 +0.8438 0.3438 0.03125 +0.8438 0.3438 0.0625 +0.8438 0.3438 0.09375 +0.8438 0.3438 0.125 +0.8438 0.3438 0.1562 +0.8438 0.3438 0.1875 +0.8438 0.3438 0.2188 +0.8438 0.3438 0.25 +0.8438 0.3438 0.2812 +0.8438 0.3438 0.3125 +0.8438 0.3438 0.3438 +0.8438 0.3438 0.375 +0.8438 0.3438 0.4062 +0.8438 0.3438 0.4375 +0.8438 0.3438 0.4688 +0.8438 0.3438 0.5 +0.8438 0.3438 0.5312 +0.8438 0.3438 0.5625 +0.8438 0.3438 0.5938 +0.8438 0.3438 0.625 +0.8438 0.3438 0.6562 +0.8438 0.3438 0.6875 +0.8438 0.3438 0.7188 +0.8438 0.3438 0.75 +0.8438 0.3438 0.7812 +0.8438 0.3438 0.8125 +0.8438 0.3438 0.8438 +0.8438 0.3438 0.875 +0.8438 0.3438 0.9062 +0.8438 0.3438 0.9375 +0.8438 0.3438 0.9688 +0.8438 0.3438 1 +0.8438 0.375 0 +0.8438 0.375 0.03125 +0.8438 0.375 0.0625 +0.8438 0.375 0.09375 +0.8438 0.375 0.125 +0.8438 0.375 0.1562 +0.8438 0.375 0.1875 +0.8438 0.375 0.2188 +0.8438 0.375 0.25 +0.8438 0.375 0.2812 +0.8438 0.375 0.3125 +0.8438 0.375 0.3438 +0.8438 0.375 0.375 +0.8438 0.375 0.4062 +0.8438 0.375 0.4375 +0.8438 0.375 0.4688 +0.8438 0.375 0.5 +0.8438 0.375 0.5312 +0.8438 0.375 0.5625 +0.8438 0.375 0.5938 +0.8438 0.375 0.625 +0.8438 0.375 0.6562 +0.8438 0.375 0.6875 +0.8438 0.375 0.7188 +0.8438 0.375 0.75 +0.8438 0.375 0.7812 +0.8438 0.375 0.8125 +0.8438 0.375 0.8438 +0.8438 0.375 0.875 +0.8438 0.375 0.9062 +0.8438 0.375 0.9375 +0.8438 0.375 0.9688 +0.8438 0.375 1 +0.8438 0.4062 0 +0.8438 0.4062 0.03125 +0.8438 0.4062 0.0625 +0.8438 0.4062 0.09375 +0.8438 0.4062 0.125 +0.8438 0.4062 0.1562 +0.8438 0.4062 0.1875 +0.8438 0.4062 0.2188 +0.8438 0.4062 0.25 +0.8438 0.4062 0.2812 +0.8438 0.4062 0.3125 +0.8438 0.4062 0.3438 +0.8438 0.4062 0.375 +0.8438 0.4062 0.4062 +0.8438 0.4062 0.4375 +0.8438 0.4062 0.4688 +0.8438 0.4062 0.5 +0.8438 0.4062 0.5312 +0.8438 0.4062 0.5625 +0.8438 0.4062 0.5938 +0.8438 0.4062 0.625 +0.8438 0.4062 0.6562 +0.8438 0.4062 0.6875 +0.8438 0.4062 0.7188 +0.8438 0.4062 0.75 +0.8438 0.4062 0.7812 +0.8438 0.4062 0.8125 +0.8438 0.4062 0.8438 +0.8438 0.4062 0.875 +0.8438 0.4062 0.9062 +0.8438 0.4062 0.9375 +0.8438 0.4062 0.9688 +0.8438 0.4062 1 +0.8438 0.4375 0 +0.8438 0.4375 0.03125 +0.8438 0.4375 0.0625 +0.8438 0.4375 0.09375 +0.8438 0.4375 0.125 +0.8438 0.4375 0.1562 +0.8438 0.4375 0.1875 +0.8438 0.4375 0.2188 +0.8438 0.4375 0.25 +0.8438 0.4375 0.2812 +0.8438 0.4375 0.3125 +0.8438 0.4375 0.3438 +0.8438 0.4375 0.375 +0.8438 0.4375 0.4062 +0.8438 0.4375 0.4375 +0.8438 0.4375 0.4688 +0.8438 0.4375 0.5 +0.8438 0.4375 0.5312 +0.8438 0.4375 0.5625 +0.8438 0.4375 0.5938 +0.8438 0.4375 0.625 +0.8438 0.4375 0.6562 +0.8438 0.4375 0.6875 +0.8438 0.4375 0.7188 +0.8438 0.4375 0.75 +0.8438 0.4375 0.7812 +0.8438 0.4375 0.8125 +0.8438 0.4375 0.8438 +0.8438 0.4375 0.875 +0.8438 0.4375 0.9062 +0.8438 0.4375 0.9375 +0.8438 0.4375 0.9688 +0.8438 0.4375 1 +0.8438 0.4688 0 +0.8438 0.4688 0.03125 +0.8438 0.4688 0.0625 +0.8438 0.4688 0.09375 +0.8438 0.4688 0.125 +0.8438 0.4688 0.1562 +0.8438 0.4688 0.1875 +0.8438 0.4688 0.2188 +0.8438 0.4688 0.25 +0.8438 0.4688 0.2812 +0.8438 0.4688 0.3125 +0.8438 0.4688 0.3438 +0.8438 0.4688 0.375 +0.8438 0.4688 0.4062 +0.8438 0.4688 0.4375 +0.8438 0.4688 0.4688 +0.8438 0.4688 0.5 +0.8438 0.4688 0.5312 +0.8438 0.4688 0.5625 +0.8438 0.4688 0.5938 +0.8438 0.4688 0.625 +0.8438 0.4688 0.6562 +0.8438 0.4688 0.6875 +0.8438 0.4688 0.7188 +0.8438 0.4688 0.75 +0.8438 0.4688 0.7812 +0.8438 0.4688 0.8125 +0.8438 0.4688 0.8438 +0.8438 0.4688 0.875 +0.8438 0.4688 0.9062 +0.8438 0.4688 0.9375 +0.8438 0.4688 0.9688 +0.8438 0.4688 1 +0.8438 0.5 0 +0.8438 0.5 0.03125 +0.8438 0.5 0.0625 +0.8438 0.5 0.09375 +0.8438 0.5 0.125 +0.8438 0.5 0.1562 +0.8438 0.5 0.1875 +0.8438 0.5 0.2188 +0.8438 0.5 0.25 +0.8438 0.5 0.2812 +0.8438 0.5 0.3125 +0.8438 0.5 0.3438 +0.8438 0.5 0.375 +0.8438 0.5 0.4062 +0.8438 0.5 0.4375 +0.8438 0.5 0.4688 +0.8438 0.5 0.5 +0.8438 0.5 0.5312 +0.8438 0.5 0.5625 +0.8438 0.5 0.5938 +0.8438 0.5 0.625 +0.8438 0.5 0.6562 +0.8438 0.5 0.6875 +0.8438 0.5 0.7188 +0.8438 0.5 0.75 +0.8438 0.5 0.7812 +0.8438 0.5 0.8125 +0.8438 0.5 0.8438 +0.8438 0.5 0.875 +0.8438 0.5 0.9062 +0.8438 0.5 0.9375 +0.8438 0.5 0.9688 +0.8438 0.5 1 +0.8438 0.5312 0 +0.8438 0.5312 0.03125 +0.8438 0.5312 0.0625 +0.8438 0.5312 0.09375 +0.8438 0.5312 0.125 +0.8438 0.5312 0.1562 +0.8438 0.5312 0.1875 +0.8438 0.5312 0.2188 +0.8438 0.5312 0.25 +0.8438 0.5312 0.2812 +0.8438 0.5312 0.3125 +0.8438 0.5312 0.3438 +0.8438 0.5312 0.375 +0.8438 0.5312 0.4062 +0.8438 0.5312 0.4375 +0.8438 0.5312 0.4688 +0.8438 0.5312 0.5 +0.8438 0.5312 0.5312 +0.8438 0.5312 0.5625 +0.8438 0.5312 0.5938 +0.8438 0.5312 0.625 +0.8438 0.5312 0.6562 +0.8438 0.5312 0.6875 +0.8438 0.5312 0.7188 +0.8438 0.5312 0.75 +0.8438 0.5312 0.7812 +0.8438 0.5312 0.8125 +0.8438 0.5312 0.8438 +0.8438 0.5312 0.875 +0.8438 0.5312 0.9062 +0.8438 0.5312 0.9375 +0.8438 0.5312 0.9688 +0.8438 0.5312 1 +0.8438 0.5625 0 +0.8438 0.5625 0.03125 +0.8438 0.5625 0.0625 +0.8438 0.5625 0.09375 +0.8438 0.5625 0.125 +0.8438 0.5625 0.1562 +0.8438 0.5625 0.1875 +0.8438 0.5625 0.2188 +0.8438 0.5625 0.25 +0.8438 0.5625 0.2812 +0.8438 0.5625 0.3125 +0.8438 0.5625 0.3438 +0.8438 0.5625 0.375 +0.8438 0.5625 0.4062 +0.8438 0.5625 0.4375 +0.8438 0.5625 0.4688 +0.8438 0.5625 0.5 +0.8438 0.5625 0.5312 +0.8438 0.5625 0.5625 +0.8438 0.5625 0.5938 +0.8438 0.5625 0.625 +0.8438 0.5625 0.6562 +0.8438 0.5625 0.6875 +0.8438 0.5625 0.7188 +0.8438 0.5625 0.75 +0.8438 0.5625 0.7812 +0.8438 0.5625 0.8125 +0.8438 0.5625 0.8438 +0.8438 0.5625 0.875 +0.8438 0.5625 0.9062 +0.8438 0.5625 0.9375 +0.8438 0.5625 0.9688 +0.8438 0.5625 1 +0.8438 0.5938 0 +0.8438 0.5938 0.03125 +0.8438 0.5938 0.0625 +0.8438 0.5938 0.09375 +0.8438 0.5938 0.125 +0.8438 0.5938 0.1562 +0.8438 0.5938 0.1875 +0.8438 0.5938 0.2188 +0.8438 0.5938 0.25 +0.8438 0.5938 0.2812 +0.8438 0.5938 0.3125 +0.8438 0.5938 0.3438 +0.8438 0.5938 0.375 +0.8438 0.5938 0.4062 +0.8438 0.5938 0.4375 +0.8438 0.5938 0.4688 +0.8438 0.5938 0.5 +0.8438 0.5938 0.5312 +0.8438 0.5938 0.5625 +0.8438 0.5938 0.5938 +0.8438 0.5938 0.625 +0.8438 0.5938 0.6562 +0.8438 0.5938 0.6875 +0.8438 0.5938 0.7188 +0.8438 0.5938 0.75 +0.8438 0.5938 0.7812 +0.8438 0.5938 0.8125 +0.8438 0.5938 0.8438 +0.8438 0.5938 0.875 +0.8438 0.5938 0.9062 +0.8438 0.5938 0.9375 +0.8438 0.5938 0.9688 +0.8438 0.5938 1 +0.8438 0.625 0 +0.8438 0.625 0.03125 +0.8438 0.625 0.0625 +0.8438 0.625 0.09375 +0.8438 0.625 0.125 +0.8438 0.625 0.1562 +0.8438 0.625 0.1875 +0.8438 0.625 0.2188 +0.8438 0.625 0.25 +0.8438 0.625 0.2812 +0.8438 0.625 0.3125 +0.8438 0.625 0.3438 +0.8438 0.625 0.375 +0.8438 0.625 0.4062 +0.8438 0.625 0.4375 +0.8438 0.625 0.4688 +0.8438 0.625 0.5 +0.8438 0.625 0.5312 +0.8438 0.625 0.5625 +0.8438 0.625 0.5938 +0.8438 0.625 0.625 +0.8438 0.625 0.6562 +0.8438 0.625 0.6875 +0.8438 0.625 0.7188 +0.8438 0.625 0.75 +0.8438 0.625 0.7812 +0.8438 0.625 0.8125 +0.8438 0.625 0.8438 +0.8438 0.625 0.875 +0.8438 0.625 0.9062 +0.8438 0.625 0.9375 +0.8438 0.625 0.9688 +0.8438 0.625 1 +0.8438 0.6562 0 +0.8438 0.6562 0.03125 +0.8438 0.6562 0.0625 +0.8438 0.6562 0.09375 +0.8438 0.6562 0.125 +0.8438 0.6562 0.1562 +0.8438 0.6562 0.1875 +0.8438 0.6562 0.2188 +0.8438 0.6562 0.25 +0.8438 0.6562 0.2812 +0.8438 0.6562 0.3125 +0.8438 0.6562 0.3438 +0.8438 0.6562 0.375 +0.8438 0.6562 0.4062 +0.8438 0.6562 0.4375 +0.8438 0.6562 0.4688 +0.8438 0.6562 0.5 +0.8438 0.6562 0.5312 +0.8438 0.6562 0.5625 +0.8438 0.6562 0.5938 +0.8438 0.6562 0.625 +0.8438 0.6562 0.6562 +0.8438 0.6562 0.6875 +0.8438 0.6562 0.7188 +0.8438 0.6562 0.75 +0.8438 0.6562 0.7812 +0.8438 0.6562 0.8125 +0.8438 0.6562 0.8438 +0.8438 0.6562 0.875 +0.8438 0.6562 0.9062 +0.8438 0.6562 0.9375 +0.8438 0.6562 0.9688 +0.8438 0.6562 1 +0.8438 0.6875 0 +0.8438 0.6875 0.03125 +0.8438 0.6875 0.0625 +0.8438 0.6875 0.09375 +0.8438 0.6875 0.125 +0.8438 0.6875 0.1562 +0.8438 0.6875 0.1875 +0.8438 0.6875 0.2188 +0.8438 0.6875 0.25 +0.8438 0.6875 0.2812 +0.8438 0.6875 0.3125 +0.8438 0.6875 0.3438 +0.8438 0.6875 0.375 +0.8438 0.6875 0.4062 +0.8438 0.6875 0.4375 +0.8438 0.6875 0.4688 +0.8438 0.6875 0.5 +0.8438 0.6875 0.5312 +0.8438 0.6875 0.5625 +0.8438 0.6875 0.5938 +0.8438 0.6875 0.625 +0.8438 0.6875 0.6562 +0.8438 0.6875 0.6875 +0.8438 0.6875 0.7188 +0.8438 0.6875 0.75 +0.8438 0.6875 0.7812 +0.8438 0.6875 0.8125 +0.8438 0.6875 0.8438 +0.8438 0.6875 0.875 +0.8438 0.6875 0.9062 +0.8438 0.6875 0.9375 +0.8438 0.6875 0.9688 +0.8438 0.6875 1 +0.8438 0.7188 0 +0.8438 0.7188 0.03125 +0.8438 0.7188 0.0625 +0.8438 0.7188 0.09375 +0.8438 0.7188 0.125 +0.8438 0.7188 0.1562 +0.8438 0.7188 0.1875 +0.8438 0.7188 0.2188 +0.8438 0.7188 0.25 +0.8438 0.7188 0.2812 +0.8438 0.7188 0.3125 +0.8438 0.7188 0.3438 +0.8438 0.7188 0.375 +0.8438 0.7188 0.4062 +0.8438 0.7188 0.4375 +0.8438 0.7188 0.4688 +0.8438 0.7188 0.5 +0.8438 0.7188 0.5312 +0.8438 0.7188 0.5625 +0.8438 0.7188 0.5938 +0.8438 0.7188 0.625 +0.8438 0.7188 0.6562 +0.8438 0.7188 0.6875 +0.8438 0.7188 0.7188 +0.8438 0.7188 0.75 +0.8438 0.7188 0.7812 +0.8438 0.7188 0.8125 +0.8438 0.7188 0.8438 +0.8438 0.7188 0.875 +0.8438 0.7188 0.9062 +0.8438 0.7188 0.9375 +0.8438 0.7188 0.9688 +0.8438 0.7188 1 +0.8438 0.75 0 +0.8438 0.75 0.03125 +0.8438 0.75 0.0625 +0.8438 0.75 0.09375 +0.8438 0.75 0.125 +0.8438 0.75 0.1562 +0.8438 0.75 0.1875 +0.8438 0.75 0.2188 +0.8438 0.75 0.25 +0.8438 0.75 0.2812 +0.8438 0.75 0.3125 +0.8438 0.75 0.3438 +0.8438 0.75 0.375 +0.8438 0.75 0.4062 +0.8438 0.75 0.4375 +0.8438 0.75 0.4688 +0.8438 0.75 0.5 +0.8438 0.75 0.5312 +0.8438 0.75 0.5625 +0.8438 0.75 0.5938 +0.8438 0.75 0.625 +0.8438 0.75 0.6562 +0.8438 0.75 0.6875 +0.8438 0.75 0.7188 +0.8438 0.75 0.75 +0.8438 0.75 0.7812 +0.8438 0.75 0.8125 +0.8438 0.75 0.8438 +0.8438 0.75 0.875 +0.8438 0.75 0.9062 +0.8438 0.75 0.9375 +0.8438 0.75 0.9688 +0.8438 0.75 1 +0.8438 0.7812 0 +0.8438 0.7812 0.03125 +0.8438 0.7812 0.0625 +0.8438 0.7812 0.09375 +0.8438 0.7812 0.125 +0.8438 0.7812 0.1562 +0.8438 0.7812 0.1875 +0.8438 0.7812 0.2188 +0.8438 0.7812 0.25 +0.8438 0.7812 0.2812 +0.8438 0.7812 0.3125 +0.8438 0.7812 0.3438 +0.8438 0.7812 0.375 +0.8438 0.7812 0.4062 +0.8438 0.7812 0.4375 +0.8438 0.7812 0.4688 +0.8438 0.7812 0.5 +0.8438 0.7812 0.5312 +0.8438 0.7812 0.5625 +0.8438 0.7812 0.5938 +0.8438 0.7812 0.625 +0.8438 0.7812 0.6562 +0.8438 0.7812 0.6875 +0.8438 0.7812 0.7188 +0.8438 0.7812 0.75 +0.8438 0.7812 0.7812 +0.8438 0.7812 0.8125 +0.8438 0.7812 0.8438 +0.8438 0.7812 0.875 +0.8438 0.7812 0.9062 +0.8438 0.7812 0.9375 +0.8438 0.7812 0.9688 +0.8438 0.7812 1 +0.8438 0.8125 0 +0.8438 0.8125 0.03125 +0.8438 0.8125 0.0625 +0.8438 0.8125 0.09375 +0.8438 0.8125 0.125 +0.8438 0.8125 0.1562 +0.8438 0.8125 0.1875 +0.8438 0.8125 0.2188 +0.8438 0.8125 0.25 +0.8438 0.8125 0.2812 +0.8438 0.8125 0.3125 +0.8438 0.8125 0.3438 +0.8438 0.8125 0.375 +0.8438 0.8125 0.4062 +0.8438 0.8125 0.4375 +0.8438 0.8125 0.4688 +0.8438 0.8125 0.5 +0.8438 0.8125 0.5312 +0.8438 0.8125 0.5625 +0.8438 0.8125 0.5938 +0.8438 0.8125 0.625 +0.8438 0.8125 0.6562 +0.8438 0.8125 0.6875 +0.8438 0.8125 0.7188 +0.8438 0.8125 0.75 +0.8438 0.8125 0.7812 +0.8438 0.8125 0.8125 +0.8438 0.8125 0.8438 +0.8438 0.8125 0.875 +0.8438 0.8125 0.9062 +0.8438 0.8125 0.9375 +0.8438 0.8125 0.9688 +0.8438 0.8125 1 +0.8438 0.8438 0 +0.8438 0.8438 0.03125 +0.8438 0.8438 0.0625 +0.8438 0.8438 0.09375 +0.8438 0.8438 0.125 +0.8438 0.8438 0.1562 +0.8438 0.8438 0.1875 +0.8438 0.8438 0.2188 +0.8438 0.8438 0.25 +0.8438 0.8438 0.2812 +0.8438 0.8438 0.3125 +0.8438 0.8438 0.3438 +0.8438 0.8438 0.375 +0.8438 0.8438 0.4062 +0.8438 0.8438 0.4375 +0.8438 0.8438 0.4688 +0.8438 0.8438 0.5 +0.8438 0.8438 0.5312 +0.8438 0.8438 0.5625 +0.8438 0.8438 0.5938 +0.8438 0.8438 0.625 +0.8438 0.8438 0.6562 +0.8438 0.8438 0.6875 +0.8438 0.8438 0.7188 +0.8438 0.8438 0.75 +0.8438 0.8438 0.7812 +0.8438 0.8438 0.8125 +0.8438 0.8438 0.8438 +0.8438 0.8438 0.875 +0.8438 0.8438 0.9062 +0.8438 0.8438 0.9375 +0.8438 0.8438 0.9688 +0.8438 0.8438 1 +0.8438 0.875 0 +0.8438 0.875 0.03125 +0.8438 0.875 0.0625 +0.8438 0.875 0.09375 +0.8438 0.875 0.125 +0.8438 0.875 0.1562 +0.8438 0.875 0.1875 +0.8438 0.875 0.2188 +0.8438 0.875 0.25 +0.8438 0.875 0.2812 +0.8438 0.875 0.3125 +0.8438 0.875 0.3438 +0.8438 0.875 0.375 +0.8438 0.875 0.4062 +0.8438 0.875 0.4375 +0.8438 0.875 0.4688 +0.8438 0.875 0.5 +0.8438 0.875 0.5312 +0.8438 0.875 0.5625 +0.8438 0.875 0.5938 +0.8438 0.875 0.625 +0.8438 0.875 0.6562 +0.8438 0.875 0.6875 +0.8438 0.875 0.7188 +0.8438 0.875 0.75 +0.8438 0.875 0.7812 +0.8438 0.875 0.8125 +0.8438 0.875 0.8438 +0.8438 0.875 0.875 +0.8438 0.875 0.9062 +0.8438 0.875 0.9375 +0.8438 0.875 0.9688 +0.8438 0.875 1 +0.8438 0.9062 0 +0.8438 0.9062 0.03125 +0.8438 0.9062 0.0625 +0.8438 0.9062 0.09375 +0.8438 0.9062 0.125 +0.8438 0.9062 0.1562 +0.8438 0.9062 0.1875 +0.8438 0.9062 0.2188 +0.8438 0.9062 0.25 +0.8438 0.9062 0.2812 +0.8438 0.9062 0.3125 +0.8438 0.9062 0.3438 +0.8438 0.9062 0.375 +0.8438 0.9062 0.4062 +0.8438 0.9062 0.4375 +0.8438 0.9062 0.4688 +0.8438 0.9062 0.5 +0.8438 0.9062 0.5312 +0.8438 0.9062 0.5625 +0.8438 0.9062 0.5938 +0.8438 0.9062 0.625 +0.8438 0.9062 0.6562 +0.8438 0.9062 0.6875 +0.8438 0.9062 0.7188 +0.8438 0.9062 0.75 +0.8438 0.9062 0.7812 +0.8438 0.9062 0.8125 +0.8438 0.9062 0.8438 +0.8438 0.9062 0.875 +0.8438 0.9062 0.9062 +0.8438 0.9062 0.9375 +0.8438 0.9062 0.9688 +0.8438 0.9062 1 +0.8438 0.9375 0 +0.8438 0.9375 0.03125 +0.8438 0.9375 0.0625 +0.8438 0.9375 0.09375 +0.8438 0.9375 0.125 +0.8438 0.9375 0.1562 +0.8438 0.9375 0.1875 +0.8438 0.9375 0.2188 +0.8438 0.9375 0.25 +0.8438 0.9375 0.2812 +0.8438 0.9375 0.3125 +0.8438 0.9375 0.3438 +0.8438 0.9375 0.375 +0.8438 0.9375 0.4062 +0.8438 0.9375 0.4375 +0.8438 0.9375 0.4688 +0.8438 0.9375 0.5 +0.8438 0.9375 0.5312 +0.8438 0.9375 0.5625 +0.8438 0.9375 0.5938 +0.8438 0.9375 0.625 +0.8438 0.9375 0.6562 +0.8438 0.9375 0.6875 +0.8438 0.9375 0.7188 +0.8438 0.9375 0.75 +0.8438 0.9375 0.7812 +0.8438 0.9375 0.8125 +0.8438 0.9375 0.8438 +0.8438 0.9375 0.875 +0.8438 0.9375 0.9062 +0.8438 0.9375 0.9375 +0.8438 0.9375 0.9688 +0.8438 0.9375 1 +0.8438 0.9688 0 +0.8438 0.9688 0.03125 +0.8438 0.9688 0.0625 +0.8438 0.9688 0.09375 +0.8438 0.9688 0.125 +0.8438 0.9688 0.1562 +0.8438 0.9688 0.1875 +0.8438 0.9688 0.2188 +0.8438 0.9688 0.25 +0.8438 0.9688 0.2812 +0.8438 0.9688 0.3125 +0.8438 0.9688 0.3438 +0.8438 0.9688 0.375 +0.8438 0.9688 0.4062 +0.8438 0.9688 0.4375 +0.8438 0.9688 0.4688 +0.8438 0.9688 0.5 +0.8438 0.9688 0.5312 +0.8438 0.9688 0.5625 +0.8438 0.9688 0.5938 +0.8438 0.9688 0.625 +0.8438 0.9688 0.6562 +0.8438 0.9688 0.6875 +0.8438 0.9688 0.7188 +0.8438 0.9688 0.75 +0.8438 0.9688 0.7812 +0.8438 0.9688 0.8125 +0.8438 0.9688 0.8438 +0.8438 0.9688 0.875 +0.8438 0.9688 0.9062 +0.8438 0.9688 0.9375 +0.8438 0.9688 0.9688 +0.8438 0.9688 1 +0.8438 1 0 +0.8438 1 0.03125 +0.8438 1 0.0625 +0.8438 1 0.09375 +0.8438 1 0.125 +0.8438 1 0.1562 +0.8438 1 0.1875 +0.8438 1 0.2188 +0.8438 1 0.25 +0.8438 1 0.2812 +0.8438 1 0.3125 +0.8438 1 0.3438 +0.8438 1 0.375 +0.8438 1 0.4062 +0.8438 1 0.4375 +0.8438 1 0.4688 +0.8438 1 0.5 +0.8438 1 0.5312 +0.8438 1 0.5625 +0.8438 1 0.5938 +0.8438 1 0.625 +0.8438 1 0.6562 +0.8438 1 0.6875 +0.8438 1 0.7188 +0.8438 1 0.75 +0.8438 1 0.7812 +0.8438 1 0.8125 +0.8438 1 0.8438 +0.8438 1 0.875 +0.8438 1 0.9062 +0.8438 1 0.9375 +0.8438 1 0.9688 +0.8438 1 1 +0.875 0 0 +0.875 0 0.03125 +0.875 0 0.0625 +0.875 0 0.09375 +0.875 0 0.125 +0.875 0 0.1562 +0.875 0 0.1875 +0.875 0 0.2188 +0.875 0 0.25 +0.875 0 0.2812 +0.875 0 0.3125 +0.875 0 0.3438 +0.875 0 0.375 +0.875 0 0.4062 +0.875 0 0.4375 +0.875 0 0.4688 +0.875 0 0.5 +0.875 0 0.5312 +0.875 0 0.5625 +0.875 0 0.5938 +0.875 0 0.625 +0.875 0 0.6562 +0.875 0 0.6875 +0.875 0 0.7188 +0.875 0 0.75 +0.875 0 0.7812 +0.875 0 0.8125 +0.875 0 0.8438 +0.875 0 0.875 +0.875 0 0.9062 +0.875 0 0.9375 +0.875 0 0.9688 +0.875 0 1 +0.875 0.03125 0 +0.875 0.03125 0.03125 +0.875 0.03125 0.0625 +0.875 0.03125 0.09375 +0.875 0.03125 0.125 +0.875 0.03125 0.1562 +0.875 0.03125 0.1875 +0.875 0.03125 0.2188 +0.875 0.03125 0.25 +0.875 0.03125 0.2812 +0.875 0.03125 0.3125 +0.875 0.03125 0.3438 +0.875 0.03125 0.375 +0.875 0.03125 0.4062 +0.875 0.03125 0.4375 +0.875 0.03125 0.4688 +0.875 0.03125 0.5 +0.875 0.03125 0.5312 +0.875 0.03125 0.5625 +0.875 0.03125 0.5938 +0.875 0.03125 0.625 +0.875 0.03125 0.6562 +0.875 0.03125 0.6875 +0.875 0.03125 0.7188 +0.875 0.03125 0.75 +0.875 0.03125 0.7812 +0.875 0.03125 0.8125 +0.875 0.03125 0.8438 +0.875 0.03125 0.875 +0.875 0.03125 0.9062 +0.875 0.03125 0.9375 +0.875 0.03125 0.9688 +0.875 0.03125 1 +0.875 0.0625 0 +0.875 0.0625 0.03125 +0.875 0.0625 0.0625 +0.875 0.0625 0.09375 +0.875 0.0625 0.125 +0.875 0.0625 0.1562 +0.875 0.0625 0.1875 +0.875 0.0625 0.2188 +0.875 0.0625 0.25 +0.875 0.0625 0.2812 +0.875 0.0625 0.3125 +0.875 0.0625 0.3438 +0.875 0.0625 0.375 +0.875 0.0625 0.4062 +0.875 0.0625 0.4375 +0.875 0.0625 0.4688 +0.875 0.0625 0.5 +0.875 0.0625 0.5312 +0.875 0.0625 0.5625 +0.875 0.0625 0.5938 +0.875 0.0625 0.625 +0.875 0.0625 0.6562 +0.875 0.0625 0.6875 +0.875 0.0625 0.7188 +0.875 0.0625 0.75 +0.875 0.0625 0.7812 +0.875 0.0625 0.8125 +0.875 0.0625 0.8438 +0.875 0.0625 0.875 +0.875 0.0625 0.9062 +0.875 0.0625 0.9375 +0.875 0.0625 0.9688 +0.875 0.0625 1 +0.875 0.09375 0 +0.875 0.09375 0.03125 +0.875 0.09375 0.0625 +0.875 0.09375 0.09375 +0.875 0.09375 0.125 +0.875 0.09375 0.1562 +0.875 0.09375 0.1875 +0.875 0.09375 0.2188 +0.875 0.09375 0.25 +0.875 0.09375 0.2812 +0.875 0.09375 0.3125 +0.875 0.09375 0.3438 +0.875 0.09375 0.375 +0.875 0.09375 0.4062 +0.875 0.09375 0.4375 +0.875 0.09375 0.4688 +0.875 0.09375 0.5 +0.875 0.09375 0.5312 +0.875 0.09375 0.5625 +0.875 0.09375 0.5938 +0.875 0.09375 0.625 +0.875 0.09375 0.6562 +0.875 0.09375 0.6875 +0.875 0.09375 0.7188 +0.875 0.09375 0.75 +0.875 0.09375 0.7812 +0.875 0.09375 0.8125 +0.875 0.09375 0.8438 +0.875 0.09375 0.875 +0.875 0.09375 0.9062 +0.875 0.09375 0.9375 +0.875 0.09375 0.9688 +0.875 0.09375 1 +0.875 0.125 0 +0.875 0.125 0.03125 +0.875 0.125 0.0625 +0.875 0.125 0.09375 +0.875 0.125 0.125 +0.875 0.125 0.1562 +0.875 0.125 0.1875 +0.875 0.125 0.2188 +0.875 0.125 0.25 +0.875 0.125 0.2812 +0.875 0.125 0.3125 +0.875 0.125 0.3438 +0.875 0.125 0.375 +0.875 0.125 0.4062 +0.875 0.125 0.4375 +0.875 0.125 0.4688 +0.875 0.125 0.5 +0.875 0.125 0.5312 +0.875 0.125 0.5625 +0.875 0.125 0.5938 +0.875 0.125 0.625 +0.875 0.125 0.6562 +0.875 0.125 0.6875 +0.875 0.125 0.7188 +0.875 0.125 0.75 +0.875 0.125 0.7812 +0.875 0.125 0.8125 +0.875 0.125 0.8438 +0.875 0.125 0.875 +0.875 0.125 0.9062 +0.875 0.125 0.9375 +0.875 0.125 0.9688 +0.875 0.125 1 +0.875 0.1562 0 +0.875 0.1562 0.03125 +0.875 0.1562 0.0625 +0.875 0.1562 0.09375 +0.875 0.1562 0.125 +0.875 0.1562 0.1562 +0.875 0.1562 0.1875 +0.875 0.1562 0.2188 +0.875 0.1562 0.25 +0.875 0.1562 0.2812 +0.875 0.1562 0.3125 +0.875 0.1562 0.3438 +0.875 0.1562 0.375 +0.875 0.1562 0.4062 +0.875 0.1562 0.4375 +0.875 0.1562 0.4688 +0.875 0.1562 0.5 +0.875 0.1562 0.5312 +0.875 0.1562 0.5625 +0.875 0.1562 0.5938 +0.875 0.1562 0.625 +0.875 0.1562 0.6562 +0.875 0.1562 0.6875 +0.875 0.1562 0.7188 +0.875 0.1562 0.75 +0.875 0.1562 0.7812 +0.875 0.1562 0.8125 +0.875 0.1562 0.8438 +0.875 0.1562 0.875 +0.875 0.1562 0.9062 +0.875 0.1562 0.9375 +0.875 0.1562 0.9688 +0.875 0.1562 1 +0.875 0.1875 0 +0.875 0.1875 0.03125 +0.875 0.1875 0.0625 +0.875 0.1875 0.09375 +0.875 0.1875 0.125 +0.875 0.1875 0.1562 +0.875 0.1875 0.1875 +0.875 0.1875 0.2188 +0.875 0.1875 0.25 +0.875 0.1875 0.2812 +0.875 0.1875 0.3125 +0.875 0.1875 0.3438 +0.875 0.1875 0.375 +0.875 0.1875 0.4062 +0.875 0.1875 0.4375 +0.875 0.1875 0.4688 +0.875 0.1875 0.5 +0.875 0.1875 0.5312 +0.875 0.1875 0.5625 +0.875 0.1875 0.5938 +0.875 0.1875 0.625 +0.875 0.1875 0.6562 +0.875 0.1875 0.6875 +0.875 0.1875 0.7188 +0.875 0.1875 0.75 +0.875 0.1875 0.7812 +0.875 0.1875 0.8125 +0.875 0.1875 0.8438 +0.875 0.1875 0.875 +0.875 0.1875 0.9062 +0.875 0.1875 0.9375 +0.875 0.1875 0.9688 +0.875 0.1875 1 +0.875 0.2188 0 +0.875 0.2188 0.03125 +0.875 0.2188 0.0625 +0.875 0.2188 0.09375 +0.875 0.2188 0.125 +0.875 0.2188 0.1562 +0.875 0.2188 0.1875 +0.875 0.2188 0.2188 +0.875 0.2188 0.25 +0.875 0.2188 0.2812 +0.875 0.2188 0.3125 +0.875 0.2188 0.3438 +0.875 0.2188 0.375 +0.875 0.2188 0.4062 +0.875 0.2188 0.4375 +0.875 0.2188 0.4688 +0.875 0.2188 0.5 +0.875 0.2188 0.5312 +0.875 0.2188 0.5625 +0.875 0.2188 0.5938 +0.875 0.2188 0.625 +0.875 0.2188 0.6562 +0.875 0.2188 0.6875 +0.875 0.2188 0.7188 +0.875 0.2188 0.75 +0.875 0.2188 0.7812 +0.875 0.2188 0.8125 +0.875 0.2188 0.8438 +0.875 0.2188 0.875 +0.875 0.2188 0.9062 +0.875 0.2188 0.9375 +0.875 0.2188 0.9688 +0.875 0.2188 1 +0.875 0.25 0 +0.875 0.25 0.03125 +0.875 0.25 0.0625 +0.875 0.25 0.09375 +0.875 0.25 0.125 +0.875 0.25 0.1562 +0.875 0.25 0.1875 +0.875 0.25 0.2188 +0.875 0.25 0.25 +0.875 0.25 0.2812 +0.875 0.25 0.3125 +0.875 0.25 0.3438 +0.875 0.25 0.375 +0.875 0.25 0.4062 +0.875 0.25 0.4375 +0.875 0.25 0.4688 +0.875 0.25 0.5 +0.875 0.25 0.5312 +0.875 0.25 0.5625 +0.875 0.25 0.5938 +0.875 0.25 0.625 +0.875 0.25 0.6562 +0.875 0.25 0.6875 +0.875 0.25 0.7188 +0.875 0.25 0.75 +0.875 0.25 0.7812 +0.875 0.25 0.8125 +0.875 0.25 0.8438 +0.875 0.25 0.875 +0.875 0.25 0.9062 +0.875 0.25 0.9375 +0.875 0.25 0.9688 +0.875 0.25 1 +0.875 0.2812 0 +0.875 0.2812 0.03125 +0.875 0.2812 0.0625 +0.875 0.2812 0.09375 +0.875 0.2812 0.125 +0.875 0.2812 0.1562 +0.875 0.2812 0.1875 +0.875 0.2812 0.2188 +0.875 0.2812 0.25 +0.875 0.2812 0.2812 +0.875 0.2812 0.3125 +0.875 0.2812 0.3438 +0.875 0.2812 0.375 +0.875 0.2812 0.4062 +0.875 0.2812 0.4375 +0.875 0.2812 0.4688 +0.875 0.2812 0.5 +0.875 0.2812 0.5312 +0.875 0.2812 0.5625 +0.875 0.2812 0.5938 +0.875 0.2812 0.625 +0.875 0.2812 0.6562 +0.875 0.2812 0.6875 +0.875 0.2812 0.7188 +0.875 0.2812 0.75 +0.875 0.2812 0.7812 +0.875 0.2812 0.8125 +0.875 0.2812 0.8438 +0.875 0.2812 0.875 +0.875 0.2812 0.9062 +0.875 0.2812 0.9375 +0.875 0.2812 0.9688 +0.875 0.2812 1 +0.875 0.3125 0 +0.875 0.3125 0.03125 +0.875 0.3125 0.0625 +0.875 0.3125 0.09375 +0.875 0.3125 0.125 +0.875 0.3125 0.1562 +0.875 0.3125 0.1875 +0.875 0.3125 0.2188 +0.875 0.3125 0.25 +0.875 0.3125 0.2812 +0.875 0.3125 0.3125 +0.875 0.3125 0.3438 +0.875 0.3125 0.375 +0.875 0.3125 0.4062 +0.875 0.3125 0.4375 +0.875 0.3125 0.4688 +0.875 0.3125 0.5 +0.875 0.3125 0.5312 +0.875 0.3125 0.5625 +0.875 0.3125 0.5938 +0.875 0.3125 0.625 +0.875 0.3125 0.6562 +0.875 0.3125 0.6875 +0.875 0.3125 0.7188 +0.875 0.3125 0.75 +0.875 0.3125 0.7812 +0.875 0.3125 0.8125 +0.875 0.3125 0.8438 +0.875 0.3125 0.875 +0.875 0.3125 0.9062 +0.875 0.3125 0.9375 +0.875 0.3125 0.9688 +0.875 0.3125 1 +0.875 0.3438 0 +0.875 0.3438 0.03125 +0.875 0.3438 0.0625 +0.875 0.3438 0.09375 +0.875 0.3438 0.125 +0.875 0.3438 0.1562 +0.875 0.3438 0.1875 +0.875 0.3438 0.2188 +0.875 0.3438 0.25 +0.875 0.3438 0.2812 +0.875 0.3438 0.3125 +0.875 0.3438 0.3438 +0.875 0.3438 0.375 +0.875 0.3438 0.4062 +0.875 0.3438 0.4375 +0.875 0.3438 0.4688 +0.875 0.3438 0.5 +0.875 0.3438 0.5312 +0.875 0.3438 0.5625 +0.875 0.3438 0.5938 +0.875 0.3438 0.625 +0.875 0.3438 0.6562 +0.875 0.3438 0.6875 +0.875 0.3438 0.7188 +0.875 0.3438 0.75 +0.875 0.3438 0.7812 +0.875 0.3438 0.8125 +0.875 0.3438 0.8438 +0.875 0.3438 0.875 +0.875 0.3438 0.9062 +0.875 0.3438 0.9375 +0.875 0.3438 0.9688 +0.875 0.3438 1 +0.875 0.375 0 +0.875 0.375 0.03125 +0.875 0.375 0.0625 +0.875 0.375 0.09375 +0.875 0.375 0.125 +0.875 0.375 0.1562 +0.875 0.375 0.1875 +0.875 0.375 0.2188 +0.875 0.375 0.25 +0.875 0.375 0.2812 +0.875 0.375 0.3125 +0.875 0.375 0.3438 +0.875 0.375 0.375 +0.875 0.375 0.4062 +0.875 0.375 0.4375 +0.875 0.375 0.4688 +0.875 0.375 0.5 +0.875 0.375 0.5312 +0.875 0.375 0.5625 +0.875 0.375 0.5938 +0.875 0.375 0.625 +0.875 0.375 0.6562 +0.875 0.375 0.6875 +0.875 0.375 0.7188 +0.875 0.375 0.75 +0.875 0.375 0.7812 +0.875 0.375 0.8125 +0.875 0.375 0.8438 +0.875 0.375 0.875 +0.875 0.375 0.9062 +0.875 0.375 0.9375 +0.875 0.375 0.9688 +0.875 0.375 1 +0.875 0.4062 0 +0.875 0.4062 0.03125 +0.875 0.4062 0.0625 +0.875 0.4062 0.09375 +0.875 0.4062 0.125 +0.875 0.4062 0.1562 +0.875 0.4062 0.1875 +0.875 0.4062 0.2188 +0.875 0.4062 0.25 +0.875 0.4062 0.2812 +0.875 0.4062 0.3125 +0.875 0.4062 0.3438 +0.875 0.4062 0.375 +0.875 0.4062 0.4062 +0.875 0.4062 0.4375 +0.875 0.4062 0.4688 +0.875 0.4062 0.5 +0.875 0.4062 0.5312 +0.875 0.4062 0.5625 +0.875 0.4062 0.5938 +0.875 0.4062 0.625 +0.875 0.4062 0.6562 +0.875 0.4062 0.6875 +0.875 0.4062 0.7188 +0.875 0.4062 0.75 +0.875 0.4062 0.7812 +0.875 0.4062 0.8125 +0.875 0.4062 0.8438 +0.875 0.4062 0.875 +0.875 0.4062 0.9062 +0.875 0.4062 0.9375 +0.875 0.4062 0.9688 +0.875 0.4062 1 +0.875 0.4375 0 +0.875 0.4375 0.03125 +0.875 0.4375 0.0625 +0.875 0.4375 0.09375 +0.875 0.4375 0.125 +0.875 0.4375 0.1562 +0.875 0.4375 0.1875 +0.875 0.4375 0.2188 +0.875 0.4375 0.25 +0.875 0.4375 0.2812 +0.875 0.4375 0.3125 +0.875 0.4375 0.3438 +0.875 0.4375 0.375 +0.875 0.4375 0.4062 +0.875 0.4375 0.4375 +0.875 0.4375 0.4688 +0.875 0.4375 0.5 +0.875 0.4375 0.5312 +0.875 0.4375 0.5625 +0.875 0.4375 0.5938 +0.875 0.4375 0.625 +0.875 0.4375 0.6562 +0.875 0.4375 0.6875 +0.875 0.4375 0.7188 +0.875 0.4375 0.75 +0.875 0.4375 0.7812 +0.875 0.4375 0.8125 +0.875 0.4375 0.8438 +0.875 0.4375 0.875 +0.875 0.4375 0.9062 +0.875 0.4375 0.9375 +0.875 0.4375 0.9688 +0.875 0.4375 1 +0.875 0.4688 0 +0.875 0.4688 0.03125 +0.875 0.4688 0.0625 +0.875 0.4688 0.09375 +0.875 0.4688 0.125 +0.875 0.4688 0.1562 +0.875 0.4688 0.1875 +0.875 0.4688 0.2188 +0.875 0.4688 0.25 +0.875 0.4688 0.2812 +0.875 0.4688 0.3125 +0.875 0.4688 0.3438 +0.875 0.4688 0.375 +0.875 0.4688 0.4062 +0.875 0.4688 0.4375 +0.875 0.4688 0.4688 +0.875 0.4688 0.5 +0.875 0.4688 0.5312 +0.875 0.4688 0.5625 +0.875 0.4688 0.5938 +0.875 0.4688 0.625 +0.875 0.4688 0.6562 +0.875 0.4688 0.6875 +0.875 0.4688 0.7188 +0.875 0.4688 0.75 +0.875 0.4688 0.7812 +0.875 0.4688 0.8125 +0.875 0.4688 0.8438 +0.875 0.4688 0.875 +0.875 0.4688 0.9062 +0.875 0.4688 0.9375 +0.875 0.4688 0.9688 +0.875 0.4688 1 +0.875 0.5 0 +0.875 0.5 0.03125 +0.875 0.5 0.0625 +0.875 0.5 0.09375 +0.875 0.5 0.125 +0.875 0.5 0.1562 +0.875 0.5 0.1875 +0.875 0.5 0.2188 +0.875 0.5 0.25 +0.875 0.5 0.2812 +0.875 0.5 0.3125 +0.875 0.5 0.3438 +0.875 0.5 0.375 +0.875 0.5 0.4062 +0.875 0.5 0.4375 +0.875 0.5 0.4688 +0.875 0.5 0.5 +0.875 0.5 0.5312 +0.875 0.5 0.5625 +0.875 0.5 0.5938 +0.875 0.5 0.625 +0.875 0.5 0.6562 +0.875 0.5 0.6875 +0.875 0.5 0.7188 +0.875 0.5 0.75 +0.875 0.5 0.7812 +0.875 0.5 0.8125 +0.875 0.5 0.8438 +0.875 0.5 0.875 +0.875 0.5 0.9062 +0.875 0.5 0.9375 +0.875 0.5 0.9688 +0.875 0.5 1 +0.875 0.5312 0 +0.875 0.5312 0.03125 +0.875 0.5312 0.0625 +0.875 0.5312 0.09375 +0.875 0.5312 0.125 +0.875 0.5312 0.1562 +0.875 0.5312 0.1875 +0.875 0.5312 0.2188 +0.875 0.5312 0.25 +0.875 0.5312 0.2812 +0.875 0.5312 0.3125 +0.875 0.5312 0.3438 +0.875 0.5312 0.375 +0.875 0.5312 0.4062 +0.875 0.5312 0.4375 +0.875 0.5312 0.4688 +0.875 0.5312 0.5 +0.875 0.5312 0.5312 +0.875 0.5312 0.5625 +0.875 0.5312 0.5938 +0.875 0.5312 0.625 +0.875 0.5312 0.6562 +0.875 0.5312 0.6875 +0.875 0.5312 0.7188 +0.875 0.5312 0.75 +0.875 0.5312 0.7812 +0.875 0.5312 0.8125 +0.875 0.5312 0.8438 +0.875 0.5312 0.875 +0.875 0.5312 0.9062 +0.875 0.5312 0.9375 +0.875 0.5312 0.9688 +0.875 0.5312 1 +0.875 0.5625 0 +0.875 0.5625 0.03125 +0.875 0.5625 0.0625 +0.875 0.5625 0.09375 +0.875 0.5625 0.125 +0.875 0.5625 0.1562 +0.875 0.5625 0.1875 +0.875 0.5625 0.2188 +0.875 0.5625 0.25 +0.875 0.5625 0.2812 +0.875 0.5625 0.3125 +0.875 0.5625 0.3438 +0.875 0.5625 0.375 +0.875 0.5625 0.4062 +0.875 0.5625 0.4375 +0.875 0.5625 0.4688 +0.875 0.5625 0.5 +0.875 0.5625 0.5312 +0.875 0.5625 0.5625 +0.875 0.5625 0.5938 +0.875 0.5625 0.625 +0.875 0.5625 0.6562 +0.875 0.5625 0.6875 +0.875 0.5625 0.7188 +0.875 0.5625 0.75 +0.875 0.5625 0.7812 +0.875 0.5625 0.8125 +0.875 0.5625 0.8438 +0.875 0.5625 0.875 +0.875 0.5625 0.9062 +0.875 0.5625 0.9375 +0.875 0.5625 0.9688 +0.875 0.5625 1 +0.875 0.5938 0 +0.875 0.5938 0.03125 +0.875 0.5938 0.0625 +0.875 0.5938 0.09375 +0.875 0.5938 0.125 +0.875 0.5938 0.1562 +0.875 0.5938 0.1875 +0.875 0.5938 0.2188 +0.875 0.5938 0.25 +0.875 0.5938 0.2812 +0.875 0.5938 0.3125 +0.875 0.5938 0.3438 +0.875 0.5938 0.375 +0.875 0.5938 0.4062 +0.875 0.5938 0.4375 +0.875 0.5938 0.4688 +0.875 0.5938 0.5 +0.875 0.5938 0.5312 +0.875 0.5938 0.5625 +0.875 0.5938 0.5938 +0.875 0.5938 0.625 +0.875 0.5938 0.6562 +0.875 0.5938 0.6875 +0.875 0.5938 0.7188 +0.875 0.5938 0.75 +0.875 0.5938 0.7812 +0.875 0.5938 0.8125 +0.875 0.5938 0.8438 +0.875 0.5938 0.875 +0.875 0.5938 0.9062 +0.875 0.5938 0.9375 +0.875 0.5938 0.9688 +0.875 0.5938 1 +0.875 0.625 0 +0.875 0.625 0.03125 +0.875 0.625 0.0625 +0.875 0.625 0.09375 +0.875 0.625 0.125 +0.875 0.625 0.1562 +0.875 0.625 0.1875 +0.875 0.625 0.2188 +0.875 0.625 0.25 +0.875 0.625 0.2812 +0.875 0.625 0.3125 +0.875 0.625 0.3438 +0.875 0.625 0.375 +0.875 0.625 0.4062 +0.875 0.625 0.4375 +0.875 0.625 0.4688 +0.875 0.625 0.5 +0.875 0.625 0.5312 +0.875 0.625 0.5625 +0.875 0.625 0.5938 +0.875 0.625 0.625 +0.875 0.625 0.6562 +0.875 0.625 0.6875 +0.875 0.625 0.7188 +0.875 0.625 0.75 +0.875 0.625 0.7812 +0.875 0.625 0.8125 +0.875 0.625 0.8438 +0.875 0.625 0.875 +0.875 0.625 0.9062 +0.875 0.625 0.9375 +0.875 0.625 0.9688 +0.875 0.625 1 +0.875 0.6562 0 +0.875 0.6562 0.03125 +0.875 0.6562 0.0625 +0.875 0.6562 0.09375 +0.875 0.6562 0.125 +0.875 0.6562 0.1562 +0.875 0.6562 0.1875 +0.875 0.6562 0.2188 +0.875 0.6562 0.25 +0.875 0.6562 0.2812 +0.875 0.6562 0.3125 +0.875 0.6562 0.3438 +0.875 0.6562 0.375 +0.875 0.6562 0.4062 +0.875 0.6562 0.4375 +0.875 0.6562 0.4688 +0.875 0.6562 0.5 +0.875 0.6562 0.5312 +0.875 0.6562 0.5625 +0.875 0.6562 0.5938 +0.875 0.6562 0.625 +0.875 0.6562 0.6562 +0.875 0.6562 0.6875 +0.875 0.6562 0.7188 +0.875 0.6562 0.75 +0.875 0.6562 0.7812 +0.875 0.6562 0.8125 +0.875 0.6562 0.8438 +0.875 0.6562 0.875 +0.875 0.6562 0.9062 +0.875 0.6562 0.9375 +0.875 0.6562 0.9688 +0.875 0.6562 1 +0.875 0.6875 0 +0.875 0.6875 0.03125 +0.875 0.6875 0.0625 +0.875 0.6875 0.09375 +0.875 0.6875 0.125 +0.875 0.6875 0.1562 +0.875 0.6875 0.1875 +0.875 0.6875 0.2188 +0.875 0.6875 0.25 +0.875 0.6875 0.2812 +0.875 0.6875 0.3125 +0.875 0.6875 0.3438 +0.875 0.6875 0.375 +0.875 0.6875 0.4062 +0.875 0.6875 0.4375 +0.875 0.6875 0.4688 +0.875 0.6875 0.5 +0.875 0.6875 0.5312 +0.875 0.6875 0.5625 +0.875 0.6875 0.5938 +0.875 0.6875 0.625 +0.875 0.6875 0.6562 +0.875 0.6875 0.6875 +0.875 0.6875 0.7188 +0.875 0.6875 0.75 +0.875 0.6875 0.7812 +0.875 0.6875 0.8125 +0.875 0.6875 0.8438 +0.875 0.6875 0.875 +0.875 0.6875 0.9062 +0.875 0.6875 0.9375 +0.875 0.6875 0.9688 +0.875 0.6875 1 +0.875 0.7188 0 +0.875 0.7188 0.03125 +0.875 0.7188 0.0625 +0.875 0.7188 0.09375 +0.875 0.7188 0.125 +0.875 0.7188 0.1562 +0.875 0.7188 0.1875 +0.875 0.7188 0.2188 +0.875 0.7188 0.25 +0.875 0.7188 0.2812 +0.875 0.7188 0.3125 +0.875 0.7188 0.3438 +0.875 0.7188 0.375 +0.875 0.7188 0.4062 +0.875 0.7188 0.4375 +0.875 0.7188 0.4688 +0.875 0.7188 0.5 +0.875 0.7188 0.5312 +0.875 0.7188 0.5625 +0.875 0.7188 0.5938 +0.875 0.7188 0.625 +0.875 0.7188 0.6562 +0.875 0.7188 0.6875 +0.875 0.7188 0.7188 +0.875 0.7188 0.75 +0.875 0.7188 0.7812 +0.875 0.7188 0.8125 +0.875 0.7188 0.8438 +0.875 0.7188 0.875 +0.875 0.7188 0.9062 +0.875 0.7188 0.9375 +0.875 0.7188 0.9688 +0.875 0.7188 1 +0.875 0.75 0 +0.875 0.75 0.03125 +0.875 0.75 0.0625 +0.875 0.75 0.09375 +0.875 0.75 0.125 +0.875 0.75 0.1562 +0.875 0.75 0.1875 +0.875 0.75 0.2188 +0.875 0.75 0.25 +0.875 0.75 0.2812 +0.875 0.75 0.3125 +0.875 0.75 0.3438 +0.875 0.75 0.375 +0.875 0.75 0.4062 +0.875 0.75 0.4375 +0.875 0.75 0.4688 +0.875 0.75 0.5 +0.875 0.75 0.5312 +0.875 0.75 0.5625 +0.875 0.75 0.5938 +0.875 0.75 0.625 +0.875 0.75 0.6562 +0.875 0.75 0.6875 +0.875 0.75 0.7188 +0.875 0.75 0.75 +0.875 0.75 0.7812 +0.875 0.75 0.8125 +0.875 0.75 0.8438 +0.875 0.75 0.875 +0.875 0.75 0.9062 +0.875 0.75 0.9375 +0.875 0.75 0.9688 +0.875 0.75 1 +0.875 0.7812 0 +0.875 0.7812 0.03125 +0.875 0.7812 0.0625 +0.875 0.7812 0.09375 +0.875 0.7812 0.125 +0.875 0.7812 0.1562 +0.875 0.7812 0.1875 +0.875 0.7812 0.2188 +0.875 0.7812 0.25 +0.875 0.7812 0.2812 +0.875 0.7812 0.3125 +0.875 0.7812 0.3438 +0.875 0.7812 0.375 +0.875 0.7812 0.4062 +0.875 0.7812 0.4375 +0.875 0.7812 0.4688 +0.875 0.7812 0.5 +0.875 0.7812 0.5312 +0.875 0.7812 0.5625 +0.875 0.7812 0.5938 +0.875 0.7812 0.625 +0.875 0.7812 0.6562 +0.875 0.7812 0.6875 +0.875 0.7812 0.7188 +0.875 0.7812 0.75 +0.875 0.7812 0.7812 +0.875 0.7812 0.8125 +0.875 0.7812 0.8438 +0.875 0.7812 0.875 +0.875 0.7812 0.9062 +0.875 0.7812 0.9375 +0.875 0.7812 0.9688 +0.875 0.7812 1 +0.875 0.8125 0 +0.875 0.8125 0.03125 +0.875 0.8125 0.0625 +0.875 0.8125 0.09375 +0.875 0.8125 0.125 +0.875 0.8125 0.1562 +0.875 0.8125 0.1875 +0.875 0.8125 0.2188 +0.875 0.8125 0.25 +0.875 0.8125 0.2812 +0.875 0.8125 0.3125 +0.875 0.8125 0.3438 +0.875 0.8125 0.375 +0.875 0.8125 0.4062 +0.875 0.8125 0.4375 +0.875 0.8125 0.4688 +0.875 0.8125 0.5 +0.875 0.8125 0.5312 +0.875 0.8125 0.5625 +0.875 0.8125 0.5938 +0.875 0.8125 0.625 +0.875 0.8125 0.6562 +0.875 0.8125 0.6875 +0.875 0.8125 0.7188 +0.875 0.8125 0.75 +0.875 0.8125 0.7812 +0.875 0.8125 0.8125 +0.875 0.8125 0.8438 +0.875 0.8125 0.875 +0.875 0.8125 0.9062 +0.875 0.8125 0.9375 +0.875 0.8125 0.9688 +0.875 0.8125 1 +0.875 0.8438 0 +0.875 0.8438 0.03125 +0.875 0.8438 0.0625 +0.875 0.8438 0.09375 +0.875 0.8438 0.125 +0.875 0.8438 0.1562 +0.875 0.8438 0.1875 +0.875 0.8438 0.2188 +0.875 0.8438 0.25 +0.875 0.8438 0.2812 +0.875 0.8438 0.3125 +0.875 0.8438 0.3438 +0.875 0.8438 0.375 +0.875 0.8438 0.4062 +0.875 0.8438 0.4375 +0.875 0.8438 0.4688 +0.875 0.8438 0.5 +0.875 0.8438 0.5312 +0.875 0.8438 0.5625 +0.875 0.8438 0.5938 +0.875 0.8438 0.625 +0.875 0.8438 0.6562 +0.875 0.8438 0.6875 +0.875 0.8438 0.7188 +0.875 0.8438 0.75 +0.875 0.8438 0.7812 +0.875 0.8438 0.8125 +0.875 0.8438 0.8438 +0.875 0.8438 0.875 +0.875 0.8438 0.9062 +0.875 0.8438 0.9375 +0.875 0.8438 0.9688 +0.875 0.8438 1 +0.875 0.875 0 +0.875 0.875 0.03125 +0.875 0.875 0.0625 +0.875 0.875 0.09375 +0.875 0.875 0.125 +0.875 0.875 0.1562 +0.875 0.875 0.1875 +0.875 0.875 0.2188 +0.875 0.875 0.25 +0.875 0.875 0.2812 +0.875 0.875 0.3125 +0.875 0.875 0.3438 +0.875 0.875 0.375 +0.875 0.875 0.4062 +0.875 0.875 0.4375 +0.875 0.875 0.4688 +0.875 0.875 0.5 +0.875 0.875 0.5312 +0.875 0.875 0.5625 +0.875 0.875 0.5938 +0.875 0.875 0.625 +0.875 0.875 0.6562 +0.875 0.875 0.6875 +0.875 0.875 0.7188 +0.875 0.875 0.75 +0.875 0.875 0.7812 +0.875 0.875 0.8125 +0.875 0.875 0.8438 +0.875 0.875 0.875 +0.875 0.875 0.9062 +0.875 0.875 0.9375 +0.875 0.875 0.9688 +0.875 0.875 1 +0.875 0.9062 0 +0.875 0.9062 0.03125 +0.875 0.9062 0.0625 +0.875 0.9062 0.09375 +0.875 0.9062 0.125 +0.875 0.9062 0.1562 +0.875 0.9062 0.1875 +0.875 0.9062 0.2188 +0.875 0.9062 0.25 +0.875 0.9062 0.2812 +0.875 0.9062 0.3125 +0.875 0.9062 0.3438 +0.875 0.9062 0.375 +0.875 0.9062 0.4062 +0.875 0.9062 0.4375 +0.875 0.9062 0.4688 +0.875 0.9062 0.5 +0.875 0.9062 0.5312 +0.875 0.9062 0.5625 +0.875 0.9062 0.5938 +0.875 0.9062 0.625 +0.875 0.9062 0.6562 +0.875 0.9062 0.6875 +0.875 0.9062 0.7188 +0.875 0.9062 0.75 +0.875 0.9062 0.7812 +0.875 0.9062 0.8125 +0.875 0.9062 0.8438 +0.875 0.9062 0.875 +0.875 0.9062 0.9062 +0.875 0.9062 0.9375 +0.875 0.9062 0.9688 +0.875 0.9062 1 +0.875 0.9375 0 +0.875 0.9375 0.03125 +0.875 0.9375 0.0625 +0.875 0.9375 0.09375 +0.875 0.9375 0.125 +0.875 0.9375 0.1562 +0.875 0.9375 0.1875 +0.875 0.9375 0.2188 +0.875 0.9375 0.25 +0.875 0.9375 0.2812 +0.875 0.9375 0.3125 +0.875 0.9375 0.3438 +0.875 0.9375 0.375 +0.875 0.9375 0.4062 +0.875 0.9375 0.4375 +0.875 0.9375 0.4688 +0.875 0.9375 0.5 +0.875 0.9375 0.5312 +0.875 0.9375 0.5625 +0.875 0.9375 0.5938 +0.875 0.9375 0.625 +0.875 0.9375 0.6562 +0.875 0.9375 0.6875 +0.875 0.9375 0.7188 +0.875 0.9375 0.75 +0.875 0.9375 0.7812 +0.875 0.9375 0.8125 +0.875 0.9375 0.8438 +0.875 0.9375 0.875 +0.875 0.9375 0.9062 +0.875 0.9375 0.9375 +0.875 0.9375 0.9688 +0.875 0.9375 1 +0.875 0.9688 0 +0.875 0.9688 0.03125 +0.875 0.9688 0.0625 +0.875 0.9688 0.09375 +0.875 0.9688 0.125 +0.875 0.9688 0.1562 +0.875 0.9688 0.1875 +0.875 0.9688 0.2188 +0.875 0.9688 0.25 +0.875 0.9688 0.2812 +0.875 0.9688 0.3125 +0.875 0.9688 0.3438 +0.875 0.9688 0.375 +0.875 0.9688 0.4062 +0.875 0.9688 0.4375 +0.875 0.9688 0.4688 +0.875 0.9688 0.5 +0.875 0.9688 0.5312 +0.875 0.9688 0.5625 +0.875 0.9688 0.5938 +0.875 0.9688 0.625 +0.875 0.9688 0.6562 +0.875 0.9688 0.6875 +0.875 0.9688 0.7188 +0.875 0.9688 0.75 +0.875 0.9688 0.7812 +0.875 0.9688 0.8125 +0.875 0.9688 0.8438 +0.875 0.9688 0.875 +0.875 0.9688 0.9062 +0.875 0.9688 0.9375 +0.875 0.9688 0.9688 +0.875 0.9688 1 +0.875 1 0 +0.875 1 0.03125 +0.875 1 0.0625 +0.875 1 0.09375 +0.875 1 0.125 +0.875 1 0.1562 +0.875 1 0.1875 +0.875 1 0.2188 +0.875 1 0.25 +0.875 1 0.2812 +0.875 1 0.3125 +0.875 1 0.3438 +0.875 1 0.375 +0.875 1 0.4062 +0.875 1 0.4375 +0.875 1 0.4688 +0.875 1 0.5 +0.875 1 0.5312 +0.875 1 0.5625 +0.875 1 0.5938 +0.875 1 0.625 +0.875 1 0.6562 +0.875 1 0.6875 +0.875 1 0.7188 +0.875 1 0.75 +0.875 1 0.7812 +0.875 1 0.8125 +0.875 1 0.8438 +0.875 1 0.875 +0.875 1 0.9062 +0.875 1 0.9375 +0.875 1 0.9688 +0.875 1 1 +0.9062 0 0 +0.9062 0 0.03125 +0.9062 0 0.0625 +0.9062 0 0.09375 +0.9062 0 0.125 +0.9062 0 0.1562 +0.9062 0 0.1875 +0.9062 0 0.2188 +0.9062 0 0.25 +0.9062 0 0.2812 +0.9062 0 0.3125 +0.9062 0 0.3438 +0.9062 0 0.375 +0.9062 0 0.4062 +0.9062 0 0.4375 +0.9062 0 0.4688 +0.9062 0 0.5 +0.9062 0 0.5312 +0.9062 0 0.5625 +0.9062 0 0.5938 +0.9062 0 0.625 +0.9062 0 0.6562 +0.9062 0 0.6875 +0.9062 0 0.7188 +0.9062 0 0.75 +0.9062 0 0.7812 +0.9062 0 0.8125 +0.9062 0 0.8438 +0.9062 0 0.875 +0.9062 0 0.9062 +0.9062 0 0.9375 +0.9062 0 0.9688 +0.9062 0 1 +0.9062 0.03125 0 +0.9062 0.03125 0.03125 +0.9062 0.03125 0.0625 +0.9062 0.03125 0.09375 +0.9062 0.03125 0.125 +0.9062 0.03125 0.1562 +0.9062 0.03125 0.1875 +0.9062 0.03125 0.2188 +0.9062 0.03125 0.25 +0.9062 0.03125 0.2812 +0.9062 0.03125 0.3125 +0.9062 0.03125 0.3438 +0.9062 0.03125 0.375 +0.9062 0.03125 0.4062 +0.9062 0.03125 0.4375 +0.9062 0.03125 0.4688 +0.9062 0.03125 0.5 +0.9062 0.03125 0.5312 +0.9062 0.03125 0.5625 +0.9062 0.03125 0.5938 +0.9062 0.03125 0.625 +0.9062 0.03125 0.6562 +0.9062 0.03125 0.6875 +0.9062 0.03125 0.7188 +0.9062 0.03125 0.75 +0.9062 0.03125 0.7812 +0.9062 0.03125 0.8125 +0.9062 0.03125 0.8438 +0.9062 0.03125 0.875 +0.9062 0.03125 0.9062 +0.9062 0.03125 0.9375 +0.9062 0.03125 0.9688 +0.9062 0.03125 1 +0.9062 0.0625 0 +0.9062 0.0625 0.03125 +0.9062 0.0625 0.0625 +0.9062 0.0625 0.09375 +0.9062 0.0625 0.125 +0.9062 0.0625 0.1562 +0.9062 0.0625 0.1875 +0.9062 0.0625 0.2188 +0.9062 0.0625 0.25 +0.9062 0.0625 0.2812 +0.9062 0.0625 0.3125 +0.9062 0.0625 0.3438 +0.9062 0.0625 0.375 +0.9062 0.0625 0.4062 +0.9062 0.0625 0.4375 +0.9062 0.0625 0.4688 +0.9062 0.0625 0.5 +0.9062 0.0625 0.5312 +0.9062 0.0625 0.5625 +0.9062 0.0625 0.5938 +0.9062 0.0625 0.625 +0.9062 0.0625 0.6562 +0.9062 0.0625 0.6875 +0.9062 0.0625 0.7188 +0.9062 0.0625 0.75 +0.9062 0.0625 0.7812 +0.9062 0.0625 0.8125 +0.9062 0.0625 0.8438 +0.9062 0.0625 0.875 +0.9062 0.0625 0.9062 +0.9062 0.0625 0.9375 +0.9062 0.0625 0.9688 +0.9062 0.0625 1 +0.9062 0.09375 0 +0.9062 0.09375 0.03125 +0.9062 0.09375 0.0625 +0.9062 0.09375 0.09375 +0.9062 0.09375 0.125 +0.9062 0.09375 0.1562 +0.9062 0.09375 0.1875 +0.9062 0.09375 0.2188 +0.9062 0.09375 0.25 +0.9062 0.09375 0.2812 +0.9062 0.09375 0.3125 +0.9062 0.09375 0.3438 +0.9062 0.09375 0.375 +0.9062 0.09375 0.4062 +0.9062 0.09375 0.4375 +0.9062 0.09375 0.4688 +0.9062 0.09375 0.5 +0.9062 0.09375 0.5312 +0.9062 0.09375 0.5625 +0.9062 0.09375 0.5938 +0.9062 0.09375 0.625 +0.9062 0.09375 0.6562 +0.9062 0.09375 0.6875 +0.9062 0.09375 0.7188 +0.9062 0.09375 0.75 +0.9062 0.09375 0.7812 +0.9062 0.09375 0.8125 +0.9062 0.09375 0.8438 +0.9062 0.09375 0.875 +0.9062 0.09375 0.9062 +0.9062 0.09375 0.9375 +0.9062 0.09375 0.9688 +0.9062 0.09375 1 +0.9062 0.125 0 +0.9062 0.125 0.03125 +0.9062 0.125 0.0625 +0.9062 0.125 0.09375 +0.9062 0.125 0.125 +0.9062 0.125 0.1562 +0.9062 0.125 0.1875 +0.9062 0.125 0.2188 +0.9062 0.125 0.25 +0.9062 0.125 0.2812 +0.9062 0.125 0.3125 +0.9062 0.125 0.3438 +0.9062 0.125 0.375 +0.9062 0.125 0.4062 +0.9062 0.125 0.4375 +0.9062 0.125 0.4688 +0.9062 0.125 0.5 +0.9062 0.125 0.5312 +0.9062 0.125 0.5625 +0.9062 0.125 0.5938 +0.9062 0.125 0.625 +0.9062 0.125 0.6562 +0.9062 0.125 0.6875 +0.9062 0.125 0.7188 +0.9062 0.125 0.75 +0.9062 0.125 0.7812 +0.9062 0.125 0.8125 +0.9062 0.125 0.8438 +0.9062 0.125 0.875 +0.9062 0.125 0.9062 +0.9062 0.125 0.9375 +0.9062 0.125 0.9688 +0.9062 0.125 1 +0.9062 0.1562 0 +0.9062 0.1562 0.03125 +0.9062 0.1562 0.0625 +0.9062 0.1562 0.09375 +0.9062 0.1562 0.125 +0.9062 0.1562 0.1562 +0.9062 0.1562 0.1875 +0.9062 0.1562 0.2188 +0.9062 0.1562 0.25 +0.9062 0.1562 0.2812 +0.9062 0.1562 0.3125 +0.9062 0.1562 0.3438 +0.9062 0.1562 0.375 +0.9062 0.1562 0.4062 +0.9062 0.1562 0.4375 +0.9062 0.1562 0.4688 +0.9062 0.1562 0.5 +0.9062 0.1562 0.5312 +0.9062 0.1562 0.5625 +0.9062 0.1562 0.5938 +0.9062 0.1562 0.625 +0.9062 0.1562 0.6562 +0.9062 0.1562 0.6875 +0.9062 0.1562 0.7188 +0.9062 0.1562 0.75 +0.9062 0.1562 0.7812 +0.9062 0.1562 0.8125 +0.9062 0.1562 0.8438 +0.9062 0.1562 0.875 +0.9062 0.1562 0.9062 +0.9062 0.1562 0.9375 +0.9062 0.1562 0.9688 +0.9062 0.1562 1 +0.9062 0.1875 0 +0.9062 0.1875 0.03125 +0.9062 0.1875 0.0625 +0.9062 0.1875 0.09375 +0.9062 0.1875 0.125 +0.9062 0.1875 0.1562 +0.9062 0.1875 0.1875 +0.9062 0.1875 0.2188 +0.9062 0.1875 0.25 +0.9062 0.1875 0.2812 +0.9062 0.1875 0.3125 +0.9062 0.1875 0.3438 +0.9062 0.1875 0.375 +0.9062 0.1875 0.4062 +0.9062 0.1875 0.4375 +0.9062 0.1875 0.4688 +0.9062 0.1875 0.5 +0.9062 0.1875 0.5312 +0.9062 0.1875 0.5625 +0.9062 0.1875 0.5938 +0.9062 0.1875 0.625 +0.9062 0.1875 0.6562 +0.9062 0.1875 0.6875 +0.9062 0.1875 0.7188 +0.9062 0.1875 0.75 +0.9062 0.1875 0.7812 +0.9062 0.1875 0.8125 +0.9062 0.1875 0.8438 +0.9062 0.1875 0.875 +0.9062 0.1875 0.9062 +0.9062 0.1875 0.9375 +0.9062 0.1875 0.9688 +0.9062 0.1875 1 +0.9062 0.2188 0 +0.9062 0.2188 0.03125 +0.9062 0.2188 0.0625 +0.9062 0.2188 0.09375 +0.9062 0.2188 0.125 +0.9062 0.2188 0.1562 +0.9062 0.2188 0.1875 +0.9062 0.2188 0.2188 +0.9062 0.2188 0.25 +0.9062 0.2188 0.2812 +0.9062 0.2188 0.3125 +0.9062 0.2188 0.3438 +0.9062 0.2188 0.375 +0.9062 0.2188 0.4062 +0.9062 0.2188 0.4375 +0.9062 0.2188 0.4688 +0.9062 0.2188 0.5 +0.9062 0.2188 0.5312 +0.9062 0.2188 0.5625 +0.9062 0.2188 0.5938 +0.9062 0.2188 0.625 +0.9062 0.2188 0.6562 +0.9062 0.2188 0.6875 +0.9062 0.2188 0.7188 +0.9062 0.2188 0.75 +0.9062 0.2188 0.7812 +0.9062 0.2188 0.8125 +0.9062 0.2188 0.8438 +0.9062 0.2188 0.875 +0.9062 0.2188 0.9062 +0.9062 0.2188 0.9375 +0.9062 0.2188 0.9688 +0.9062 0.2188 1 +0.9062 0.25 0 +0.9062 0.25 0.03125 +0.9062 0.25 0.0625 +0.9062 0.25 0.09375 +0.9062 0.25 0.125 +0.9062 0.25 0.1562 +0.9062 0.25 0.1875 +0.9062 0.25 0.2188 +0.9062 0.25 0.25 +0.9062 0.25 0.2812 +0.9062 0.25 0.3125 +0.9062 0.25 0.3438 +0.9062 0.25 0.375 +0.9062 0.25 0.4062 +0.9062 0.25 0.4375 +0.9062 0.25 0.4688 +0.9062 0.25 0.5 +0.9062 0.25 0.5312 +0.9062 0.25 0.5625 +0.9062 0.25 0.5938 +0.9062 0.25 0.625 +0.9062 0.25 0.6562 +0.9062 0.25 0.6875 +0.9062 0.25 0.7188 +0.9062 0.25 0.75 +0.9062 0.25 0.7812 +0.9062 0.25 0.8125 +0.9062 0.25 0.8438 +0.9062 0.25 0.875 +0.9062 0.25 0.9062 +0.9062 0.25 0.9375 +0.9062 0.25 0.9688 +0.9062 0.25 1 +0.9062 0.2812 0 +0.9062 0.2812 0.03125 +0.9062 0.2812 0.0625 +0.9062 0.2812 0.09375 +0.9062 0.2812 0.125 +0.9062 0.2812 0.1562 +0.9062 0.2812 0.1875 +0.9062 0.2812 0.2188 +0.9062 0.2812 0.25 +0.9062 0.2812 0.2812 +0.9062 0.2812 0.3125 +0.9062 0.2812 0.3438 +0.9062 0.2812 0.375 +0.9062 0.2812 0.4062 +0.9062 0.2812 0.4375 +0.9062 0.2812 0.4688 +0.9062 0.2812 0.5 +0.9062 0.2812 0.5312 +0.9062 0.2812 0.5625 +0.9062 0.2812 0.5938 +0.9062 0.2812 0.625 +0.9062 0.2812 0.6562 +0.9062 0.2812 0.6875 +0.9062 0.2812 0.7188 +0.9062 0.2812 0.75 +0.9062 0.2812 0.7812 +0.9062 0.2812 0.8125 +0.9062 0.2812 0.8438 +0.9062 0.2812 0.875 +0.9062 0.2812 0.9062 +0.9062 0.2812 0.9375 +0.9062 0.2812 0.9688 +0.9062 0.2812 1 +0.9062 0.3125 0 +0.9062 0.3125 0.03125 +0.9062 0.3125 0.0625 +0.9062 0.3125 0.09375 +0.9062 0.3125 0.125 +0.9062 0.3125 0.1562 +0.9062 0.3125 0.1875 +0.9062 0.3125 0.2188 +0.9062 0.3125 0.25 +0.9062 0.3125 0.2812 +0.9062 0.3125 0.3125 +0.9062 0.3125 0.3438 +0.9062 0.3125 0.375 +0.9062 0.3125 0.4062 +0.9062 0.3125 0.4375 +0.9062 0.3125 0.4688 +0.9062 0.3125 0.5 +0.9062 0.3125 0.5312 +0.9062 0.3125 0.5625 +0.9062 0.3125 0.5938 +0.9062 0.3125 0.625 +0.9062 0.3125 0.6562 +0.9062 0.3125 0.6875 +0.9062 0.3125 0.7188 +0.9062 0.3125 0.75 +0.9062 0.3125 0.7812 +0.9062 0.3125 0.8125 +0.9062 0.3125 0.8438 +0.9062 0.3125 0.875 +0.9062 0.3125 0.9062 +0.9062 0.3125 0.9375 +0.9062 0.3125 0.9688 +0.9062 0.3125 1 +0.9062 0.3438 0 +0.9062 0.3438 0.03125 +0.9062 0.3438 0.0625 +0.9062 0.3438 0.09375 +0.9062 0.3438 0.125 +0.9062 0.3438 0.1562 +0.9062 0.3438 0.1875 +0.9062 0.3438 0.2188 +0.9062 0.3438 0.25 +0.9062 0.3438 0.2812 +0.9062 0.3438 0.3125 +0.9062 0.3438 0.3438 +0.9062 0.3438 0.375 +0.9062 0.3438 0.4062 +0.9062 0.3438 0.4375 +0.9062 0.3438 0.4688 +0.9062 0.3438 0.5 +0.9062 0.3438 0.5312 +0.9062 0.3438 0.5625 +0.9062 0.3438 0.5938 +0.9062 0.3438 0.625 +0.9062 0.3438 0.6562 +0.9062 0.3438 0.6875 +0.9062 0.3438 0.7188 +0.9062 0.3438 0.75 +0.9062 0.3438 0.7812 +0.9062 0.3438 0.8125 +0.9062 0.3438 0.8438 +0.9062 0.3438 0.875 +0.9062 0.3438 0.9062 +0.9062 0.3438 0.9375 +0.9062 0.3438 0.9688 +0.9062 0.3438 1 +0.9062 0.375 0 +0.9062 0.375 0.03125 +0.9062 0.375 0.0625 +0.9062 0.375 0.09375 +0.9062 0.375 0.125 +0.9062 0.375 0.1562 +0.9062 0.375 0.1875 +0.9062 0.375 0.2188 +0.9062 0.375 0.25 +0.9062 0.375 0.2812 +0.9062 0.375 0.3125 +0.9062 0.375 0.3438 +0.9062 0.375 0.375 +0.9062 0.375 0.4062 +0.9062 0.375 0.4375 +0.9062 0.375 0.4688 +0.9062 0.375 0.5 +0.9062 0.375 0.5312 +0.9062 0.375 0.5625 +0.9062 0.375 0.5938 +0.9062 0.375 0.625 +0.9062 0.375 0.6562 +0.9062 0.375 0.6875 +0.9062 0.375 0.7188 +0.9062 0.375 0.75 +0.9062 0.375 0.7812 +0.9062 0.375 0.8125 +0.9062 0.375 0.8438 +0.9062 0.375 0.875 +0.9062 0.375 0.9062 +0.9062 0.375 0.9375 +0.9062 0.375 0.9688 +0.9062 0.375 1 +0.9062 0.4062 0 +0.9062 0.4062 0.03125 +0.9062 0.4062 0.0625 +0.9062 0.4062 0.09375 +0.9062 0.4062 0.125 +0.9062 0.4062 0.1562 +0.9062 0.4062 0.1875 +0.9062 0.4062 0.2188 +0.9062 0.4062 0.25 +0.9062 0.4062 0.2812 +0.9062 0.4062 0.3125 +0.9062 0.4062 0.3438 +0.9062 0.4062 0.375 +0.9062 0.4062 0.4062 +0.9062 0.4062 0.4375 +0.9062 0.4062 0.4688 +0.9062 0.4062 0.5 +0.9062 0.4062 0.5312 +0.9062 0.4062 0.5625 +0.9062 0.4062 0.5938 +0.9062 0.4062 0.625 +0.9062 0.4062 0.6562 +0.9062 0.4062 0.6875 +0.9062 0.4062 0.7188 +0.9062 0.4062 0.75 +0.9062 0.4062 0.7812 +0.9062 0.4062 0.8125 +0.9062 0.4062 0.8438 +0.9062 0.4062 0.875 +0.9062 0.4062 0.9062 +0.9062 0.4062 0.9375 +0.9062 0.4062 0.9688 +0.9062 0.4062 1 +0.9062 0.4375 0 +0.9062 0.4375 0.03125 +0.9062 0.4375 0.0625 +0.9062 0.4375 0.09375 +0.9062 0.4375 0.125 +0.9062 0.4375 0.1562 +0.9062 0.4375 0.1875 +0.9062 0.4375 0.2188 +0.9062 0.4375 0.25 +0.9062 0.4375 0.2812 +0.9062 0.4375 0.3125 +0.9062 0.4375 0.3438 +0.9062 0.4375 0.375 +0.9062 0.4375 0.4062 +0.9062 0.4375 0.4375 +0.9062 0.4375 0.4688 +0.9062 0.4375 0.5 +0.9062 0.4375 0.5312 +0.9062 0.4375 0.5625 +0.9062 0.4375 0.5938 +0.9062 0.4375 0.625 +0.9062 0.4375 0.6562 +0.9062 0.4375 0.6875 +0.9062 0.4375 0.7188 +0.9062 0.4375 0.75 +0.9062 0.4375 0.7812 +0.9062 0.4375 0.8125 +0.9062 0.4375 0.8438 +0.9062 0.4375 0.875 +0.9062 0.4375 0.9062 +0.9062 0.4375 0.9375 +0.9062 0.4375 0.9688 +0.9062 0.4375 1 +0.9062 0.4688 0 +0.9062 0.4688 0.03125 +0.9062 0.4688 0.0625 +0.9062 0.4688 0.09375 +0.9062 0.4688 0.125 +0.9062 0.4688 0.1562 +0.9062 0.4688 0.1875 +0.9062 0.4688 0.2188 +0.9062 0.4688 0.25 +0.9062 0.4688 0.2812 +0.9062 0.4688 0.3125 +0.9062 0.4688 0.3438 +0.9062 0.4688 0.375 +0.9062 0.4688 0.4062 +0.9062 0.4688 0.4375 +0.9062 0.4688 0.4688 +0.9062 0.4688 0.5 +0.9062 0.4688 0.5312 +0.9062 0.4688 0.5625 +0.9062 0.4688 0.5938 +0.9062 0.4688 0.625 +0.9062 0.4688 0.6562 +0.9062 0.4688 0.6875 +0.9062 0.4688 0.7188 +0.9062 0.4688 0.75 +0.9062 0.4688 0.7812 +0.9062 0.4688 0.8125 +0.9062 0.4688 0.8438 +0.9062 0.4688 0.875 +0.9062 0.4688 0.9062 +0.9062 0.4688 0.9375 +0.9062 0.4688 0.9688 +0.9062 0.4688 1 +0.9062 0.5 0 +0.9062 0.5 0.03125 +0.9062 0.5 0.0625 +0.9062 0.5 0.09375 +0.9062 0.5 0.125 +0.9062 0.5 0.1562 +0.9062 0.5 0.1875 +0.9062 0.5 0.2188 +0.9062 0.5 0.25 +0.9062 0.5 0.2812 +0.9062 0.5 0.3125 +0.9062 0.5 0.3438 +0.9062 0.5 0.375 +0.9062 0.5 0.4062 +0.9062 0.5 0.4375 +0.9062 0.5 0.4688 +0.9062 0.5 0.5 +0.9062 0.5 0.5312 +0.9062 0.5 0.5625 +0.9062 0.5 0.5938 +0.9062 0.5 0.625 +0.9062 0.5 0.6562 +0.9062 0.5 0.6875 +0.9062 0.5 0.7188 +0.9062 0.5 0.75 +0.9062 0.5 0.7812 +0.9062 0.5 0.8125 +0.9062 0.5 0.8438 +0.9062 0.5 0.875 +0.9062 0.5 0.9062 +0.9062 0.5 0.9375 +0.9062 0.5 0.9688 +0.9062 0.5 1 +0.9062 0.5312 0 +0.9062 0.5312 0.03125 +0.9062 0.5312 0.0625 +0.9062 0.5312 0.09375 +0.9062 0.5312 0.125 +0.9062 0.5312 0.1562 +0.9062 0.5312 0.1875 +0.9062 0.5312 0.2188 +0.9062 0.5312 0.25 +0.9062 0.5312 0.2812 +0.9062 0.5312 0.3125 +0.9062 0.5312 0.3438 +0.9062 0.5312 0.375 +0.9062 0.5312 0.4062 +0.9062 0.5312 0.4375 +0.9062 0.5312 0.4688 +0.9062 0.5312 0.5 +0.9062 0.5312 0.5312 +0.9062 0.5312 0.5625 +0.9062 0.5312 0.5938 +0.9062 0.5312 0.625 +0.9062 0.5312 0.6562 +0.9062 0.5312 0.6875 +0.9062 0.5312 0.7188 +0.9062 0.5312 0.75 +0.9062 0.5312 0.7812 +0.9062 0.5312 0.8125 +0.9062 0.5312 0.8438 +0.9062 0.5312 0.875 +0.9062 0.5312 0.9062 +0.9062 0.5312 0.9375 +0.9062 0.5312 0.9688 +0.9062 0.5312 1 +0.9062 0.5625 0 +0.9062 0.5625 0.03125 +0.9062 0.5625 0.0625 +0.9062 0.5625 0.09375 +0.9062 0.5625 0.125 +0.9062 0.5625 0.1562 +0.9062 0.5625 0.1875 +0.9062 0.5625 0.2188 +0.9062 0.5625 0.25 +0.9062 0.5625 0.2812 +0.9062 0.5625 0.3125 +0.9062 0.5625 0.3438 +0.9062 0.5625 0.375 +0.9062 0.5625 0.4062 +0.9062 0.5625 0.4375 +0.9062 0.5625 0.4688 +0.9062 0.5625 0.5 +0.9062 0.5625 0.5312 +0.9062 0.5625 0.5625 +0.9062 0.5625 0.5938 +0.9062 0.5625 0.625 +0.9062 0.5625 0.6562 +0.9062 0.5625 0.6875 +0.9062 0.5625 0.7188 +0.9062 0.5625 0.75 +0.9062 0.5625 0.7812 +0.9062 0.5625 0.8125 +0.9062 0.5625 0.8438 +0.9062 0.5625 0.875 +0.9062 0.5625 0.9062 +0.9062 0.5625 0.9375 +0.9062 0.5625 0.9688 +0.9062 0.5625 1 +0.9062 0.5938 0 +0.9062 0.5938 0.03125 +0.9062 0.5938 0.0625 +0.9062 0.5938 0.09375 +0.9062 0.5938 0.125 +0.9062 0.5938 0.1562 +0.9062 0.5938 0.1875 +0.9062 0.5938 0.2188 +0.9062 0.5938 0.25 +0.9062 0.5938 0.2812 +0.9062 0.5938 0.3125 +0.9062 0.5938 0.3438 +0.9062 0.5938 0.375 +0.9062 0.5938 0.4062 +0.9062 0.5938 0.4375 +0.9062 0.5938 0.4688 +0.9062 0.5938 0.5 +0.9062 0.5938 0.5312 +0.9062 0.5938 0.5625 +0.9062 0.5938 0.5938 +0.9062 0.5938 0.625 +0.9062 0.5938 0.6562 +0.9062 0.5938 0.6875 +0.9062 0.5938 0.7188 +0.9062 0.5938 0.75 +0.9062 0.5938 0.7812 +0.9062 0.5938 0.8125 +0.9062 0.5938 0.8438 +0.9062 0.5938 0.875 +0.9062 0.5938 0.9062 +0.9062 0.5938 0.9375 +0.9062 0.5938 0.9688 +0.9062 0.5938 1 +0.9062 0.625 0 +0.9062 0.625 0.03125 +0.9062 0.625 0.0625 +0.9062 0.625 0.09375 +0.9062 0.625 0.125 +0.9062 0.625 0.1562 +0.9062 0.625 0.1875 +0.9062 0.625 0.2188 +0.9062 0.625 0.25 +0.9062 0.625 0.2812 +0.9062 0.625 0.3125 +0.9062 0.625 0.3438 +0.9062 0.625 0.375 +0.9062 0.625 0.4062 +0.9062 0.625 0.4375 +0.9062 0.625 0.4688 +0.9062 0.625 0.5 +0.9062 0.625 0.5312 +0.9062 0.625 0.5625 +0.9062 0.625 0.5938 +0.9062 0.625 0.625 +0.9062 0.625 0.6562 +0.9062 0.625 0.6875 +0.9062 0.625 0.7188 +0.9062 0.625 0.75 +0.9062 0.625 0.7812 +0.9062 0.625 0.8125 +0.9062 0.625 0.8438 +0.9062 0.625 0.875 +0.9062 0.625 0.9062 +0.9062 0.625 0.9375 +0.9062 0.625 0.9688 +0.9062 0.625 1 +0.9062 0.6562 0 +0.9062 0.6562 0.03125 +0.9062 0.6562 0.0625 +0.9062 0.6562 0.09375 +0.9062 0.6562 0.125 +0.9062 0.6562 0.1562 +0.9062 0.6562 0.1875 +0.9062 0.6562 0.2188 +0.9062 0.6562 0.25 +0.9062 0.6562 0.2812 +0.9062 0.6562 0.3125 +0.9062 0.6562 0.3438 +0.9062 0.6562 0.375 +0.9062 0.6562 0.4062 +0.9062 0.6562 0.4375 +0.9062 0.6562 0.4688 +0.9062 0.6562 0.5 +0.9062 0.6562 0.5312 +0.9062 0.6562 0.5625 +0.9062 0.6562 0.5938 +0.9062 0.6562 0.625 +0.9062 0.6562 0.6562 +0.9062 0.6562 0.6875 +0.9062 0.6562 0.7188 +0.9062 0.6562 0.75 +0.9062 0.6562 0.7812 +0.9062 0.6562 0.8125 +0.9062 0.6562 0.8438 +0.9062 0.6562 0.875 +0.9062 0.6562 0.9062 +0.9062 0.6562 0.9375 +0.9062 0.6562 0.9688 +0.9062 0.6562 1 +0.9062 0.6875 0 +0.9062 0.6875 0.03125 +0.9062 0.6875 0.0625 +0.9062 0.6875 0.09375 +0.9062 0.6875 0.125 +0.9062 0.6875 0.1562 +0.9062 0.6875 0.1875 +0.9062 0.6875 0.2188 +0.9062 0.6875 0.25 +0.9062 0.6875 0.2812 +0.9062 0.6875 0.3125 +0.9062 0.6875 0.3438 +0.9062 0.6875 0.375 +0.9062 0.6875 0.4062 +0.9062 0.6875 0.4375 +0.9062 0.6875 0.4688 +0.9062 0.6875 0.5 +0.9062 0.6875 0.5312 +0.9062 0.6875 0.5625 +0.9062 0.6875 0.5938 +0.9062 0.6875 0.625 +0.9062 0.6875 0.6562 +0.9062 0.6875 0.6875 +0.9062 0.6875 0.7188 +0.9062 0.6875 0.75 +0.9062 0.6875 0.7812 +0.9062 0.6875 0.8125 +0.9062 0.6875 0.8438 +0.9062 0.6875 0.875 +0.9062 0.6875 0.9062 +0.9062 0.6875 0.9375 +0.9062 0.6875 0.9688 +0.9062 0.6875 1 +0.9062 0.7188 0 +0.9062 0.7188 0.03125 +0.9062 0.7188 0.0625 +0.9062 0.7188 0.09375 +0.9062 0.7188 0.125 +0.9062 0.7188 0.1562 +0.9062 0.7188 0.1875 +0.9062 0.7188 0.2188 +0.9062 0.7188 0.25 +0.9062 0.7188 0.2812 +0.9062 0.7188 0.3125 +0.9062 0.7188 0.3438 +0.9062 0.7188 0.375 +0.9062 0.7188 0.4062 +0.9062 0.7188 0.4375 +0.9062 0.7188 0.4688 +0.9062 0.7188 0.5 +0.9062 0.7188 0.5312 +0.9062 0.7188 0.5625 +0.9062 0.7188 0.5938 +0.9062 0.7188 0.625 +0.9062 0.7188 0.6562 +0.9062 0.7188 0.6875 +0.9062 0.7188 0.7188 +0.9062 0.7188 0.75 +0.9062 0.7188 0.7812 +0.9062 0.7188 0.8125 +0.9062 0.7188 0.8438 +0.9062 0.7188 0.875 +0.9062 0.7188 0.9062 +0.9062 0.7188 0.9375 +0.9062 0.7188 0.9688 +0.9062 0.7188 1 +0.9062 0.75 0 +0.9062 0.75 0.03125 +0.9062 0.75 0.0625 +0.9062 0.75 0.09375 +0.9062 0.75 0.125 +0.9062 0.75 0.1562 +0.9062 0.75 0.1875 +0.9062 0.75 0.2188 +0.9062 0.75 0.25 +0.9062 0.75 0.2812 +0.9062 0.75 0.3125 +0.9062 0.75 0.3438 +0.9062 0.75 0.375 +0.9062 0.75 0.4062 +0.9062 0.75 0.4375 +0.9062 0.75 0.4688 +0.9062 0.75 0.5 +0.9062 0.75 0.5312 +0.9062 0.75 0.5625 +0.9062 0.75 0.5938 +0.9062 0.75 0.625 +0.9062 0.75 0.6562 +0.9062 0.75 0.6875 +0.9062 0.75 0.7188 +0.9062 0.75 0.75 +0.9062 0.75 0.7812 +0.9062 0.75 0.8125 +0.9062 0.75 0.8438 +0.9062 0.75 0.875 +0.9062 0.75 0.9062 +0.9062 0.75 0.9375 +0.9062 0.75 0.9688 +0.9062 0.75 1 +0.9062 0.7812 0 +0.9062 0.7812 0.03125 +0.9062 0.7812 0.0625 +0.9062 0.7812 0.09375 +0.9062 0.7812 0.125 +0.9062 0.7812 0.1562 +0.9062 0.7812 0.1875 +0.9062 0.7812 0.2188 +0.9062 0.7812 0.25 +0.9062 0.7812 0.2812 +0.9062 0.7812 0.3125 +0.9062 0.7812 0.3438 +0.9062 0.7812 0.375 +0.9062 0.7812 0.4062 +0.9062 0.7812 0.4375 +0.9062 0.7812 0.4688 +0.9062 0.7812 0.5 +0.9062 0.7812 0.5312 +0.9062 0.7812 0.5625 +0.9062 0.7812 0.5938 +0.9062 0.7812 0.625 +0.9062 0.7812 0.6562 +0.9062 0.7812 0.6875 +0.9062 0.7812 0.7188 +0.9062 0.7812 0.75 +0.9062 0.7812 0.7812 +0.9062 0.7812 0.8125 +0.9062 0.7812 0.8438 +0.9062 0.7812 0.875 +0.9062 0.7812 0.9062 +0.9062 0.7812 0.9375 +0.9062 0.7812 0.9688 +0.9062 0.7812 1 +0.9062 0.8125 0 +0.9062 0.8125 0.03125 +0.9062 0.8125 0.0625 +0.9062 0.8125 0.09375 +0.9062 0.8125 0.125 +0.9062 0.8125 0.1562 +0.9062 0.8125 0.1875 +0.9062 0.8125 0.2188 +0.9062 0.8125 0.25 +0.9062 0.8125 0.2812 +0.9062 0.8125 0.3125 +0.9062 0.8125 0.3438 +0.9062 0.8125 0.375 +0.9062 0.8125 0.4062 +0.9062 0.8125 0.4375 +0.9062 0.8125 0.4688 +0.9062 0.8125 0.5 +0.9062 0.8125 0.5312 +0.9062 0.8125 0.5625 +0.9062 0.8125 0.5938 +0.9062 0.8125 0.625 +0.9062 0.8125 0.6562 +0.9062 0.8125 0.6875 +0.9062 0.8125 0.7188 +0.9062 0.8125 0.75 +0.9062 0.8125 0.7812 +0.9062 0.8125 0.8125 +0.9062 0.8125 0.8438 +0.9062 0.8125 0.875 +0.9062 0.8125 0.9062 +0.9062 0.8125 0.9375 +0.9062 0.8125 0.9688 +0.9062 0.8125 1 +0.9062 0.8438 0 +0.9062 0.8438 0.03125 +0.9062 0.8438 0.0625 +0.9062 0.8438 0.09375 +0.9062 0.8438 0.125 +0.9062 0.8438 0.1562 +0.9062 0.8438 0.1875 +0.9062 0.8438 0.2188 +0.9062 0.8438 0.25 +0.9062 0.8438 0.2812 +0.9062 0.8438 0.3125 +0.9062 0.8438 0.3438 +0.9062 0.8438 0.375 +0.9062 0.8438 0.4062 +0.9062 0.8438 0.4375 +0.9062 0.8438 0.4688 +0.9062 0.8438 0.5 +0.9062 0.8438 0.5312 +0.9062 0.8438 0.5625 +0.9062 0.8438 0.5938 +0.9062 0.8438 0.625 +0.9062 0.8438 0.6562 +0.9062 0.8438 0.6875 +0.9062 0.8438 0.7188 +0.9062 0.8438 0.75 +0.9062 0.8438 0.7812 +0.9062 0.8438 0.8125 +0.9062 0.8438 0.8438 +0.9062 0.8438 0.875 +0.9062 0.8438 0.9062 +0.9062 0.8438 0.9375 +0.9062 0.8438 0.9688 +0.9062 0.8438 1 +0.9062 0.875 0 +0.9062 0.875 0.03125 +0.9062 0.875 0.0625 +0.9062 0.875 0.09375 +0.9062 0.875 0.125 +0.9062 0.875 0.1562 +0.9062 0.875 0.1875 +0.9062 0.875 0.2188 +0.9062 0.875 0.25 +0.9062 0.875 0.2812 +0.9062 0.875 0.3125 +0.9062 0.875 0.3438 +0.9062 0.875 0.375 +0.9062 0.875 0.4062 +0.9062 0.875 0.4375 +0.9062 0.875 0.4688 +0.9062 0.875 0.5 +0.9062 0.875 0.5312 +0.9062 0.875 0.5625 +0.9062 0.875 0.5938 +0.9062 0.875 0.625 +0.9062 0.875 0.6562 +0.9062 0.875 0.6875 +0.9062 0.875 0.7188 +0.9062 0.875 0.75 +0.9062 0.875 0.7812 +0.9062 0.875 0.8125 +0.9062 0.875 0.8438 +0.9062 0.875 0.875 +0.9062 0.875 0.9062 +0.9062 0.875 0.9375 +0.9062 0.875 0.9688 +0.9062 0.875 1 +0.9062 0.9062 0 +0.9062 0.9062 0.03125 +0.9062 0.9062 0.0625 +0.9062 0.9062 0.09375 +0.9062 0.9062 0.125 +0.9062 0.9062 0.1562 +0.9062 0.9062 0.1875 +0.9062 0.9062 0.2188 +0.9062 0.9062 0.25 +0.9062 0.9062 0.2812 +0.9062 0.9062 0.3125 +0.9062 0.9062 0.3438 +0.9062 0.9062 0.375 +0.9062 0.9062 0.4062 +0.9062 0.9062 0.4375 +0.9062 0.9062 0.4688 +0.9062 0.9062 0.5 +0.9062 0.9062 0.5312 +0.9062 0.9062 0.5625 +0.9062 0.9062 0.5938 +0.9062 0.9062 0.625 +0.9062 0.9062 0.6562 +0.9062 0.9062 0.6875 +0.9062 0.9062 0.7188 +0.9062 0.9062 0.75 +0.9062 0.9062 0.7812 +0.9062 0.9062 0.8125 +0.9062 0.9062 0.8438 +0.9062 0.9062 0.875 +0.9062 0.9062 0.9062 +0.9062 0.9062 0.9375 +0.9062 0.9062 0.9688 +0.9062 0.9062 1 +0.9062 0.9375 0 +0.9062 0.9375 0.03125 +0.9062 0.9375 0.0625 +0.9062 0.9375 0.09375 +0.9062 0.9375 0.125 +0.9062 0.9375 0.1562 +0.9062 0.9375 0.1875 +0.9062 0.9375 0.2188 +0.9062 0.9375 0.25 +0.9062 0.9375 0.2812 +0.9062 0.9375 0.3125 +0.9062 0.9375 0.3438 +0.9062 0.9375 0.375 +0.9062 0.9375 0.4062 +0.9062 0.9375 0.4375 +0.9062 0.9375 0.4688 +0.9062 0.9375 0.5 +0.9062 0.9375 0.5312 +0.9062 0.9375 0.5625 +0.9062 0.9375 0.5938 +0.9062 0.9375 0.625 +0.9062 0.9375 0.6562 +0.9062 0.9375 0.6875 +0.9062 0.9375 0.7188 +0.9062 0.9375 0.75 +0.9062 0.9375 0.7812 +0.9062 0.9375 0.8125 +0.9062 0.9375 0.8438 +0.9062 0.9375 0.875 +0.9062 0.9375 0.9062 +0.9062 0.9375 0.9375 +0.9062 0.9375 0.9688 +0.9062 0.9375 1 +0.9062 0.9688 0 +0.9062 0.9688 0.03125 +0.9062 0.9688 0.0625 +0.9062 0.9688 0.09375 +0.9062 0.9688 0.125 +0.9062 0.9688 0.1562 +0.9062 0.9688 0.1875 +0.9062 0.9688 0.2188 +0.9062 0.9688 0.25 +0.9062 0.9688 0.2812 +0.9062 0.9688 0.3125 +0.9062 0.9688 0.3438 +0.9062 0.9688 0.375 +0.9062 0.9688 0.4062 +0.9062 0.9688 0.4375 +0.9062 0.9688 0.4688 +0.9062 0.9688 0.5 +0.9062 0.9688 0.5312 +0.9062 0.9688 0.5625 +0.9062 0.9688 0.5938 +0.9062 0.9688 0.625 +0.9062 0.9688 0.6562 +0.9062 0.9688 0.6875 +0.9062 0.9688 0.7188 +0.9062 0.9688 0.75 +0.9062 0.9688 0.7812 +0.9062 0.9688 0.8125 +0.9062 0.9688 0.8438 +0.9062 0.9688 0.875 +0.9062 0.9688 0.9062 +0.9062 0.9688 0.9375 +0.9062 0.9688 0.9688 +0.9062 0.9688 1 +0.9062 1 0 +0.9062 1 0.03125 +0.9062 1 0.0625 +0.9062 1 0.09375 +0.9062 1 0.125 +0.9062 1 0.1562 +0.9062 1 0.1875 +0.9062 1 0.2188 +0.9062 1 0.25 +0.9062 1 0.2812 +0.9062 1 0.3125 +0.9062 1 0.3438 +0.9062 1 0.375 +0.9062 1 0.4062 +0.9062 1 0.4375 +0.9062 1 0.4688 +0.9062 1 0.5 +0.9062 1 0.5312 +0.9062 1 0.5625 +0.9062 1 0.5938 +0.9062 1 0.625 +0.9062 1 0.6562 +0.9062 1 0.6875 +0.9062 1 0.7188 +0.9062 1 0.75 +0.9062 1 0.7812 +0.9062 1 0.8125 +0.9062 1 0.8438 +0.9062 1 0.875 +0.9062 1 0.9062 +0.9062 1 0.9375 +0.9062 1 0.9688 +0.9062 1 1 +0.9375 0 0 +0.9375 0 0.03125 +0.9375 0 0.0625 +0.9375 0 0.09375 +0.9375 0 0.125 +0.9375 0 0.1562 +0.9375 0 0.1875 +0.9375 0 0.2188 +0.9375 0 0.25 +0.9375 0 0.2812 +0.9375 0 0.3125 +0.9375 0 0.3438 +0.9375 0 0.375 +0.9375 0 0.4062 +0.9375 0 0.4375 +0.9375 0 0.4688 +0.9375 0 0.5 +0.9375 0 0.5312 +0.9375 0 0.5625 +0.9375 0 0.5938 +0.9375 0 0.625 +0.9375 0 0.6562 +0.9375 0 0.6875 +0.9375 0 0.7188 +0.9375 0 0.75 +0.9375 0 0.7812 +0.9375 0 0.8125 +0.9375 0 0.8438 +0.9375 0 0.875 +0.9375 0 0.9062 +0.9375 0 0.9375 +0.9375 0 0.9688 +0.9375 0 1 +0.9375 0.03125 0 +0.9375 0.03125 0.03125 +0.9375 0.03125 0.0625 +0.9375 0.03125 0.09375 +0.9375 0.03125 0.125 +0.9375 0.03125 0.1562 +0.9375 0.03125 0.1875 +0.9375 0.03125 0.2188 +0.9375 0.03125 0.25 +0.9375 0.03125 0.2812 +0.9375 0.03125 0.3125 +0.9375 0.03125 0.3438 +0.9375 0.03125 0.375 +0.9375 0.03125 0.4062 +0.9375 0.03125 0.4375 +0.9375 0.03125 0.4688 +0.9375 0.03125 0.5 +0.9375 0.03125 0.5312 +0.9375 0.03125 0.5625 +0.9375 0.03125 0.5938 +0.9375 0.03125 0.625 +0.9375 0.03125 0.6562 +0.9375 0.03125 0.6875 +0.9375 0.03125 0.7188 +0.9375 0.03125 0.75 +0.9375 0.03125 0.7812 +0.9375 0.03125 0.8125 +0.9375 0.03125 0.8438 +0.9375 0.03125 0.875 +0.9375 0.03125 0.9062 +0.9375 0.03125 0.9375 +0.9375 0.03125 0.9688 +0.9375 0.03125 1 +0.9375 0.0625 0 +0.9375 0.0625 0.03125 +0.9375 0.0625 0.0625 +0.9375 0.0625 0.09375 +0.9375 0.0625 0.125 +0.9375 0.0625 0.1562 +0.9375 0.0625 0.1875 +0.9375 0.0625 0.2188 +0.9375 0.0625 0.25 +0.9375 0.0625 0.2812 +0.9375 0.0625 0.3125 +0.9375 0.0625 0.3438 +0.9375 0.0625 0.375 +0.9375 0.0625 0.4062 +0.9375 0.0625 0.4375 +0.9375 0.0625 0.4688 +0.9375 0.0625 0.5 +0.9375 0.0625 0.5312 +0.9375 0.0625 0.5625 +0.9375 0.0625 0.5938 +0.9375 0.0625 0.625 +0.9375 0.0625 0.6562 +0.9375 0.0625 0.6875 +0.9375 0.0625 0.7188 +0.9375 0.0625 0.75 +0.9375 0.0625 0.7812 +0.9375 0.0625 0.8125 +0.9375 0.0625 0.8438 +0.9375 0.0625 0.875 +0.9375 0.0625 0.9062 +0.9375 0.0625 0.9375 +0.9375 0.0625 0.9688 +0.9375 0.0625 1 +0.9375 0.09375 0 +0.9375 0.09375 0.03125 +0.9375 0.09375 0.0625 +0.9375 0.09375 0.09375 +0.9375 0.09375 0.125 +0.9375 0.09375 0.1562 +0.9375 0.09375 0.1875 +0.9375 0.09375 0.2188 +0.9375 0.09375 0.25 +0.9375 0.09375 0.2812 +0.9375 0.09375 0.3125 +0.9375 0.09375 0.3438 +0.9375 0.09375 0.375 +0.9375 0.09375 0.4062 +0.9375 0.09375 0.4375 +0.9375 0.09375 0.4688 +0.9375 0.09375 0.5 +0.9375 0.09375 0.5312 +0.9375 0.09375 0.5625 +0.9375 0.09375 0.5938 +0.9375 0.09375 0.625 +0.9375 0.09375 0.6562 +0.9375 0.09375 0.6875 +0.9375 0.09375 0.7188 +0.9375 0.09375 0.75 +0.9375 0.09375 0.7812 +0.9375 0.09375 0.8125 +0.9375 0.09375 0.8438 +0.9375 0.09375 0.875 +0.9375 0.09375 0.9062 +0.9375 0.09375 0.9375 +0.9375 0.09375 0.9688 +0.9375 0.09375 1 +0.9375 0.125 0 +0.9375 0.125 0.03125 +0.9375 0.125 0.0625 +0.9375 0.125 0.09375 +0.9375 0.125 0.125 +0.9375 0.125 0.1562 +0.9375 0.125 0.1875 +0.9375 0.125 0.2188 +0.9375 0.125 0.25 +0.9375 0.125 0.2812 +0.9375 0.125 0.3125 +0.9375 0.125 0.3438 +0.9375 0.125 0.375 +0.9375 0.125 0.4062 +0.9375 0.125 0.4375 +0.9375 0.125 0.4688 +0.9375 0.125 0.5 +0.9375 0.125 0.5312 +0.9375 0.125 0.5625 +0.9375 0.125 0.5938 +0.9375 0.125 0.625 +0.9375 0.125 0.6562 +0.9375 0.125 0.6875 +0.9375 0.125 0.7188 +0.9375 0.125 0.75 +0.9375 0.125 0.7812 +0.9375 0.125 0.8125 +0.9375 0.125 0.8438 +0.9375 0.125 0.875 +0.9375 0.125 0.9062 +0.9375 0.125 0.9375 +0.9375 0.125 0.9688 +0.9375 0.125 1 +0.9375 0.1562 0 +0.9375 0.1562 0.03125 +0.9375 0.1562 0.0625 +0.9375 0.1562 0.09375 +0.9375 0.1562 0.125 +0.9375 0.1562 0.1562 +0.9375 0.1562 0.1875 +0.9375 0.1562 0.2188 +0.9375 0.1562 0.25 +0.9375 0.1562 0.2812 +0.9375 0.1562 0.3125 +0.9375 0.1562 0.3438 +0.9375 0.1562 0.375 +0.9375 0.1562 0.4062 +0.9375 0.1562 0.4375 +0.9375 0.1562 0.4688 +0.9375 0.1562 0.5 +0.9375 0.1562 0.5312 +0.9375 0.1562 0.5625 +0.9375 0.1562 0.5938 +0.9375 0.1562 0.625 +0.9375 0.1562 0.6562 +0.9375 0.1562 0.6875 +0.9375 0.1562 0.7188 +0.9375 0.1562 0.75 +0.9375 0.1562 0.7812 +0.9375 0.1562 0.8125 +0.9375 0.1562 0.8438 +0.9375 0.1562 0.875 +0.9375 0.1562 0.9062 +0.9375 0.1562 0.9375 +0.9375 0.1562 0.9688 +0.9375 0.1562 1 +0.9375 0.1875 0 +0.9375 0.1875 0.03125 +0.9375 0.1875 0.0625 +0.9375 0.1875 0.09375 +0.9375 0.1875 0.125 +0.9375 0.1875 0.1562 +0.9375 0.1875 0.1875 +0.9375 0.1875 0.2188 +0.9375 0.1875 0.25 +0.9375 0.1875 0.2812 +0.9375 0.1875 0.3125 +0.9375 0.1875 0.3438 +0.9375 0.1875 0.375 +0.9375 0.1875 0.4062 +0.9375 0.1875 0.4375 +0.9375 0.1875 0.4688 +0.9375 0.1875 0.5 +0.9375 0.1875 0.5312 +0.9375 0.1875 0.5625 +0.9375 0.1875 0.5938 +0.9375 0.1875 0.625 +0.9375 0.1875 0.6562 +0.9375 0.1875 0.6875 +0.9375 0.1875 0.7188 +0.9375 0.1875 0.75 +0.9375 0.1875 0.7812 +0.9375 0.1875 0.8125 +0.9375 0.1875 0.8438 +0.9375 0.1875 0.875 +0.9375 0.1875 0.9062 +0.9375 0.1875 0.9375 +0.9375 0.1875 0.9688 +0.9375 0.1875 1 +0.9375 0.2188 0 +0.9375 0.2188 0.03125 +0.9375 0.2188 0.0625 +0.9375 0.2188 0.09375 +0.9375 0.2188 0.125 +0.9375 0.2188 0.1562 +0.9375 0.2188 0.1875 +0.9375 0.2188 0.2188 +0.9375 0.2188 0.25 +0.9375 0.2188 0.2812 +0.9375 0.2188 0.3125 +0.9375 0.2188 0.3438 +0.9375 0.2188 0.375 +0.9375 0.2188 0.4062 +0.9375 0.2188 0.4375 +0.9375 0.2188 0.4688 +0.9375 0.2188 0.5 +0.9375 0.2188 0.5312 +0.9375 0.2188 0.5625 +0.9375 0.2188 0.5938 +0.9375 0.2188 0.625 +0.9375 0.2188 0.6562 +0.9375 0.2188 0.6875 +0.9375 0.2188 0.7188 +0.9375 0.2188 0.75 +0.9375 0.2188 0.7812 +0.9375 0.2188 0.8125 +0.9375 0.2188 0.8438 +0.9375 0.2188 0.875 +0.9375 0.2188 0.9062 +0.9375 0.2188 0.9375 +0.9375 0.2188 0.9688 +0.9375 0.2188 1 +0.9375 0.25 0 +0.9375 0.25 0.03125 +0.9375 0.25 0.0625 +0.9375 0.25 0.09375 +0.9375 0.25 0.125 +0.9375 0.25 0.1562 +0.9375 0.25 0.1875 +0.9375 0.25 0.2188 +0.9375 0.25 0.25 +0.9375 0.25 0.2812 +0.9375 0.25 0.3125 +0.9375 0.25 0.3438 +0.9375 0.25 0.375 +0.9375 0.25 0.4062 +0.9375 0.25 0.4375 +0.9375 0.25 0.4688 +0.9375 0.25 0.5 +0.9375 0.25 0.5312 +0.9375 0.25 0.5625 +0.9375 0.25 0.5938 +0.9375 0.25 0.625 +0.9375 0.25 0.6562 +0.9375 0.25 0.6875 +0.9375 0.25 0.7188 +0.9375 0.25 0.75 +0.9375 0.25 0.7812 +0.9375 0.25 0.8125 +0.9375 0.25 0.8438 +0.9375 0.25 0.875 +0.9375 0.25 0.9062 +0.9375 0.25 0.9375 +0.9375 0.25 0.9688 +0.9375 0.25 1 +0.9375 0.2812 0 +0.9375 0.2812 0.03125 +0.9375 0.2812 0.0625 +0.9375 0.2812 0.09375 +0.9375 0.2812 0.125 +0.9375 0.2812 0.1562 +0.9375 0.2812 0.1875 +0.9375 0.2812 0.2188 +0.9375 0.2812 0.25 +0.9375 0.2812 0.2812 +0.9375 0.2812 0.3125 +0.9375 0.2812 0.3438 +0.9375 0.2812 0.375 +0.9375 0.2812 0.4062 +0.9375 0.2812 0.4375 +0.9375 0.2812 0.4688 +0.9375 0.2812 0.5 +0.9375 0.2812 0.5312 +0.9375 0.2812 0.5625 +0.9375 0.2812 0.5938 +0.9375 0.2812 0.625 +0.9375 0.2812 0.6562 +0.9375 0.2812 0.6875 +0.9375 0.2812 0.7188 +0.9375 0.2812 0.75 +0.9375 0.2812 0.7812 +0.9375 0.2812 0.8125 +0.9375 0.2812 0.8438 +0.9375 0.2812 0.875 +0.9375 0.2812 0.9062 +0.9375 0.2812 0.9375 +0.9375 0.2812 0.9688 +0.9375 0.2812 1 +0.9375 0.3125 0 +0.9375 0.3125 0.03125 +0.9375 0.3125 0.0625 +0.9375 0.3125 0.09375 +0.9375 0.3125 0.125 +0.9375 0.3125 0.1562 +0.9375 0.3125 0.1875 +0.9375 0.3125 0.2188 +0.9375 0.3125 0.25 +0.9375 0.3125 0.2812 +0.9375 0.3125 0.3125 +0.9375 0.3125 0.3438 +0.9375 0.3125 0.375 +0.9375 0.3125 0.4062 +0.9375 0.3125 0.4375 +0.9375 0.3125 0.4688 +0.9375 0.3125 0.5 +0.9375 0.3125 0.5312 +0.9375 0.3125 0.5625 +0.9375 0.3125 0.5938 +0.9375 0.3125 0.625 +0.9375 0.3125 0.6562 +0.9375 0.3125 0.6875 +0.9375 0.3125 0.7188 +0.9375 0.3125 0.75 +0.9375 0.3125 0.7812 +0.9375 0.3125 0.8125 +0.9375 0.3125 0.8438 +0.9375 0.3125 0.875 +0.9375 0.3125 0.9062 +0.9375 0.3125 0.9375 +0.9375 0.3125 0.9688 +0.9375 0.3125 1 +0.9375 0.3438 0 +0.9375 0.3438 0.03125 +0.9375 0.3438 0.0625 +0.9375 0.3438 0.09375 +0.9375 0.3438 0.125 +0.9375 0.3438 0.1562 +0.9375 0.3438 0.1875 +0.9375 0.3438 0.2188 +0.9375 0.3438 0.25 +0.9375 0.3438 0.2812 +0.9375 0.3438 0.3125 +0.9375 0.3438 0.3438 +0.9375 0.3438 0.375 +0.9375 0.3438 0.4062 +0.9375 0.3438 0.4375 +0.9375 0.3438 0.4688 +0.9375 0.3438 0.5 +0.9375 0.3438 0.5312 +0.9375 0.3438 0.5625 +0.9375 0.3438 0.5938 +0.9375 0.3438 0.625 +0.9375 0.3438 0.6562 +0.9375 0.3438 0.6875 +0.9375 0.3438 0.7188 +0.9375 0.3438 0.75 +0.9375 0.3438 0.7812 +0.9375 0.3438 0.8125 +0.9375 0.3438 0.8438 +0.9375 0.3438 0.875 +0.9375 0.3438 0.9062 +0.9375 0.3438 0.9375 +0.9375 0.3438 0.9688 +0.9375 0.3438 1 +0.9375 0.375 0 +0.9375 0.375 0.03125 +0.9375 0.375 0.0625 +0.9375 0.375 0.09375 +0.9375 0.375 0.125 +0.9375 0.375 0.1562 +0.9375 0.375 0.1875 +0.9375 0.375 0.2188 +0.9375 0.375 0.25 +0.9375 0.375 0.2812 +0.9375 0.375 0.3125 +0.9375 0.375 0.3438 +0.9375 0.375 0.375 +0.9375 0.375 0.4062 +0.9375 0.375 0.4375 +0.9375 0.375 0.4688 +0.9375 0.375 0.5 +0.9375 0.375 0.5312 +0.9375 0.375 0.5625 +0.9375 0.375 0.5938 +0.9375 0.375 0.625 +0.9375 0.375 0.6562 +0.9375 0.375 0.6875 +0.9375 0.375 0.7188 +0.9375 0.375 0.75 +0.9375 0.375 0.7812 +0.9375 0.375 0.8125 +0.9375 0.375 0.8438 +0.9375 0.375 0.875 +0.9375 0.375 0.9062 +0.9375 0.375 0.9375 +0.9375 0.375 0.9688 +0.9375 0.375 1 +0.9375 0.4062 0 +0.9375 0.4062 0.03125 +0.9375 0.4062 0.0625 +0.9375 0.4062 0.09375 +0.9375 0.4062 0.125 +0.9375 0.4062 0.1562 +0.9375 0.4062 0.1875 +0.9375 0.4062 0.2188 +0.9375 0.4062 0.25 +0.9375 0.4062 0.2812 +0.9375 0.4062 0.3125 +0.9375 0.4062 0.3438 +0.9375 0.4062 0.375 +0.9375 0.4062 0.4062 +0.9375 0.4062 0.4375 +0.9375 0.4062 0.4688 +0.9375 0.4062 0.5 +0.9375 0.4062 0.5312 +0.9375 0.4062 0.5625 +0.9375 0.4062 0.5938 +0.9375 0.4062 0.625 +0.9375 0.4062 0.6562 +0.9375 0.4062 0.6875 +0.9375 0.4062 0.7188 +0.9375 0.4062 0.75 +0.9375 0.4062 0.7812 +0.9375 0.4062 0.8125 +0.9375 0.4062 0.8438 +0.9375 0.4062 0.875 +0.9375 0.4062 0.9062 +0.9375 0.4062 0.9375 +0.9375 0.4062 0.9688 +0.9375 0.4062 1 +0.9375 0.4375 0 +0.9375 0.4375 0.03125 +0.9375 0.4375 0.0625 +0.9375 0.4375 0.09375 +0.9375 0.4375 0.125 +0.9375 0.4375 0.1562 +0.9375 0.4375 0.1875 +0.9375 0.4375 0.2188 +0.9375 0.4375 0.25 +0.9375 0.4375 0.2812 +0.9375 0.4375 0.3125 +0.9375 0.4375 0.3438 +0.9375 0.4375 0.375 +0.9375 0.4375 0.4062 +0.9375 0.4375 0.4375 +0.9375 0.4375 0.4688 +0.9375 0.4375 0.5 +0.9375 0.4375 0.5312 +0.9375 0.4375 0.5625 +0.9375 0.4375 0.5938 +0.9375 0.4375 0.625 +0.9375 0.4375 0.6562 +0.9375 0.4375 0.6875 +0.9375 0.4375 0.7188 +0.9375 0.4375 0.75 +0.9375 0.4375 0.7812 +0.9375 0.4375 0.8125 +0.9375 0.4375 0.8438 +0.9375 0.4375 0.875 +0.9375 0.4375 0.9062 +0.9375 0.4375 0.9375 +0.9375 0.4375 0.9688 +0.9375 0.4375 1 +0.9375 0.4688 0 +0.9375 0.4688 0.03125 +0.9375 0.4688 0.0625 +0.9375 0.4688 0.09375 +0.9375 0.4688 0.125 +0.9375 0.4688 0.1562 +0.9375 0.4688 0.1875 +0.9375 0.4688 0.2188 +0.9375 0.4688 0.25 +0.9375 0.4688 0.2812 +0.9375 0.4688 0.3125 +0.9375 0.4688 0.3438 +0.9375 0.4688 0.375 +0.9375 0.4688 0.4062 +0.9375 0.4688 0.4375 +0.9375 0.4688 0.4688 +0.9375 0.4688 0.5 +0.9375 0.4688 0.5312 +0.9375 0.4688 0.5625 +0.9375 0.4688 0.5938 +0.9375 0.4688 0.625 +0.9375 0.4688 0.6562 +0.9375 0.4688 0.6875 +0.9375 0.4688 0.7188 +0.9375 0.4688 0.75 +0.9375 0.4688 0.7812 +0.9375 0.4688 0.8125 +0.9375 0.4688 0.8438 +0.9375 0.4688 0.875 +0.9375 0.4688 0.9062 +0.9375 0.4688 0.9375 +0.9375 0.4688 0.9688 +0.9375 0.4688 1 +0.9375 0.5 0 +0.9375 0.5 0.03125 +0.9375 0.5 0.0625 +0.9375 0.5 0.09375 +0.9375 0.5 0.125 +0.9375 0.5 0.1562 +0.9375 0.5 0.1875 +0.9375 0.5 0.2188 +0.9375 0.5 0.25 +0.9375 0.5 0.2812 +0.9375 0.5 0.3125 +0.9375 0.5 0.3438 +0.9375 0.5 0.375 +0.9375 0.5 0.4062 +0.9375 0.5 0.4375 +0.9375 0.5 0.4688 +0.9375 0.5 0.5 +0.9375 0.5 0.5312 +0.9375 0.5 0.5625 +0.9375 0.5 0.5938 +0.9375 0.5 0.625 +0.9375 0.5 0.6562 +0.9375 0.5 0.6875 +0.9375 0.5 0.7188 +0.9375 0.5 0.75 +0.9375 0.5 0.7812 +0.9375 0.5 0.8125 +0.9375 0.5 0.8438 +0.9375 0.5 0.875 +0.9375 0.5 0.9062 +0.9375 0.5 0.9375 +0.9375 0.5 0.9688 +0.9375 0.5 1 +0.9375 0.5312 0 +0.9375 0.5312 0.03125 +0.9375 0.5312 0.0625 +0.9375 0.5312 0.09375 +0.9375 0.5312 0.125 +0.9375 0.5312 0.1562 +0.9375 0.5312 0.1875 +0.9375 0.5312 0.2188 +0.9375 0.5312 0.25 +0.9375 0.5312 0.2812 +0.9375 0.5312 0.3125 +0.9375 0.5312 0.3438 +0.9375 0.5312 0.375 +0.9375 0.5312 0.4062 +0.9375 0.5312 0.4375 +0.9375 0.5312 0.4688 +0.9375 0.5312 0.5 +0.9375 0.5312 0.5312 +0.9375 0.5312 0.5625 +0.9375 0.5312 0.5938 +0.9375 0.5312 0.625 +0.9375 0.5312 0.6562 +0.9375 0.5312 0.6875 +0.9375 0.5312 0.7188 +0.9375 0.5312 0.75 +0.9375 0.5312 0.7812 +0.9375 0.5312 0.8125 +0.9375 0.5312 0.8438 +0.9375 0.5312 0.875 +0.9375 0.5312 0.9062 +0.9375 0.5312 0.9375 +0.9375 0.5312 0.9688 +0.9375 0.5312 1 +0.9375 0.5625 0 +0.9375 0.5625 0.03125 +0.9375 0.5625 0.0625 +0.9375 0.5625 0.09375 +0.9375 0.5625 0.125 +0.9375 0.5625 0.1562 +0.9375 0.5625 0.1875 +0.9375 0.5625 0.2188 +0.9375 0.5625 0.25 +0.9375 0.5625 0.2812 +0.9375 0.5625 0.3125 +0.9375 0.5625 0.3438 +0.9375 0.5625 0.375 +0.9375 0.5625 0.4062 +0.9375 0.5625 0.4375 +0.9375 0.5625 0.4688 +0.9375 0.5625 0.5 +0.9375 0.5625 0.5312 +0.9375 0.5625 0.5625 +0.9375 0.5625 0.5938 +0.9375 0.5625 0.625 +0.9375 0.5625 0.6562 +0.9375 0.5625 0.6875 +0.9375 0.5625 0.7188 +0.9375 0.5625 0.75 +0.9375 0.5625 0.7812 +0.9375 0.5625 0.8125 +0.9375 0.5625 0.8438 +0.9375 0.5625 0.875 +0.9375 0.5625 0.9062 +0.9375 0.5625 0.9375 +0.9375 0.5625 0.9688 +0.9375 0.5625 1 +0.9375 0.5938 0 +0.9375 0.5938 0.03125 +0.9375 0.5938 0.0625 +0.9375 0.5938 0.09375 +0.9375 0.5938 0.125 +0.9375 0.5938 0.1562 +0.9375 0.5938 0.1875 +0.9375 0.5938 0.2188 +0.9375 0.5938 0.25 +0.9375 0.5938 0.2812 +0.9375 0.5938 0.3125 +0.9375 0.5938 0.3438 +0.9375 0.5938 0.375 +0.9375 0.5938 0.4062 +0.9375 0.5938 0.4375 +0.9375 0.5938 0.4688 +0.9375 0.5938 0.5 +0.9375 0.5938 0.5312 +0.9375 0.5938 0.5625 +0.9375 0.5938 0.5938 +0.9375 0.5938 0.625 +0.9375 0.5938 0.6562 +0.9375 0.5938 0.6875 +0.9375 0.5938 0.7188 +0.9375 0.5938 0.75 +0.9375 0.5938 0.7812 +0.9375 0.5938 0.8125 +0.9375 0.5938 0.8438 +0.9375 0.5938 0.875 +0.9375 0.5938 0.9062 +0.9375 0.5938 0.9375 +0.9375 0.5938 0.9688 +0.9375 0.5938 1 +0.9375 0.625 0 +0.9375 0.625 0.03125 +0.9375 0.625 0.0625 +0.9375 0.625 0.09375 +0.9375 0.625 0.125 +0.9375 0.625 0.1562 +0.9375 0.625 0.1875 +0.9375 0.625 0.2188 +0.9375 0.625 0.25 +0.9375 0.625 0.2812 +0.9375 0.625 0.3125 +0.9375 0.625 0.3438 +0.9375 0.625 0.375 +0.9375 0.625 0.4062 +0.9375 0.625 0.4375 +0.9375 0.625 0.4688 +0.9375 0.625 0.5 +0.9375 0.625 0.5312 +0.9375 0.625 0.5625 +0.9375 0.625 0.5938 +0.9375 0.625 0.625 +0.9375 0.625 0.6562 +0.9375 0.625 0.6875 +0.9375 0.625 0.7188 +0.9375 0.625 0.75 +0.9375 0.625 0.7812 +0.9375 0.625 0.8125 +0.9375 0.625 0.8438 +0.9375 0.625 0.875 +0.9375 0.625 0.9062 +0.9375 0.625 0.9375 +0.9375 0.625 0.9688 +0.9375 0.625 1 +0.9375 0.6562 0 +0.9375 0.6562 0.03125 +0.9375 0.6562 0.0625 +0.9375 0.6562 0.09375 +0.9375 0.6562 0.125 +0.9375 0.6562 0.1562 +0.9375 0.6562 0.1875 +0.9375 0.6562 0.2188 +0.9375 0.6562 0.25 +0.9375 0.6562 0.2812 +0.9375 0.6562 0.3125 +0.9375 0.6562 0.3438 +0.9375 0.6562 0.375 +0.9375 0.6562 0.4062 +0.9375 0.6562 0.4375 +0.9375 0.6562 0.4688 +0.9375 0.6562 0.5 +0.9375 0.6562 0.5312 +0.9375 0.6562 0.5625 +0.9375 0.6562 0.5938 +0.9375 0.6562 0.625 +0.9375 0.6562 0.6562 +0.9375 0.6562 0.6875 +0.9375 0.6562 0.7188 +0.9375 0.6562 0.75 +0.9375 0.6562 0.7812 +0.9375 0.6562 0.8125 +0.9375 0.6562 0.8438 +0.9375 0.6562 0.875 +0.9375 0.6562 0.9062 +0.9375 0.6562 0.9375 +0.9375 0.6562 0.9688 +0.9375 0.6562 1 +0.9375 0.6875 0 +0.9375 0.6875 0.03125 +0.9375 0.6875 0.0625 +0.9375 0.6875 0.09375 +0.9375 0.6875 0.125 +0.9375 0.6875 0.1562 +0.9375 0.6875 0.1875 +0.9375 0.6875 0.2188 +0.9375 0.6875 0.25 +0.9375 0.6875 0.2812 +0.9375 0.6875 0.3125 +0.9375 0.6875 0.3438 +0.9375 0.6875 0.375 +0.9375 0.6875 0.4062 +0.9375 0.6875 0.4375 +0.9375 0.6875 0.4688 +0.9375 0.6875 0.5 +0.9375 0.6875 0.5312 +0.9375 0.6875 0.5625 +0.9375 0.6875 0.5938 +0.9375 0.6875 0.625 +0.9375 0.6875 0.6562 +0.9375 0.6875 0.6875 +0.9375 0.6875 0.7188 +0.9375 0.6875 0.75 +0.9375 0.6875 0.7812 +0.9375 0.6875 0.8125 +0.9375 0.6875 0.8438 +0.9375 0.6875 0.875 +0.9375 0.6875 0.9062 +0.9375 0.6875 0.9375 +0.9375 0.6875 0.9688 +0.9375 0.6875 1 +0.9375 0.7188 0 +0.9375 0.7188 0.03125 +0.9375 0.7188 0.0625 +0.9375 0.7188 0.09375 +0.9375 0.7188 0.125 +0.9375 0.7188 0.1562 +0.9375 0.7188 0.1875 +0.9375 0.7188 0.2188 +0.9375 0.7188 0.25 +0.9375 0.7188 0.2812 +0.9375 0.7188 0.3125 +0.9375 0.7188 0.3438 +0.9375 0.7188 0.375 +0.9375 0.7188 0.4062 +0.9375 0.7188 0.4375 +0.9375 0.7188 0.4688 +0.9375 0.7188 0.5 +0.9375 0.7188 0.5312 +0.9375 0.7188 0.5625 +0.9375 0.7188 0.5938 +0.9375 0.7188 0.625 +0.9375 0.7188 0.6562 +0.9375 0.7188 0.6875 +0.9375 0.7188 0.7188 +0.9375 0.7188 0.75 +0.9375 0.7188 0.7812 +0.9375 0.7188 0.8125 +0.9375 0.7188 0.8438 +0.9375 0.7188 0.875 +0.9375 0.7188 0.9062 +0.9375 0.7188 0.9375 +0.9375 0.7188 0.9688 +0.9375 0.7188 1 +0.9375 0.75 0 +0.9375 0.75 0.03125 +0.9375 0.75 0.0625 +0.9375 0.75 0.09375 +0.9375 0.75 0.125 +0.9375 0.75 0.1562 +0.9375 0.75 0.1875 +0.9375 0.75 0.2188 +0.9375 0.75 0.25 +0.9375 0.75 0.2812 +0.9375 0.75 0.3125 +0.9375 0.75 0.3438 +0.9375 0.75 0.375 +0.9375 0.75 0.4062 +0.9375 0.75 0.4375 +0.9375 0.75 0.4688 +0.9375 0.75 0.5 +0.9375 0.75 0.5312 +0.9375 0.75 0.5625 +0.9375 0.75 0.5938 +0.9375 0.75 0.625 +0.9375 0.75 0.6562 +0.9375 0.75 0.6875 +0.9375 0.75 0.7188 +0.9375 0.75 0.75 +0.9375 0.75 0.7812 +0.9375 0.75 0.8125 +0.9375 0.75 0.8438 +0.9375 0.75 0.875 +0.9375 0.75 0.9062 +0.9375 0.75 0.9375 +0.9375 0.75 0.9688 +0.9375 0.75 1 +0.9375 0.7812 0 +0.9375 0.7812 0.03125 +0.9375 0.7812 0.0625 +0.9375 0.7812 0.09375 +0.9375 0.7812 0.125 +0.9375 0.7812 0.1562 +0.9375 0.7812 0.1875 +0.9375 0.7812 0.2188 +0.9375 0.7812 0.25 +0.9375 0.7812 0.2812 +0.9375 0.7812 0.3125 +0.9375 0.7812 0.3438 +0.9375 0.7812 0.375 +0.9375 0.7812 0.4062 +0.9375 0.7812 0.4375 +0.9375 0.7812 0.4688 +0.9375 0.7812 0.5 +0.9375 0.7812 0.5312 +0.9375 0.7812 0.5625 +0.9375 0.7812 0.5938 +0.9375 0.7812 0.625 +0.9375 0.7812 0.6562 +0.9375 0.7812 0.6875 +0.9375 0.7812 0.7188 +0.9375 0.7812 0.75 +0.9375 0.7812 0.7812 +0.9375 0.7812 0.8125 +0.9375 0.7812 0.8438 +0.9375 0.7812 0.875 +0.9375 0.7812 0.9062 +0.9375 0.7812 0.9375 +0.9375 0.7812 0.9688 +0.9375 0.7812 1 +0.9375 0.8125 0 +0.9375 0.8125 0.03125 +0.9375 0.8125 0.0625 +0.9375 0.8125 0.09375 +0.9375 0.8125 0.125 +0.9375 0.8125 0.1562 +0.9375 0.8125 0.1875 +0.9375 0.8125 0.2188 +0.9375 0.8125 0.25 +0.9375 0.8125 0.2812 +0.9375 0.8125 0.3125 +0.9375 0.8125 0.3438 +0.9375 0.8125 0.375 +0.9375 0.8125 0.4062 +0.9375 0.8125 0.4375 +0.9375 0.8125 0.4688 +0.9375 0.8125 0.5 +0.9375 0.8125 0.5312 +0.9375 0.8125 0.5625 +0.9375 0.8125 0.5938 +0.9375 0.8125 0.625 +0.9375 0.8125 0.6562 +0.9375 0.8125 0.6875 +0.9375 0.8125 0.7188 +0.9375 0.8125 0.75 +0.9375 0.8125 0.7812 +0.9375 0.8125 0.8125 +0.9375 0.8125 0.8438 +0.9375 0.8125 0.875 +0.9375 0.8125 0.9062 +0.9375 0.8125 0.9375 +0.9375 0.8125 0.9688 +0.9375 0.8125 1 +0.9375 0.8438 0 +0.9375 0.8438 0.03125 +0.9375 0.8438 0.0625 +0.9375 0.8438 0.09375 +0.9375 0.8438 0.125 +0.9375 0.8438 0.1562 +0.9375 0.8438 0.1875 +0.9375 0.8438 0.2188 +0.9375 0.8438 0.25 +0.9375 0.8438 0.2812 +0.9375 0.8438 0.3125 +0.9375 0.8438 0.3438 +0.9375 0.8438 0.375 +0.9375 0.8438 0.4062 +0.9375 0.8438 0.4375 +0.9375 0.8438 0.4688 +0.9375 0.8438 0.5 +0.9375 0.8438 0.5312 +0.9375 0.8438 0.5625 +0.9375 0.8438 0.5938 +0.9375 0.8438 0.625 +0.9375 0.8438 0.6562 +0.9375 0.8438 0.6875 +0.9375 0.8438 0.7188 +0.9375 0.8438 0.75 +0.9375 0.8438 0.7812 +0.9375 0.8438 0.8125 +0.9375 0.8438 0.8438 +0.9375 0.8438 0.875 +0.9375 0.8438 0.9062 +0.9375 0.8438 0.9375 +0.9375 0.8438 0.9688 +0.9375 0.8438 1 +0.9375 0.875 0 +0.9375 0.875 0.03125 +0.9375 0.875 0.0625 +0.9375 0.875 0.09375 +0.9375 0.875 0.125 +0.9375 0.875 0.1562 +0.9375 0.875 0.1875 +0.9375 0.875 0.2188 +0.9375 0.875 0.25 +0.9375 0.875 0.2812 +0.9375 0.875 0.3125 +0.9375 0.875 0.3438 +0.9375 0.875 0.375 +0.9375 0.875 0.4062 +0.9375 0.875 0.4375 +0.9375 0.875 0.4688 +0.9375 0.875 0.5 +0.9375 0.875 0.5312 +0.9375 0.875 0.5625 +0.9375 0.875 0.5938 +0.9375 0.875 0.625 +0.9375 0.875 0.6562 +0.9375 0.875 0.6875 +0.9375 0.875 0.7188 +0.9375 0.875 0.75 +0.9375 0.875 0.7812 +0.9375 0.875 0.8125 +0.9375 0.875 0.8438 +0.9375 0.875 0.875 +0.9375 0.875 0.9062 +0.9375 0.875 0.9375 +0.9375 0.875 0.9688 +0.9375 0.875 1 +0.9375 0.9062 0 +0.9375 0.9062 0.03125 +0.9375 0.9062 0.0625 +0.9375 0.9062 0.09375 +0.9375 0.9062 0.125 +0.9375 0.9062 0.1562 +0.9375 0.9062 0.1875 +0.9375 0.9062 0.2188 +0.9375 0.9062 0.25 +0.9375 0.9062 0.2812 +0.9375 0.9062 0.3125 +0.9375 0.9062 0.3438 +0.9375 0.9062 0.375 +0.9375 0.9062 0.4062 +0.9375 0.9062 0.4375 +0.9375 0.9062 0.4688 +0.9375 0.9062 0.5 +0.9375 0.9062 0.5312 +0.9375 0.9062 0.5625 +0.9375 0.9062 0.5938 +0.9375 0.9062 0.625 +0.9375 0.9062 0.6562 +0.9375 0.9062 0.6875 +0.9375 0.9062 0.7188 +0.9375 0.9062 0.75 +0.9375 0.9062 0.7812 +0.9375 0.9062 0.8125 +0.9375 0.9062 0.8438 +0.9375 0.9062 0.875 +0.9375 0.9062 0.9062 +0.9375 0.9062 0.9375 +0.9375 0.9062 0.9688 +0.9375 0.9062 1 +0.9375 0.9375 0 +0.9375 0.9375 0.03125 +0.9375 0.9375 0.0625 +0.9375 0.9375 0.09375 +0.9375 0.9375 0.125 +0.9375 0.9375 0.1562 +0.9375 0.9375 0.1875 +0.9375 0.9375 0.2188 +0.9375 0.9375 0.25 +0.9375 0.9375 0.2812 +0.9375 0.9375 0.3125 +0.9375 0.9375 0.3438 +0.9375 0.9375 0.375 +0.9375 0.9375 0.4062 +0.9375 0.9375 0.4375 +0.9375 0.9375 0.4688 +0.9375 0.9375 0.5 +0.9375 0.9375 0.5312 +0.9375 0.9375 0.5625 +0.9375 0.9375 0.5938 +0.9375 0.9375 0.625 +0.9375 0.9375 0.6562 +0.9375 0.9375 0.6875 +0.9375 0.9375 0.7188 +0.9375 0.9375 0.75 +0.9375 0.9375 0.7812 +0.9375 0.9375 0.8125 +0.9375 0.9375 0.8438 +0.9375 0.9375 0.875 +0.9375 0.9375 0.9062 +0.9375 0.9375 0.9375 +0.9375 0.9375 0.9688 +0.9375 0.9375 1 +0.9375 0.9688 0 +0.9375 0.9688 0.03125 +0.9375 0.9688 0.0625 +0.9375 0.9688 0.09375 +0.9375 0.9688 0.125 +0.9375 0.9688 0.1562 +0.9375 0.9688 0.1875 +0.9375 0.9688 0.2188 +0.9375 0.9688 0.25 +0.9375 0.9688 0.2812 +0.9375 0.9688 0.3125 +0.9375 0.9688 0.3438 +0.9375 0.9688 0.375 +0.9375 0.9688 0.4062 +0.9375 0.9688 0.4375 +0.9375 0.9688 0.4688 +0.9375 0.9688 0.5 +0.9375 0.9688 0.5312 +0.9375 0.9688 0.5625 +0.9375 0.9688 0.5938 +0.9375 0.9688 0.625 +0.9375 0.9688 0.6562 +0.9375 0.9688 0.6875 +0.9375 0.9688 0.7188 +0.9375 0.9688 0.75 +0.9375 0.9688 0.7812 +0.9375 0.9688 0.8125 +0.9375 0.9688 0.8438 +0.9375 0.9688 0.875 +0.9375 0.9688 0.9062 +0.9375 0.9688 0.9375 +0.9375 0.9688 0.9688 +0.9375 0.9688 1 +0.9375 1 0 +0.9375 1 0.03125 +0.9375 1 0.0625 +0.9375 1 0.09375 +0.9375 1 0.125 +0.9375 1 0.1562 +0.9375 1 0.1875 +0.9375 1 0.2188 +0.9375 1 0.25 +0.9375 1 0.2812 +0.9375 1 0.3125 +0.9375 1 0.3438 +0.9375 1 0.375 +0.9375 1 0.4062 +0.9375 1 0.4375 +0.9375 1 0.4688 +0.9375 1 0.5 +0.9375 1 0.5312 +0.9375 1 0.5625 +0.9375 1 0.5938 +0.9375 1 0.625 +0.9375 1 0.6562 +0.9375 1 0.6875 +0.9375 1 0.7188 +0.9375 1 0.75 +0.9375 1 0.7812 +0.9375 1 0.8125 +0.9375 1 0.8438 +0.9375 1 0.875 +0.9375 1 0.9062 +0.9375 1 0.9375 +0.9375 1 0.9688 +0.9375 1 1 +0.9688 0 0 +0.9688 0 0.03125 +0.9688 0 0.0625 +0.9688 0 0.09375 +0.9688 0 0.125 +0.9688 0 0.1562 +0.9688 0 0.1875 +0.9688 0 0.2188 +0.9688 0 0.25 +0.9688 0 0.2812 +0.9688 0 0.3125 +0.9688 0 0.3438 +0.9688 0 0.375 +0.9688 0 0.4062 +0.9688 0 0.4375 +0.9688 0 0.4688 +0.9688 0 0.5 +0.9688 0 0.5312 +0.9688 0 0.5625 +0.9688 0 0.5938 +0.9688 0 0.625 +0.9688 0 0.6562 +0.9688 0 0.6875 +0.9688 0 0.7188 +0.9688 0 0.75 +0.9688 0 0.7812 +0.9688 0 0.8125 +0.9688 0 0.8438 +0.9688 0 0.875 +0.9688 0 0.9062 +0.9688 0 0.9375 +0.9688 0 0.9688 +0.9688 0 1 +0.9688 0.03125 0 +0.9688 0.03125 0.03125 +0.9688 0.03125 0.0625 +0.9688 0.03125 0.09375 +0.9688 0.03125 0.125 +0.9688 0.03125 0.1562 +0.9688 0.03125 0.1875 +0.9688 0.03125 0.2188 +0.9688 0.03125 0.25 +0.9688 0.03125 0.2812 +0.9688 0.03125 0.3125 +0.9688 0.03125 0.3438 +0.9688 0.03125 0.375 +0.9688 0.03125 0.4062 +0.9688 0.03125 0.4375 +0.9688 0.03125 0.4688 +0.9688 0.03125 0.5 +0.9688 0.03125 0.5312 +0.9688 0.03125 0.5625 +0.9688 0.03125 0.5938 +0.9688 0.03125 0.625 +0.9688 0.03125 0.6562 +0.9688 0.03125 0.6875 +0.9688 0.03125 0.7188 +0.9688 0.03125 0.75 +0.9688 0.03125 0.7812 +0.9688 0.03125 0.8125 +0.9688 0.03125 0.8438 +0.9688 0.03125 0.875 +0.9688 0.03125 0.9062 +0.9688 0.03125 0.9375 +0.9688 0.03125 0.9688 +0.9688 0.03125 1 +0.9688 0.0625 0 +0.9688 0.0625 0.03125 +0.9688 0.0625 0.0625 +0.9688 0.0625 0.09375 +0.9688 0.0625 0.125 +0.9688 0.0625 0.1562 +0.9688 0.0625 0.1875 +0.9688 0.0625 0.2188 +0.9688 0.0625 0.25 +0.9688 0.0625 0.2812 +0.9688 0.0625 0.3125 +0.9688 0.0625 0.3438 +0.9688 0.0625 0.375 +0.9688 0.0625 0.4062 +0.9688 0.0625 0.4375 +0.9688 0.0625 0.4688 +0.9688 0.0625 0.5 +0.9688 0.0625 0.5312 +0.9688 0.0625 0.5625 +0.9688 0.0625 0.5938 +0.9688 0.0625 0.625 +0.9688 0.0625 0.6562 +0.9688 0.0625 0.6875 +0.9688 0.0625 0.7188 +0.9688 0.0625 0.75 +0.9688 0.0625 0.7812 +0.9688 0.0625 0.8125 +0.9688 0.0625 0.8438 +0.9688 0.0625 0.875 +0.9688 0.0625 0.9062 +0.9688 0.0625 0.9375 +0.9688 0.0625 0.9688 +0.9688 0.0625 1 +0.9688 0.09375 0 +0.9688 0.09375 0.03125 +0.9688 0.09375 0.0625 +0.9688 0.09375 0.09375 +0.9688 0.09375 0.125 +0.9688 0.09375 0.1562 +0.9688 0.09375 0.1875 +0.9688 0.09375 0.2188 +0.9688 0.09375 0.25 +0.9688 0.09375 0.2812 +0.9688 0.09375 0.3125 +0.9688 0.09375 0.3438 +0.9688 0.09375 0.375 +0.9688 0.09375 0.4062 +0.9688 0.09375 0.4375 +0.9688 0.09375 0.4688 +0.9688 0.09375 0.5 +0.9688 0.09375 0.5312 +0.9688 0.09375 0.5625 +0.9688 0.09375 0.5938 +0.9688 0.09375 0.625 +0.9688 0.09375 0.6562 +0.9688 0.09375 0.6875 +0.9688 0.09375 0.7188 +0.9688 0.09375 0.75 +0.9688 0.09375 0.7812 +0.9688 0.09375 0.8125 +0.9688 0.09375 0.8438 +0.9688 0.09375 0.875 +0.9688 0.09375 0.9062 +0.9688 0.09375 0.9375 +0.9688 0.09375 0.9688 +0.9688 0.09375 1 +0.9688 0.125 0 +0.9688 0.125 0.03125 +0.9688 0.125 0.0625 +0.9688 0.125 0.09375 +0.9688 0.125 0.125 +0.9688 0.125 0.1562 +0.9688 0.125 0.1875 +0.9688 0.125 0.2188 +0.9688 0.125 0.25 +0.9688 0.125 0.2812 +0.9688 0.125 0.3125 +0.9688 0.125 0.3438 +0.9688 0.125 0.375 +0.9688 0.125 0.4062 +0.9688 0.125 0.4375 +0.9688 0.125 0.4688 +0.9688 0.125 0.5 +0.9688 0.125 0.5312 +0.9688 0.125 0.5625 +0.9688 0.125 0.5938 +0.9688 0.125 0.625 +0.9688 0.125 0.6562 +0.9688 0.125 0.6875 +0.9688 0.125 0.7188 +0.9688 0.125 0.75 +0.9688 0.125 0.7812 +0.9688 0.125 0.8125 +0.9688 0.125 0.8438 +0.9688 0.125 0.875 +0.9688 0.125 0.9062 +0.9688 0.125 0.9375 +0.9688 0.125 0.9688 +0.9688 0.125 1 +0.9688 0.1562 0 +0.9688 0.1562 0.03125 +0.9688 0.1562 0.0625 +0.9688 0.1562 0.09375 +0.9688 0.1562 0.125 +0.9688 0.1562 0.1562 +0.9688 0.1562 0.1875 +0.9688 0.1562 0.2188 +0.9688 0.1562 0.25 +0.9688 0.1562 0.2812 +0.9688 0.1562 0.3125 +0.9688 0.1562 0.3438 +0.9688 0.1562 0.375 +0.9688 0.1562 0.4062 +0.9688 0.1562 0.4375 +0.9688 0.1562 0.4688 +0.9688 0.1562 0.5 +0.9688 0.1562 0.5312 +0.9688 0.1562 0.5625 +0.9688 0.1562 0.5938 +0.9688 0.1562 0.625 +0.9688 0.1562 0.6562 +0.9688 0.1562 0.6875 +0.9688 0.1562 0.7188 +0.9688 0.1562 0.75 +0.9688 0.1562 0.7812 +0.9688 0.1562 0.8125 +0.9688 0.1562 0.8438 +0.9688 0.1562 0.875 +0.9688 0.1562 0.9062 +0.9688 0.1562 0.9375 +0.9688 0.1562 0.9688 +0.9688 0.1562 1 +0.9688 0.1875 0 +0.9688 0.1875 0.03125 +0.9688 0.1875 0.0625 +0.9688 0.1875 0.09375 +0.9688 0.1875 0.125 +0.9688 0.1875 0.1562 +0.9688 0.1875 0.1875 +0.9688 0.1875 0.2188 +0.9688 0.1875 0.25 +0.9688 0.1875 0.2812 +0.9688 0.1875 0.3125 +0.9688 0.1875 0.3438 +0.9688 0.1875 0.375 +0.9688 0.1875 0.4062 +0.9688 0.1875 0.4375 +0.9688 0.1875 0.4688 +0.9688 0.1875 0.5 +0.9688 0.1875 0.5312 +0.9688 0.1875 0.5625 +0.9688 0.1875 0.5938 +0.9688 0.1875 0.625 +0.9688 0.1875 0.6562 +0.9688 0.1875 0.6875 +0.9688 0.1875 0.7188 +0.9688 0.1875 0.75 +0.9688 0.1875 0.7812 +0.9688 0.1875 0.8125 +0.9688 0.1875 0.8438 +0.9688 0.1875 0.875 +0.9688 0.1875 0.9062 +0.9688 0.1875 0.9375 +0.9688 0.1875 0.9688 +0.9688 0.1875 1 +0.9688 0.2188 0 +0.9688 0.2188 0.03125 +0.9688 0.2188 0.0625 +0.9688 0.2188 0.09375 +0.9688 0.2188 0.125 +0.9688 0.2188 0.1562 +0.9688 0.2188 0.1875 +0.9688 0.2188 0.2188 +0.9688 0.2188 0.25 +0.9688 0.2188 0.2812 +0.9688 0.2188 0.3125 +0.9688 0.2188 0.3438 +0.9688 0.2188 0.375 +0.9688 0.2188 0.4062 +0.9688 0.2188 0.4375 +0.9688 0.2188 0.4688 +0.9688 0.2188 0.5 +0.9688 0.2188 0.5312 +0.9688 0.2188 0.5625 +0.9688 0.2188 0.5938 +0.9688 0.2188 0.625 +0.9688 0.2188 0.6562 +0.9688 0.2188 0.6875 +0.9688 0.2188 0.7188 +0.9688 0.2188 0.75 +0.9688 0.2188 0.7812 +0.9688 0.2188 0.8125 +0.9688 0.2188 0.8438 +0.9688 0.2188 0.875 +0.9688 0.2188 0.9062 +0.9688 0.2188 0.9375 +0.9688 0.2188 0.9688 +0.9688 0.2188 1 +0.9688 0.25 0 +0.9688 0.25 0.03125 +0.9688 0.25 0.0625 +0.9688 0.25 0.09375 +0.9688 0.25 0.125 +0.9688 0.25 0.1562 +0.9688 0.25 0.1875 +0.9688 0.25 0.2188 +0.9688 0.25 0.25 +0.9688 0.25 0.2812 +0.9688 0.25 0.3125 +0.9688 0.25 0.3438 +0.9688 0.25 0.375 +0.9688 0.25 0.4062 +0.9688 0.25 0.4375 +0.9688 0.25 0.4688 +0.9688 0.25 0.5 +0.9688 0.25 0.5312 +0.9688 0.25 0.5625 +0.9688 0.25 0.5938 +0.9688 0.25 0.625 +0.9688 0.25 0.6562 +0.9688 0.25 0.6875 +0.9688 0.25 0.7188 +0.9688 0.25 0.75 +0.9688 0.25 0.7812 +0.9688 0.25 0.8125 +0.9688 0.25 0.8438 +0.9688 0.25 0.875 +0.9688 0.25 0.9062 +0.9688 0.25 0.9375 +0.9688 0.25 0.9688 +0.9688 0.25 1 +0.9688 0.2812 0 +0.9688 0.2812 0.03125 +0.9688 0.2812 0.0625 +0.9688 0.2812 0.09375 +0.9688 0.2812 0.125 +0.9688 0.2812 0.1562 +0.9688 0.2812 0.1875 +0.9688 0.2812 0.2188 +0.9688 0.2812 0.25 +0.9688 0.2812 0.2812 +0.9688 0.2812 0.3125 +0.9688 0.2812 0.3438 +0.9688 0.2812 0.375 +0.9688 0.2812 0.4062 +0.9688 0.2812 0.4375 +0.9688 0.2812 0.4688 +0.9688 0.2812 0.5 +0.9688 0.2812 0.5312 +0.9688 0.2812 0.5625 +0.9688 0.2812 0.5938 +0.9688 0.2812 0.625 +0.9688 0.2812 0.6562 +0.9688 0.2812 0.6875 +0.9688 0.2812 0.7188 +0.9688 0.2812 0.75 +0.9688 0.2812 0.7812 +0.9688 0.2812 0.8125 +0.9688 0.2812 0.8438 +0.9688 0.2812 0.875 +0.9688 0.2812 0.9062 +0.9688 0.2812 0.9375 +0.9688 0.2812 0.9688 +0.9688 0.2812 1 +0.9688 0.3125 0 +0.9688 0.3125 0.03125 +0.9688 0.3125 0.0625 +0.9688 0.3125 0.09375 +0.9688 0.3125 0.125 +0.9688 0.3125 0.1562 +0.9688 0.3125 0.1875 +0.9688 0.3125 0.2188 +0.9688 0.3125 0.25 +0.9688 0.3125 0.2812 +0.9688 0.3125 0.3125 +0.9688 0.3125 0.3438 +0.9688 0.3125 0.375 +0.9688 0.3125 0.4062 +0.9688 0.3125 0.4375 +0.9688 0.3125 0.4688 +0.9688 0.3125 0.5 +0.9688 0.3125 0.5312 +0.9688 0.3125 0.5625 +0.9688 0.3125 0.5938 +0.9688 0.3125 0.625 +0.9688 0.3125 0.6562 +0.9688 0.3125 0.6875 +0.9688 0.3125 0.7188 +0.9688 0.3125 0.75 +0.9688 0.3125 0.7812 +0.9688 0.3125 0.8125 +0.9688 0.3125 0.8438 +0.9688 0.3125 0.875 +0.9688 0.3125 0.9062 +0.9688 0.3125 0.9375 +0.9688 0.3125 0.9688 +0.9688 0.3125 1 +0.9688 0.3438 0 +0.9688 0.3438 0.03125 +0.9688 0.3438 0.0625 +0.9688 0.3438 0.09375 +0.9688 0.3438 0.125 +0.9688 0.3438 0.1562 +0.9688 0.3438 0.1875 +0.9688 0.3438 0.2188 +0.9688 0.3438 0.25 +0.9688 0.3438 0.2812 +0.9688 0.3438 0.3125 +0.9688 0.3438 0.3438 +0.9688 0.3438 0.375 +0.9688 0.3438 0.4062 +0.9688 0.3438 0.4375 +0.9688 0.3438 0.4688 +0.9688 0.3438 0.5 +0.9688 0.3438 0.5312 +0.9688 0.3438 0.5625 +0.9688 0.3438 0.5938 +0.9688 0.3438 0.625 +0.9688 0.3438 0.6562 +0.9688 0.3438 0.6875 +0.9688 0.3438 0.7188 +0.9688 0.3438 0.75 +0.9688 0.3438 0.7812 +0.9688 0.3438 0.8125 +0.9688 0.3438 0.8438 +0.9688 0.3438 0.875 +0.9688 0.3438 0.9062 +0.9688 0.3438 0.9375 +0.9688 0.3438 0.9688 +0.9688 0.3438 1 +0.9688 0.375 0 +0.9688 0.375 0.03125 +0.9688 0.375 0.0625 +0.9688 0.375 0.09375 +0.9688 0.375 0.125 +0.9688 0.375 0.1562 +0.9688 0.375 0.1875 +0.9688 0.375 0.2188 +0.9688 0.375 0.25 +0.9688 0.375 0.2812 +0.9688 0.375 0.3125 +0.9688 0.375 0.3438 +0.9688 0.375 0.375 +0.9688 0.375 0.4062 +0.9688 0.375 0.4375 +0.9688 0.375 0.4688 +0.9688 0.375 0.5 +0.9688 0.375 0.5312 +0.9688 0.375 0.5625 +0.9688 0.375 0.5938 +0.9688 0.375 0.625 +0.9688 0.375 0.6562 +0.9688 0.375 0.6875 +0.9688 0.375 0.7188 +0.9688 0.375 0.75 +0.9688 0.375 0.7812 +0.9688 0.375 0.8125 +0.9688 0.375 0.8438 +0.9688 0.375 0.875 +0.9688 0.375 0.9062 +0.9688 0.375 0.9375 +0.9688 0.375 0.9688 +0.9688 0.375 1 +0.9688 0.4062 0 +0.9688 0.4062 0.03125 +0.9688 0.4062 0.0625 +0.9688 0.4062 0.09375 +0.9688 0.4062 0.125 +0.9688 0.4062 0.1562 +0.9688 0.4062 0.1875 +0.9688 0.4062 0.2188 +0.9688 0.4062 0.25 +0.9688 0.4062 0.2812 +0.9688 0.4062 0.3125 +0.9688 0.4062 0.3438 +0.9688 0.4062 0.375 +0.9688 0.4062 0.4062 +0.9688 0.4062 0.4375 +0.9688 0.4062 0.4688 +0.9688 0.4062 0.5 +0.9688 0.4062 0.5312 +0.9688 0.4062 0.5625 +0.9688 0.4062 0.5938 +0.9688 0.4062 0.625 +0.9688 0.4062 0.6562 +0.9688 0.4062 0.6875 +0.9688 0.4062 0.7188 +0.9688 0.4062 0.75 +0.9688 0.4062 0.7812 +0.9688 0.4062 0.8125 +0.9688 0.4062 0.8438 +0.9688 0.4062 0.875 +0.9688 0.4062 0.9062 +0.9688 0.4062 0.9375 +0.9688 0.4062 0.9688 +0.9688 0.4062 1 +0.9688 0.4375 0 +0.9688 0.4375 0.03125 +0.9688 0.4375 0.0625 +0.9688 0.4375 0.09375 +0.9688 0.4375 0.125 +0.9688 0.4375 0.1562 +0.9688 0.4375 0.1875 +0.9688 0.4375 0.2188 +0.9688 0.4375 0.25 +0.9688 0.4375 0.2812 +0.9688 0.4375 0.3125 +0.9688 0.4375 0.3438 +0.9688 0.4375 0.375 +0.9688 0.4375 0.4062 +0.9688 0.4375 0.4375 +0.9688 0.4375 0.4688 +0.9688 0.4375 0.5 +0.9688 0.4375 0.5312 +0.9688 0.4375 0.5625 +0.9688 0.4375 0.5938 +0.9688 0.4375 0.625 +0.9688 0.4375 0.6562 +0.9688 0.4375 0.6875 +0.9688 0.4375 0.7188 +0.9688 0.4375 0.75 +0.9688 0.4375 0.7812 +0.9688 0.4375 0.8125 +0.9688 0.4375 0.8438 +0.9688 0.4375 0.875 +0.9688 0.4375 0.9062 +0.9688 0.4375 0.9375 +0.9688 0.4375 0.9688 +0.9688 0.4375 1 +0.9688 0.4688 0 +0.9688 0.4688 0.03125 +0.9688 0.4688 0.0625 +0.9688 0.4688 0.09375 +0.9688 0.4688 0.125 +0.9688 0.4688 0.1562 +0.9688 0.4688 0.1875 +0.9688 0.4688 0.2188 +0.9688 0.4688 0.25 +0.9688 0.4688 0.2812 +0.9688 0.4688 0.3125 +0.9688 0.4688 0.3438 +0.9688 0.4688 0.375 +0.9688 0.4688 0.4062 +0.9688 0.4688 0.4375 +0.9688 0.4688 0.4688 +0.9688 0.4688 0.5 +0.9688 0.4688 0.5312 +0.9688 0.4688 0.5625 +0.9688 0.4688 0.5938 +0.9688 0.4688 0.625 +0.9688 0.4688 0.6562 +0.9688 0.4688 0.6875 +0.9688 0.4688 0.7188 +0.9688 0.4688 0.75 +0.9688 0.4688 0.7812 +0.9688 0.4688 0.8125 +0.9688 0.4688 0.8438 +0.9688 0.4688 0.875 +0.9688 0.4688 0.9062 +0.9688 0.4688 0.9375 +0.9688 0.4688 0.9688 +0.9688 0.4688 1 +0.9688 0.5 0 +0.9688 0.5 0.03125 +0.9688 0.5 0.0625 +0.9688 0.5 0.09375 +0.9688 0.5 0.125 +0.9688 0.5 0.1562 +0.9688 0.5 0.1875 +0.9688 0.5 0.2188 +0.9688 0.5 0.25 +0.9688 0.5 0.2812 +0.9688 0.5 0.3125 +0.9688 0.5 0.3438 +0.9688 0.5 0.375 +0.9688 0.5 0.4062 +0.9688 0.5 0.4375 +0.9688 0.5 0.4688 +0.9688 0.5 0.5 +0.9688 0.5 0.5312 +0.9688 0.5 0.5625 +0.9688 0.5 0.5938 +0.9688 0.5 0.625 +0.9688 0.5 0.6562 +0.9688 0.5 0.6875 +0.9688 0.5 0.7188 +0.9688 0.5 0.75 +0.9688 0.5 0.7812 +0.9688 0.5 0.8125 +0.9688 0.5 0.8438 +0.9688 0.5 0.875 +0.9688 0.5 0.9062 +0.9688 0.5 0.9375 +0.9688 0.5 0.9688 +0.9688 0.5 1 +0.9688 0.5312 0 +0.9688 0.5312 0.03125 +0.9688 0.5312 0.0625 +0.9688 0.5312 0.09375 +0.9688 0.5312 0.125 +0.9688 0.5312 0.1562 +0.9688 0.5312 0.1875 +0.9688 0.5312 0.2188 +0.9688 0.5312 0.25 +0.9688 0.5312 0.2812 +0.9688 0.5312 0.3125 +0.9688 0.5312 0.3438 +0.9688 0.5312 0.375 +0.9688 0.5312 0.4062 +0.9688 0.5312 0.4375 +0.9688 0.5312 0.4688 +0.9688 0.5312 0.5 +0.9688 0.5312 0.5312 +0.9688 0.5312 0.5625 +0.9688 0.5312 0.5938 +0.9688 0.5312 0.625 +0.9688 0.5312 0.6562 +0.9688 0.5312 0.6875 +0.9688 0.5312 0.7188 +0.9688 0.5312 0.75 +0.9688 0.5312 0.7812 +0.9688 0.5312 0.8125 +0.9688 0.5312 0.8438 +0.9688 0.5312 0.875 +0.9688 0.5312 0.9062 +0.9688 0.5312 0.9375 +0.9688 0.5312 0.9688 +0.9688 0.5312 1 +0.9688 0.5625 0 +0.9688 0.5625 0.03125 +0.9688 0.5625 0.0625 +0.9688 0.5625 0.09375 +0.9688 0.5625 0.125 +0.9688 0.5625 0.1562 +0.9688 0.5625 0.1875 +0.9688 0.5625 0.2188 +0.9688 0.5625 0.25 +0.9688 0.5625 0.2812 +0.9688 0.5625 0.3125 +0.9688 0.5625 0.3438 +0.9688 0.5625 0.375 +0.9688 0.5625 0.4062 +0.9688 0.5625 0.4375 +0.9688 0.5625 0.4688 +0.9688 0.5625 0.5 +0.9688 0.5625 0.5312 +0.9688 0.5625 0.5625 +0.9688 0.5625 0.5938 +0.9688 0.5625 0.625 +0.9688 0.5625 0.6562 +0.9688 0.5625 0.6875 +0.9688 0.5625 0.7188 +0.9688 0.5625 0.75 +0.9688 0.5625 0.7812 +0.9688 0.5625 0.8125 +0.9688 0.5625 0.8438 +0.9688 0.5625 0.875 +0.9688 0.5625 0.9062 +0.9688 0.5625 0.9375 +0.9688 0.5625 0.9688 +0.9688 0.5625 1 +0.9688 0.5938 0 +0.9688 0.5938 0.03125 +0.9688 0.5938 0.0625 +0.9688 0.5938 0.09375 +0.9688 0.5938 0.125 +0.9688 0.5938 0.1562 +0.9688 0.5938 0.1875 +0.9688 0.5938 0.2188 +0.9688 0.5938 0.25 +0.9688 0.5938 0.2812 +0.9688 0.5938 0.3125 +0.9688 0.5938 0.3438 +0.9688 0.5938 0.375 +0.9688 0.5938 0.4062 +0.9688 0.5938 0.4375 +0.9688 0.5938 0.4688 +0.9688 0.5938 0.5 +0.9688 0.5938 0.5312 +0.9688 0.5938 0.5625 +0.9688 0.5938 0.5938 +0.9688 0.5938 0.625 +0.9688 0.5938 0.6562 +0.9688 0.5938 0.6875 +0.9688 0.5938 0.7188 +0.9688 0.5938 0.75 +0.9688 0.5938 0.7812 +0.9688 0.5938 0.8125 +0.9688 0.5938 0.8438 +0.9688 0.5938 0.875 +0.9688 0.5938 0.9062 +0.9688 0.5938 0.9375 +0.9688 0.5938 0.9688 +0.9688 0.5938 1 +0.9688 0.625 0 +0.9688 0.625 0.03125 +0.9688 0.625 0.0625 +0.9688 0.625 0.09375 +0.9688 0.625 0.125 +0.9688 0.625 0.1562 +0.9688 0.625 0.1875 +0.9688 0.625 0.2188 +0.9688 0.625 0.25 +0.9688 0.625 0.2812 +0.9688 0.625 0.3125 +0.9688 0.625 0.3438 +0.9688 0.625 0.375 +0.9688 0.625 0.4062 +0.9688 0.625 0.4375 +0.9688 0.625 0.4688 +0.9688 0.625 0.5 +0.9688 0.625 0.5312 +0.9688 0.625 0.5625 +0.9688 0.625 0.5938 +0.9688 0.625 0.625 +0.9688 0.625 0.6562 +0.9688 0.625 0.6875 +0.9688 0.625 0.7188 +0.9688 0.625 0.75 +0.9688 0.625 0.7812 +0.9688 0.625 0.8125 +0.9688 0.625 0.8438 +0.9688 0.625 0.875 +0.9688 0.625 0.9062 +0.9688 0.625 0.9375 +0.9688 0.625 0.9688 +0.9688 0.625 1 +0.9688 0.6562 0 +0.9688 0.6562 0.03125 +0.9688 0.6562 0.0625 +0.9688 0.6562 0.09375 +0.9688 0.6562 0.125 +0.9688 0.6562 0.1562 +0.9688 0.6562 0.1875 +0.9688 0.6562 0.2188 +0.9688 0.6562 0.25 +0.9688 0.6562 0.2812 +0.9688 0.6562 0.3125 +0.9688 0.6562 0.3438 +0.9688 0.6562 0.375 +0.9688 0.6562 0.4062 +0.9688 0.6562 0.4375 +0.9688 0.6562 0.4688 +0.9688 0.6562 0.5 +0.9688 0.6562 0.5312 +0.9688 0.6562 0.5625 +0.9688 0.6562 0.5938 +0.9688 0.6562 0.625 +0.9688 0.6562 0.6562 +0.9688 0.6562 0.6875 +0.9688 0.6562 0.7188 +0.9688 0.6562 0.75 +0.9688 0.6562 0.7812 +0.9688 0.6562 0.8125 +0.9688 0.6562 0.8438 +0.9688 0.6562 0.875 +0.9688 0.6562 0.9062 +0.9688 0.6562 0.9375 +0.9688 0.6562 0.9688 +0.9688 0.6562 1 +0.9688 0.6875 0 +0.9688 0.6875 0.03125 +0.9688 0.6875 0.0625 +0.9688 0.6875 0.09375 +0.9688 0.6875 0.125 +0.9688 0.6875 0.1562 +0.9688 0.6875 0.1875 +0.9688 0.6875 0.2188 +0.9688 0.6875 0.25 +0.9688 0.6875 0.2812 +0.9688 0.6875 0.3125 +0.9688 0.6875 0.3438 +0.9688 0.6875 0.375 +0.9688 0.6875 0.4062 +0.9688 0.6875 0.4375 +0.9688 0.6875 0.4688 +0.9688 0.6875 0.5 +0.9688 0.6875 0.5312 +0.9688 0.6875 0.5625 +0.9688 0.6875 0.5938 +0.9688 0.6875 0.625 +0.9688 0.6875 0.6562 +0.9688 0.6875 0.6875 +0.9688 0.6875 0.7188 +0.9688 0.6875 0.75 +0.9688 0.6875 0.7812 +0.9688 0.6875 0.8125 +0.9688 0.6875 0.8438 +0.9688 0.6875 0.875 +0.9688 0.6875 0.9062 +0.9688 0.6875 0.9375 +0.9688 0.6875 0.9688 +0.9688 0.6875 1 +0.9688 0.7188 0 +0.9688 0.7188 0.03125 +0.9688 0.7188 0.0625 +0.9688 0.7188 0.09375 +0.9688 0.7188 0.125 +0.9688 0.7188 0.1562 +0.9688 0.7188 0.1875 +0.9688 0.7188 0.2188 +0.9688 0.7188 0.25 +0.9688 0.7188 0.2812 +0.9688 0.7188 0.3125 +0.9688 0.7188 0.3438 +0.9688 0.7188 0.375 +0.9688 0.7188 0.4062 +0.9688 0.7188 0.4375 +0.9688 0.7188 0.4688 +0.9688 0.7188 0.5 +0.9688 0.7188 0.5312 +0.9688 0.7188 0.5625 +0.9688 0.7188 0.5938 +0.9688 0.7188 0.625 +0.9688 0.7188 0.6562 +0.9688 0.7188 0.6875 +0.9688 0.7188 0.7188 +0.9688 0.7188 0.75 +0.9688 0.7188 0.7812 +0.9688 0.7188 0.8125 +0.9688 0.7188 0.8438 +0.9688 0.7188 0.875 +0.9688 0.7188 0.9062 +0.9688 0.7188 0.9375 +0.9688 0.7188 0.9688 +0.9688 0.7188 1 +0.9688 0.75 0 +0.9688 0.75 0.03125 +0.9688 0.75 0.0625 +0.9688 0.75 0.09375 +0.9688 0.75 0.125 +0.9688 0.75 0.1562 +0.9688 0.75 0.1875 +0.9688 0.75 0.2188 +0.9688 0.75 0.25 +0.9688 0.75 0.2812 +0.9688 0.75 0.3125 +0.9688 0.75 0.3438 +0.9688 0.75 0.375 +0.9688 0.75 0.4062 +0.9688 0.75 0.4375 +0.9688 0.75 0.4688 +0.9688 0.75 0.5 +0.9688 0.75 0.5312 +0.9688 0.75 0.5625 +0.9688 0.75 0.5938 +0.9688 0.75 0.625 +0.9688 0.75 0.6562 +0.9688 0.75 0.6875 +0.9688 0.75 0.7188 +0.9688 0.75 0.75 +0.9688 0.75 0.7812 +0.9688 0.75 0.8125 +0.9688 0.75 0.8438 +0.9688 0.75 0.875 +0.9688 0.75 0.9062 +0.9688 0.75 0.9375 +0.9688 0.75 0.9688 +0.9688 0.75 1 +0.9688 0.7812 0 +0.9688 0.7812 0.03125 +0.9688 0.7812 0.0625 +0.9688 0.7812 0.09375 +0.9688 0.7812 0.125 +0.9688 0.7812 0.1562 +0.9688 0.7812 0.1875 +0.9688 0.7812 0.2188 +0.9688 0.7812 0.25 +0.9688 0.7812 0.2812 +0.9688 0.7812 0.3125 +0.9688 0.7812 0.3438 +0.9688 0.7812 0.375 +0.9688 0.7812 0.4062 +0.9688 0.7812 0.4375 +0.9688 0.7812 0.4688 +0.9688 0.7812 0.5 +0.9688 0.7812 0.5312 +0.9688 0.7812 0.5625 +0.9688 0.7812 0.5938 +0.9688 0.7812 0.625 +0.9688 0.7812 0.6562 +0.9688 0.7812 0.6875 +0.9688 0.7812 0.7188 +0.9688 0.7812 0.75 +0.9688 0.7812 0.7812 +0.9688 0.7812 0.8125 +0.9688 0.7812 0.8438 +0.9688 0.7812 0.875 +0.9688 0.7812 0.9062 +0.9688 0.7812 0.9375 +0.9688 0.7812 0.9688 +0.9688 0.7812 1 +0.9688 0.8125 0 +0.9688 0.8125 0.03125 +0.9688 0.8125 0.0625 +0.9688 0.8125 0.09375 +0.9688 0.8125 0.125 +0.9688 0.8125 0.1562 +0.9688 0.8125 0.1875 +0.9688 0.8125 0.2188 +0.9688 0.8125 0.25 +0.9688 0.8125 0.2812 +0.9688 0.8125 0.3125 +0.9688 0.8125 0.3438 +0.9688 0.8125 0.375 +0.9688 0.8125 0.4062 +0.9688 0.8125 0.4375 +0.9688 0.8125 0.4688 +0.9688 0.8125 0.5 +0.9688 0.8125 0.5312 +0.9688 0.8125 0.5625 +0.9688 0.8125 0.5938 +0.9688 0.8125 0.625 +0.9688 0.8125 0.6562 +0.9688 0.8125 0.6875 +0.9688 0.8125 0.7188 +0.9688 0.8125 0.75 +0.9688 0.8125 0.7812 +0.9688 0.8125 0.8125 +0.9688 0.8125 0.8438 +0.9688 0.8125 0.875 +0.9688 0.8125 0.9062 +0.9688 0.8125 0.9375 +0.9688 0.8125 0.9688 +0.9688 0.8125 1 +0.9688 0.8438 0 +0.9688 0.8438 0.03125 +0.9688 0.8438 0.0625 +0.9688 0.8438 0.09375 +0.9688 0.8438 0.125 +0.9688 0.8438 0.1562 +0.9688 0.8438 0.1875 +0.9688 0.8438 0.2188 +0.9688 0.8438 0.25 +0.9688 0.8438 0.2812 +0.9688 0.8438 0.3125 +0.9688 0.8438 0.3438 +0.9688 0.8438 0.375 +0.9688 0.8438 0.4062 +0.9688 0.8438 0.4375 +0.9688 0.8438 0.4688 +0.9688 0.8438 0.5 +0.9688 0.8438 0.5312 +0.9688 0.8438 0.5625 +0.9688 0.8438 0.5938 +0.9688 0.8438 0.625 +0.9688 0.8438 0.6562 +0.9688 0.8438 0.6875 +0.9688 0.8438 0.7188 +0.9688 0.8438 0.75 +0.9688 0.8438 0.7812 +0.9688 0.8438 0.8125 +0.9688 0.8438 0.8438 +0.9688 0.8438 0.875 +0.9688 0.8438 0.9062 +0.9688 0.8438 0.9375 +0.9688 0.8438 0.9688 +0.9688 0.8438 1 +0.9688 0.875 0 +0.9688 0.875 0.03125 +0.9688 0.875 0.0625 +0.9688 0.875 0.09375 +0.9688 0.875 0.125 +0.9688 0.875 0.1562 +0.9688 0.875 0.1875 +0.9688 0.875 0.2188 +0.9688 0.875 0.25 +0.9688 0.875 0.2812 +0.9688 0.875 0.3125 +0.9688 0.875 0.3438 +0.9688 0.875 0.375 +0.9688 0.875 0.4062 +0.9688 0.875 0.4375 +0.9688 0.875 0.4688 +0.9688 0.875 0.5 +0.9688 0.875 0.5312 +0.9688 0.875 0.5625 +0.9688 0.875 0.5938 +0.9688 0.875 0.625 +0.9688 0.875 0.6562 +0.9688 0.875 0.6875 +0.9688 0.875 0.7188 +0.9688 0.875 0.75 +0.9688 0.875 0.7812 +0.9688 0.875 0.8125 +0.9688 0.875 0.8438 +0.9688 0.875 0.875 +0.9688 0.875 0.9062 +0.9688 0.875 0.9375 +0.9688 0.875 0.9688 +0.9688 0.875 1 +0.9688 0.9062 0 +0.9688 0.9062 0.03125 +0.9688 0.9062 0.0625 +0.9688 0.9062 0.09375 +0.9688 0.9062 0.125 +0.9688 0.9062 0.1562 +0.9688 0.9062 0.1875 +0.9688 0.9062 0.2188 +0.9688 0.9062 0.25 +0.9688 0.9062 0.2812 +0.9688 0.9062 0.3125 +0.9688 0.9062 0.3438 +0.9688 0.9062 0.375 +0.9688 0.9062 0.4062 +0.9688 0.9062 0.4375 +0.9688 0.9062 0.4688 +0.9688 0.9062 0.5 +0.9688 0.9062 0.5312 +0.9688 0.9062 0.5625 +0.9688 0.9062 0.5938 +0.9688 0.9062 0.625 +0.9688 0.9062 0.6562 +0.9688 0.9062 0.6875 +0.9688 0.9062 0.7188 +0.9688 0.9062 0.75 +0.9688 0.9062 0.7812 +0.9688 0.9062 0.8125 +0.9688 0.9062 0.8438 +0.9688 0.9062 0.875 +0.9688 0.9062 0.9062 +0.9688 0.9062 0.9375 +0.9688 0.9062 0.9688 +0.9688 0.9062 1 +0.9688 0.9375 0 +0.9688 0.9375 0.03125 +0.9688 0.9375 0.0625 +0.9688 0.9375 0.09375 +0.9688 0.9375 0.125 +0.9688 0.9375 0.1562 +0.9688 0.9375 0.1875 +0.9688 0.9375 0.2188 +0.9688 0.9375 0.25 +0.9688 0.9375 0.2812 +0.9688 0.9375 0.3125 +0.9688 0.9375 0.3438 +0.9688 0.9375 0.375 +0.9688 0.9375 0.4062 +0.9688 0.9375 0.4375 +0.9688 0.9375 0.4688 +0.9688 0.9375 0.5 +0.9688 0.9375 0.5312 +0.9688 0.9375 0.5625 +0.9688 0.9375 0.5938 +0.9688 0.9375 0.625 +0.9688 0.9375 0.6562 +0.9688 0.9375 0.6875 +0.9688 0.9375 0.7188 +0.9688 0.9375 0.75 +0.9688 0.9375 0.7812 +0.9688 0.9375 0.8125 +0.9688 0.9375 0.8438 +0.9688 0.9375 0.875 +0.9688 0.9375 0.9062 +0.9688 0.9375 0.9375 +0.9688 0.9375 0.9688 +0.9688 0.9375 1 +0.9688 0.9688 0 +0.9688 0.9688 0.03125 +0.9688 0.9688 0.0625 +0.9688 0.9688 0.09375 +0.9688 0.9688 0.125 +0.9688 0.9688 0.1562 +0.9688 0.9688 0.1875 +0.9688 0.9688 0.2188 +0.9688 0.9688 0.25 +0.9688 0.9688 0.2812 +0.9688 0.9688 0.3125 +0.9688 0.9688 0.3438 +0.9688 0.9688 0.375 +0.9688 0.9688 0.4062 +0.9688 0.9688 0.4375 +0.9688 0.9688 0.4688 +0.9688 0.9688 0.5 +0.9688 0.9688 0.5312 +0.9688 0.9688 0.5625 +0.9688 0.9688 0.5938 +0.9688 0.9688 0.625 +0.9688 0.9688 0.6562 +0.9688 0.9688 0.6875 +0.9688 0.9688 0.7188 +0.9688 0.9688 0.75 +0.9688 0.9688 0.7812 +0.9688 0.9688 0.8125 +0.9688 0.9688 0.8438 +0.9688 0.9688 0.875 +0.9688 0.9688 0.9062 +0.9688 0.9688 0.9375 +0.9688 0.9688 0.9688 +0.9688 0.9688 1 +0.9688 1 0 +0.9688 1 0.03125 +0.9688 1 0.0625 +0.9688 1 0.09375 +0.9688 1 0.125 +0.9688 1 0.1562 +0.9688 1 0.1875 +0.9688 1 0.2188 +0.9688 1 0.25 +0.9688 1 0.2812 +0.9688 1 0.3125 +0.9688 1 0.3438 +0.9688 1 0.375 +0.9688 1 0.4062 +0.9688 1 0.4375 +0.9688 1 0.4688 +0.9688 1 0.5 +0.9688 1 0.5312 +0.9688 1 0.5625 +0.9688 1 0.5938 +0.9688 1 0.625 +0.9688 1 0.6562 +0.9688 1 0.6875 +0.9688 1 0.7188 +0.9688 1 0.75 +0.9688 1 0.7812 +0.9688 1 0.8125 +0.9688 1 0.8438 +0.9688 1 0.875 +0.9688 1 0.9062 +0.9688 1 0.9375 +0.9688 1 0.9688 +0.9688 1 1 +1 0 0 +1 0 0.03125 +1 0 0.0625 +1 0 0.09375 +1 0 0.125 +1 0 0.1562 +1 0 0.1875 +1 0 0.2188 +1 0 0.25 +1 0 0.2812 +1 0 0.3125 +1 0 0.3438 +1 0 0.375 +1 0 0.4062 +1 0 0.4375 +1 0 0.4688 +1 0 0.5 +1 0 0.5312 +1 0 0.5625 +1 0 0.5938 +1 0 0.625 +1 0 0.6562 +1 0 0.6875 +1 0 0.7188 +1 0 0.75 +1 0 0.7812 +1 0 0.8125 +1 0 0.8438 +1 0 0.875 +1 0 0.9062 +1 0 0.9375 +1 0 0.9688 +1 0 1 +1 0.03125 0 +1 0.03125 0.03125 +1 0.03125 0.0625 +1 0.03125 0.09375 +1 0.03125 0.125 +1 0.03125 0.1562 +1 0.03125 0.1875 +1 0.03125 0.2188 +1 0.03125 0.25 +1 0.03125 0.2812 +1 0.03125 0.3125 +1 0.03125 0.3438 +1 0.03125 0.375 +1 0.03125 0.4062 +1 0.03125 0.4375 +1 0.03125 0.4688 +1 0.03125 0.5 +1 0.03125 0.5312 +1 0.03125 0.5625 +1 0.03125 0.5938 +1 0.03125 0.625 +1 0.03125 0.6562 +1 0.03125 0.6875 +1 0.03125 0.7188 +1 0.03125 0.75 +1 0.03125 0.7812 +1 0.03125 0.8125 +1 0.03125 0.8438 +1 0.03125 0.875 +1 0.03125 0.9062 +1 0.03125 0.9375 +1 0.03125 0.9688 +1 0.03125 1 +1 0.0625 0 +1 0.0625 0.03125 +1 0.0625 0.0625 +1 0.0625 0.09375 +1 0.0625 0.125 +1 0.0625 0.1562 +1 0.0625 0.1875 +1 0.0625 0.2188 +1 0.0625 0.25 +1 0.0625 0.2812 +1 0.0625 0.3125 +1 0.0625 0.3438 +1 0.0625 0.375 +1 0.0625 0.4062 +1 0.0625 0.4375 +1 0.0625 0.4688 +1 0.0625 0.5 +1 0.0625 0.5312 +1 0.0625 0.5625 +1 0.0625 0.5938 +1 0.0625 0.625 +1 0.0625 0.6562 +1 0.0625 0.6875 +1 0.0625 0.7188 +1 0.0625 0.75 +1 0.0625 0.7812 +1 0.0625 0.8125 +1 0.0625 0.8438 +1 0.0625 0.875 +1 0.0625 0.9062 +1 0.0625 0.9375 +1 0.0625 0.9688 +1 0.0625 1 +1 0.09375 0 +1 0.09375 0.03125 +1 0.09375 0.0625 +1 0.09375 0.09375 +1 0.09375 0.125 +1 0.09375 0.1562 +1 0.09375 0.1875 +1 0.09375 0.2188 +1 0.09375 0.25 +1 0.09375 0.2812 +1 0.09375 0.3125 +1 0.09375 0.3438 +1 0.09375 0.375 +1 0.09375 0.4062 +1 0.09375 0.4375 +1 0.09375 0.4688 +1 0.09375 0.5 +1 0.09375 0.5312 +1 0.09375 0.5625 +1 0.09375 0.5938 +1 0.09375 0.625 +1 0.09375 0.6562 +1 0.09375 0.6875 +1 0.09375 0.7188 +1 0.09375 0.75 +1 0.09375 0.7812 +1 0.09375 0.8125 +1 0.09375 0.8438 +1 0.09375 0.875 +1 0.09375 0.9062 +1 0.09375 0.9375 +1 0.09375 0.9688 +1 0.09375 1 +1 0.125 0 +1 0.125 0.03125 +1 0.125 0.0625 +1 0.125 0.09375 +1 0.125 0.125 +1 0.125 0.1562 +1 0.125 0.1875 +1 0.125 0.2188 +1 0.125 0.25 +1 0.125 0.2812 +1 0.125 0.3125 +1 0.125 0.3438 +1 0.125 0.375 +1 0.125 0.4062 +1 0.125 0.4375 +1 0.125 0.4688 +1 0.125 0.5 +1 0.125 0.5312 +1 0.125 0.5625 +1 0.125 0.5938 +1 0.125 0.625 +1 0.125 0.6562 +1 0.125 0.6875 +1 0.125 0.7188 +1 0.125 0.75 +1 0.125 0.7812 +1 0.125 0.8125 +1 0.125 0.8438 +1 0.125 0.875 +1 0.125 0.9062 +1 0.125 0.9375 +1 0.125 0.9688 +1 0.125 1 +1 0.1562 0 +1 0.1562 0.03125 +1 0.1562 0.0625 +1 0.1562 0.09375 +1 0.1562 0.125 +1 0.1562 0.1562 +1 0.1562 0.1875 +1 0.1562 0.2188 +1 0.1562 0.25 +1 0.1562 0.2812 +1 0.1562 0.3125 +1 0.1562 0.3438 +1 0.1562 0.375 +1 0.1562 0.4062 +1 0.1562 0.4375 +1 0.1562 0.4688 +1 0.1562 0.5 +1 0.1562 0.5312 +1 0.1562 0.5625 +1 0.1562 0.5938 +1 0.1562 0.625 +1 0.1562 0.6562 +1 0.1562 0.6875 +1 0.1562 0.7188 +1 0.1562 0.75 +1 0.1562 0.7812 +1 0.1562 0.8125 +1 0.1562 0.8438 +1 0.1562 0.875 +1 0.1562 0.9062 +1 0.1562 0.9375 +1 0.1562 0.9688 +1 0.1562 1 +1 0.1875 0 +1 0.1875 0.03125 +1 0.1875 0.0625 +1 0.1875 0.09375 +1 0.1875 0.125 +1 0.1875 0.1562 +1 0.1875 0.1875 +1 0.1875 0.2188 +1 0.1875 0.25 +1 0.1875 0.2812 +1 0.1875 0.3125 +1 0.1875 0.3438 +1 0.1875 0.375 +1 0.1875 0.4062 +1 0.1875 0.4375 +1 0.1875 0.4688 +1 0.1875 0.5 +1 0.1875 0.5312 +1 0.1875 0.5625 +1 0.1875 0.5938 +1 0.1875 0.625 +1 0.1875 0.6562 +1 0.1875 0.6875 +1 0.1875 0.7188 +1 0.1875 0.75 +1 0.1875 0.7812 +1 0.1875 0.8125 +1 0.1875 0.8438 +1 0.1875 0.875 +1 0.1875 0.9062 +1 0.1875 0.9375 +1 0.1875 0.9688 +1 0.1875 1 +1 0.2188 0 +1 0.2188 0.03125 +1 0.2188 0.0625 +1 0.2188 0.09375 +1 0.2188 0.125 +1 0.2188 0.1562 +1 0.2188 0.1875 +1 0.2188 0.2188 +1 0.2188 0.25 +1 0.2188 0.2812 +1 0.2188 0.3125 +1 0.2188 0.3438 +1 0.2188 0.375 +1 0.2188 0.4062 +1 0.2188 0.4375 +1 0.2188 0.4688 +1 0.2188 0.5 +1 0.2188 0.5312 +1 0.2188 0.5625 +1 0.2188 0.5938 +1 0.2188 0.625 +1 0.2188 0.6562 +1 0.2188 0.6875 +1 0.2188 0.7188 +1 0.2188 0.75 +1 0.2188 0.7812 +1 0.2188 0.8125 +1 0.2188 0.8438 +1 0.2188 0.875 +1 0.2188 0.9062 +1 0.2188 0.9375 +1 0.2188 0.9688 +1 0.2188 1 +1 0.25 0 +1 0.25 0.03125 +1 0.25 0.0625 +1 0.25 0.09375 +1 0.25 0.125 +1 0.25 0.1562 +1 0.25 0.1875 +1 0.25 0.2188 +1 0.25 0.25 +1 0.25 0.2812 +1 0.25 0.3125 +1 0.25 0.3438 +1 0.25 0.375 +1 0.25 0.4062 +1 0.25 0.4375 +1 0.25 0.4688 +1 0.25 0.5 +1 0.25 0.5312 +1 0.25 0.5625 +1 0.25 0.5938 +1 0.25 0.625 +1 0.25 0.6562 +1 0.25 0.6875 +1 0.25 0.7188 +1 0.25 0.75 +1 0.25 0.7812 +1 0.25 0.8125 +1 0.25 0.8438 +1 0.25 0.875 +1 0.25 0.9062 +1 0.25 0.9375 +1 0.25 0.9688 +1 0.25 1 +1 0.2812 0 +1 0.2812 0.03125 +1 0.2812 0.0625 +1 0.2812 0.09375 +1 0.2812 0.125 +1 0.2812 0.1562 +1 0.2812 0.1875 +1 0.2812 0.2188 +1 0.2812 0.25 +1 0.2812 0.2812 +1 0.2812 0.3125 +1 0.2812 0.3438 +1 0.2812 0.375 +1 0.2812 0.4062 +1 0.2812 0.4375 +1 0.2812 0.4688 +1 0.2812 0.5 +1 0.2812 0.5312 +1 0.2812 0.5625 +1 0.2812 0.5938 +1 0.2812 0.625 +1 0.2812 0.6562 +1 0.2812 0.6875 +1 0.2812 0.7188 +1 0.2812 0.75 +1 0.2812 0.7812 +1 0.2812 0.8125 +1 0.2812 0.8438 +1 0.2812 0.875 +1 0.2812 0.9062 +1 0.2812 0.9375 +1 0.2812 0.9688 +1 0.2812 1 +1 0.3125 0 +1 0.3125 0.03125 +1 0.3125 0.0625 +1 0.3125 0.09375 +1 0.3125 0.125 +1 0.3125 0.1562 +1 0.3125 0.1875 +1 0.3125 0.2188 +1 0.3125 0.25 +1 0.3125 0.2812 +1 0.3125 0.3125 +1 0.3125 0.3438 +1 0.3125 0.375 +1 0.3125 0.4062 +1 0.3125 0.4375 +1 0.3125 0.4688 +1 0.3125 0.5 +1 0.3125 0.5312 +1 0.3125 0.5625 +1 0.3125 0.5938 +1 0.3125 0.625 +1 0.3125 0.6562 +1 0.3125 0.6875 +1 0.3125 0.7188 +1 0.3125 0.75 +1 0.3125 0.7812 +1 0.3125 0.8125 +1 0.3125 0.8438 +1 0.3125 0.875 +1 0.3125 0.9062 +1 0.3125 0.9375 +1 0.3125 0.9688 +1 0.3125 1 +1 0.3438 0 +1 0.3438 0.03125 +1 0.3438 0.0625 +1 0.3438 0.09375 +1 0.3438 0.125 +1 0.3438 0.1562 +1 0.3438 0.1875 +1 0.3438 0.2188 +1 0.3438 0.25 +1 0.3438 0.2812 +1 0.3438 0.3125 +1 0.3438 0.3438 +1 0.3438 0.375 +1 0.3438 0.4062 +1 0.3438 0.4375 +1 0.3438 0.4688 +1 0.3438 0.5 +1 0.3438 0.5312 +1 0.3438 0.5625 +1 0.3438 0.5938 +1 0.3438 0.625 +1 0.3438 0.6562 +1 0.3438 0.6875 +1 0.3438 0.7188 +1 0.3438 0.75 +1 0.3438 0.7812 +1 0.3438 0.8125 +1 0.3438 0.8438 +1 0.3438 0.875 +1 0.3438 0.9062 +1 0.3438 0.9375 +1 0.3438 0.9688 +1 0.3438 1 +1 0.375 0 +1 0.375 0.03125 +1 0.375 0.0625 +1 0.375 0.09375 +1 0.375 0.125 +1 0.375 0.1562 +1 0.375 0.1875 +1 0.375 0.2188 +1 0.375 0.25 +1 0.375 0.2812 +1 0.375 0.3125 +1 0.375 0.3438 +1 0.375 0.375 +1 0.375 0.4062 +1 0.375 0.4375 +1 0.375 0.4688 +1 0.375 0.5 +1 0.375 0.5312 +1 0.375 0.5625 +1 0.375 0.5938 +1 0.375 0.625 +1 0.375 0.6562 +1 0.375 0.6875 +1 0.375 0.7188 +1 0.375 0.75 +1 0.375 0.7812 +1 0.375 0.8125 +1 0.375 0.8438 +1 0.375 0.875 +1 0.375 0.9062 +1 0.375 0.9375 +1 0.375 0.9688 +1 0.375 1 +1 0.4062 0 +1 0.4062 0.03125 +1 0.4062 0.0625 +1 0.4062 0.09375 +1 0.4062 0.125 +1 0.4062 0.1562 +1 0.4062 0.1875 +1 0.4062 0.2188 +1 0.4062 0.25 +1 0.4062 0.2812 +1 0.4062 0.3125 +1 0.4062 0.3438 +1 0.4062 0.375 +1 0.4062 0.4062 +1 0.4062 0.4375 +1 0.4062 0.4688 +1 0.4062 0.5 +1 0.4062 0.5312 +1 0.4062 0.5625 +1 0.4062 0.5938 +1 0.4062 0.625 +1 0.4062 0.6562 +1 0.4062 0.6875 +1 0.4062 0.7188 +1 0.4062 0.75 +1 0.4062 0.7812 +1 0.4062 0.8125 +1 0.4062 0.8438 +1 0.4062 0.875 +1 0.4062 0.9062 +1 0.4062 0.9375 +1 0.4062 0.9688 +1 0.4062 1 +1 0.4375 0 +1 0.4375 0.03125 +1 0.4375 0.0625 +1 0.4375 0.09375 +1 0.4375 0.125 +1 0.4375 0.1562 +1 0.4375 0.1875 +1 0.4375 0.2188 +1 0.4375 0.25 +1 0.4375 0.2812 +1 0.4375 0.3125 +1 0.4375 0.3438 +1 0.4375 0.375 +1 0.4375 0.4062 +1 0.4375 0.4375 +1 0.4375 0.4688 +1 0.4375 0.5 +1 0.4375 0.5312 +1 0.4375 0.5625 +1 0.4375 0.5938 +1 0.4375 0.625 +1 0.4375 0.6562 +1 0.4375 0.6875 +1 0.4375 0.7188 +1 0.4375 0.75 +1 0.4375 0.7812 +1 0.4375 0.8125 +1 0.4375 0.8438 +1 0.4375 0.875 +1 0.4375 0.9062 +1 0.4375 0.9375 +1 0.4375 0.9688 +1 0.4375 1 +1 0.4688 0 +1 0.4688 0.03125 +1 0.4688 0.0625 +1 0.4688 0.09375 +1 0.4688 0.125 +1 0.4688 0.1562 +1 0.4688 0.1875 +1 0.4688 0.2188 +1 0.4688 0.25 +1 0.4688 0.2812 +1 0.4688 0.3125 +1 0.4688 0.3438 +1 0.4688 0.375 +1 0.4688 0.4062 +1 0.4688 0.4375 +1 0.4688 0.4688 +1 0.4688 0.5 +1 0.4688 0.5312 +1 0.4688 0.5625 +1 0.4688 0.5938 +1 0.4688 0.625 +1 0.4688 0.6562 +1 0.4688 0.6875 +1 0.4688 0.7188 +1 0.4688 0.75 +1 0.4688 0.7812 +1 0.4688 0.8125 +1 0.4688 0.8438 +1 0.4688 0.875 +1 0.4688 0.9062 +1 0.4688 0.9375 +1 0.4688 0.9688 +1 0.4688 1 +1 0.5 0 +1 0.5 0.03125 +1 0.5 0.0625 +1 0.5 0.09375 +1 0.5 0.125 +1 0.5 0.1562 +1 0.5 0.1875 +1 0.5 0.2188 +1 0.5 0.25 +1 0.5 0.2812 +1 0.5 0.3125 +1 0.5 0.3438 +1 0.5 0.375 +1 0.5 0.4062 +1 0.5 0.4375 +1 0.5 0.4688 +1 0.5 0.5 +1 0.5 0.5312 +1 0.5 0.5625 +1 0.5 0.5938 +1 0.5 0.625 +1 0.5 0.6562 +1 0.5 0.6875 +1 0.5 0.7188 +1 0.5 0.75 +1 0.5 0.7812 +1 0.5 0.8125 +1 0.5 0.8438 +1 0.5 0.875 +1 0.5 0.9062 +1 0.5 0.9375 +1 0.5 0.9688 +1 0.5 1 +1 0.5312 0 +1 0.5312 0.03125 +1 0.5312 0.0625 +1 0.5312 0.09375 +1 0.5312 0.125 +1 0.5312 0.1562 +1 0.5312 0.1875 +1 0.5312 0.2188 +1 0.5312 0.25 +1 0.5312 0.2812 +1 0.5312 0.3125 +1 0.5312 0.3438 +1 0.5312 0.375 +1 0.5312 0.4062 +1 0.5312 0.4375 +1 0.5312 0.4688 +1 0.5312 0.5 +1 0.5312 0.5312 +1 0.5312 0.5625 +1 0.5312 0.5938 +1 0.5312 0.625 +1 0.5312 0.6562 +1 0.5312 0.6875 +1 0.5312 0.7188 +1 0.5312 0.75 +1 0.5312 0.7812 +1 0.5312 0.8125 +1 0.5312 0.8438 +1 0.5312 0.875 +1 0.5312 0.9062 +1 0.5312 0.9375 +1 0.5312 0.9688 +1 0.5312 1 +1 0.5625 0 +1 0.5625 0.03125 +1 0.5625 0.0625 +1 0.5625 0.09375 +1 0.5625 0.125 +1 0.5625 0.1562 +1 0.5625 0.1875 +1 0.5625 0.2188 +1 0.5625 0.25 +1 0.5625 0.2812 +1 0.5625 0.3125 +1 0.5625 0.3438 +1 0.5625 0.375 +1 0.5625 0.4062 +1 0.5625 0.4375 +1 0.5625 0.4688 +1 0.5625 0.5 +1 0.5625 0.5312 +1 0.5625 0.5625 +1 0.5625 0.5938 +1 0.5625 0.625 +1 0.5625 0.6562 +1 0.5625 0.6875 +1 0.5625 0.7188 +1 0.5625 0.75 +1 0.5625 0.7812 +1 0.5625 0.8125 +1 0.5625 0.8438 +1 0.5625 0.875 +1 0.5625 0.9062 +1 0.5625 0.9375 +1 0.5625 0.9688 +1 0.5625 1 +1 0.5938 0 +1 0.5938 0.03125 +1 0.5938 0.0625 +1 0.5938 0.09375 +1 0.5938 0.125 +1 0.5938 0.1562 +1 0.5938 0.1875 +1 0.5938 0.2188 +1 0.5938 0.25 +1 0.5938 0.2812 +1 0.5938 0.3125 +1 0.5938 0.3438 +1 0.5938 0.375 +1 0.5938 0.4062 +1 0.5938 0.4375 +1 0.5938 0.4688 +1 0.5938 0.5 +1 0.5938 0.5312 +1 0.5938 0.5625 +1 0.5938 0.5938 +1 0.5938 0.625 +1 0.5938 0.6562 +1 0.5938 0.6875 +1 0.5938 0.7188 +1 0.5938 0.75 +1 0.5938 0.7812 +1 0.5938 0.8125 +1 0.5938 0.8438 +1 0.5938 0.875 +1 0.5938 0.9062 +1 0.5938 0.9375 +1 0.5938 0.9688 +1 0.5938 1 +1 0.625 0 +1 0.625 0.03125 +1 0.625 0.0625 +1 0.625 0.09375 +1 0.625 0.125 +1 0.625 0.1562 +1 0.625 0.1875 +1 0.625 0.2188 +1 0.625 0.25 +1 0.625 0.2812 +1 0.625 0.3125 +1 0.625 0.3438 +1 0.625 0.375 +1 0.625 0.4062 +1 0.625 0.4375 +1 0.625 0.4688 +1 0.625 0.5 +1 0.625 0.5312 +1 0.625 0.5625 +1 0.625 0.5938 +1 0.625 0.625 +1 0.625 0.6562 +1 0.625 0.6875 +1 0.625 0.7188 +1 0.625 0.75 +1 0.625 0.7812 +1 0.625 0.8125 +1 0.625 0.8438 +1 0.625 0.875 +1 0.625 0.9062 +1 0.625 0.9375 +1 0.625 0.9688 +1 0.625 1 +1 0.6562 0 +1 0.6562 0.03125 +1 0.6562 0.0625 +1 0.6562 0.09375 +1 0.6562 0.125 +1 0.6562 0.1562 +1 0.6562 0.1875 +1 0.6562 0.2188 +1 0.6562 0.25 +1 0.6562 0.2812 +1 0.6562 0.3125 +1 0.6562 0.3438 +1 0.6562 0.375 +1 0.6562 0.4062 +1 0.6562 0.4375 +1 0.6562 0.4688 +1 0.6562 0.5 +1 0.6562 0.5312 +1 0.6562 0.5625 +1 0.6562 0.5938 +1 0.6562 0.625 +1 0.6562 0.6562 +1 0.6562 0.6875 +1 0.6562 0.7188 +1 0.6562 0.75 +1 0.6562 0.7812 +1 0.6562 0.8125 +1 0.6562 0.8438 +1 0.6562 0.875 +1 0.6562 0.9062 +1 0.6562 0.9375 +1 0.6562 0.9688 +1 0.6562 1 +1 0.6875 0 +1 0.6875 0.03125 +1 0.6875 0.0625 +1 0.6875 0.09375 +1 0.6875 0.125 +1 0.6875 0.1562 +1 0.6875 0.1875 +1 0.6875 0.2188 +1 0.6875 0.25 +1 0.6875 0.2812 +1 0.6875 0.3125 +1 0.6875 0.3438 +1 0.6875 0.375 +1 0.6875 0.4062 +1 0.6875 0.4375 +1 0.6875 0.4688 +1 0.6875 0.5 +1 0.6875 0.5312 +1 0.6875 0.5625 +1 0.6875 0.5938 +1 0.6875 0.625 +1 0.6875 0.6562 +1 0.6875 0.6875 +1 0.6875 0.7188 +1 0.6875 0.75 +1 0.6875 0.7812 +1 0.6875 0.8125 +1 0.6875 0.8438 +1 0.6875 0.875 +1 0.6875 0.9062 +1 0.6875 0.9375 +1 0.6875 0.9688 +1 0.6875 1 +1 0.7188 0 +1 0.7188 0.03125 +1 0.7188 0.0625 +1 0.7188 0.09375 +1 0.7188 0.125 +1 0.7188 0.1562 +1 0.7188 0.1875 +1 0.7188 0.2188 +1 0.7188 0.25 +1 0.7188 0.2812 +1 0.7188 0.3125 +1 0.7188 0.3438 +1 0.7188 0.375 +1 0.7188 0.4062 +1 0.7188 0.4375 +1 0.7188 0.4688 +1 0.7188 0.5 +1 0.7188 0.5312 +1 0.7188 0.5625 +1 0.7188 0.5938 +1 0.7188 0.625 +1 0.7188 0.6562 +1 0.7188 0.6875 +1 0.7188 0.7188 +1 0.7188 0.75 +1 0.7188 0.7812 +1 0.7188 0.8125 +1 0.7188 0.8438 +1 0.7188 0.875 +1 0.7188 0.9062 +1 0.7188 0.9375 +1 0.7188 0.9688 +1 0.7188 1 +1 0.75 0 +1 0.75 0.03125 +1 0.75 0.0625 +1 0.75 0.09375 +1 0.75 0.125 +1 0.75 0.1562 +1 0.75 0.1875 +1 0.75 0.2188 +1 0.75 0.25 +1 0.75 0.2812 +1 0.75 0.3125 +1 0.75 0.3438 +1 0.75 0.375 +1 0.75 0.4062 +1 0.75 0.4375 +1 0.75 0.4688 +1 0.75 0.5 +1 0.75 0.5312 +1 0.75 0.5625 +1 0.75 0.5938 +1 0.75 0.625 +1 0.75 0.6562 +1 0.75 0.6875 +1 0.75 0.7188 +1 0.75 0.75 +1 0.75 0.7812 +1 0.75 0.8125 +1 0.75 0.8438 +1 0.75 0.875 +1 0.75 0.9062 +1 0.75 0.9375 +1 0.75 0.9688 +1 0.75 1 +1 0.7812 0 +1 0.7812 0.03125 +1 0.7812 0.0625 +1 0.7812 0.09375 +1 0.7812 0.125 +1 0.7812 0.1562 +1 0.7812 0.1875 +1 0.7812 0.2188 +1 0.7812 0.25 +1 0.7812 0.2812 +1 0.7812 0.3125 +1 0.7812 0.3438 +1 0.7812 0.375 +1 0.7812 0.4062 +1 0.7812 0.4375 +1 0.7812 0.4688 +1 0.7812 0.5 +1 0.7812 0.5312 +1 0.7812 0.5625 +1 0.7812 0.5938 +1 0.7812 0.625 +1 0.7812 0.6562 +1 0.7812 0.6875 +1 0.7812 0.7188 +1 0.7812 0.75 +1 0.7812 0.7812 +1 0.7812 0.8125 +1 0.7812 0.8438 +1 0.7812 0.875 +1 0.7812 0.9062 +1 0.7812 0.9375 +1 0.7812 0.9688 +1 0.7812 1 +1 0.8125 0 +1 0.8125 0.03125 +1 0.8125 0.0625 +1 0.8125 0.09375 +1 0.8125 0.125 +1 0.8125 0.1562 +1 0.8125 0.1875 +1 0.8125 0.2188 +1 0.8125 0.25 +1 0.8125 0.2812 +1 0.8125 0.3125 +1 0.8125 0.3438 +1 0.8125 0.375 +1 0.8125 0.4062 +1 0.8125 0.4375 +1 0.8125 0.4688 +1 0.8125 0.5 +1 0.8125 0.5312 +1 0.8125 0.5625 +1 0.8125 0.5938 +1 0.8125 0.625 +1 0.8125 0.6562 +1 0.8125 0.6875 +1 0.8125 0.7188 +1 0.8125 0.75 +1 0.8125 0.7812 +1 0.8125 0.8125 +1 0.8125 0.8438 +1 0.8125 0.875 +1 0.8125 0.9062 +1 0.8125 0.9375 +1 0.8125 0.9688 +1 0.8125 1 +1 0.8438 0 +1 0.8438 0.03125 +1 0.8438 0.0625 +1 0.8438 0.09375 +1 0.8438 0.125 +1 0.8438 0.1562 +1 0.8438 0.1875 +1 0.8438 0.2188 +1 0.8438 0.25 +1 0.8438 0.2812 +1 0.8438 0.3125 +1 0.8438 0.3438 +1 0.8438 0.375 +1 0.8438 0.4062 +1 0.8438 0.4375 +1 0.8438 0.4688 +1 0.8438 0.5 +1 0.8438 0.5312 +1 0.8438 0.5625 +1 0.8438 0.5938 +1 0.8438 0.625 +1 0.8438 0.6562 +1 0.8438 0.6875 +1 0.8438 0.7188 +1 0.8438 0.75 +1 0.8438 0.7812 +1 0.8438 0.8125 +1 0.8438 0.8438 +1 0.8438 0.875 +1 0.8438 0.9062 +1 0.8438 0.9375 +1 0.8438 0.9688 +1 0.8438 1 +1 0.875 0 +1 0.875 0.03125 +1 0.875 0.0625 +1 0.875 0.09375 +1 0.875 0.125 +1 0.875 0.1562 +1 0.875 0.1875 +1 0.875 0.2188 +1 0.875 0.25 +1 0.875 0.2812 +1 0.875 0.3125 +1 0.875 0.3438 +1 0.875 0.375 +1 0.875 0.4062 +1 0.875 0.4375 +1 0.875 0.4688 +1 0.875 0.5 +1 0.875 0.5312 +1 0.875 0.5625 +1 0.875 0.5938 +1 0.875 0.625 +1 0.875 0.6562 +1 0.875 0.6875 +1 0.875 0.7188 +1 0.875 0.75 +1 0.875 0.7812 +1 0.875 0.8125 +1 0.875 0.8438 +1 0.875 0.875 +1 0.875 0.9062 +1 0.875 0.9375 +1 0.875 0.9688 +1 0.875 1 +1 0.9062 0 +1 0.9062 0.03125 +1 0.9062 0.0625 +1 0.9062 0.09375 +1 0.9062 0.125 +1 0.9062 0.1562 +1 0.9062 0.1875 +1 0.9062 0.2188 +1 0.9062 0.25 +1 0.9062 0.2812 +1 0.9062 0.3125 +1 0.9062 0.3438 +1 0.9062 0.375 +1 0.9062 0.4062 +1 0.9062 0.4375 +1 0.9062 0.4688 +1 0.9062 0.5 +1 0.9062 0.5312 +1 0.9062 0.5625 +1 0.9062 0.5938 +1 0.9062 0.625 +1 0.9062 0.6562 +1 0.9062 0.6875 +1 0.9062 0.7188 +1 0.9062 0.75 +1 0.9062 0.7812 +1 0.9062 0.8125 +1 0.9062 0.8438 +1 0.9062 0.875 +1 0.9062 0.9062 +1 0.9062 0.9375 +1 0.9062 0.9688 +1 0.9062 1 +1 0.9375 0 +1 0.9375 0.03125 +1 0.9375 0.0625 +1 0.9375 0.09375 +1 0.9375 0.125 +1 0.9375 0.1562 +1 0.9375 0.1875 +1 0.9375 0.2188 +1 0.9375 0.25 +1 0.9375 0.2812 +1 0.9375 0.3125 +1 0.9375 0.3438 +1 0.9375 0.375 +1 0.9375 0.4062 +1 0.9375 0.4375 +1 0.9375 0.4688 +1 0.9375 0.5 +1 0.9375 0.5312 +1 0.9375 0.5625 +1 0.9375 0.5938 +1 0.9375 0.625 +1 0.9375 0.6562 +1 0.9375 0.6875 +1 0.9375 0.7188 +1 0.9375 0.75 +1 0.9375 0.7812 +1 0.9375 0.8125 +1 0.9375 0.8438 +1 0.9375 0.875 +1 0.9375 0.9062 +1 0.9375 0.9375 +1 0.9375 0.9688 +1 0.9375 1 +1 0.9688 0 +1 0.9688 0.03125 +1 0.9688 0.0625 +1 0.9688 0.09375 +1 0.9688 0.125 +1 0.9688 0.1562 +1 0.9688 0.1875 +1 0.9688 0.2188 +1 0.9688 0.25 +1 0.9688 0.2812 +1 0.9688 0.3125 +1 0.9688 0.3438 +1 0.9688 0.375 +1 0.9688 0.4062 +1 0.9688 0.4375 +1 0.9688 0.4688 +1 0.9688 0.5 +1 0.9688 0.5312 +1 0.9688 0.5625 +1 0.9688 0.5938 +1 0.9688 0.625 +1 0.9688 0.6562 +1 0.9688 0.6875 +1 0.9688 0.7188 +1 0.9688 0.75 +1 0.9688 0.7812 +1 0.9688 0.8125 +1 0.9688 0.8438 +1 0.9688 0.875 +1 0.9688 0.9062 +1 0.9688 0.9375 +1 0.9688 0.9688 +1 0.9688 1 +1 1 0 +1 1 0.03125 +1 1 0.0625 +1 1 0.09375 +1 1 0.125 +1 1 0.1562 +1 1 0.1875 +1 1 0.2188 +1 1 0.25 +1 1 0.2812 +1 1 0.3125 +1 1 0.3438 +1 1 0.375 +1 1 0.4062 +1 1 0.4375 +1 1 0.4688 +1 1 0.5 +1 1 0.5312 +1 1 0.5625 +1 1 0.5938 +1 1 0.625 +1 1 0.6562 +1 1 0.6875 +1 1 0.7188 +1 1 0.75 +1 1 0.7812 +1 1 0.8125 +1 1 0.8438 +1 1 0.875 +1 1 0.9062 +1 1 0.9375 +1 1 0.9688 +1 1 1 + + + + + Output Scaling - only used for full-range signals + 0.06256109481915934 + 0.91886608015640270 + 0. + 1. + + diff --git a/tests/data/files/clf/smpte_only/illegal/id_bad_value.clf b/tests/data/files/clf/smpte_only/illegal/id_bad_value.clf new file mode 100644 index 000000000..fa425160e --- /dev/null +++ b/tests/data/files/clf/smpte_only/illegal/id_bad_value.clf @@ -0,0 +1,25 @@ + + + 3bae2da8 + The Id element does not adhere to the ST 2136-1 formatting. + CIE-XYZ D65 to CIELAB L*, a*, b* (scaled by 1/100, neutrals at 0.0 chroma) + CIE-XYZ, D65 white (scaled [0,1]) + CIELAB L*, a*, b* (scaled by 1/100, neutrals at 0.0 chroma) + + + 1.052126639 0.000000000 0.000000000 + 0.000000000 1.000000000 0.000000000 + 0.000000000 0.000000000 0.918224951 + + + + + + + + 0.00000000 1.00000000 0.00000000 + 4.31034483 -4.31034483 0.00000000 + 0.00000000 1.72413793 -1.72413793 + + + diff --git a/tests/data/files/clf/smpte_only/illegal/process_list_higher_ns_version.clf b/tests/data/files/clf/smpte_only/illegal/process_list_higher_ns_version.clf new file mode 100644 index 000000000..eeea9dc8c --- /dev/null +++ b/tests/data/files/clf/smpte_only/illegal/process_list_higher_ns_version.clf @@ -0,0 +1,11 @@ + + + The xmlns is newer than the max supported version. + + + 3.24000 -1.53700 -0.49850 +-0.96930 1.87600 0.04156 + 0.05560 -0.20400 1.05730 + + + \ No newline at end of file diff --git a/tests/data/files/clf/smpte_only/namespaces.clf b/tests/data/files/clf/smpte_only/namespaces.clf new file mode 100644 index 000000000..54670bb8f --- /dev/null +++ b/tests/data/files/clf/smpte_only/namespaces.clf @@ -0,0 +1,14 @@ + + + + Example CLF file using namespaces. + + + A tiny 2-sample RGB LUT1D. + 0 0 0 1 1 1 + + diff --git a/tests/data/files/clf/tabulation_support.clf b/tests/data/files/clf/tabulation_support.clf index 0411ece76..4d0c566d4 100644 --- a/tests/data/files/clf/tabulation_support.clf +++ b/tests/data/files/clf/tabulation_support.clf @@ -1,5 +1,5 @@ - + Test that tabs work as separators diff --git a/tests/data/files/clf/xyz_to_rgb.clf b/tests/data/files/clf/xyz_to_rgb.clf index 14cf13ddb..dbe21b44c 100644 --- a/tests/data/files/clf/xyz_to_rgb.clf +++ b/tests/data/files/clf/xyz_to_rgb.clf @@ -1,5 +1,5 @@ - + Example with a Matrix and Lut1D XYZ to sRGB matrix diff --git a/tests/data/files/process_list_conflicting_versions.ctf b/tests/data/files/process_list_conflicting_versions.ctf new file mode 100644 index 000000000..820cf4043 --- /dev/null +++ b/tests/data/files/process_list_conflicting_versions.ctf @@ -0,0 +1,12 @@ + + + Not allowed to use the CLF / ST 2136-1 namespace in a CTF file. + + XYZ to sRGB matrix + + 3.24000 -1.53700 -0.49850 +-0.96930 1.87600 0.04156 + 0.05560 -0.20400 1.05730 + + + diff --git a/tests/data/files/reference_nested_2.ctf b/tests/data/files/reference_nested_2.ctf index b045d2e1d..1860bfd43 100644 --- a/tests/data/files/reference_nested_2.ctf +++ b/tests/data/files/reference_nested_2.ctf @@ -1,5 +1,5 @@ - + diff --git a/tests/data/files/reference_one_matrix.ctf b/tests/data/files/reference_one_matrix.ctf index de574c139..d3f2cb6ba 100644 --- a/tests/data/files/reference_one_matrix.ctf +++ b/tests/data/files/reference_one_matrix.ctf @@ -1,5 +1,5 @@ - + diff --git a/tests/data/files/references_same_twice.ctf b/tests/data/files/references_same_twice.ctf index 25b9036d0..731fe7c85 100644 --- a/tests/data/files/references_same_twice.ctf +++ b/tests/data/files/references_same_twice.ctf @@ -1,5 +1,5 @@ - - + + diff --git a/tests/python/GroupTransformTest.py b/tests/python/GroupTransformTest.py index 0b4e47da6..cf3820cb3 100644 --- a/tests/python/GroupTransformTest.py +++ b/tests/python/GroupTransformTest.py @@ -162,7 +162,7 @@ def test_write_clf(self): self.assertEqual(grp.write(formatName='Academy/ASC Common LUT Format', config=config), """ - + Sample clf file. Sample matrix. diff --git a/tests/python/ProcessorTest.py b/tests/python/ProcessorTest.py index 2a989333e..59ee32df2 100644 --- a/tests/python/ProcessorTest.py +++ b/tests/python/ProcessorTest.py @@ -50,7 +50,7 @@ def test_cache_id(self): # Make the transform dynamic. ec.makeContrastDynamic() p = cfg.getProcessor(ec) - self.assertEqual(p.getCacheID(), '818420192074e6466468d59c9ea38667') + self.assertEqual(p.getCacheID(), '6468d59c-9ea3-8667-8184-20192074e646') def test_create_group_transform(self): # Test createGroupTransform() function.