Showing preview only (9,587K chars total). Download the full file or copy to clipboard to get everything.
Repository: patriciogonzalezvivo/ofxFX
Branch: master
Commit: 811236fc6e4b
Files: 185
Total size: 9.1 MB
Directory structure:
gitextract_jhw_wgc3/
├── .gitignore
├── README.md
├── example-conway/
│ ├── Makefile
│ ├── Project.xcconfig
│ ├── addons.make
│ ├── config.make
│ ├── example-conway.sln
│ ├── example-conway.vcxproj
│ ├── example-conway.vcxproj.filters
│ ├── example-conway.vcxproj.user
│ ├── example-conway.xcodeproj/
│ │ ├── project.pbxproj
│ │ └── xcshareddata/
│ │ └── xcschemes/
│ │ ├── example-conway Debug.xcscheme
│ │ └── example-conway Release.xcscheme
│ ├── icon.rc
│ ├── openFrameworks-Info.plist
│ └── src/
│ ├── main.cpp
│ ├── testApp.cpp
│ └── testApp.h
├── example-filters/
│ ├── Makefile
│ ├── Project.xcconfig
│ ├── addons.make
│ ├── bin/
│ │ └── data/
│ │ └── LUTs/
│ │ ├── Brannan.cube
│ │ ├── Earlybird.cube
│ │ ├── Gotham.cube
│ │ ├── Hefe.cube
│ │ ├── Inkwell.cube
│ │ ├── Lomo-fi.cube
│ │ ├── Lord Kelvin.cube
│ │ ├── Nashville.cube
│ │ ├── Sutro.cube
│ │ ├── Toaster.cube
│ │ ├── Walden.cube
│ │ └── X Pro II.cube
│ ├── config.make
│ ├── example-filters.sln
│ ├── example-filters.vcxproj
│ ├── example-filters.vcxproj.filters
│ ├── example-filters.vcxproj.user
│ ├── example-filters.xcodeproj/
│ │ ├── project.pbxproj
│ │ └── xcshareddata/
│ │ └── xcschemes/
│ │ ├── example-filters Debug.xcscheme
│ │ └── example-filters Release.xcscheme
│ ├── icon.rc
│ ├── openFrameworks-Info.plist
│ └── src/
│ ├── .!10355!ofApp.cpp
│ ├── .!10390!ofApp.cpp
│ ├── .!10421!ofApp.cpp
│ ├── .!10452!ofApp.cpp
│ ├── main.cpp
│ ├── ofApp.cpp
│ ├── ofApp.cpp.bak
│ └── ofApp.h
├── example-grayscott/
│ ├── Makefile
│ ├── Project.xcconfig
│ ├── addons.make
│ ├── config.make
│ ├── example-grayscott.sln
│ ├── example-grayscott.vcxproj
│ ├── example-grayscott.vcxproj.filters
│ ├── example-grayscott.vcxproj.user
│ ├── example-grayscott.xcodeproj/
│ │ ├── project.pbxproj
│ │ └── xcshareddata/
│ │ └── xcschemes/
│ │ ├── example-grayscott Debug.xcscheme
│ │ └── example-grayscott Release.xcscheme
│ ├── icon.rc
│ ├── openFrameworks-Info.plist
│ └── src/
│ ├── main.cpp
│ ├── ofApp.cpp
│ ├── ofApp.cpp.bak
│ └── ofApp.h
├── example-sandbox/
│ ├── Makefile
│ ├── Project.xcconfig
│ ├── addons.make
│ ├── config.make
│ ├── example-sandbox.sln
│ ├── example-sandbox.vcxproj
│ ├── example-sandbox.vcxproj.filters
│ ├── example-sandbox.vcxproj.user
│ ├── example-sandbox.xcodeproj/
│ │ ├── project.pbxproj
│ │ └── xcshareddata/
│ │ └── xcschemes/
│ │ ├── example-sandbox Debug.xcscheme
│ │ └── example-sandbox Release.xcscheme
│ ├── icon.rc
│ ├── openFrameworks-Info.plist
│ └── src/
│ ├── main.cpp
│ ├── ofApp.cpp
│ ├── ofApp.cpp.bak
│ └── ofApp.h
├── example-waterRipples/
│ ├── Makefile
│ ├── Project.xcconfig
│ ├── addons.make
│ ├── config.make
│ ├── example-waterRipples.sln
│ ├── example-waterRipples.vcxproj
│ ├── example-waterRipples.vcxproj.filters
│ ├── example-waterRipples.vcxproj.user
│ ├── example-waterRipples.xcodeproj/
│ │ ├── project.pbxproj
│ │ └── xcshareddata/
│ │ └── xcschemes/
│ │ ├── example-waterRipples Debug.xcscheme
│ │ └── example-waterRipples Release.xcscheme
│ ├── icon.rc
│ ├── openFrameworks-Info.plist
│ └── src/
│ ├── main.cpp
│ ├── ofApp.cpp
│ ├── ofApp.cpp.bak
│ └── ofApp.h
├── example-watercolors/
│ ├── Makefile
│ ├── Project.xcconfig
│ ├── addons.make
│ ├── bin/
│ │ └── data/
│ │ └── .gitkeep
│ ├── config.make
│ ├── example-watercolors.sln
│ ├── example-watercolors.vcxproj
│ ├── example-watercolors.vcxproj.filters
│ ├── example-watercolors.vcxproj.user
│ ├── example-watercolors.xcodeproj/
│ │ ├── project.pbxproj
│ │ └── xcshareddata/
│ │ └── xcschemes/
│ │ ├── example-watercolors Debug.xcscheme
│ │ └── example-watercolors Release.xcscheme
│ ├── icon.rc
│ ├── openFrameworks-Info.plist
│ └── src/
│ ├── main.cpp
│ ├── ofApp.cpp
│ ├── ofApp.cpp.bak
│ └── ofApp.h
├── license.md
├── src/
│ ├── composers/
│ │ ├── ofxBlend.h
│ │ ├── ofxClone.h
│ │ ├── ofxMask.h
│ │ └── ofxMultiTexture.h
│ ├── filters/
│ │ ├── ofxBarrelChromaAb.h
│ │ ├── ofxBloom.h
│ │ ├── ofxBlur.h
│ │ ├── ofxBokeh.h
│ │ ├── ofxChromaAb.h
│ │ ├── ofxChromaGlitch.h
│ │ ├── ofxContrast.h
│ │ ├── ofxGaussianBlur.h
│ │ ├── ofxGlow.h
│ │ ├── ofxGrayscale.h
│ │ ├── ofxInverse.h
│ │ ├── ofxLUT.h
│ │ ├── ofxMedian.h
│ │ └── ofxOldTv.h
│ ├── generative/
│ │ ├── ofxFBM.h
│ │ ├── ofxFire.h
│ │ ├── ofxGrayScott.h
│ │ ├── ofxNoise.h
│ │ └── ofxTint.h
│ ├── ofxFX.h
│ ├── ofxFXObject.cpp
│ ├── ofxFXObject.h
│ ├── ofxSwapBuffer.h
│ └── operations/
│ ├── ofxAbsDiff.h
│ ├── ofxBounce.h
│ ├── ofxDisplacePixels.h
│ ├── ofxEdgeDetect.h
│ ├── ofxFlow.h
│ ├── ofxNormals.h
│ ├── ofxRipples.h
│ ├── ofxSubstract.h
│ └── ofxThreshold.h
├── test-buffer-copying/
│ ├── addons.make
│ ├── bin/
│ │ └── data/
│ │ └── shadersGL3/
│ │ ├── shader.frag
│ │ └── shader.vert
│ └── src/
│ ├── main.cpp
│ ├── ofApp.cpp
│ ├── ofApp.cpp.bak
│ ├── ofApp.h
│ └── ofxPassthrough.h
└── test-shader-load/
├── Makefile
├── Project.xcconfig
├── addons.make
├── bin/
│ └── data/
│ ├── blur_gl2.frag
│ └── blur_gl3.frag
├── config.make
├── icon.rc
├── openFrameworks-Info.plist
├── src/
│ ├── main.cpp
│ ├── ofApp.cpp
│ ├── ofApp.cpp.bak
│ ├── ofApp.h
│ └── ofxFileBlur.h
├── test-shader-load.sln
├── test-shader-load.vcxproj
├── test-shader-load.vcxproj.filters
├── test-shader-load.vcxproj.user
└── test-shader-load.xcodeproj/
├── project.pbxproj
└── xcshareddata/
└── xcschemes/
├── test-shader-load Debug.xcscheme
└── test-shader-load Release.xcscheme
================================================
FILE CONTENTS
================================================
================================================
FILE: .gitignore
================================================
# Some general ignore patterns
build/
obj/
*.o
Debug*/
Release*/
*.mode*
*.app/
*.pyc
.svn/
#XCode
*.pbxuser
*.perspective
*.perspectivev3
*.mode1v3
*.mode2v3
#XCode 4
xcuserdata
*.xcworkspace
#Code::Blocks
*.depend
*.layout
#Visual Studio
*.sdf
*.opensdf
*.suo
ipch/
#Eclipse
.metadata
local.properties
.externalToolBuilders
# OS-specific ignore patterns
#Linux
*~
# KDE
.directory
#OSX
.DS_Store
*.swp
*~.nib
# Thumbnails
._*
#Windows
# Windows image file caches
Thumbs.db
# Folder config file
Desktop.ini
#Android
.csettings
/libs/openFrameworksCompiled/project/android/paths.make
# Miscellaneous
.mailmap
/week1-movingRec/bin/data/park6/
/week1-movingRec/bin/data/park5/
/week1-movingRec/bin/data/park4/
/week1-movingRec/bin/data/park3/
/week1-movingRec/bin/data/park2/
/week1-movingRec/bin/data/park1/
/week1-movingRec/bin/data/Archive.zip
================================================
FILE: README.md
================================================

I [start this addon](https://github.com/patriciogonzalezvivo/ofxFX) while I was working on [Efecto Mariposa](http://patriciogonzalezvivo.com/2012/eden/). Is the result of adapting different well know algorithms to GLSL Shaders for openFrameworks.
An important feature of [**ofxFX**](https://github.com/patriciogonzalezvivo/ofxFX) is it ability for fast-prototyping mixing different classes using the `<<` operator.
[**ofxFX**](https://github.com/patriciogonzalezvivo/ofxFX) was originally develop for GLSL 120 but now is been edited to support openGL ES and openGL 2.0 thanks to the new programable render of openFrameworks. [Oliver](https://github.com/OliverUv) is giving me a hand with that. Anybody else that want to collaborate is wellcome.
## ofxFXObject ##
It´s the parent class of all the other effect. If you want to make a new filter you may want to start looking at the ofxFXObject.h .
The structure it´s easy.
1. Constructor: here it´s necessary to set three vital variables:
- ```int passes```: the number of passes or itineration of the main ping pong betweens FBO´s
- ```int internalFormat```: if it use GL_RGB, GL_RGBA, GL_RGB16f, GL_RGBA16f, GL_RGB32f, GL_RGBA32f, etc...
- ```string fragShader```: it´s the code of the shader. Note that some changes have to be made in order to fill everything on a string
2. ```allocate(width,height,GL_RGBA)```: This usually it´s no need to be re-define. It´s basically allocate the FBO´s and loads the shader by using injectShader();
3. ```setCode(string fragContent)```: here is where the shaders are loaded. See the example below.
4. ```begin(int texN)``` and ```end(int texN)```: remember nTextures variable? you can passthrough information to it by using this end() and begin() and giving the argument the number of texture you want to open. This texture can be access from the shader by the ```uniform sample2DRect tex0``` or ```tex1``` or ```tex2``` and so on.
4.1. ```<<``` and ```setTexture(texture-like, num=0)``` if you have an FBO, a texture, an ofxFXObject, or something similar, you can use this function to write it to ```tex0```, ```tex1```, etc (as indicated by the num argument). ```<<``` always writes to ```tex0```.
4.2. If you're making a multi-pass shader, you can access to the previously rendered frame with ```uniform sample2DRect backbuffer``` in your shader. This will also contain the information from ```tex0``` on the first pass.
5. ```update()```: This is the core of the class, where the magic happens. If you check for the ```ofxFXObject::update()``` you will see how the tex's, the backbuffer and other default uniforms variables (time, mouse, resolution) are loaded. **NOTE:** If you are using the ```<<``` operator you **don't** need to update. It's done automatically for you
6. ```draw(x,y,w,h)```: After all you definitely want to look at it.

### Mix them all ###
ofxFXObject have some handy operators that let you combine them really easily.
At the Mix´s Example you will find how to do it. Basicaly it´s somethin like this
~~~
ofxFXObject objA;
ofxGrayScott objB;
ofxBlur blur;
objA.allocate(width, height);
objB.allocate(width, height);
blur.allocate(width, height);
...
blur << (objB << objA);
...
blur.draw();
~~~
<iframe src="http://player.vimeo.com/video/35230297" width="575" height="453" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<iframe src="http://player.vimeo.com/video/34304485" width="575" height="431" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<iframe src="http://player.vimeo.com/video/30684308" width="575" height="429" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<iframe src="http://player.vimeo.com/video/29887776" width="575" height="431" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<iframe src="http://player.vimeo.com/video/29896245" width="575" height="431" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<iframe src="http://player.vimeo.com/video/29894099" width="575" height="431" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
================================================
FILE: example-conway/Makefile
================================================
# Attempt to load a config.make file.
# If none is found, project defaults in config.project.make will be used.
ifneq ($(wildcard config.make),)
include config.make
endif
# make sure the the OF_ROOT location is defined
ifndef OF_ROOT
OF_ROOT=$(realpath ../../..)
endif
# call the project makefile!
include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk
================================================
FILE: example-conway/Project.xcconfig
================================================
//THE PATH TO THE ROOT OF OUR OF PATH RELATIVE TO THIS PROJECT.
//THIS NEEDS TO BE DEFINED BEFORE CoreOF.xcconfig IS INCLUDED
OF_PATH = ../../..
//THIS HAS ALL THE HEADER AND LIBS FOR OF CORE
#include "../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig"
//ICONS - NEW IN 0072
ICON_NAME_DEBUG = icon-debug.icns
ICON_NAME_RELEASE = icon.icns
ICON_FILE_PATH = $(OF_PATH)/libs/openFrameworksCompiled/project/osx/
//IF YOU WANT AN APP TO HAVE A CUSTOM ICON - PUT THEM IN YOUR DATA FOLDER AND CHANGE ICON_FILE_PATH to:
//ICON_FILE_PATH = bin/data/
OTHER_LDFLAGS = $(OF_CORE_LIBS) $(OF_CORE_FRAMEWORKS)
HEADER_SEARCH_PATHS = $(OF_CORE_HEADERS)
================================================
FILE: example-conway/addons.make
================================================
ofxFX
================================================
FILE: example-conway/config.make
================================================
################################################################################
# CONFIGURE PROJECT MAKEFILE (optional)
# This file is where we make project specific configurations.
################################################################################
################################################################################
# OF ROOT
# The location of your root openFrameworks installation
# (default) OF_ROOT = ../../..
################################################################################
# OF_ROOT = ../../..
################################################################################
# PROJECT ROOT
# The location of the project - a starting place for searching for files
# (default) PROJECT_ROOT = . (this directory)
#
################################################################################
# PROJECT_ROOT = .
################################################################################
# PROJECT SPECIFIC CHECKS
# This is a project defined section to create internal makefile flags to
# conditionally enable or disable the addition of various features within
# this makefile. For instance, if you want to make changes based on whether
# GTK is installed, one might test that here and create a variable to check.
################################################################################
# None
################################################################################
# PROJECT EXTERNAL SOURCE PATHS
# These are fully qualified paths that are not within the PROJECT_ROOT folder.
# Like source folders in the PROJECT_ROOT, these paths are subject to
# exlclusion via the PROJECT_EXLCUSIONS list.
#
# (default) PROJECT_EXTERNAL_SOURCE_PATHS = (blank)
#
# Note: Leave a leading space when adding list items with the += operator
################################################################################
# PROJECT_EXTERNAL_SOURCE_PATHS =
################################################################################
# PROJECT EXCLUSIONS
# These makefiles assume that all folders in your current project directory
# and any listed in the PROJECT_EXTERNAL_SOURCH_PATHS are are valid locations
# to look for source code. The any folders or files that match any of the
# items in the PROJECT_EXCLUSIONS list below will be ignored.
#
# Each item in the PROJECT_EXCLUSIONS list will be treated as a complete
# string unless teh user adds a wildcard (%) operator to match subdirectories.
# GNU make only allows one wildcard for matching. The second wildcard (%) is
# treated literally.
#
# (default) PROJECT_EXCLUSIONS = (blank)
#
# Will automatically exclude the following:
#
# $(PROJECT_ROOT)/bin%
# $(PROJECT_ROOT)/obj%
# $(PROJECT_ROOT)/%.xcodeproj
#
# Note: Leave a leading space when adding list items with the += operator
################################################################################
# PROJECT_EXCLUSIONS =
################################################################################
# PROJECT LINKER FLAGS
# These flags will be sent to the linker when compiling the executable.
#
# (default) PROJECT_LDFLAGS = -Wl,-rpath=./libs
#
# Note: Leave a leading space when adding list items with the += operator
################################################################################
# Currently, shared libraries that are needed are copied to the
# $(PROJECT_ROOT)/bin/libs directory. The following LDFLAGS tell the linker to
# add a runtime path to search for those shared libraries, since they aren't
# incorporated directly into the final executable application binary.
# TODO: should this be a default setting?
# PROJECT_LDFLAGS=-Wl,-rpath=./libs
################################################################################
# PROJECT DEFINES
# Create a space-delimited list of DEFINES. The list will be converted into
# CFLAGS with the "-D" flag later in the makefile.
#
# (default) PROJECT_DEFINES = (blank)
#
# Note: Leave a leading space when adding list items with the += operator
################################################################################
# PROJECT_DEFINES =
################################################################################
# PROJECT CFLAGS
# This is a list of fully qualified CFLAGS required when compiling for this
# project. These CFLAGS will be used IN ADDITION TO the PLATFORM_CFLAGS
# defined in your platform specific core configuration files. These flags are
# presented to the compiler BEFORE the PROJECT_OPTIMIZATION_CFLAGS below.
#
# (default) PROJECT_CFLAGS = (blank)
#
# Note: Before adding PROJECT_CFLAGS, note that the PLATFORM_CFLAGS defined in
# your platform specific configuration file will be applied by default and
# further flags here may not be needed.
#
# Note: Leave a leading space when adding list items with the += operator
################################################################################
# PROJECT_CFLAGS =
################################################################################
# PROJECT OPTIMIZATION CFLAGS
# These are lists of CFLAGS that are target-specific. While any flags could
# be conditionally added, they are usually limited to optimization flags.
# These flags are added BEFORE the PROJECT_CFLAGS.
#
# PROJECT_OPTIMIZATION_CFLAGS_RELEASE flags are only applied to RELEASE targets.
#
# (default) PROJECT_OPTIMIZATION_CFLAGS_RELEASE = (blank)
#
# PROJECT_OPTIMIZATION_CFLAGS_DEBUG flags are only applied to DEBUG targets.
#
# (default) PROJECT_OPTIMIZATION_CFLAGS_DEBUG = (blank)
#
# Note: Before adding PROJECT_OPTIMIZATION_CFLAGS, please note that the
# PLATFORM_OPTIMIZATION_CFLAGS defined in your platform specific configuration
# file will be applied by default and further optimization flags here may not
# be needed.
#
# Note: Leave a leading space when adding list items with the += operator
################################################################################
# PROJECT_OPTIMIZATION_CFLAGS_RELEASE =
# PROJECT_OPTIMIZATION_CFLAGS_DEBUG =
################################################################################
# PROJECT COMPILERS
# Custom compilers can be set for CC and CXX
# (default) PROJECT_CXX = (blank)
# (default) PROJECT_CC = (blank)
# Note: Leave a leading space when adding list items with the += operator
################################################################################
# PROJECT_CXX =
# PROJECT_CC =
================================================
FILE: example-conway/example-conway.sln
================================================
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example-conway", "example-conway.vcxproj", "{7FD42DF7-442E-479A-BA76-D0022F99702A}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "openframeworksLib", "..\..\..\libs\openFrameworksCompiled\project\vs\openframeworksLib.vcxproj", "{5837595D-ACA9-485C-8E76-729040CE4B0B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Win32 = Debug|Win32
Debug|x64 = Debug|x64
Release|Win32 = Release|Win32
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|Win32.ActiveCfg = Debug|Win32
{7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|Win32.Build.0 = Debug|Win32
{7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|x64.ActiveCfg = Debug|x64
{7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|x64.Build.0 = Debug|x64
{7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|Win32.ActiveCfg = Release|Win32
{7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|Win32.Build.0 = Release|Win32
{7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|x64.ActiveCfg = Release|x64
{7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|x64.Build.0 = Release|x64
{5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|Win32.ActiveCfg = Debug|Win32
{5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|Win32.Build.0 = Debug|Win32
{5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|x64.ActiveCfg = Debug|x64
{5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|x64.Build.0 = Debug|x64
{5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|Win32.ActiveCfg = Release|Win32
{5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|Win32.Build.0 = Release|Win32
{5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|x64.ActiveCfg = Release|x64
{5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
================================================
FILE: example-conway/example-conway.vcxproj
================================================
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{7FD42DF7-442E-479A-BA76-D0022F99702A}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>example-conway</RootNamespace>
<WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v141</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v141</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<CharacterSet>Unicode</CharacterSet>
<WholeProgramOptimization>true</WholeProgramOptimization>
<PlatformToolset>v141</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<CharacterSet>Unicode</CharacterSet>
<WholeProgramOptimization>true</WholeProgramOptimization>
<PlatformToolset>v141</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="..\..\..\libs\openFrameworksCompiled\project\vs\openFrameworksRelease.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="..\..\..\libs\openFrameworksCompiled\project\vs\openFrameworksRelease.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="..\..\..\libs\openFrameworksCompiled\project\vs\openFrameworksDebug.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="..\..\..\libs\openFrameworksCompiled\project\vs\openFrameworksDebug.props" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<OutDir>bin\</OutDir>
<IntDir>obj\$(Configuration)\</IntDir>
<TargetName>$(ProjectName)_debug</TargetName>
<LinkIncremental>true</LinkIncremental>
<GenerateManifest>true</GenerateManifest>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<OutDir>bin\</OutDir>
<IntDir>obj\$(Configuration)\</IntDir>
<TargetName>$(ProjectName)_debug</TargetName>
<LinkIncremental>true</LinkIncremental>
<GenerateManifest>true</GenerateManifest>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<OutDir>bin\</OutDir>
<IntDir>obj\$(Configuration)\</IntDir>
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<OutDir>bin\</OutDir>
<IntDir>obj\$(Configuration)\</IntDir>
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<Optimization>Disabled</Optimization>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<WarningLevel>Level3</WarningLevel>
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories);src;..\..\..\addons\ofxFX\src;..\..\..\addons\ofxFX\src\composers;..\..\..\addons\ofxFX\src\filters;..\..\..\addons\ofxFX\src\generative;..\..\..\addons\ofxFX\src\operations</AdditionalIncludeDirectories>
<CompileAs>CompileAsCpp</CompileAs>
</ClCompile>
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SubSystem>Console</SubSystem>
<RandomizedBaseAddress>false</RandomizedBaseAddress>
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
</Link>
<PostBuildEvent />
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<Optimization>Disabled</Optimization>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<WarningLevel>Level3</WarningLevel>
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories);src;..\..\..\addons\ofxFX\src;..\..\..\addons\ofxFX\src\composers;..\..\..\addons\ofxFX\src\filters;..\..\..\addons\ofxFX\src\generative;..\..\..\addons\ofxFX\src\operations</AdditionalIncludeDirectories>
<CompileAs>CompileAsCpp</CompileAs>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
</ClCompile>
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SubSystem>Console</SubSystem>
<RandomizedBaseAddress>false</RandomizedBaseAddress>
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
</Link>
<PostBuildEvent />
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<WholeProgramOptimization>false</WholeProgramOptimization>
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<WarningLevel>Level3</WarningLevel>
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories);src;..\..\..\addons\ofxFX\src;..\..\..\addons\ofxFX\src\composers;..\..\..\addons\ofxFX\src\filters;..\..\..\addons\ofxFX\src\generative;..\..\..\addons\ofxFX\src\operations</AdditionalIncludeDirectories>
<CompileAs>CompileAsCpp</CompileAs>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
</ClCompile>
<Link>
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
<GenerateDebugInformation>false</GenerateDebugInformation>
<SubSystem>Console</SubSystem>
<OptimizeReferences>true</OptimizeReferences>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<RandomizedBaseAddress>false</RandomizedBaseAddress>
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
</Link>
<PostBuildEvent />
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<WholeProgramOptimization>false</WholeProgramOptimization>
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<WarningLevel>Level3</WarningLevel>
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories);src;..\..\..\addons\ofxFX\src;..\..\..\addons\ofxFX\src\composers;..\..\..\addons\ofxFX\src\filters;..\..\..\addons\ofxFX\src\generative;..\..\..\addons\ofxFX\src\operations</AdditionalIncludeDirectories>
<CompileAs>CompileAsCpp</CompileAs>
</ClCompile>
<Link>
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
<GenerateDebugInformation>false</GenerateDebugInformation>
<SubSystem>Console</SubSystem>
<OptimizeReferences>true</OptimizeReferences>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<RandomizedBaseAddress>false</RandomizedBaseAddress>
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
</Link>
<PostBuildEvent />
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="src\main.cpp" />
<ClCompile Include="src\testApp.cpp" />
<ClCompile Include="..\..\..\addons\ofxFX\src\ofxFXObject.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\testApp.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\composers\ofxBlend.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\composers\ofxClone.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\composers\ofxMask.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\composers\ofxMultiTexture.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxBarrelChromaAb.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxBloom.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxBlur.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxBokeh.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxChromaAb.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxChromaGlitch.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxContrast.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxGaussianBlur.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxGlow.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxGrayscale.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxInverse.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxLUT.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxMedian.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxOldTv.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\generative\ofxFBM.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\generative\ofxFire.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\generative\ofxGrayScott.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\generative\ofxNoise.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\generative\ofxTint.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\ofxFX.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\ofxFXObject.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\ofxSwapBuffer.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\operations\ofxAbsDiff.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\operations\ofxBounce.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\operations\ofxDisplacePixels.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\operations\ofxEdgeDetect.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\operations\ofxFlow.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\operations\ofxNormals.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\operations\ofxRipples.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\operations\ofxSubstract.h" />
<ClInclude Include="..\..\..\addons\ofxFX\src\operations\ofxThreshold.h" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(OF_ROOT)\libs\openFrameworksCompiled\project\vs\openframeworksLib.vcxproj">
<Project>{5837595d-aca9-485c-8e76-729040ce4b0b}</Project>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="icon.rc">
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">/D_DEBUG %(AdditionalOptions)</AdditionalOptions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">/D_DEBUG %(AdditionalOptions)</AdditionalOptions>
<AdditionalIncludeDirectories>$(OF_ROOT)\libs\openFrameworksCompiled\project\vs</AdditionalIncludeDirectories>
</ResourceCompile>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ProjectExtensions>
<VisualStudio>
<UserProperties RESOURCE_FILE="icon.rc" />
</VisualStudio>
</ProjectExtensions>
</Project>
================================================
FILE: example-conway/example-conway.vcxproj.filters
================================================
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<ClCompile Include="src\main.cpp">
<Filter>src</Filter>
</ClCompile>
<ClCompile Include="src\testApp.cpp">
<Filter>src</Filter>
</ClCompile>
<ClCompile Include="..\..\..\addons\ofxFX\src\ofxFXObject.cpp">
<Filter>addons\ofxFX\src</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<Filter Include="src">
<UniqueIdentifier>{d8376475-7454-4a24-b08a-aac121d3ad6f}</UniqueIdentifier>
</Filter>
<Filter Include="addons">
<UniqueIdentifier>{71834F65-F3A9-211E-73B8-DC85}</UniqueIdentifier>
</Filter>
<Filter Include="addons\ofxFX">
<UniqueIdentifier>{54067F17-D691-C8D5-A60C-8B15}</UniqueIdentifier>
</Filter>
<Filter Include="addons\ofxFX\src">
<UniqueIdentifier>{97D4701D-86BD-D02B-CE02-0C34}</UniqueIdentifier>
</Filter>
<Filter Include="addons\ofxFX\src\composers">
<UniqueIdentifier>{4C3B9E56-1307-1B87-A0CC-CAA5}</UniqueIdentifier>
</Filter>
<Filter Include="addons\ofxFX\src\filters">
<UniqueIdentifier>{EEFEFA5B-9FF5-F358-2F4A-BC5A}</UniqueIdentifier>
</Filter>
<Filter Include="addons\ofxFX\src\generative">
<UniqueIdentifier>{47CDF68F-3CB9-C2A3-96DC-EE22}</UniqueIdentifier>
</Filter>
<Filter Include="addons\ofxFX\src\operations">
<UniqueIdentifier>{98E7BD88-03E0-D5B4-C028-9281}</UniqueIdentifier>
</Filter>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\testApp.h">
<Filter>src</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\composers\ofxBlend.h">
<Filter>addons\ofxFX\src\composers</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\composers\ofxClone.h">
<Filter>addons\ofxFX\src\composers</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\composers\ofxMask.h">
<Filter>addons\ofxFX\src\composers</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\composers\ofxMultiTexture.h">
<Filter>addons\ofxFX\src\composers</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxBarrelChromaAb.h">
<Filter>addons\ofxFX\src\filters</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxBloom.h">
<Filter>addons\ofxFX\src\filters</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxBlur.h">
<Filter>addons\ofxFX\src\filters</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxBokeh.h">
<Filter>addons\ofxFX\src\filters</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxChromaAb.h">
<Filter>addons\ofxFX\src\filters</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxChromaGlitch.h">
<Filter>addons\ofxFX\src\filters</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxContrast.h">
<Filter>addons\ofxFX\src\filters</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxGaussianBlur.h">
<Filter>addons\ofxFX\src\filters</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxGlow.h">
<Filter>addons\ofxFX\src\filters</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxGrayscale.h">
<Filter>addons\ofxFX\src\filters</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxInverse.h">
<Filter>addons\ofxFX\src\filters</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxLUT.h">
<Filter>addons\ofxFX\src\filters</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxMedian.h">
<Filter>addons\ofxFX\src\filters</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\filters\ofxOldTv.h">
<Filter>addons\ofxFX\src\filters</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\generative\ofxFBM.h">
<Filter>addons\ofxFX\src\generative</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\generative\ofxFire.h">
<Filter>addons\ofxFX\src\generative</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\generative\ofxGrayScott.h">
<Filter>addons\ofxFX\src\generative</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\generative\ofxNoise.h">
<Filter>addons\ofxFX\src\generative</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\generative\ofxTint.h">
<Filter>addons\ofxFX\src\generative</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\ofxFX.h">
<Filter>addons\ofxFX\src</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\ofxFXObject.h">
<Filter>addons\ofxFX\src</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\ofxSwapBuffer.h">
<Filter>addons\ofxFX\src</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\operations\ofxAbsDiff.h">
<Filter>addons\ofxFX\src\operations</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\operations\ofxBounce.h">
<Filter>addons\ofxFX\src\operations</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\operations\ofxDisplacePixels.h">
<Filter>addons\ofxFX\src\operations</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\operations\ofxEdgeDetect.h">
<Filter>addons\ofxFX\src\operations</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\operations\ofxFlow.h">
<Filter>addons\ofxFX\src\operations</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\operations\ofxNormals.h">
<Filter>addons\ofxFX\src\operations</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\operations\ofxRipples.h">
<Filter>addons\ofxFX\src\operations</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\operations\ofxSubstract.h">
<Filter>addons\ofxFX\src\operations</Filter>
</ClInclude>
<ClInclude Include="..\..\..\addons\ofxFX\src\operations\ofxThreshold.h">
<Filter>addons\ofxFX\src\operations</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="icon.rc" />
</ItemGroup>
</Project>
================================================
FILE: example-conway/example-conway.vcxproj.user
================================================
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LocalDebuggerWorkingDirectory>$(ProjectDir)/bin</LocalDebuggerWorkingDirectory>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<LocalDebuggerWorkingDirectory>$(ProjectDir)/bin</LocalDebuggerWorkingDirectory>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LocalDebuggerWorkingDirectory>$(ProjectDir)/bin</LocalDebuggerWorkingDirectory>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<LocalDebuggerWorkingDirectory>$(ProjectDir)/bin</LocalDebuggerWorkingDirectory>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
</Project>
================================================
FILE: example-conway/example-conway.xcodeproj/project.pbxproj
================================================
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
29D734F0DDECC8C5978185D7 /* testApp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00A1BFCBB38848AD0E0C8539 /* testApp.cpp */; };
5355E99D8BBC71222AA2B9FD /* ofxFXObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4CF06DA01D9A4561A5001B28 /* ofxFXObject.cpp */; };
E4328149138ABC9F0047C5CB /* openFrameworksDebug.a in Frameworks */ = {isa = PBXBuildFile; fileRef = E4328148138ABC890047C5CB /* openFrameworksDebug.a */; };
E4B69E200A3A1BDC003C02F2 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E4B69E1D0A3A1BDC003C02F2 /* main.cpp */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
E4328147138ABC890047C5CB /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = E4328143138ABC890047C5CB /* openFrameworksLib.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = E4B27C1510CBEB8E00536013;
remoteInfo = openFrameworks;
};
E4EEB9AB138B136A00A80321 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = E4328143138ABC890047C5CB /* openFrameworksLib.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = E4B27C1410CBEB8E00536013;
remoteInfo = openFrameworks;
};
/* End PBXContainerItemProxy section */
/* Begin PBXCopyFilesBuildPhase section */
E4C2427710CC5ABF004149E2 /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
00A1BFCBB38848AD0E0C8539 /* testApp.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = testApp.cpp; path = src/testApp.cpp; sourceTree = SOURCE_ROOT; };
0360379409DFE7926EFACB24 /* ofxFX.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxFX.h; path = ../../../addons/ofxFX/src/ofxFX.h; sourceTree = SOURCE_ROOT; };
0AB01C0F3826CAA2AE964347 /* ofxFXObject.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxFXObject.h; path = ../../../addons/ofxFX/src/ofxFXObject.h; sourceTree = SOURCE_ROOT; };
0EB7FA30228FFC0E433EE3A8 /* ofxSubstract.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxSubstract.h; path = ../../../addons/ofxFX/src/operations/ofxSubstract.h; sourceTree = SOURCE_ROOT; };
1A2ED38D79EB9CC8B3E113E4 /* ofxInverse.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxInverse.h; path = ../../../addons/ofxFX/src/filters/ofxInverse.h; sourceTree = SOURCE_ROOT; };
200F5DF5E39CFECD07DAD5C7 /* ofxContrast.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxContrast.h; path = ../../../addons/ofxFX/src/filters/ofxContrast.h; sourceTree = SOURCE_ROOT; };
22D82B140684245A264395B8 /* ofxBlur.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxBlur.h; path = ../../../addons/ofxFX/src/filters/ofxBlur.h; sourceTree = SOURCE_ROOT; };
264BD182AA1893377670C038 /* ofxBarrelChromaAb.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxBarrelChromaAb.h; path = ../../../addons/ofxFX/src/filters/ofxBarrelChromaAb.h; sourceTree = SOURCE_ROOT; };
2D129AB0F7D46B8DFCEADEDB /* testApp.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = testApp.h; path = src/testApp.h; sourceTree = SOURCE_ROOT; };
3A731B10E475E26DE2463937 /* ofxNormals.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxNormals.h; path = ../../../addons/ofxFX/src/operations/ofxNormals.h; sourceTree = SOURCE_ROOT; };
478BFF07E8302C4318515A52 /* ofxChromaGlitch.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxChromaGlitch.h; path = ../../../addons/ofxFX/src/filters/ofxChromaGlitch.h; sourceTree = SOURCE_ROOT; };
4945618E448568E991F2EC95 /* ofxBlend.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxBlend.h; path = ../../../addons/ofxFX/src/composers/ofxBlend.h; sourceTree = SOURCE_ROOT; };
4976D4D0EB5D35AAE81DE51A /* ofxFlow.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxFlow.h; path = ../../../addons/ofxFX/src/operations/ofxFlow.h; sourceTree = SOURCE_ROOT; };
4CF06DA01D9A4561A5001B28 /* ofxFXObject.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = ofxFXObject.cpp; path = ../../../addons/ofxFX/src/ofxFXObject.cpp; sourceTree = SOURCE_ROOT; };
58CDE3BE1C014BD0DC3CB32E /* ofxGrayscale.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxGrayscale.h; path = ../../../addons/ofxFX/src/filters/ofxGrayscale.h; sourceTree = SOURCE_ROOT; };
5E5EAD88DF0323D1C6109408 /* ofxOldTv.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxOldTv.h; path = ../../../addons/ofxFX/src/filters/ofxOldTv.h; sourceTree = SOURCE_ROOT; };
62BDB9F397D0AB08DD41E769 /* ofxGrayScott.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxGrayScott.h; path = ../../../addons/ofxFX/src/generative/ofxGrayScott.h; sourceTree = SOURCE_ROOT; };
63CD29B9755446A11D1068B5 /* ofxMask.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxMask.h; path = ../../../addons/ofxFX/src/composers/ofxMask.h; sourceTree = SOURCE_ROOT; };
6C3BF497C4422FA343F951A2 /* ofxMedian.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxMedian.h; path = ../../../addons/ofxFX/src/filters/ofxMedian.h; sourceTree = SOURCE_ROOT; };
782D44F4D5E4C1FD710C3716 /* ofxRipples.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxRipples.h; path = ../../../addons/ofxFX/src/operations/ofxRipples.h; sourceTree = SOURCE_ROOT; };
7A6AFA6914A5B7479FB247B6 /* ofxClone.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxClone.h; path = ../../../addons/ofxFX/src/composers/ofxClone.h; sourceTree = SOURCE_ROOT; };
7AE447E0A447B18D671811A6 /* ofxSwapBuffer.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxSwapBuffer.h; path = ../../../addons/ofxFX/src/ofxSwapBuffer.h; sourceTree = SOURCE_ROOT; };
7CCFC9B8ABF5BD21424EBF38 /* ofxDisplacePixels.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxDisplacePixels.h; path = ../../../addons/ofxFX/src/operations/ofxDisplacePixels.h; sourceTree = SOURCE_ROOT; };
7F409E745A4DFE45EC22A9CF /* ofxBokeh.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxBokeh.h; path = ../../../addons/ofxFX/src/filters/ofxBokeh.h; sourceTree = SOURCE_ROOT; };
870CDA9CB60D0BD24017A807 /* ofxBounce.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxBounce.h; path = ../../../addons/ofxFX/src/operations/ofxBounce.h; sourceTree = SOURCE_ROOT; };
8C4EF175FF0B7ED0CE6F5FE3 /* ofxNoise.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxNoise.h; path = ../../../addons/ofxFX/src/generative/ofxNoise.h; sourceTree = SOURCE_ROOT; };
8EB521E333C7B0CE4CF802B3 /* ofxFire.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxFire.h; path = ../../../addons/ofxFX/src/generative/ofxFire.h; sourceTree = SOURCE_ROOT; };
92696C363FF18AA6DFAAD969 /* ofxChromaAb.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxChromaAb.h; path = ../../../addons/ofxFX/src/filters/ofxChromaAb.h; sourceTree = SOURCE_ROOT; };
987AD08F097CB59F432D3C8A /* ofxGlow.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxGlow.h; path = ../../../addons/ofxFX/src/filters/ofxGlow.h; sourceTree = SOURCE_ROOT; };
ACE80EF2FE2F3D0A2ED1A824 /* ofxTint.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxTint.h; path = ../../../addons/ofxFX/src/generative/ofxTint.h; sourceTree = SOURCE_ROOT; };
B2311A009B3E782884BBD59F /* ofxBloom.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxBloom.h; path = ../../../addons/ofxFX/src/filters/ofxBloom.h; sourceTree = SOURCE_ROOT; };
BE08CC95E6A90C053087AF55 /* ofxGaussianBlur.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxGaussianBlur.h; path = ../../../addons/ofxFX/src/filters/ofxGaussianBlur.h; sourceTree = SOURCE_ROOT; };
C31FEF62BD7316AF85A831B5 /* ofxThreshold.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxThreshold.h; path = ../../../addons/ofxFX/src/operations/ofxThreshold.h; sourceTree = SOURCE_ROOT; };
D432A39EA2A57D3781E8EB06 /* ofxLUT.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxLUT.h; path = ../../../addons/ofxFX/src/filters/ofxLUT.h; sourceTree = SOURCE_ROOT; };
D4D6DB046477A279EF364999 /* ofxEdgeDetect.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxEdgeDetect.h; path = ../../../addons/ofxFX/src/operations/ofxEdgeDetect.h; sourceTree = SOURCE_ROOT; };
E4328143138ABC890047C5CB /* openFrameworksLib.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = openFrameworksLib.xcodeproj; path = ../../../libs/openFrameworksCompiled/project/osx/openFrameworksLib.xcodeproj; sourceTree = SOURCE_ROOT; };
E4B69B5B0A3A1756003C02F2 /* example-conwayDebug.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "example-conwayDebug.app"; sourceTree = BUILT_PRODUCTS_DIR; };
E4B69E1D0A3A1BDC003C02F2 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = main.cpp; path = src/main.cpp; sourceTree = SOURCE_ROOT; };
E4B6FCAD0C3E899E008CF71C /* openFrameworks-Info.plist */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.plist.xml; path = "openFrameworks-Info.plist"; sourceTree = "<group>"; };
E4EB691F138AFCF100A09F29 /* CoreOF.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = CoreOF.xcconfig; path = ../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig; sourceTree = SOURCE_ROOT; };
E4EB6923138AFD0F00A09F29 /* Project.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Project.xcconfig; sourceTree = "<group>"; };
F56A0242CA8F5409C606405E /* ofxFBM.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxFBM.h; path = ../../../addons/ofxFX/src/generative/ofxFBM.h; sourceTree = SOURCE_ROOT; };
F5E48C748F236B06C3FD6352 /* ofxAbsDiff.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxAbsDiff.h; path = ../../../addons/ofxFX/src/operations/ofxAbsDiff.h; sourceTree = SOURCE_ROOT; };
FE684EA3567FD4DFEBA0A919 /* ofxMultiTexture.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxMultiTexture.h; path = ../../../addons/ofxFX/src/composers/ofxMultiTexture.h; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
E4B69B590A3A1756003C02F2 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
E4328149138ABC9F0047C5CB /* openFrameworksDebug.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
37EEAF5BE699F2C7DD676270 /* src */ = {
isa = PBXGroup;
children = (
E7FE87AA9AE5CA7BE8DFA759 /* composers */,
389FE9FFF8F20EA90A671145 /* filters */,
C959CBA3130BE8E72D38F769 /* generative */,
0360379409DFE7926EFACB24 /* ofxFX.h */,
4CF06DA01D9A4561A5001B28 /* ofxFXObject.cpp */,
0AB01C0F3826CAA2AE964347 /* ofxFXObject.h */,
7AE447E0A447B18D671811A6 /* ofxSwapBuffer.h */,
44AC956B7DDEB3EA3AA33B00 /* operations */,
);
name = src;
sourceTree = "<group>";
};
389FE9FFF8F20EA90A671145 /* filters */ = {
isa = PBXGroup;
children = (
264BD182AA1893377670C038 /* ofxBarrelChromaAb.h */,
B2311A009B3E782884BBD59F /* ofxBloom.h */,
22D82B140684245A264395B8 /* ofxBlur.h */,
7F409E745A4DFE45EC22A9CF /* ofxBokeh.h */,
92696C363FF18AA6DFAAD969 /* ofxChromaAb.h */,
478BFF07E8302C4318515A52 /* ofxChromaGlitch.h */,
200F5DF5E39CFECD07DAD5C7 /* ofxContrast.h */,
BE08CC95E6A90C053087AF55 /* ofxGaussianBlur.h */,
987AD08F097CB59F432D3C8A /* ofxGlow.h */,
58CDE3BE1C014BD0DC3CB32E /* ofxGrayscale.h */,
1A2ED38D79EB9CC8B3E113E4 /* ofxInverse.h */,
D432A39EA2A57D3781E8EB06 /* ofxLUT.h */,
6C3BF497C4422FA343F951A2 /* ofxMedian.h */,
5E5EAD88DF0323D1C6109408 /* ofxOldTv.h */,
);
name = filters;
sourceTree = "<group>";
};
44AC956B7DDEB3EA3AA33B00 /* operations */ = {
isa = PBXGroup;
children = (
F5E48C748F236B06C3FD6352 /* ofxAbsDiff.h */,
870CDA9CB60D0BD24017A807 /* ofxBounce.h */,
7CCFC9B8ABF5BD21424EBF38 /* ofxDisplacePixels.h */,
D4D6DB046477A279EF364999 /* ofxEdgeDetect.h */,
4976D4D0EB5D35AAE81DE51A /* ofxFlow.h */,
3A731B10E475E26DE2463937 /* ofxNormals.h */,
782D44F4D5E4C1FD710C3716 /* ofxRipples.h */,
0EB7FA30228FFC0E433EE3A8 /* ofxSubstract.h */,
C31FEF62BD7316AF85A831B5 /* ofxThreshold.h */,
);
name = operations;
sourceTree = "<group>";
};
6948EE371B920CB800B5AC1A /* local_addons */ = {
isa = PBXGroup;
children = (
);
name = local_addons;
sourceTree = "<group>";
};
BB4B014C10F69532006C3DED /* addons */ = {
isa = PBXGroup;
children = (
CABF1A23B637491112B10A00 /* ofxFX */,
);
name = addons;
sourceTree = "<group>";
};
C959CBA3130BE8E72D38F769 /* generative */ = {
isa = PBXGroup;
children = (
F56A0242CA8F5409C606405E /* ofxFBM.h */,
8EB521E333C7B0CE4CF802B3 /* ofxFire.h */,
62BDB9F397D0AB08DD41E769 /* ofxGrayScott.h */,
8C4EF175FF0B7ED0CE6F5FE3 /* ofxNoise.h */,
ACE80EF2FE2F3D0A2ED1A824 /* ofxTint.h */,
);
name = generative;
sourceTree = "<group>";
};
CABF1A23B637491112B10A00 /* ofxFX */ = {
isa = PBXGroup;
children = (
37EEAF5BE699F2C7DD676270 /* src */,
);
name = ofxFX;
sourceTree = "<group>";
};
E4328144138ABC890047C5CB /* Products */ = {
isa = PBXGroup;
children = (
E4328148138ABC890047C5CB /* openFrameworksDebug.a */,
);
name = Products;
sourceTree = "<group>";
};
E4B69B4A0A3A1720003C02F2 = {
isa = PBXGroup;
children = (
E4B6FCAD0C3E899E008CF71C /* openFrameworks-Info.plist */,
E4EB6923138AFD0F00A09F29 /* Project.xcconfig */,
E4B69E1C0A3A1BDC003C02F2 /* src */,
E4EEC9E9138DF44700A80321 /* openFrameworks */,
BB4B014C10F69532006C3DED /* addons */,
6948EE371B920CB800B5AC1A /* local_addons */,
E4B69B5B0A3A1756003C02F2 /* example-conwayDebug.app */,
);
sourceTree = "<group>";
};
E4B69E1C0A3A1BDC003C02F2 /* src */ = {
isa = PBXGroup;
children = (
E4B69E1D0A3A1BDC003C02F2 /* main.cpp */,
00A1BFCBB38848AD0E0C8539 /* testApp.cpp */,
2D129AB0F7D46B8DFCEADEDB /* testApp.h */,
);
path = src;
sourceTree = SOURCE_ROOT;
};
E4EEC9E9138DF44700A80321 /* openFrameworks */ = {
isa = PBXGroup;
children = (
E4EB691F138AFCF100A09F29 /* CoreOF.xcconfig */,
E4328143138ABC890047C5CB /* openFrameworksLib.xcodeproj */,
);
name = openFrameworks;
sourceTree = "<group>";
};
E7FE87AA9AE5CA7BE8DFA759 /* composers */ = {
isa = PBXGroup;
children = (
4945618E448568E991F2EC95 /* ofxBlend.h */,
7A6AFA6914A5B7479FB247B6 /* ofxClone.h */,
63CD29B9755446A11D1068B5 /* ofxMask.h */,
FE684EA3567FD4DFEBA0A919 /* ofxMultiTexture.h */,
);
name = composers;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
E4B69B5A0A3A1756003C02F2 /* example-conway */ = {
isa = PBXNativeTarget;
buildConfigurationList = E4B69B5F0A3A1757003C02F2 /* Build configuration list for PBXNativeTarget "example-conway" */;
buildPhases = (
E4B69B580A3A1756003C02F2 /* Sources */,
E4B69B590A3A1756003C02F2 /* Frameworks */,
E4B6FFFD0C3F9AB9008CF71C /* ShellScript */,
E4C2427710CC5ABF004149E2 /* CopyFiles */,
);
buildRules = (
);
dependencies = (
E4EEB9AC138B136A00A80321 /* PBXTargetDependency */,
);
name = "example-conway";
productName = myOFApp;
productReference = E4B69B5B0A3A1756003C02F2 /* example-conwayDebug.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
E4B69B4C0A3A1720003C02F2 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0600;
};
buildConfigurationList = E4B69B4D0A3A1720003C02F2 /* Build configuration list for PBXProject "example-conway" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
English,
Japanese,
French,
German,
);
mainGroup = E4B69B4A0A3A1720003C02F2;
productRefGroup = E4B69B4A0A3A1720003C02F2;
projectDirPath = "";
projectReferences = (
{
ProductGroup = E4328144138ABC890047C5CB /* Products */;
ProjectRef = E4328143138ABC890047C5CB /* openFrameworksLib.xcodeproj */;
},
);
projectRoot = "";
targets = (
E4B69B5A0A3A1756003C02F2 /* example-conway */,
);
};
/* End PBXProject section */
/* Begin PBXReferenceProxy section */
E4328148138ABC890047C5CB /* openFrameworksDebug.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = openFrameworksDebug.a;
remoteRef = E4328147138ABC890047C5CB /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
/* End PBXReferenceProxy section */
/* Begin PBXShellScriptBuildPhase section */
E4B6FFFD0C3F9AB9008CF71C /* ShellScript */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "mkdir -p \"$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Resources/\"\n# Copy default icon file into App/Resources\nrsync -aved \"$ICON_FILE\" \"$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Resources/\"\n# Copy libfmod and change install directory for fmod to run\nrsync -aved ../../../libs/fmodex/lib/osx/libfmodex.dylib \"$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Frameworks/\";\ninstall_name_tool -change @executable_path/libfmodex.dylib @executable_path/../Frameworks/libfmodex.dylib \"$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/$PRODUCT_NAME\";\n# Copy GLUT framework (must remove for AppStore submissions)\nrsync -aved ../../../libs/glut/lib/osx/GLUT.framework \"$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/Frameworks/\"\n";
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
E4B69B580A3A1756003C02F2 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
E4B69E200A3A1BDC003C02F2 /* main.cpp in Sources */,
29D734F0DDECC8C5978185D7 /* testApp.cpp in Sources */,
5355E99D8BBC71222AA2B9FD /* ofxFXObject.cpp in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
E4EEB9AC138B136A00A80321 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = openFrameworks;
targetProxy = E4EEB9AB138B136A00A80321 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
E4B69B4E0A3A1720003C02F2 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = E4EB6923138AFD0F00A09F29 /* Project.xcconfig */;
buildSettings = {
CONFIGURATION_BUILD_DIR = "$(SRCROOT)/bin/";
COPY_PHASE_STRIP = NO;
DEAD_CODE_STRIPPING = YES;
GCC_AUTO_VECTORIZATION = YES;
GCC_ENABLE_SSE3_EXTENSIONS = YES;
GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS = YES;
GCC_INLINES_ARE_PRIVATE_EXTERN = NO;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = YES;
GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO = NO;
GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL = NO;
GCC_WARN_UNINITIALIZED_AUTOS = NO;
GCC_WARN_UNUSED_VALUE = NO;
GCC_WARN_UNUSED_VARIABLE = NO;
HEADER_SEARCH_PATHS = (
"$(OF_CORE_HEADERS)",
src,
../../../addons/ofxFX/src,
../../../addons/ofxFX/src/composers,
../../../addons/ofxFX/src/filters,
../../../addons/ofxFX/src/generative,
../../../addons/ofxFX/src/operations,
);
MACOSX_DEPLOYMENT_TARGET = 10.8;
ONLY_ACTIVE_ARCH = YES;
OTHER_CPLUSPLUSFLAGS = (
"-D__MACOSX_CORE__",
"-mtune=native",
);
SDKROOT = macosx;
};
name = Debug;
};
E4B69B4F0A3A1720003C02F2 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = E4EB6923138AFD0F00A09F29 /* Project.xcconfig */;
buildSettings = {
CONFIGURATION_BUILD_DIR = "$(SRCROOT)/bin/";
COPY_PHASE_STRIP = YES;
DEAD_CODE_STRIPPING = YES;
GCC_AUTO_VECTORIZATION = YES;
GCC_ENABLE_SSE3_EXTENSIONS = YES;
GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS = YES;
GCC_INLINES_ARE_PRIVATE_EXTERN = NO;
GCC_OPTIMIZATION_LEVEL = 3;
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_UNROLL_LOOPS = YES;
GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = YES;
GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO = NO;
GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL = NO;
GCC_WARN_UNINITIALIZED_AUTOS = NO;
GCC_WARN_UNUSED_VALUE = NO;
GCC_WARN_UNUSED_VARIABLE = NO;
HEADER_SEARCH_PATHS = (
"$(OF_CORE_HEADERS)",
src,
../../../addons/ofxFX/src,
../../../addons/ofxFX/src/composers,
../../../addons/ofxFX/src/filters,
../../../addons/ofxFX/src/generative,
../../../addons/ofxFX/src/operations,
);
MACOSX_DEPLOYMENT_TARGET = 10.8;
OTHER_CPLUSPLUSFLAGS = (
"-D__MACOSX_CORE__",
"-mtune=native",
);
SDKROOT = macosx;
};
name = Release;
};
E4B69B600A3A1757003C02F2 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = E4EB6923138AFD0F00A09F29 /* Project.xcconfig */;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)",
);
FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../libs/glut/lib/osx\"";
GCC_DYNAMIC_NO_PIC = NO;
GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
GCC_MODEL_TUNING = NONE;
HEADER_SEARCH_PATHS = (
"$(OF_CORE_HEADERS)",
src,
../../../addons/ofxFX/src,
../../../addons/ofxFX/src/composers,
../../../addons/ofxFX/src/filters,
../../../addons/ofxFX/src/generative,
../../../addons/ofxFX/src/operations,
);
ICON = "$(ICON_NAME_DEBUG)";
ICON_FILE = "$(ICON_FILE_PATH)$(ICON)";
INFOPLIST_FILE = "openFrameworks-Info.plist";
INSTALL_PATH = /Applications;
LIBRARY_SEARCH_PATHS = "$(inherited)";
PRODUCT_NAME = "$(TARGET_NAME)Debug";
WRAPPER_EXTENSION = app;
};
name = Debug;
};
E4B69B610A3A1757003C02F2 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = E4EB6923138AFD0F00A09F29 /* Project.xcconfig */;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)",
);
FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../libs/glut/lib/osx\"";
GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
GCC_MODEL_TUNING = NONE;
HEADER_SEARCH_PATHS = (
"$(OF_CORE_HEADERS)",
src,
../../../addons/ofxFX/src,
../../../addons/ofxFX/src/composers,
../../../addons/ofxFX/src/filters,
../../../addons/ofxFX/src/generative,
../../../addons/ofxFX/src/operations,
);
ICON = "$(ICON_NAME_RELEASE)";
ICON_FILE = "$(ICON_FILE_PATH)$(ICON)";
INFOPLIST_FILE = "openFrameworks-Info.plist";
INSTALL_PATH = /Applications;
LIBRARY_SEARCH_PATHS = "$(inherited)";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
baseConfigurationReference = E4EB6923138AFD0F00A09F29;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
E4B69B4D0A3A1720003C02F2 /* Build configuration list for PBXProject "example-conway" */ = {
isa = XCConfigurationList;
buildConfigurations = (
E4B69B4E0A3A1720003C02F2 /* Debug */,
E4B69B4F0A3A1720003C02F2 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
E4B69B5F0A3A1757003C02F2 /* Build configuration list for PBXNativeTarget "example-conway" */ = {
isa = XCConfigurationList;
buildConfigurations = (
E4B69B600A3A1757003C02F2 /* Debug */,
E4B69B610A3A1757003C02F2 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = E4B69B4C0A3A1720003C02F2 /* Project object */;
}
================================================
FILE: example-conway/example-conway.xcodeproj/xcshareddata/xcschemes/example-conway Debug.xcscheme
================================================
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0600"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "E4B69B5A0A3A1756003C02F2"
BuildableName = "example-conway.app"
BlueprintName = "example-conway"
ReferencedContainer = "container:example-conway.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES"
buildConfiguration = "Debug">
<Testables>
</Testables>
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "E4B69B5A0A3A1756003C02F2"
BuildableName = "example-conway.app"
BlueprintName = "example-conway"
ReferencedContainer = "container:example-conway.xcodeproj">
</BuildableReference>
</MacroExpansion>
</TestAction>
<LaunchAction
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
buildConfiguration = "Debug"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
allowLocationSimulation = "YES">
<BuildableProductRunnable>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "E4B69B5A0A3A1756003C02F2"
BuildableName = "example-conway.app"
BlueprintName = "example-conway"
ReferencedContainer = "container:example-conway.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
<AdditionalOptions>
</AdditionalOptions>
</LaunchAction>
<ProfileAction
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
buildConfiguration = "Debug"
debugDocumentVersioning = "YES">
<BuildableProductRunnable>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "E4B69B5A0A3A1756003C02F2"
BuildableName = "example-conway.app"
BlueprintName = "example-conway"
ReferencedContainer = "container:example-conway.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Debug"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
================================================
FILE: example-conway/example-conway.xcodeproj/xcshareddata/xcschemes/example-conway Release.xcscheme
================================================
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0600"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "E4B69B5A0A3A1756003C02F2"
BuildableName = "example-conway.app"
BlueprintName = "example-conway"
ReferencedContainer = "container:example-conway.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES"
buildConfiguration = "Release">
<Testables>
</Testables>
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "E4B69B5A0A3A1756003C02F2"
BuildableName = "example-conway.app"
BlueprintName = "example-conway"
ReferencedContainer = "container:example-conway.xcodeproj">
</BuildableReference>
</MacroExpansion>
</TestAction>
<LaunchAction
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
buildConfiguration = "Release"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
allowLocationSimulation = "YES">
<BuildableProductRunnable>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "E4B69B5A0A3A1756003C02F2"
BuildableName = "example-conway.app"
BlueprintName = "example-conway"
ReferencedContainer = "container:example-conway.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
<AdditionalOptions>
</AdditionalOptions>
</LaunchAction>
<ProfileAction
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
buildConfiguration = "Release"
debugDocumentVersioning = "YES">
<BuildableProductRunnable>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "E4B69B5A0A3A1756003C02F2"
BuildableName = "example-conway.app"
BlueprintName = "example-conway"
ReferencedContainer = "container:example-conway.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Release">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
================================================
FILE: example-conway/icon.rc
================================================
// Icon Resource Definition
#define MAIN_ICON 102
#if defined(_DEBUG)
MAIN_ICON ICON "icon_debug.ico"
#else
MAIN_ICON ICON "icon.ico"
#endif
================================================
FILE: example-conway/openFrameworks-Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>cc.openFrameworks.ofapp</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>CFBundleIconFile</key>
<string>${ICON}</string>
</dict>
</plist>
================================================
FILE: example-conway/src/main.cpp
================================================
#include "ofMain.h"
#include "testApp.h"
//========================================================================
int main( ){
ofSetupOpenGL(512,512, OF_WINDOW); // <-------- setup the GL context
// this kicks off the running of my app
// can be OF_WINDOW or OF_FULLSCREEN
// pass in width and height too:
ofRunApp( new testApp());
}
================================================
FILE: example-conway/src/testApp.cpp
================================================
// Conway Life GLSL Game
//
// Created by kalwalt alias Walter Perdan on 24/12/11
// Copyright 2011 http://www.kalwaltart.it/ All rights reserved.
//
#include "testApp.h"
//--------------------------------------------------------------
void testApp::setup(){
ofEnableAlphaBlending();
ofSetWindowShape(512, 512);
image.load("mem.gif");
conway.allocate(512, 512);
conway.setPasses(10);
//
// Created by kalwalt alias Walter Perdan on 24/12/11
// Copyright 2011 http://www.kalwaltart.it/ All rights reserved.
conway.setCode( "#version 120\n \
#extension GL_ARB_texture_rectangle : enable\n \
\
uniform sampler2DRect tex0; \
\
vec4 dead = vec4(1.0,1.0,1.0,1.0); \
vec4 alive = vec4(0.0,0.0,0.0,1.0); \
\
void main(void) { \
vec2 st = gl_TexCoord[0].st;\
int sum = 0; \
vec4 y = texture2DRect(tex0, st); \
\
if (texture2DRect(tex0, st + vec2(-1.0, -1.0)) == alive) ++sum; \
if (texture2DRect(tex0, st + vec2(0.0, -1.0)) == alive) ++sum; \
if (texture2DRect(tex0, st + vec2(1.0, -1.0)) == alive) ++sum; \
\
if (texture2DRect(tex0, st + vec2(-1.0, 0.0)) == alive) ++sum; \
if (texture2DRect(tex0, st + vec2(1.0, 0.0)) == alive) ++sum; \
\
if (texture2DRect(tex0, st + vec2(-1.0, 1.0)) == alive) ++sum; \
if (texture2DRect(tex0, st + vec2(0.0, 1.0)) == alive) ++sum; \
if (texture2DRect(tex0, st + vec2(1.0, 1.0)) == alive) ++sum; \
\
if (sum < 2) gl_FragColor = dead; \
else if (sum > 3) gl_FragColor = dead; \
else if (sum == 3) gl_FragColor = alive; \
else gl_FragColor = y; \
}");
conway.setTexture(image.getTexture());
}
//--------------------------------------------------------------
void testApp::update(){
conway.begin();
ofClear(255, 255);
conway.draw();
ofSetColor(0,255);
ofDrawCircle(mouseX, mouseY, 5);
conway.end();
conway.update();
ofSetWindowTitle(ofToString(ofGetFrameRate()));
}
//--------------------------------------------------------------
void testApp::draw(){
conway.draw();
}
//--------------------------------------------------------------
void testApp::keyPressed(int key){
}
//--------------------------------------------------------------
void testApp::keyReleased(int key){
}
//--------------------------------------------------------------
void testApp::mouseMoved(int x, int y ){
}
//--------------------------------------------------------------
void testApp::mouseDragged(int x, int y, int button){
}
//--------------------------------------------------------------
void testApp::mousePressed(int x, int y, int button){
}
//--------------------------------------------------------------
void testApp::mouseReleased(int x, int y, int button){
}
//--------------------------------------------------------------
void testApp::windowResized(int w, int h){
}
//--------------------------------------------------------------
void testApp::gotMessage(ofMessage msg){
}
//--------------------------------------------------------------
void testApp::dragEvent(ofDragInfo dragInfo){
}
================================================
FILE: example-conway/src/testApp.h
================================================
// Conway Life GLSL Game
//
// Created by kalwalt alias Walter Perdan on 24/12/11
// Copyright 2011 http://www.kalwaltart.it/ All rights reserved.
//
// http://forum.openframeworks.cc/index.php/topic,8389.msg39174.html#msg39174
#pragma once
#include "ofMain.h"
#include "ofxFX.h"
class testApp : public ofBaseApp{
public:
void setup();
void update();
void draw();
void keyPressed (int key);
void keyReleased(int key);
void mouseMoved(int x, int y );
void mouseDragged(int x, int y, int button);
void mousePressed(int x, int y, int button);
void mouseReleased(int x, int y, int button);
void windowResized(int w, int h);
void dragEvent(ofDragInfo dragInfo);
void gotMessage(ofMessage msg);
ofImage image;
ofxFXObject conway;
};
================================================
FILE: example-filters/Makefile
================================================
# Attempt to load a config.make file.
# If none is found, project defaults in config.project.make will be used.
ifneq ($(wildcard config.make),)
include config.make
endif
# make sure the the OF_ROOT location is defined
ifndef OF_ROOT
OF_ROOT=$(realpath ../../..)
endif
# call the project makefile!
include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk
================================================
FILE: example-filters/Project.xcconfig
================================================
//THE PATH TO THE ROOT OF OUR OF PATH RELATIVE TO THIS PROJECT.
//THIS NEEDS TO BE DEFINED BEFORE CoreOF.xcconfig IS INCLUDED
OF_PATH = ../../..
//THIS HAS ALL THE HEADER AND LIBS FOR OF CORE
#include "../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig"
//ICONS - NEW IN 0072
ICON_NAME_DEBUG = icon-debug.icns
ICON_NAME_RELEASE = icon.icns
ICON_FILE_PATH = $(OF_PATH)/libs/openFrameworksCompiled/project/osx/
//IF YOU WANT AN APP TO HAVE A CUSTOM ICON - PUT THEM IN YOUR DATA FOLDER AND CHANGE ICON_FILE_PATH to:
//ICON_FILE_PATH = bin/data/
OTHER_LDFLAGS = $(OF_CORE_LIBS) $(OF_CORE_FRAMEWORKS)
HEADER_SEARCH_PATHS = $(OF_CORE_HEADERS)
================================================
FILE: example-filters/addons.make
================================================
ofxFX
================================================
FILE: example-filters/bin/data/LUTs/Brannan.cube
================================================
0.0980 0.0392 0.0863
0.1176 0.0471 0.0941
0.1255 0.0471 0.0941
0.1451 0.0510 0.0980
0.1647 0.0549 0.0980
0.1725 0.0549 0.0980
0.1922 0.0588 0.0980
0.2196 0.0588 0.1059
0.2314 0.0588 0.0980
0.2471 0.0627 0.1020
0.2667 0.0706 0.1059
0.2863 0.0706 0.1059
0.3098 0.0784 0.1098
0.3373 0.0824 0.1137
0.3569 0.0824 0.1137
0.3765 0.0863 0.1176
0.4118 0.0863 0.1216
0.4392 0.0902 0.1255
0.4706 0.0941 0.1294
0.5020 0.0941 0.1333
0.5451 0.0980 0.1451
0.5725 0.1020 0.1451
0.6118 0.1098 0.1490
0.6471 0.1098 0.1490
0.6784 0.1137 0.1529
0.7059 0.1176 0.1569
0.7412 0.1255 0.1686
0.7765 0.1294 0.1725
0.8039 0.1333 0.1725
0.8431 0.1451 0.1804
0.8824 0.1529 0.1804
0.9176 0.1608 0.1843
0.1020 0.0549 0.0902
0.1176 0.0549 0.0902
0.1255 0.0549 0.0902
0.1412 0.0588 0.0941
0.1608 0.0588 0.0980
0.1725 0.0627 0.0980
0.1922 0.0667 0.0980
0.2196 0.0706 0.1020
0.2353 0.0745 0.1059
0.2471 0.0784 0.1059
0.2667 0.0784 0.1059
0.2863 0.0784 0.1059
0.3098 0.0824 0.1059
0.3333 0.0863 0.1098
0.3569 0.0863 0.1098
0.3804 0.0941 0.1176
0.4078 0.0980 0.1255
0.4353 0.1020 0.1294
0.4667 0.1059 0.1333
0.5020 0.1098 0.1373
0.5373 0.1098 0.1412
0.5647 0.1098 0.1373
0.6039 0.1216 0.1451
0.6431 0.1255 0.1490
0.6706 0.1333 0.1451
0.6980 0.1373 0.1490
0.7373 0.1451 0.1608
0.7725 0.1529 0.1686
0.8039 0.1569 0.1686
0.8431 0.1647 0.1765
0.8863 0.1725 0.1765
0.9216 0.1804 0.1843
0.1059 0.0667 0.0902
0.1176 0.0667 0.0902
0.1255 0.0667 0.0902
0.1412 0.0706 0.0941
0.1608 0.0706 0.0980
0.1765 0.0745 0.0980
0.1922 0.0784 0.0980
0.2157 0.0784 0.0980
0.2275 0.0824 0.0980
0.2431 0.0863 0.1020
0.2667 0.0863 0.1020
0.2863 0.0863 0.1020
0.3098 0.0941 0.1098
0.3333 0.0980 0.1098
0.3569 0.0980 0.1098
0.3765 0.1020 0.1137
0.4078 0.1098 0.1255
0.4353 0.1137 0.1255
0.4706 0.1216 0.1333
0.5059 0.1255 0.1373
0.5412 0.1255 0.1373
0.5686 0.1333 0.1373
0.6078 0.1412 0.1373
0.6431 0.1412 0.1412
0.6784 0.1569 0.1529
0.7020 0.1569 0.1569
0.7412 0.1647 0.1647
0.7765 0.1725 0.1725
0.8039 0.1725 0.1725
0.8431 0.1804 0.1765
0.8863 0.1804 0.1765
0.9216 0.1882 0.1843
0.1098 0.0784 0.0941
0.1216 0.0784 0.0941
0.1294 0.0784 0.0941
0.1412 0.0784 0.0941
0.1608 0.0784 0.0941
0.1765 0.0863 0.0980
0.1922 0.0902 0.0980
0.2196 0.0902 0.1020
0.2314 0.0941 0.1020
0.2471 0.0980 0.1020
0.2627 0.0980 0.1020
0.2863 0.1020 0.1020
0.3137 0.1098 0.1098
0.3373 0.1137 0.1137
0.3569 0.1176 0.1137
0.3765 0.1216 0.1176
0.4118 0.1255 0.1216
0.4392 0.1294 0.1216
0.4706 0.1373 0.1255
0.5020 0.1412 0.1294
0.5412 0.1451 0.1333
0.5804 0.1569 0.1412
0.6157 0.1647 0.1451
0.6549 0.1686 0.1451
0.6784 0.1725 0.1529
0.7020 0.1725 0.1569
0.7412 0.1804 0.1647
0.7765 0.1882 0.1725
0.8039 0.1922 0.1765
0.8471 0.2000 0.1804
0.8902 0.2000 0.1804
0.9255 0.2078 0.1882
0.1137 0.0941 0.0980
0.1255 0.0902 0.0980
0.1333 0.0941 0.0980
0.1451 0.0941 0.0980
0.1608 0.0902 0.0980
0.1765 0.0941 0.0980
0.1922 0.0980 0.0980
0.2196 0.1020 0.1059
0.2314 0.1020 0.1020
0.2510 0.1098 0.1059
0.2667 0.1098 0.1059
0.2902 0.1176 0.1059
0.3098 0.1216 0.1098
0.3333 0.1255 0.1098
0.3529 0.1333 0.1137
0.3725 0.1373 0.1176
0.4078 0.1451 0.1216
0.4392 0.1569 0.1294
0.4706 0.1647 0.1333
0.5020 0.1647 0.1333
0.5373 0.1686 0.1412
0.5686 0.1765 0.1451
0.6000 0.1765 0.1412
0.6392 0.1804 0.1451
0.6745 0.1882 0.1451
0.7020 0.1961 0.1529
0.7373 0.2000 0.1608
0.7686 0.2078 0.1647
0.8039 0.2157 0.1725
0.8431 0.2275 0.1804
0.8824 0.2275 0.1765
0.9176 0.2314 0.1804
0.1137 0.1059 0.0980
0.1216 0.1020 0.0980
0.1333 0.1059 0.0980
0.1529 0.1098 0.1020
0.1647 0.1059 0.0980
0.1765 0.1059 0.0980
0.1922 0.1059 0.0941
0.2196 0.1098 0.1020
0.2353 0.1216 0.1020
0.2510 0.1216 0.1059
0.2667 0.1255 0.1020
0.2863 0.1294 0.1020
0.3059 0.1333 0.1059
0.3294 0.1412 0.1098
0.3608 0.1529 0.1176
0.3804 0.1608 0.1255
0.4118 0.1647 0.1255
0.4431 0.1725 0.1333
0.4667 0.1765 0.1333
0.4980 0.1765 0.1333
0.5333 0.1804 0.1412
0.5686 0.1882 0.1451
0.6000 0.1922 0.1451
0.6431 0.2000 0.1529
0.6784 0.2078 0.1490
0.7059 0.2118 0.1569
0.7412 0.2196 0.1647
0.7725 0.2275 0.1686
0.8078 0.2353 0.1765
0.8471 0.2471 0.1843
0.8824 0.2471 0.1804
0.9176 0.2549 0.1843
0.1137 0.1255 0.1020
0.1255 0.1216 0.1020
0.1373 0.1255 0.0980
0.1529 0.1294 0.1020
0.1686 0.1255 0.0980
0.1765 0.1255 0.0980
0.1922 0.1255 0.0980
0.2157 0.1255 0.1020
0.2275 0.1294 0.0941
0.2431 0.1373 0.1020
0.2667 0.1451 0.1020
0.2863 0.1529 0.1059
0.3098 0.1569 0.1098
0.3333 0.1608 0.1098
0.3569 0.1686 0.1137
0.3765 0.1725 0.1176
0.4039 0.1725 0.1176
0.4353 0.1804 0.1255
0.4627 0.1843 0.1255
0.4980 0.1882 0.1294
0.5412 0.1961 0.1412
0.5725 0.2078 0.1451
0.6039 0.2118 0.1451
0.6392 0.2157 0.1451
0.6745 0.2235 0.1529
0.7020 0.2275 0.1569
0.7412 0.2353 0.1686
0.7765 0.2431 0.1725
0.8039 0.2471 0.1725
0.8431 0.2588 0.1804
0.8824 0.2627 0.1804
0.9176 0.2706 0.1843
0.1176 0.1412 0.1059
0.1333 0.1412 0.1059
0.1412 0.1451 0.1020
0.1569 0.1490 0.1020
0.1725 0.1451 0.1020
0.1843 0.1451 0.1020
0.2000 0.1451 0.1020
0.2157 0.1373 0.1020
0.2353 0.1569 0.1059
0.2510 0.1608 0.1098
0.2667 0.1608 0.1059
0.2863 0.1647 0.1059
0.3137 0.1725 0.1137
0.3373 0.1765 0.1098
0.3608 0.1765 0.1098
0.3765 0.1765 0.1137
0.4078 0.1922 0.1216
0.4431 0.2000 0.1294
0.4667 0.2039 0.1294
0.4980 0.2078 0.1333
0.5373 0.2157 0.1412
0.5765 0.2314 0.1490
0.6078 0.2353 0.1451
0.6431 0.2353 0.1451
0.6745 0.2510 0.1569
0.6980 0.2471 0.1569
0.7412 0.2588 0.1647
0.7765 0.2627 0.1686
0.8000 0.2667 0.1686
0.8431 0.2784 0.1725
0.8863 0.2863 0.1804
0.9216 0.2980 0.1843
0.1216 0.1647 0.1020
0.1333 0.1686 0.1020
0.1490 0.1686 0.1059
0.1608 0.1686 0.1020
0.1725 0.1686 0.1020
0.1882 0.1686 0.1020
0.2039 0.1647 0.0980
0.2157 0.1647 0.0980
0.2314 0.1647 0.1020
0.2510 0.1725 0.1059
0.2627 0.1725 0.1020
0.2824 0.1804 0.1020
0.3098 0.1804 0.1020
0.3333 0.1922 0.1098
0.3529 0.2000 0.1137
0.3804 0.2078 0.1216
0.4118 0.2118 0.1176
0.4431 0.2196 0.1255
0.4627 0.2157 0.1216
0.5059 0.2314 0.1333
0.5373 0.2314 0.1373
0.5765 0.2471 0.1451
0.6039 0.2471 0.1412
0.6471 0.2549 0.1490
0.6784 0.2627 0.1529
0.7020 0.2627 0.1529
0.7451 0.2824 0.1686
0.7725 0.2863 0.1686
0.8078 0.2941 0.1725
0.8471 0.3020 0.1765
0.8902 0.3137 0.1804
0.9255 0.3216 0.1843
0.1255 0.1804 0.1059
0.1333 0.1765 0.1020
0.1490 0.1804 0.1020
0.1608 0.1804 0.1020
0.1765 0.1804 0.1020
0.1922 0.1804 0.1020
0.2078 0.1765 0.1020
0.2196 0.1765 0.1020
0.2353 0.1804 0.1020
0.2471 0.1765 0.1020
0.2667 0.1882 0.1059
0.2902 0.1961 0.1098
0.3176 0.2000 0.1098
0.3373 0.2039 0.1098
0.3608 0.2118 0.1137
0.3804 0.2157 0.1176
0.4039 0.2235 0.1176
0.4392 0.2353 0.1294
0.4667 0.2431 0.1333
0.5020 0.2510 0.1373
0.5373 0.2510 0.1412
0.5647 0.2588 0.1451
0.6000 0.2667 0.1451
0.6392 0.2706 0.1490
0.6706 0.2745 0.1490
0.7020 0.2902 0.1608
0.7373 0.2980 0.1647
0.7725 0.3098 0.1725
0.8039 0.3137 0.1725
0.8471 0.3294 0.1804
0.8784 0.3294 0.1725
0.9216 0.3451 0.1843
0.1333 0.2078 0.1020
0.1412 0.2078 0.1020
0.1569 0.2078 0.1020
0.1725 0.2078 0.1020
0.1843 0.2078 0.1020
0.2000 0.2078 0.1020
0.2157 0.2078 0.1020
0.2275 0.2039 0.1020
0.2431 0.2078 0.1098
0.2549 0.2039 0.1059
0.2667 0.2078 0.1059
0.2824 0.2078 0.1020
0.3137 0.2157 0.1098
0.3333 0.2196 0.1098
0.3569 0.2275 0.1137
0.3804 0.2353 0.1176
0.4078 0.2392 0.1216
0.4392 0.2471 0.1255
0.4667 0.2549 0.1294
0.4941 0.2588 0.1294
0.5373 0.2667 0.1373
0.5686 0.2745 0.1412
0.6078 0.2902 0.1451
0.6471 0.2941 0.1529
0.6784 0.3020 0.1529
0.7059 0.3098 0.1608
0.7451 0.3255 0.1686
0.7765 0.3294 0.1725
0.8078 0.3412 0.1765
0.8471 0.3490 0.1765
0.8863 0.3569 0.1765
0.9216 0.3686 0.1843
0.1294 0.2235 0.1059
0.1412 0.2275 0.1059
0.1569 0.2275 0.1098
0.1725 0.2275 0.1098
0.1843 0.2275 0.1098
0.2039 0.2275 0.1098
0.2157 0.2275 0.1059
0.2314 0.2275 0.1098
0.2431 0.2275 0.1059
0.2588 0.2275 0.1059
0.2667 0.2275 0.1059
0.2784 0.2275 0.1020
0.3098 0.2353 0.1098
0.3333 0.2392 0.1098
0.3529 0.2471 0.1137
0.3804 0.2510 0.1176
0.4039 0.2510 0.1176
0.4353 0.2588 0.1216
0.4627 0.2667 0.1255
0.4980 0.2784 0.1333
0.5412 0.2902 0.1412
0.5725 0.2980 0.1451
0.6078 0.3059 0.1451
0.6431 0.3098 0.1451
0.6784 0.3216 0.1490
0.6980 0.3255 0.1529
0.7451 0.3451 0.1686
0.7725 0.3490 0.1686
0.8078 0.3608 0.1765
0.8471 0.3686 0.1765
0.8902 0.3804 0.1804
0.9176 0.3843 0.1804
0.1333 0.2471 0.1098
0.1451 0.2471 0.1098
0.1647 0.2471 0.1098
0.1765 0.2471 0.1098
0.1922 0.2471 0.1098
0.2078 0.2471 0.1098
0.2235 0.2471 0.1098
0.2392 0.2510 0.1137
0.2471 0.2471 0.1059
0.2627 0.2471 0.1098
0.2745 0.2510 0.1098
0.2902 0.2549 0.1137
0.3098 0.2471 0.1098
0.3333 0.2549 0.1137
0.3529 0.2627 0.1137
0.3725 0.2627 0.1137
0.4078 0.2745 0.1216
0.4392 0.2863 0.1294
0.4627 0.2902 0.1294
0.4980 0.2980 0.1333
0.5333 0.3059 0.1373
0.5686 0.3216 0.1451
0.6039 0.3294 0.1451
0.6471 0.3373 0.1490
0.6745 0.3490 0.1490
0.7020 0.3608 0.1608
0.7373 0.3686 0.1647
0.7725 0.3765 0.1725
0.8039 0.3804 0.1725
0.8471 0.3922 0.1843
0.8863 0.4000 0.1804
0.9176 0.4118 0.1882
0.1412 0.2706 0.1059
0.1529 0.2706 0.1059
0.1686 0.2706 0.1059
0.1804 0.2667 0.1059
0.1961 0.2706 0.1098
0.2157 0.2706 0.1098
0.2275 0.2706 0.1059
0.2431 0.2706 0.1098
0.2549 0.2706 0.1098
0.2706 0.2706 0.1098
0.2784 0.2667 0.1098
0.2980 0.2745 0.1137
0.3176 0.2667 0.1059
0.3412 0.2706 0.1098
0.3569 0.2784 0.1137
0.3804 0.2863 0.1216
0.4078 0.2902 0.1176
0.4431 0.3059 0.1294
0.4667 0.3137 0.1294
0.5020 0.3216 0.1333
0.5373 0.3255 0.1373
0.5725 0.3412 0.1451
0.6039 0.3490 0.1412
0.6431 0.3529 0.1451
0.6745 0.3725 0.1529
0.7020 0.3804 0.1569
0.7412 0.3882 0.1647
0.7725 0.3961 0.1686
0.8000 0.3961 0.1686
0.8431 0.4118 0.1765
0.8902 0.4275 0.1843
0.9216 0.4353 0.1882
0.1412 0.2980 0.1137
0.1529 0.2980 0.1137
0.1725 0.2980 0.1137
0.1843 0.2941 0.1137
0.2039 0.2980 0.1176
0.2196 0.2980 0.1176
0.2314 0.2941 0.1137
0.2471 0.2980 0.1176
0.2588 0.2980 0.1137
0.2784 0.2980 0.1137
0.2863 0.2980 0.1098
0.3059 0.2980 0.1137
0.3294 0.2980 0.1137
0.3451 0.2980 0.1137
0.3569 0.2980 0.1137
0.3804 0.3059 0.1216
0.4078 0.3098 0.1176
0.4392 0.3216 0.1255
0.4667 0.3294 0.1255
0.5020 0.3412 0.1333
0.5412 0.3490 0.1412
0.5725 0.3608 0.1412
0.6078 0.3686 0.1412
0.6431 0.3725 0.1451
0.6745 0.3882 0.1529
0.6980 0.3922 0.1529
0.7451 0.4118 0.1686
0.7725 0.4157 0.1647
0.8039 0.4275 0.1686
0.8431 0.4431 0.1725
0.8980 0.4667 0.1882
0.9216 0.4745 0.1882
0.1490 0.3255 0.1176
0.1608 0.3255 0.1176
0.1765 0.3255 0.1176
0.1882 0.3216 0.1137
0.2039 0.3216 0.1137
0.2196 0.3216 0.1176
0.2353 0.3216 0.1137
0.2510 0.3255 0.1216
0.2627 0.3216 0.1176
0.2745 0.3176 0.1137
0.2941 0.3255 0.1216
0.3098 0.3216 0.1176
0.3373 0.3255 0.1216
0.3490 0.3216 0.1176
0.3608 0.3255 0.1216
0.3765 0.3216 0.1176
0.4078 0.3294 0.1176
0.4314 0.3373 0.1216
0.4667 0.3490 0.1294
0.4980 0.3608 0.1333
0.5451 0.3765 0.1451
0.5647 0.3765 0.1412
0.6039 0.3882 0.1451
0.6431 0.3961 0.1490
0.6706 0.4000 0.1490
0.7020 0.4157 0.1608
0.7373 0.4275 0.1647
0.7725 0.4431 0.1725
0.8039 0.4588 0.1725
0.8471 0.4784 0.1804
0.8824 0.4863 0.1765
0.9098 0.4980 0.1804
0.1529 0.3490 0.1216
0.1608 0.3529 0.1255
0.1765 0.3529 0.1216
0.1961 0.3529 0.1216
0.2118 0.3529 0.1216
0.2314 0.3569 0.1255
0.2431 0.3529 0.1216
0.2549 0.3529 0.1216
0.2667 0.3529 0.1216
0.2863 0.3490 0.1216
0.3020 0.3529 0.1255
0.3176 0.3490 0.1216
0.3412 0.3529 0.1216
0.3608 0.3569 0.1255
0.3686 0.3529 0.1216
0.3922 0.3529 0.1216
0.4078 0.3569 0.1176
0.4353 0.3608 0.1216
0.4706 0.3725 0.1294
0.5059 0.3843 0.1294
0.5412 0.3882 0.1333
0.5765 0.3961 0.1412
0.6078 0.4039 0.1412
0.6431 0.4157 0.1451
0.6784 0.4314 0.1569
0.7020 0.4431 0.1569
0.7451 0.4706 0.1686
0.7765 0.4863 0.1686
0.8039 0.4902 0.1686
0.8431 0.4980 0.1804
0.8824 0.4980 0.1804
0.9255 0.5098 0.1922
0.1529 0.3765 0.1216
0.1647 0.3843 0.1255
0.1765 0.3804 0.1216
0.2000 0.3804 0.1255
0.2157 0.3804 0.1216
0.2314 0.3843 0.1255
0.2471 0.3843 0.1255
0.2588 0.3804 0.1216
0.2784 0.3882 0.1294
0.2941 0.3804 0.1255
0.3098 0.3843 0.1255
0.3255 0.3843 0.1255
0.3490 0.3843 0.1255
0.3608 0.3804 0.1216
0.3725 0.3804 0.1176
0.4000 0.3843 0.1255
0.4196 0.3843 0.1333
0.4392 0.3804 0.1333
0.4627 0.3843 0.1294
0.4980 0.4000 0.1373
0.5412 0.4118 0.1412
0.5647 0.4118 0.1412
0.6039 0.4314 0.1490
0.6431 0.4431 0.1529
0.6706 0.4627 0.1529
0.7020 0.4745 0.1608
0.7373 0.4902 0.1647
0.7686 0.4980 0.1686
0.8000 0.5020 0.1686
0.8471 0.5176 0.1765
0.8863 0.5216 0.1765
0.9176 0.5255 0.1804
0.1608 0.4000 0.1294
0.1725 0.4078 0.1333
0.1843 0.4000 0.1255
0.2118 0.4039 0.1333
0.2235 0.4039 0.1294
0.2353 0.4039 0.1294
0.2549 0.4078 0.1333
0.2667 0.4039 0.1294
0.2824 0.4078 0.1294
0.3020 0.4039 0.1333
0.3216 0.4078 0.1333
0.3333 0.4039 0.1294
0.3569 0.4039 0.1294
0.3725 0.4078 0.1294
0.3882 0.4039 0.1294
0.4078 0.4078 0.1333
0.4235 0.4078 0.1294
0.4471 0.4039 0.1333
0.4667 0.4078 0.1294
0.4902 0.4157 0.1255
0.5333 0.4314 0.1373
0.5686 0.4431 0.1412
0.6157 0.4667 0.1529
0.6431 0.4745 0.1490
0.6706 0.4863 0.1529
0.6980 0.4941 0.1569
0.7373 0.5020 0.1647
0.7765 0.5137 0.1765
0.8078 0.5216 0.1765
0.8431 0.5294 0.1765
0.8863 0.5451 0.1804
0.9216 0.5608 0.1843
0.1647 0.4549 0.1333
0.1804 0.4588 0.1373
0.1922 0.4510 0.1294
0.2157 0.4549 0.1333
0.2275 0.4510 0.1333
0.2392 0.4549 0.1294
0.2588 0.4588 0.1333
0.2745 0.4588 0.1373
0.2902 0.4588 0.1333
0.3137 0.4588 0.1373
0.3255 0.4549 0.1333
0.3373 0.4510 0.1255
0.3647 0.4510 0.1294
0.3843 0.4588 0.1333
0.4000 0.4588 0.1333
0.4157 0.4549 0.1333
0.4431 0.4549 0.1333
0.4549 0.4431 0.1294
0.4824 0.4549 0.1373
0.5059 0.4588 0.1333
0.5451 0.4745 0.1412
0.5725 0.4745 0.1412
0.6039 0.4902 0.1373
0.6431 0.5020 0.1412
0.6745 0.5020 0.1490
0.7059 0.5137 0.1608
0.7412 0.5255 0.1686
0.7725 0.5333 0.1725
0.8000 0.5412 0.1725
0.8431 0.5608 0.1804
0.8863 0.5765 0.1843
0.9176 0.5882 0.1882
0.1647 0.4980 0.1333
0.1804 0.5020 0.1373
0.1961 0.4980 0.1333
0.2196 0.4980 0.1333
0.2314 0.4980 0.1333
0.2471 0.5020 0.1333
0.2588 0.4980 0.1294
0.2784 0.5020 0.1373
0.2941 0.5020 0.1333
0.3137 0.4980 0.1333
0.3294 0.4980 0.1294
0.3451 0.4980 0.1294
0.3725 0.4980 0.1333
0.3882 0.4980 0.1333
0.4039 0.4980 0.1333
0.4235 0.5020 0.1373
0.4510 0.4980 0.1373
0.4706 0.4941 0.1412
0.4941 0.5020 0.1451
0.5020 0.4902 0.1294
0.5373 0.4941 0.1373
0.5686 0.5059 0.1412
0.6078 0.5176 0.1451
0.6392 0.5255 0.1412
0.6784 0.5333 0.1529
0.7020 0.5412 0.1529
0.7412 0.5569 0.1647
0.7765 0.5765 0.1725
0.8078 0.5843 0.1765
0.8431 0.5961 0.1765
0.8824 0.6039 0.1765
0.9216 0.6196 0.1882
0.1686 0.5216 0.1412
0.1843 0.5255 0.1412
0.2039 0.5216 0.1451
0.2275 0.5216 0.1451
0.2353 0.5216 0.1412
0.2510 0.5294 0.1451
0.2667 0.5216 0.1412
0.2863 0.5255 0.1451
0.3020 0.5255 0.1412
0.3255 0.5255 0.1451
0.3373 0.5255 0.1412
0.3569 0.5255 0.1412
0.3804 0.5255 0.1451
0.3961 0.5216 0.1412
0.4157 0.5255 0.1412
0.4353 0.5216 0.1451
0.4549 0.5294 0.1373
0.4745 0.5255 0.1373
0.4941 0.5255 0.1412
0.5176 0.5294 0.1412
0.5451 0.5255 0.1412
0.5686 0.5216 0.1373
0.6039 0.5333 0.1412
0.6431 0.5451 0.1490
0.6667 0.5569 0.1490
0.6980 0.5725 0.1569
0.7412 0.5922 0.1686
0.7686 0.6000 0.1686
0.8000 0.6039 0.1686
0.8471 0.6196 0.1804
0.8902 0.6235 0.1804
0.9216 0.6275 0.1843
0.1765 0.5686 0.1451
0.1882 0.5725 0.1451
0.2078 0.5686 0.1451
0.2275 0.5686 0.1451
0.2353 0.5647 0.1412
0.2510 0.5725 0.1451
0.2745 0.5725 0.1451
0.2941 0.5686 0.1451
0.3098 0.5725 0.1451
0.3373 0.5765 0.1490
0.3451 0.5725 0.1451
0.3608 0.5686 0.1412
0.3843 0.5686 0.1451
0.4039 0.5686 0.1412
0.4275 0.5725 0.1451
0.4471 0.5686 0.1451
0.4667 0.5686 0.1412
0.4902 0.5725 0.1451
0.5098 0.5725 0.1451
0.5294 0.5725 0.1412
0.5529 0.5686 0.1412
0.5843 0.5725 0.1490
0.6157 0.5804 0.1490
0.6510 0.5843 0.1529
0.6745 0.5922 0.1569
0.7020 0.6000 0.1608
0.7373 0.6118 0.1647
0.7765 0.6196 0.1725
0.8078 0.6275 0.1765
0.8471 0.6353 0.1804
0.8941 0.6471 0.1843
0.9255 0.6549 0.1922
0.1804 0.6118 0.1451
0.1961 0.6118 0.1490
0.2157 0.6118 0.1490
0.2392 0.6157 0.1529
0.2431 0.6118 0.1451
0.2588 0.6118 0.1490
0.2863 0.6157 0.1529
0.2980 0.6078 0.1451
0.3176 0.6118 0.1451
0.3373 0.6118 0.1451
0.3490 0.6118 0.1412
0.3686 0.6157 0.1451
0.3961 0.6196 0.1490
0.4118 0.6118 0.1451
0.4314 0.6118 0.1451
0.4549 0.6118 0.1490
0.4745 0.6118 0.1490
0.4980 0.6118 0.1490
0.5176 0.6196 0.1490
0.5373 0.6196 0.1451
0.5608 0.6118 0.1412
0.5922 0.6196 0.1490
0.6118 0.6118 0.1412
0.6431 0.6196 0.1451
0.6745 0.6196 0.1490
0.7020 0.6235 0.1569
0.7333 0.6275 0.1569
0.7725 0.6392 0.1725
0.8039 0.6471 0.1765
0.8431 0.6588 0.1765
0.8824 0.6706 0.1765
0.9098 0.6745 0.1765
0.1804 0.6392 0.1529
0.2039 0.6392 0.1529
0.2196 0.6392 0.1529
0.2353 0.6431 0.1490
0.2510 0.6431 0.1529
0.2627 0.6392 0.1490
0.2824 0.6392 0.1490
0.3020 0.6392 0.1529
0.3333 0.6471 0.1569
0.3412 0.6392 0.1529
0.3569 0.6392 0.1490
0.3804 0.6471 0.1529
0.4078 0.6431 0.1529
0.4235 0.6392 0.1490
0.4471 0.6431 0.1490
0.4745 0.6471 0.1569
0.4863 0.6392 0.1490
0.5059 0.6392 0.1529
0.5294 0.6392 0.1529
0.5490 0.6392 0.1529
0.5804 0.6392 0.1529
0.6039 0.6392 0.1529
0.6275 0.6392 0.1490
0.6510 0.6353 0.1490
0.6706 0.6392 0.1529
0.6941 0.6431 0.1569
0.7412 0.6627 0.1725
0.7686 0.6627 0.1686
0.8000 0.6667 0.1686
0.8471 0.6863 0.1804
0.8863 0.6941 0.1804
0.9216 0.7059 0.1882
0.1882 0.6706 0.1608
0.2039 0.6667 0.1569
0.2275 0.6706 0.1569
0.2471 0.6824 0.1647
0.2549 0.6706 0.1569
0.2706 0.6745 0.1569
0.2941 0.6784 0.1647
0.3098 0.6706 0.1569
0.3333 0.6706 0.1569
0.3490 0.6706 0.1608
0.3647 0.6706 0.1569
0.3804 0.6745 0.1569
0.4157 0.6745 0.1608
0.4353 0.6745 0.1608
0.4510 0.6706 0.1529
0.4745 0.6706 0.1569
0.4941 0.6706 0.1569
0.5176 0.6706 0.1608
0.5373 0.6745 0.1608
0.5529 0.6706 0.1569
0.5843 0.6667 0.1569
0.6118 0.6706 0.1608
0.6314 0.6706 0.1569
0.6549 0.6706 0.1569
0.6824 0.6824 0.1647
0.6980 0.6745 0.1569
0.7373 0.6824 0.1647
0.7765 0.6941 0.1725
0.8039 0.6980 0.1725
0.8431 0.7098 0.1765
0.8902 0.7255 0.1843
0.9216 0.7294 0.1843
0.1961 0.7137 0.1647
0.2196 0.7137 0.1686
0.2314 0.7098 0.1608
0.2471 0.7137 0.1647
0.2627 0.7098 0.1608
0.2824 0.7137 0.1647
0.2980 0.7137 0.1647
0.3255 0.7137 0.1686
0.3412 0.7098 0.1647
0.3608 0.7137 0.1686
0.3765 0.7137 0.1647
0.3961 0.7137 0.1647
0.4275 0.7176 0.1686
0.4471 0.7137 0.1647
0.4667 0.7137 0.1647
0.4941 0.7176 0.1725
0.5059 0.7098 0.1647
0.5294 0.7137 0.1686
0.5451 0.7137 0.1647
0.5647 0.7098 0.1647
0.6000 0.7137 0.1647
0.6235 0.7137 0.1686
0.6471 0.7137 0.1647
0.6706 0.7137 0.1686
0.6863 0.7137 0.1647
0.7059 0.7137 0.1608
0.7412 0.7176 0.1647
0.7765 0.7216 0.1686
0.8039 0.7294 0.1686
0.8392 0.7373 0.1725
0.8863 0.7490 0.1765
0.9216 0.7608 0.1843
0.2039 0.7451 0.1686
0.2235 0.7412 0.1686
0.2353 0.7412 0.1647
0.2549 0.7490 0.1686
0.2667 0.7412 0.1608
0.2863 0.7451 0.1686
0.3098 0.7490 0.1686
0.3333 0.7451 0.1686
0.3451 0.7412 0.1686
0.3647 0.7451 0.1686
0.3882 0.7451 0.1725
0.4078 0.7490 0.1725
0.4314 0.7451 0.1686
0.4549 0.7412 0.1647
0.4745 0.7451 0.1686
0.4980 0.7451 0.1686
0.5176 0.7451 0.1686
0.5373 0.7451 0.1686
0.5569 0.7451 0.1686
0.5765 0.7451 0.1647
0.6118 0.7451 0.1686
0.6314 0.7451 0.1686
0.6510 0.7451 0.1647
0.6784 0.7451 0.1686
0.6980 0.7490 0.1725
0.7176 0.7451 0.1725
0.7490 0.7451 0.1686
0.7686 0.7412 0.1647
0.8039 0.7529 0.1725
0.8471 0.7647 0.1804
0.8824 0.7647 0.1765
0.9216 0.7765 0.1843
0.2078 0.7804 0.1765
0.2275 0.7765 0.1725
0.2431 0.7765 0.1725
0.2549 0.7804 0.1725
0.2745 0.7765 0.1725
0.2902 0.7765 0.1686
0.3137 0.7765 0.1725
0.3373 0.7765 0.1725
0.3529 0.7765 0.1686
0.3725 0.7765 0.1725
0.3922 0.7804 0.1725
0.4118 0.7765 0.1686
0.4392 0.7725 0.1725
0.4627 0.7765 0.1725
0.4824 0.7804 0.1725
0.5020 0.7725 0.1725
0.5255 0.7765 0.1686
0.5451 0.7765 0.1725
0.5647 0.7725 0.1686
0.5843 0.7765 0.1686
0.6196 0.7765 0.1725
0.6392 0.7765 0.1725
0.6627 0.7765 0.1686
0.6863 0.7804 0.1765
0.7059 0.7765 0.1725
0.7255 0.7765 0.1725
0.7529 0.7765 0.1725
0.7725 0.7725 0.1686
0.8039 0.7765 0.1725
0.8471 0.7882 0.1804
0.8863 0.7922 0.1804
0.9216 0.8039 0.1882
0.2118 0.8196 0.1765
0.2314 0.8196 0.1804
0.2471 0.8196 0.1804
0.2588 0.8196 0.1765
0.2863 0.8235 0.1843
0.2980 0.8196 0.1804
0.3176 0.8196 0.1804
0.3490 0.8235 0.1843
0.3608 0.8196 0.1804
0.3843 0.8196 0.1804
0.4000 0.8196 0.1765
0.4196 0.8157 0.1765
0.4549 0.8196 0.1804
0.4745 0.8157 0.1804
0.4902 0.8157 0.1765
0.5176 0.8235 0.1843
0.5333 0.8157 0.1765
0.5608 0.8196 0.1804
0.5765 0.8196 0.1765
0.5961 0.8157 0.1765
0.6275 0.8157 0.1765
0.6471 0.8196 0.1765
0.6706 0.8157 0.1765
0.6902 0.8157 0.1804
0.7176 0.8196 0.1765
0.7412 0.8275 0.1843
0.7647 0.8196 0.1804
0.7843 0.8196 0.1765
0.8118 0.8196 0.1804
0.8392 0.8157 0.1725
0.8863 0.8235 0.1804
0.9255 0.8353 0.1882
0.2157 0.8588 0.1804
0.2314 0.8549 0.1765
0.2549 0.8627 0.1843
0.2706 0.8627 0.1843
0.2824 0.8549 0.1804
0.3059 0.8588 0.1843
0.3294 0.8627 0.1843
0.3490 0.8549 0.1804
0.3647 0.8549 0.1765
0.3843 0.8549 0.1765
0.4039 0.8549 0.1765
0.4353 0.8588 0.1804
0.4667 0.8627 0.1882
0.4824 0.8549 0.1804
0.4980 0.8549 0.1804
0.5255 0.8627 0.1882
0.5412 0.8549 0.1765
0.5686 0.8588 0.1843
0.5882 0.8588 0.1804
0.6078 0.8588 0.1804
0.6392 0.8588 0.1804
0.6588 0.8588 0.1804
0.6784 0.8588 0.1843
0.6980 0.8510 0.1804
0.7255 0.8549 0.1765
0.7529 0.8667 0.1882
0.7686 0.8549 0.1765
0.7882 0.8549 0.1765
0.8196 0.8627 0.1843
0.8471 0.8588 0.1765
0.8863 0.8588 0.1804
0.9176 0.8667 0.1843
0.2235 0.8863 0.1843
0.2471 0.8863 0.1843
0.2588 0.8863 0.1843
0.2745 0.8863 0.1843
0.2863 0.8784 0.1765
0.3137 0.8902 0.1882
0.3373 0.8902 0.1882
0.3569 0.8824 0.1843
0.3765 0.8863 0.1804
0.4000 0.8863 0.1843
0.4196 0.8863 0.1843
0.4431 0.8863 0.1843
0.4745 0.8824 0.1843
0.4980 0.8863 0.1882
0.5137 0.8863 0.1843
0.5294 0.8784 0.1804
0.5529 0.8863 0.1843
0.5765 0.8863 0.1882
0.6000 0.8863 0.1843
0.6196 0.8863 0.1843
0.6471 0.8863 0.1843
0.6667 0.8824 0.1843
0.6902 0.8863 0.1843
0.7059 0.8784 0.1843
0.7294 0.8784 0.1765
0.7529 0.8824 0.1843
0.7804 0.8863 0.1882
0.7961 0.8824 0.1843
0.8196 0.8824 0.1804
0.8549 0.8863 0.1843
0.8941 0.8863 0.1882
0.9216 0.8863 0.1843
0.0980 0.0431 0.0980
0.1098 0.0471 0.0980
0.1294 0.0471 0.0980
0.1451 0.0510 0.1020
0.1608 0.0510 0.1020
0.1765 0.0588 0.1059
0.1922 0.0549 0.1020
0.2118 0.0588 0.1059
0.2314 0.0588 0.1020
0.2471 0.0627 0.1059
0.2627 0.0667 0.1098
0.2863 0.0706 0.1137
0.3176 0.0745 0.1216
0.3333 0.0784 0.1255
0.3529 0.0784 0.1255
0.3804 0.0824 0.1333
0.4039 0.0863 0.1333
0.4353 0.0863 0.1373
0.4706 0.0941 0.1451
0.5020 0.0980 0.1490
0.5373 0.0980 0.1529
0.5725 0.1020 0.1569
0.6118 0.1098 0.1647
0.6392 0.1098 0.1647
0.6745 0.1098 0.1686
0.7020 0.1216 0.1765
0.7451 0.1255 0.1804
0.7686 0.1294 0.1804
0.8118 0.1333 0.1843
0.8392 0.1412 0.1882
0.8902 0.1490 0.1961
0.9255 0.1608 0.2078
0.0980 0.0510 0.0941
0.1098 0.0549 0.0980
0.1255 0.0549 0.0980
0.1451 0.0588 0.1020
0.1608 0.0627 0.1020
0.1765 0.0667 0.1059
0.1961 0.0706 0.1059
0.2196 0.0745 0.1137
0.2392 0.0784 0.1137
0.2510 0.0784 0.1137
0.2706 0.0863 0.1176
0.2902 0.0863 0.1216
0.3176 0.0824 0.1216
0.3373 0.0863 0.1255
0.3569 0.0902 0.1294
0.3882 0.0980 0.1373
0.4118 0.0980 0.1412
0.4471 0.1020 0.1451
0.4824 0.1059 0.1490
0.5098 0.1098 0.1490
0.5451 0.1137 0.1529
0.5765 0.1176 0.1569
0.6157 0.1255 0.1608
0.6510 0.1255 0.1686
0.6745 0.1333 0.1647
0.7059 0.1451 0.1765
0.7490 0.1529 0.1804
0.7765 0.1608 0.1843
0.8157 0.1647 0.1882
0.8471 0.1725 0.1922
0.8941 0.1725 0.2000
0.9216 0.1804 0.2039
0.1020 0.0667 0.0941
0.1137 0.0706 0.0980
0.1294 0.0706 0.0980
0.1451 0.0706 0.1020
0.1608 0.0745 0.1020
0.1765 0.0784 0.1020
0.1961 0.0784 0.1020
0.2196 0.0824 0.1098
0.2353 0.0863 0.1098
0.2471 0.0863 0.1098
0.2627 0.0902 0.1137
0.2863 0.0902 0.1176
0.3176 0.0941 0.1216
0.3412 0.1020 0.1255
0.3647 0.1059 0.1294
0.3922 0.1098 0.1333
0.4196 0.1098 0.1412
0.4510 0.1176 0.1451
0.4745 0.1216 0.1451
0.5059 0.1255 0.1490
0.5529 0.1333 0.1529
0.5843 0.1373 0.1569
0.6157 0.1451 0.1608
0.6471 0.1529 0.1686
0.6863 0.1608 0.1725
0.7098 0.1686 0.1804
0.7490 0.1686 0.1804
0.7765 0.1725 0.1843
0.8078 0.1725 0.1843
0.8471 0.1843 0.1922
0.8941 0.1882 0.1961
0.9216 0.1961 0.2039
0.1098 0.0824 0.1020
0.1216 0.0863 0.1020
0.1294 0.0824 0.0980
0.1451 0.0824 0.1020
0.1608 0.0863 0.1020
0.1765 0.0863 0.1020
0.2000 0.0902 0.1059
0.2235 0.0941 0.1137
0.2353 0.0941 0.1098
0.2510 0.0980 0.1137
0.2706 0.1098 0.1216
0.2941 0.1098 0.1255
0.3176 0.1098 0.1255
0.3412 0.1137 0.1255
0.3647 0.1216 0.1294
0.3961 0.1255 0.1373
0.4118 0.1333 0.1373
0.4471 0.1333 0.1451
0.4824 0.1373 0.1451
0.5137 0.1490 0.1490
0.5529 0.1608 0.1608
0.5804 0.1686 0.1647
0.6157 0.1686 0.1647
0.6549 0.1725 0.1725
0.6824 0.1725 0.1686
0.7098 0.1804 0.1765
0.7490 0.1804 0.1804
0.7804 0.1961 0.1882
0.8157 0.1961 0.1922
0.8510 0.2078 0.2000
0.8980 0.2078 0.2039
0.9294 0.2157 0.2078
0.1137 0.0941 0.1020
0.1255 0.0980 0.1059
0.1333 0.0941 0.1020
0.1490 0.0941 0.1020
0.1608 0.0941 0.1020
0.1765 0.0980 0.1020
0.2000 0.1020 0.1059
0.2235 0.1059 0.1137
0.2353 0.1059 0.1098
0.2510 0.1098 0.1137
0.2706 0.1176 0.1176
0.2902 0.1216 0.1216
0.3176 0.1216 0.1255
0.3412 0.1294 0.1255
0.3608 0.1373 0.1294
0.3922 0.1412 0.1333
0.4196 0.1529 0.1373
0.4471 0.1569 0.1451
0.4745 0.1647 0.1451
0.5059 0.1686 0.1490
0.5490 0.1686 0.1569
0.5843 0.1725 0.1608
0.6157 0.1804 0.1647
0.6471 0.1882 0.1725
0.6824 0.1922 0.1647
0.7098 0.2000 0.1765
0.7451 0.2039 0.1765
0.7765 0.2157 0.1843
0.8157 0.2196 0.1922
0.8510 0.2314 0.1961
0.8941 0.2314 0.1961
0.9255 0.2353 0.2039
0.1137 0.1059 0.0980
0.1255 0.1098 0.1059
0.1373 0.1098 0.1020
0.1529 0.1098 0.1059
0.1647 0.1098 0.1059
0.1765 0.1137 0.1059
0.2000 0.1137 0.1059
0.2196 0.1176 0.1137
0.2392 0.1255 0.1137
0.2510 0.1255 0.1137
0.2667 0.1294 0.1137
0.2902 0.1373 0.1176
0.3216 0.1451 0.1294
0.3451 0.1569 0.1333
0.3647 0.1569 0.1333
0.3922 0.1608 0.1333
0.4118 0.1686 0.1333
0.4471 0.1725 0.1412
0.4824 0.1765 0.1451
0.5098 0.1804 0.1490
0.5451 0.1843 0.1529
0.5765 0.1922 0.1569
0.6157 0.1961 0.1647
0.6510 0.2000 0.1725
0.6824 0.2118 0.1725
0.7137 0.2196 0.1804
0.7490 0.2235 0.1804
0.7725 0.2275 0.1804
0.8118 0.2353 0.1882
0.8510 0.2471 0.1961
0.8980 0.2510 0.2000
0.9294 0.2627 0.2078
0.1176 0.1255 0.1020
0.1255 0.1294 0.1059
0.1412 0.1294 0.1020
0.1529 0.1255 0.1020
0.1647 0.1255 0.1020
0.1765 0.1255 0.1020
0.1922 0.1255 0.0980
0.2157 0.1333 0.1059
0.2314 0.1373 0.1059
0.2510 0.1451 0.1137
0.2706 0.1569 0.1176
0.2902 0.1608 0.1216
0.3255 0.1647 0.1255
0.3412 0.1686 0.1294
0.3608 0.1725 0.1255
0.3882 0.1765 0.1333
0.4157 0.1804 0.1333
0.4471 0.1882 0.1412
0.4784 0.2000 0.1451
0.5098 0.2039 0.1490
0.5490 0.2039 0.1529
0.5843 0.2118 0.1569
0.6157 0.2196 0.1608
0.6431 0.2196 0.1647
0.6784 0.2275 0.1686
0.7098 0.2353 0.1804
0.7529 0.2431 0.1882
0.7765 0.2471 0.1882
0.8157 0.2549 0.1922
0.8471 0.2627 0.1922
0.8980 0.2745 0.2039
0.9294 0.2824 0.2078
0.1216 0.1451 0.1059
0.1333 0.1490 0.1098
0.1490 0.1490 0.1098
0.1647 0.1490 0.1098
0.1725 0.1451 0.1098
0.1843 0.1490 0.1098
0.2000 0.1451 0.1059
0.2196 0.1529 0.1137
0.2314 0.1529 0.1098
0.2510 0.1647 0.1176
0.2667 0.1686 0.1176
0.2863 0.1686 0.1176
0.3216 0.1765 0.1216
0.3412 0.1804 0.1255
0.3647 0.1843 0.1255
0.3961 0.1882 0.1373
0.4196 0.2000 0.1373
0.4510 0.2039 0.1451
0.4824 0.2078 0.1451
0.5059 0.2118 0.1451
0.5451 0.2235 0.1529
0.5804 0.2353 0.1608
0.6157 0.2392 0.1647
0.6431 0.2392 0.1647
0.6824 0.2510 0.1686
0.7059 0.2588 0.1725
0.7490 0.2667 0.1843
0.7725 0.2667 0.1804
0.8157 0.2784 0.1882
0.8431 0.2824 0.1882
0.8980 0.2980 0.2000
0.9294 0.3059 0.2039
0.1216 0.1686 0.1098
0.1373 0.1725 0.1137
0.1490 0.1686 0.1098
0.1647 0.1725 0.1098
0.1765 0.1725 0.1098
0.1922 0.1725 0.1137
0.2118 0.1725 0.1098
0.2235 0.1765 0.1137
0.2392 0.1686 0.1176
0.2549 0.1725 0.1176
0.2745 0.1804 0.1216
0.2902 0.1765 0.1137
0.3216 0.1843 0.1216
0.3451 0.1961 0.1294
0.3647 0.2039 0.1333
0.3922 0.2078 0.1373
0.4157 0.2118 0.1412
0.4471 0.2235 0.1451
0.4824 0.2353 0.1490
0.5098 0.2392 0.1490
0.5529 0.2431 0.1529
0.5843 0.2471 0.1608
0.6196 0.2549 0.1647
0.6471 0.2588 0.1686
0.6824 0.2627 0.1686
0.7137 0.2706 0.1765
0.7529 0.2824 0.1843
0.7804 0.2941 0.1882
0.8078 0.3020 0.1882
0.8510 0.3059 0.1922
0.8980 0.3216 0.2000
0.9294 0.3294 0.2039
0.1255 0.1804 0.1098
0.1412 0.1882 0.1137
0.1529 0.1843 0.1137
0.1725 0.1882 0.1137
0.1804 0.1843 0.1137
0.2000 0.1882 0.1137
0.2157 0.1843 0.1137
0.2275 0.1882 0.1137
0.2392 0.1922 0.1098
0.2510 0.1882 0.1098
0.2706 0.1961 0.1137
0.2902 0.2000 0.1176
0.3216 0.2078 0.1216
0.3373 0.2118 0.1216
0.3569 0.2157 0.1216
0.3882 0.2275 0.1333
0.4196 0.2353 0.1451
0.4431 0.2392 0.1451
0.4706 0.2431 0.1451
0.5059 0.2510 0.1490
0.5529 0.2627 0.1608
0.5804 0.2627 0.1569
0.6078 0.2706 0.1608
0.6510 0.2863 0.1765
0.6824 0.2863 0.1647
0.7137 0.3059 0.1804
0.7412 0.3059 0.1765
0.7804 0.3176 0.1843
0.8157 0.3294 0.1922
0.8471 0.3373 0.1922
0.8941 0.3490 0.2000
0.9255 0.3490 0.1961
0.1333 0.2039 0.1137
0.1490 0.2118 0.1216
0.1608 0.2078 0.1176
0.1765 0.2078 0.1176
0.1882 0.2078 0.1137
0.2039 0.2078 0.1137
0.2196 0.2078 0.1137
0.2314 0.2078 0.1176
0.2431 0.2078 0.1137
0.2549 0.2078 0.1137
0.2706 0.2118 0.1137
0.2902 0.2157 0.1176
0.3216 0.2235 0.1255
0.3412 0.2314 0.1255
0.3608 0.2353 0.1255
0.3922 0.2392 0.1333
0.4157 0.2471 0.1373
0.4471 0.2549 0.1451
0.4784 0.2627 0.1490
0.5098 0.2667 0.1451
0.5490 0.2745 0.1529
0.5843 0.2824 0.1608
0.6196 0.2980 0.1686
0.6471 0.3020 0.1725
0.6824 0.3098 0.1686
0.7059 0.3176 0.1725
0.7451 0.3294 0.1804
0.7765 0.3333 0.1804
0.8118 0.3451 0.1882
0.8588 0.3686 0.2039
0.8902 0.3686 0.2000
0.9294 0.3725 0.2039
0.1333 0.2275 0.1176
0.1490 0.2314 0.1216
0.1608 0.2275 0.1176
0.1765 0.2314 0.1216
0.1882 0.2314 0.1176
0.2078 0.2314 0.1216
0.2235 0.2314 0.1176
0.2353 0.2314 0.1216
0.2471 0.2275 0.1176
0.2667 0.2314 0.1216
0.2745 0.2314 0.1216
0.2902 0.2275 0.1176
0.3216 0.2353 0.1255
0.3451 0.2471 0.1294
0.3647 0.2510 0.1333
0.3922 0.2549 0.1373
0.4157 0.2588 0.1333
0.4471 0.2706 0.1412
0.4824 0.2824 0.1490
0.5137 0.2902 0.1490
0.5529 0.2941 0.1569
0.5843 0.3020 0.1608
0.6196 0.3176 0.1647
0.6471 0.3216 0.1686
0.6824 0.3333 0.1725
0.7176 0.3412 0.1804
0.7529 0.3490 0.1843
0.7804 0.3608 0.1882
0.8118 0.3686 0.1922
0.8588 0.3804 0.2000
0.8941 0.3843 0.2000
0.9255 0.3961 0.2078
0.1333 0.2471 0.1176
0.1490 0.2510 0.1216
0.1608 0.2510 0.1216
0.1804 0.2549 0.1255
0.1961 0.2549 0.1255
0.2157 0.2588 0.1294
0.2314 0.2549 0.1255
0.2431 0.2549 0.1255
0.2510 0.2510 0.1176
0.2667 0.2549 0.1216
0.2784 0.2588 0.1216
0.2980 0.2588 0.1216
0.3216 0.2588 0.1216
0.3333 0.2588 0.1216
0.3569 0.2667 0.1216
0.3922 0.2745 0.1333
0.4157 0.2863 0.1373
0.4471 0.2941 0.1451
0.4784 0.3020 0.1451
0.5098 0.3098 0.1490
0.5529 0.3216 0.1608
0.5804 0.3294 0.1608
0.6118 0.3373 0.1608
0.6431 0.3451 0.1686
0.6745 0.3490 0.1647
0.7137 0.3647 0.1765
0.7529 0.3765 0.1843
0.7804 0.3882 0.1882
0.8078 0.3922 0.1882
0.8549 0.4039 0.1961
0.8941 0.4118 0.1961
0.9216 0.4235 0.2039
0.1373 0.2706 0.1216
0.1529 0.2745 0.1255
0.1686 0.2745 0.1216
0.1843 0.2784 0.1255
0.2000 0.2784 0.1255
0.2196 0.2784 0.1294
0.2314 0.2745 0.1255
0.2431 0.2745 0.1255
0.2549 0.2745 0.1176
0.2706 0.2745 0.1216
0.2824 0.2784 0.1255
0.3020 0.2784 0.1255
0.3216 0.2745 0.1255
0.3373 0.2784 0.1216
0.3608 0.2824 0.1255
0.3961 0.2941 0.1373
0.4157 0.3020 0.1373
0.4510 0.3137 0.1451
0.4784 0.3216 0.1451
0.5059 0.3255 0.1451
0.5490 0.3373 0.1569
0.5843 0.3529 0.1647
0.6196 0.3647 0.1686
0.6471 0.3686 0.1725
0.6863 0.3725 0.1725
0.7098 0.3843 0.1765
0.7490 0.3961 0.1843
0.7804 0.4000 0.1804
0.8078 0.4078 0.1804
0.8510 0.4314 0.2000
0.8902 0.4353 0.1961
0.9333 0.4510 0.2078
0.1451 0.3020 0.1255
0.1608 0.3059 0.1333
0.1765 0.3059 0.1294
0.1922 0.3059 0.1333
0.2039 0.3059 0.1294
0.2235 0.3059 0.1294
0.2392 0.3059 0.1294
0.2510 0.3059 0.1294
0.2667 0.3059 0.1333
0.2824 0.3059 0.1333
0.2941 0.3059 0.1333
0.3137 0.3059 0.1294
0.3333 0.2980 0.1294
0.3490 0.3020 0.1294
0.3686 0.3059 0.1333
0.3922 0.3059 0.1333
0.4196 0.3216 0.1412
0.4471 0.3255 0.1412
0.4784 0.3412 0.1451
0.5098 0.3529 0.1490
0.5529 0.3608 0.1569
0.5882 0.3686 0.1608
0.6235 0.3804 0.1686
0.6510 0.3882 0.1725
0.6863 0.3882 0.1725
0.7176 0.4118 0.1882
0.7412 0.4118 0.1804
0.7843 0.4275 0.1882
0.8157 0.4392 0.1922
0.8510 0.4588 0.2000
0.8980 0.4745 0.2078
0.9333 0.4784 0.2118
0.1451 0.3216 0.1294
0.1647 0.3333 0.1373
0.1804 0.3333 0.1373
0.2000 0.3373 0.1412
0.2118 0.3333 0.1373
0.2275 0.3333 0.1373
0.2431 0.3333 0.1373
0.2588 0.3333 0.1373
0.2706 0.3333 0.1333
0.2824 0.3333 0.1333
0.2980 0.3333 0.1333
0.3216 0.3373 0.1373
0.3412 0.3333 0.1333
0.3569 0.3333 0.1333
0.3725 0.3333 0.1333
0.3922 0.3294 0.1333
0.4196 0.3412 0.1451
0.4471 0.3490 0.1451
0.4745 0.3569 0.1451
0.5098 0.3725 0.1490
0.5569 0.3882 0.1647
0.5843 0.3882 0.1647
0.6118 0.3922 0.1647
0.6471 0.4000 0.1686
0.6784 0.4157 0.1686
0.7176 0.4314 0.1804
0.7490 0.4431 0.1804
0.7843 0.4667 0.1922
0.8157 0.4784 0.1961
0.8549 0.4863 0.2000
0.8902 0.4863 0.1922
0.9176 0.4980 0.2000
0.1529 0.3529 0.1373
0.1686 0.3647 0.1412
0.1765 0.3647 0.1333
0.2039 0.3686 0.1373
0.2157 0.3608 0.1333
0.2353 0.3686 0.1412
0.2471 0.3686 0.1412
0.2588 0.3647 0.1412
0.2706 0.3647 0.1373
0.2941 0.3647 0.1412
0.3098 0.3647 0.1412
0.3294 0.3686 0.1412
0.3490 0.3647 0.1412
0.3608 0.3647 0.1373
0.3765 0.3647 0.1373
0.4000 0.3647 0.1412
0.4157 0.3647 0.1373
0.4510 0.3686 0.1451
0.4863 0.3843 0.1490
0.5137 0.3922 0.1490
0.5490 0.3961 0.1529
0.5843 0.4078 0.1569
0.6157 0.4235 0.1647
0.6510 0.4392 0.1725
0.6863 0.4392 0.1686
0.7176 0.4667 0.1843
0.7490 0.4784 0.1804
0.7843 0.4863 0.1843
0.8078 0.4902 0.1804
0.8510 0.5098 0.1961
0.8941 0.5098 0.2000
0.9294 0.5176 0.2078
0.1569 0.3804 0.1451
0.1686 0.3882 0.1490
0.1882 0.3922 0.1451
0.2078 0.3922 0.1451
0.2275 0.3922 0.1529
0.2353 0.3882 0.1451
0.2510 0.3922 0.1490
0.2667 0.3922 0.1490
0.2784 0.3922 0.1451
0.2980 0.3882 0.1451
0.3137 0.3882 0.1412
0.3333 0.3961 0.1490
0.3529 0.3922 0.1451
0.3647 0.3882 0.1412
0.3804 0.3882 0.1412
0.4039 0.3922 0.1490
0.4235 0.3882 0.1490
0.4549 0.3882 0.1490
0.4784 0.3922 0.1451
0.5059 0.4039 0.1490
0.5490 0.4196 0.1569
0.5804 0.4314 0.1569
0.6118 0.4471 0.1608
0.6510 0.4667 0.1765
0.6863 0.4863 0.1765
0.7176 0.4902 0.1804
0.7451 0.4941 0.1804
0.7725 0.5059 0.1804
0.8157 0.5137 0.1882
0.8510 0.5176 0.1882
0.8941 0.5373 0.1961
0.9255 0.5373 0.1961
0.1608 0.4078 0.1373
0.1804 0.4235 0.1490
0.1922 0.4235 0.1451
0.2196 0.4275 0.1490
0.2275 0.4196 0.1412
0.2431 0.4235 0.1451
0.2549 0.4157 0.1412
0.2706 0.4196 0.1451
0.2863 0.4235 0.1412
0.3059 0.4235 0.1451
0.3216 0.4235 0.1412
0.3451 0.4275 0.1451
0.3608 0.4235 0.1451
0.3765 0.4235 0.1412
0.3961 0.4235 0.1451
0.4157 0.4235 0.1451
0.4275 0.4235 0.1451
0.4588 0.4235 0.1490
0.4745 0.4235 0.1412
0.4980 0.4314 0.1412
0.5451 0.4471 0.1529
0.5882 0.4667 0.1647
0.6196 0.4824 0.1686
0.6431 0.4863 0.1686
0.6784 0.5020 0.1686
0.7059 0.5020 0.1725
0.7490 0.5098 0.1843
0.7765 0.5216 0.1882
0.8078 0.5294 0.1922
0.8588 0.5451 0.1961
0.8941 0.5529 0.1922
0.9333 0.5804 0.2118
0.1608 0.4588 0.1412
0.1804 0.4706 0.1490
0.2000 0.4745 0.1529
0.2196 0.4745 0.1490
0.2353 0.4745 0.1490
0.2471 0.4745 0.1490
0.2627 0.4706 0.1490
0.2784 0.4745 0.1529
0.2980 0.4706 0.1490
0.3176 0.4745 0.1529
0.3333 0.4745 0.1529
0.3490 0.4745 0.1529
0.3686 0.4706 0.1490
0.3882 0.4706 0.1490
0.4039 0.4745 0.1529
0.4235 0.4706 0.1529
0.4471 0.4784 0.1490
0.4745 0.4745 0.1529
0.4902 0.4706 0.1490
0.5098 0.4745 0.1490
0.5490 0.4784 0.1569
0.5882 0.4902 0.1647
0.6235 0.4980 0.1686
0.6471 0.5020 0.1647
0.6863 0.5137 0.1725
0.7137 0.5294 0.1804
0.7412 0.5255 0.1765
0.7804 0.5451 0.1882
0.8078 0.5608 0.1961
0.8627 0.5804 0.2078
0.9020 0.5882 0.2078
0.9176 0.5961 0.2039
0.1686 0.4980 0.1490
0.1804 0.5020 0.1490
0.2000 0.5059 0.1529
0.2235 0.5098 0.1569
0.2392 0.5098 0.1569
0.2471 0.5059 0.1529
0.2627 0.5059 0.1490
0.2863 0.5098 0.1569
0.3020 0.5059 0.1529
0.3216 0.5020 0.1529
0.3333 0.5020 0.1529
0.3529 0.5059 0.1529
0.3804 0.5059 0.1569
0.3922 0.5020 0.1529
0.4118 0.5059 0.1529
0.4353 0.5059 0.1569
0.4549 0.5059 0.1490
0.4824 0.5059 0.1529
0.4980 0.5020 0.1529
0.5137 0.5020 0.1490
0.5490 0.5020 0.1569
0.5843 0.5059 0.1569
0.6196 0.5137 0.1647
0.6510 0.5255 0.1725
0.6863 0.5412 0.1725
0.7059 0.5451 0.1686
0.7490 0.5765 0.1882
0.7725 0.5804 0.1804
0.8118 0.5922 0.1843
0.8471 0.6078 0.1961
0.8863 0.6157 0.2000
0.9294 0.6235 0.2078
0.1725 0.5255 0.1529
0.1961 0.5373 0.1608
0.2118 0.5373 0.1569
0.2353 0.5412 0.1647
0.2392 0.5294 0.1529
0.2549 0.5373 0.1608
0.2706 0.5333 0.1529
0.2941 0.5373 0.1608
0.3137 0.5373 0.1569
0.3333 0.5373 0.1608
0.3451 0.5373 0.1569
0.3647 0.5373 0.1569
0.3882 0.5412 0.1608
0.4039 0.5373 0.1569
0.4235 0.5373 0.1569
0.4471 0.5373 0.1608
0.4706 0.5373 0.1608
0.4941 0.5373 0.1647
0.5098 0.5373 0.1608
0.5216 0.5373 0.1569
0.5529 0.5373 0.1569
0.5843 0.5412 0.1608
0.6157 0.5490 0.1647
0.6431 0.5569 0.1686
0.6863 0.5686 0.1765
0.7098 0.5882 0.1843
0.7412 0.6000 0.1804
0.7765 0.6078 0.1804
0.8157 0.6196 0.1882
0.8431 0.6235 0.1882
0.8863 0.6275 0.1961
0.9333 0.6353 0.2078
0.1725 0.5725 0.1569
0.2000 0.5882 0.1725
0.2235 0.5922 0.1765
0.2353 0.5843 0.1686
0.2471 0.5843 0.1686
0.2588 0.5843 0.1686
0.2824 0.5882 0.1725
0.2980 0.5843 0.1686
0.3137 0.5843 0.1647
0.3373 0.5843 0.1686
0.3529 0.5843 0.1647
0.3647 0.5843 0.1608
0.3922 0.5843 0.1647
0.4118 0.5882 0.1686
0.4353 0.5922 0.1686
0.4549 0.5843 0.1686
0.4863 0.5882 0.1765
0.4980 0.5765 0.1686
0.5176 0.5804 0.1647
0.5373 0.5882 0.1686
0.5647 0.5882 0.1686
0.5922 0.5843 0.1647
0.6196 0.5922 0.1647
0.6431 0.5922 0.1686
0.6824 0.5961 0.1765
0.7137 0.6196 0.1882
0.7490 0.6235 0.1882
0.7765 0.6196 0.1804
0.8078 0.6353 0.1882
0.8627 0.6549 0.2039
0.8980 0.6471 0.1961
0.9333 0.6627 0.2078
0.1804 0.6118 0.1608
0.2000 0.6235 0.1686
0.2157 0.6157 0.1647
0.2431 0.6235 0.1725
0.2549 0.6235 0.1686
0.2667 0.6235 0.1686
0.2824 0.6196 0.1647
0.3020 0.6196 0.1647
0.3294 0.6196 0.1725
0.3451 0.6157 0.1686
0.3608 0.6196 0.1686
0.3804 0.6196 0.1686
0.4039 0.6196 0.1725
0.4235 0.6196 0.1686
0.4471 0.6235 0.1725
0.4667 0.6196 0.1725
0.4824 0.6235 0.1647
0.5098 0.6235 0.1686
0.5255 0.6235 0.1686
0.5412 0.6196 0.1647
0.5725 0.6196 0.1686
0.6039 0.6196 0.1725
0.6275 0.6196 0.1725
0.6471 0.6196 0.1725
0.6784 0.6275 0.1686
0.7098 0.6235 0.1725
0.7490 0.6392 0.1843
0.7765 0.6510 0.1882
0.8118 0.6549 0.1922
0.8510 0.6627 0.1922
0.8980 0.6863 0.2039
0.9255 0.6941 0.2039
0.1804 0.6392 0.1686
0.2078 0.6471 0.1765
0.2235 0.6510 0.1725
0.2392 0.6471 0.1725
0.2588 0.6392 0.1725
0.2745 0.6471 0.1765
0.2902 0.6510 0.1725
0.3137 0.6510 0.1725
0.3333 0.6471 0.1725
0.3569 0.6510 0.1765
0.3647 0.6471 0.1686
0.3922 0.6549 0.1765
0.4118 0.6471 0.1686
0.4392 0.6549 0.1765
0.4549 0.6510 0.1686
0.4784 0.6549 0.1725
0.4941 0.6510 0.1725
0.5216 0.6549 0.1804
0.5373 0.6549 0.1765
0.5569 0.6510 0.1725
0.5843 0.6510 0.1765
0.6157 0.6588 0.1804
0.6314 0.6549 0.1725
0.6510 0.6510 0.1725
0.6824 0.6549 0.1765
0.7098 0.6510 0.1765
0.7490 0.6667 0.1843
0.7765 0.6706 0.1843
0.8196 0.6824 0.1922
0.8549 0.6941 0.1961
0.8980 0.7098 0.2039
0.9294 0.7137 0.2078
0.1804 0.6706 0.1647
0.2118 0.6863 0.1804
0.2235 0.6863 0.1725
0.2510 0.6941 0.1804
0.2667 0.6863 0.1804
0.2784 0.6902 0.1804
0.2941 0.6902 0.1765
0.3176 0.6902 0.1725
0.3412 0.6902 0.1765
0.3569 0.6863 0.1765
0.3765 0.6863 0.1765
0.3961 0.6902 0.1765
0.4196 0.6902 0.1765
0.4431 0.6941 0.1765
0.4549 0.6863 0.1686
0.4824 0.6902 0.1725
0.5059 0.6863 0.1765
0.5294 0.6863 0.1765
0.5490 0.6863 0.1804
0.5686 0.6824 0.1725
0.6000 0.6863 0.1804
0.6235 0.6902 0.1765
0.6471 0.6902 0.1765
0.6667 0.6863 0.1725
0.6863 0.6863 0.1725
0.7098 0.6863 0.1725
0.7451 0.6941 0.1804
0.7765 0.7020 0.1843
0.8118 0.7098 0.1843
0.8471 0.7176 0.1922
0.8941 0.7333 0.2000
0.9255 0.7373 0.2039
0.2000 0.7137 0.1804
0.2235 0.7255 0.1882
0.2353 0.7216 0.1804
0.2549 0.7255 0.1843
0.2627 0.7137 0.1765
0.2863 0.7255 0.1882
0.3020 0.7216 0.1804
0.3333 0.7294 0.1882
0.3529 0.7255 0.1843
0.3647 0.7176 0.1804
0.3882 0.7255 0.1843
0.3961 0.7137 0.1725
0.4275 0.7176 0.1765
0.4549 0.7255 0.1843
0.4706 0.7255 0.1804
0.4941 0.7255 0.1804
0.5176 0.7255 0.1804
0.5373 0.7216 0.1804
0.5608 0.7294 0.1882
0.5804 0.7255 0.1843
0.6078 0.7255 0.1843
0.6235 0.7176 0.1765
0.6510 0.7255 0.1804
0.6745 0.7255 0.1843
0.6941 0.7176 0.1765
0.7255 0.7216 0.1843
0.7490 0.7255 0.1843
0.7765 0.7294 0.1843
0.8157 0.7373 0.1882
0.8510 0.7451 0.1922
0.8902 0.7529 0.1961
0.9333 0.7608 0.2078
0.2078 0.7451 0.1843
0.2353 0.7608 0.1961
0.2353 0.7490 0.1804
0.2627 0.7569 0.1882
0.2745 0.7490 0.1804
0.2863 0.7490 0.1804
0.3137 0.7569 0.1882
0.3412 0.7569 0.1882
0.3529 0.7490 0.1843
0.3725 0.7490 0.1843
0.4000 0.7569 0.1922
0.4078 0.7490 0.1804
0.4431 0.7529 0.1882
0.4667 0.7608 0.1922
0.4902 0.7647 0.1922
0.5059 0.7569 0.1882
0.5255 0.7608 0.1882
0.5412 0.7529 0.1843
0.5647 0.7569 0.1843
0.5882 0.7608 0.1882
0.6196 0.7608 0.1922
0.6392 0.7608 0.1882
0.6588 0.7647 0.1882
0.6824 0.7608 0.1882
0.7020 0.7490 0.1804
0.7373 0.7569 0.1922
0.7569 0.7529 0.1882
0.7843 0.7608 0.1882
0.8157 0.7608 0.1922
0.8510 0.7686 0.1961
0.8902 0.7725 0.1961
0.9333 0.7804 0.2078
0.2078 0.7804 0.1804
0.2275 0.7882 0.1882
0.2431 0.7922 0.1882
0.2627 0.7961 0.1922
0.2824 0.7922 0.1882
0.2980 0.7961 0.1882
0.3137 0.7922 0.1882
0.3451 0.7961 0.1922
0.3608 0.7961 0.1882
0.3765 0.7882 0.1882
0.4000 0.7922 0.1882
0.4235 0.7961 0.1882
0.4510 0.7961 0.1882
0.4667 0.7922 0.1843
0.4902 0.7961 0.1882
0.5137 0.7961 0.1922
0.5333 0.7961 0.1882
0.5529 0.7922 0.1882
0.5765 0.7922 0.1843
0.6000 0.7961 0.1922
0.6235 0.7922 0.1882
0.6471 0.7922 0.1843
0.6667 0.7922 0.1882
0.6941 0.7961 0.1922
0.7098 0.7922 0.1882
0.7373 0.7961 0.1922
0.7569 0.7922 0.1882
0.7843 0.8000 0.1922
0.8078 0.7922 0.1882
0.8471 0.8000 0.1922
0.8863 0.8039 0.1961
0.9255 0.8078 0.2039
0.2118 0.8157 0.1882
0.2353 0.8275 0.2000
0.2471 0.8275 0.1961
0.2706 0.8314 0.2000
0.2941 0.8353 0.2000
0.3020 0.8275 0.1922
0.3294 0.8353 0.2039
0.3529 0.8314 0.2039
0.3686 0.8314 0.2000
0.3922 0.8314 0.2000
0.4078 0.8275 0.1961
0.4353 0.8314 0.1961
0.4588 0.8275 0.1961
0.4784 0.8275 0.1922
0.5059 0.8353 0.2000
0.5294 0.8353 0.2039
0.5490 0.8353 0.2039
0.5686 0.8314 0.2000
0.5843 0.8275 0.1922
0.6118 0.8314 0.2000
0.6392 0.8275 0.1961
0.6627 0.8314 0.2000
0.6784 0.8275 0.1961
0.6980 0.8235 0.1961
0.7216 0.8353 0.2000
0.7490 0.8314 0.2039
0.7647 0.8314 0.1961
0.7922 0.8314 0.2000
0.8157 0.8275 0.1961
0.8510 0.8314 0.2000
0.8902 0.8392 0.2039
0.9255 0.8392 0.2078
0.2235 0.8549 0.1961
0.2392 0.8588 0.2039
0.2549 0.8627 0.2039
0.2745 0.8627 0.2039
0.2980 0.8627 0.2039
0.3176 0.8667 0.2039
0.3333 0.8627 0.2039
0.3608 0.8627 0.2078
0.3765 0.8588 0.2000
0.4000 0.8627 0.2078
0.4235 0.8627 0.2039
0.4471 0.8627 0.2039
0.4745 0.8627 0.2039
0.4941 0.8627 0.2039
0.5137 0.8627 0.2039
0.5333 0.8627 0.2039
0.5529 0.8627 0.2039
0.5765 0.8627 0.2078
0.5961 0.8627 0.2039
0.6196 0.8667 0.2039
0.6471 0.8627 0.2039
0.6706 0.8627 0.2039
0.6863 0.8627 0.2039
0.7098 0.8627 0.2078
0.7294 0.8627 0.2039
0.7569 0.8627 0.2078
0.7765 0.8627 0.2039
0.8000 0.8588 0.2039
0.8275 0.8588 0.2039
0.8588 0.8627 0.2078
0.8902 0.8627 0.2039
0.9255 0.8627 0.2078
0.2235 0.8863 0.1961
0.2471 0.8941 0.2039
0.2549 0.8863 0.2000
0.2824 0.8941 0.2039
0.3020 0.8902 0.2000
0.3216 0.8941 0.2039
0.3412 0.8902 0.2000
0.3647 0.8902 0.2039
0.3843 0.8902 0.2039
0.4039 0.8863 0.2039
0.4314 0.8902 0.2039
0.4510 0.8902 0.2000
0.4863 0.8941 0.2039
0.5020 0.8902 0.2039
0.5176 0.8902 0.2000
0.5451 0.8941 0.2078
0.5608 0.8902 0.2000
0.5843 0.8902 0.2039
0.6078 0.8902 0.2039
0.6275 0.8902 0.2000
0.6588 0.8902 0.2039
0.6784 0.8902 0.2039
0.6980 0.8902 0.2039
0.7176 0.8902 0.2078
0.7373 0.8902 0.2000
0.7608 0.8863 0.2000
0.7882 0.8902 0.2039
0.8118 0.8941 0.2039
0.8392 0.8902 0.2039
0.8667 0.8902 0.2039
0.8941 0.8902 0.2000
0.9255 0.8863 0.2000
0.1059 0.0471 0.1020
0.1137 0.0471 0.1020
0.1255 0.0471 0.1020
0.1412 0.0471 0.1020
0.1608 0.0549 0.1098
0.1765 0.0588 0.1098
0.1961 0.0588 0.1098
0.2118 0.0588 0.1137
0.2353 0.0588 0.1176
0.2431 0.0627 0.1176
0.2667 0.0667 0.1216
0.2863 0.0745 0.1255
0.3137 0.0745 0.1333
0.3333 0.0745 0.1373
0.3490 0.0824 0.1412
0.3804 0.0824 0.1490
0.4078 0.0863 0.1451
0.4392 0.0863 0.1529
0.4667 0.0941 0.1569
0.4980 0.0980 0.1608
0.5373 0.0941 0.1686
0.5725 0.1020 0.1725
0.6078 0.1020 0.1765
0.6471 0.1098 0.1843
0.6745 0.1098 0.1843
0.7098 0.1176 0.1882
0.7451 0.1216 0.1922
0.7686 0.1333 0.1961
0.8000 0.1333 0.2000
0.8431 0.1373 0.2039
0.8902 0.1569 0.2196
0.9255 0.1608 0.2275
0.1059 0.0549 0.1059
0.1137 0.0588 0.1059
0.1294 0.0588 0.1059
0.1490 0.0588 0.1098
0.1647 0.0627 0.1137
0.1765 0.0667 0.1098
0.2000 0.0706 0.1176
0.2196 0.0745 0.1216
0.2353 0.0706 0.1216
0.2510 0.0784 0.1255
0.2745 0.0824 0.1294
0.2902 0.0824 0.1294
0.3176 0.0824 0.1373
0.3451 0.0902 0.1451
0.3647 0.0980 0.1490
0.3922 0.0941 0.1490
0.4157 0.0941 0.1490
0.4510 0.1020 0.1569
0.4824 0.1098 0.1647
0.5098 0.1098 0.1647
0.5451 0.1137 0.1686
0.5882 0.1255 0.1804
0.6196 0.1294 0.1804
0.6510 0.1294 0.1843
0.6784 0.1333 0.1804
0.7137 0.1451 0.1882
0.7529 0.1529 0.2000
0.7765 0.1647 0.2039
0.8118 0.1647 0.2078
0.8588 0.1725 0.2157
0.8902 0.1765 0.2157
0.9216 0.1765 0.2157
0.1059 0.0627 0.1020
0.1176 0.0706 0.1059
0.1333 0.0745 0.1098
0.1529 0.0745 0.1137
0.1686 0.0784 0.1137
0.1765 0.0784 0.1098
0.2000 0.0824 0.1176
0.2235 0.0863 0.1216
0.2392 0.0863 0.1255
0.2549 0.0941 0.1255
0.2745 0.0941 0.1294
0.2941 0.0980 0.1333
0.3216 0.0980 0.1412
0.3451 0.1020 0.1412
0.3647 0.1098 0.1451
0.4000 0.1098 0.1490
0.4353 0.1216 0.1608
0.4588 0.1216 0.1647
0.4863 0.1255 0.1647
0.5176 0.1333 0.1725
0.5529 0.1373 0.1725
0.5882 0.1451 0.1765
0.6235 0.1529 0.1765
0.6627 0.1608 0.1843
0.6902 0.1608 0.1882
0.7255 0.1686 0.1961
0.7608 0.1725 0.2000
0.7804 0.1804 0.2039
0.8157 0.1804 0.2078
0.8667 0.1922 0.2235
0.8941 0.1961 0.2196
0.9373 0.2039 0.2275
0.1098 0.0784 0.1020
0.1216 0.0824 0.1059
0.1333 0.0863 0.1059
0.1529 0.0863 0.1098
0.1686 0.0902 0.1098
0.1804 0.0863 0.1098
0.2039 0.0941 0.1137
0.2235 0.1020 0.1216
0.2392 0.0980 0.1216
0.2549 0.1059 0.1294
0.2784 0.1098 0.1333
0.2941 0.1098 0.1333
0.3216 0.1137 0.1412
0.3490 0.1216 0.1451
0.3686 0.1294 0.1451
0.4000 0.1294 0.1490
0.4314 0.1373 0.1569
0.4588 0.1412 0.1608
0.4902 0.1490 0.1686
0.5216 0.1608 0.1765
0.5608 0.1647 0.1804
0.5922 0.1686 0.1804
0.6235 0.1725 0.1804
0.6549 0.1765 0.1804
0.6902 0.1765 0.1882
0.7255 0.1882 0.2000
0.7569 0.1882 0.2000
0.7882 0.2000 0.2118
0.8196 0.2039 0.2157
0.8745 0.2118 0.2275
0.9020 0.2157 0.2275
0.9451 0.2275 0.2353
0.1137 0.0902 0.1059
0.1216 0.0941 0.1098
0.1373 0.0980 0.1098
0.1569 0.0980 0.1137
0.1686 0.0980 0.1098
0.1804 0.0980 0.1098
0.2039 0.1059 0.1137
0.2235 0.1098 0.1216
0.2431 0.1098 0.1216
0.2549 0.1176 0.1294
0.2784 0.1216 0.1294
0.2902 0.1255 0.1333
0.3216 0.1294 0.1412
0.3490 0.1373 0.1451
0.3647 0.1451 0.1451
0.3961 0.1451 0.1490
0.4314 0.1608 0.1608
0.4588 0.1608 0.1647
0.4824 0.1647 0.1647
0.5176 0.1725 0.1686
0.5529 0.1725 0.1725
0.5882 0.1804 0.1765
0.6235 0.1882 0.1804
0.6588 0.1922 0.1843
0.6824 0.1961 0.1804
0.7216 0.2118 0.1961
0.7529 0.2078 0.1961
0.7843 0.2275 0.2078
0.8196 0.2275 0.2157
0.8667 0.2353 0.2196
0.8941 0.2353 0.2157
0.9333 0.2392 0.2235
0.1137 0.1059 0.1098
0.1255 0.1098 0.1137
0.1412 0.1137 0.1176
0.1608 0.1137 0.1176
0.1647 0.1098 0.1137
0.1804 0.1137 0.1137
0.2039 0.1176 0.1176
0.2235 0.1216 0.1216
0.2431 0.1255 0.1216
0.2510 0.1294 0.1216
0.2745 0.1333 0.1294
0.2941 0.1451 0.1373
0.3294 0.1529 0.1451
0.3490 0.1569 0.1490
0.3647 0.1647 0.1451
0.4000 0.1686 0.1529
0.4275 0.1725 0.1529
0.4549 0.1765 0.1608
0.4824 0.1804 0.1608
0.5216 0.1922 0.1725
0.5608 0.1961 0.1804
0.5922 0.2000 0.1804
0.6275 0.2039 0.1804
0.6627 0.2118 0.1882
0.6863 0.2157 0.1843
0.7255 0.2314 0.2000
0.7529 0.2275 0.2000
0.7804 0.2392 0.2078
0.8157 0.2431 0.2118
0.8627 0.2510 0.2196
0.8980 0.2627 0.2235
0.9373 0.2667 0.2314
0.1137 0.1255 0.1098
0.1216 0.1294 0.1098
0.1412 0.1333 0.1176
0.1569 0.1294 0.1137
0.1647 0.1255 0.1098
0.1804 0.1333 0.1137
0.2000 0.1333 0.1137
0.2196 0.1373 0.1176
0.2392 0.1451 0.1216
0.2549 0.1529 0.1255
0.2784 0.1608 0.1333
0.2941 0.1608 0.1294
0.3255 0.1647 0.1373
0.3490 0.1725 0.1451
0.3608 0.1765 0.1412
0.3922 0.1765 0.1451
0.4196 0.1804 0.1451
0.4588 0.1961 0.1608
0.4863 0.2000 0.1647
0.5137 0.2039 0.1686
0.5569 0.2118 0.1725
0.5922 0.2196 0.1804
0.6275 0.2235 0.1804
0.6549 0.2235 0.1843
0.6902 0.2353 0.1882
0.7255 0.2471 0.2000
0.7569 0.2471 0.2039
0.7765 0.2549 0.2039
0.8118 0.2588 0.2118
0.8627 0.2706 0.2196
0.8980 0.2824 0.2275
0.9412 0.2902 0.2314
0.1216 0.1451 0.1137
0.1294 0.1490 0.1137
0.1490 0.1569 0.1216
0.1647 0.1569 0.1216
0.1765 0.1529 0.1176
0.1961 0.1608 0.1216
0.2078 0.1569 0.1176
0.2235 0.1569 0.1176
0.2431 0.1608 0.1255
0.2549 0.1647 0.1255
0.2784 0.1725 0.1294
0.2941 0.1725 0.1255
0.3255 0.1765 0.1333
0.3529 0.1843 0.1412
0.3686 0.1922 0.1451
0.4078 0.2000 0.1569
0.4235 0.2000 0.1529
0.4588 0.2118 0.1686
0.4863 0.2157 0.1686
0.5176 0.2235 0.1725
0.5569 0.2314 0.1804
0.5882 0.2353 0.1765
0.6235 0.2431 0.1804
0.6588 0.2510 0.1882
0.6902 0.2588 0.1882
0.7176 0.2627 0.1922
0.7569 0.2706 0.2000
0.7765 0.2745 0.2000
0.8157 0.2863 0.2118
0.8627 0.2941 0.2157
0.8980 0.3059 0.2196
0.9412 0.3176 0.2275
0.1216 0.1725 0.1176
0.1333 0.1686 0.1176
0.1529 0.1725 0.1216
0.1686 0.1725 0.1216
0.1804 0.1725 0.1216
0.1961 0.1725 0.1216
0.2118 0.1725 0.1176
0.2275 0.1725 0.1216
0.2431 0.1725 0.1255
0.2588 0.1765 0.1255
0.2745 0.1843 0.1294
0.2941 0.1843 0.1294
0.3255 0.1922 0.1373
0.3490 0.2000 0.1412
0.3725 0.2078 0.1451
0.4000 0.2118 0.1490
0.4275 0.2196 0.1529
0.4549 0.2235 0.1608
0.4902 0.2353 0.1647
0.5255 0.2471 0.1765
0.5529 0.2471 0.1725
0.5922 0.2510 0.1765
0.6314 0.2549 0.1804
0.6588 0.2667 0.1882
0.6863 0.2706 0.1843
0.7255 0.2824 0.1961
0.7569 0.2980 0.2039
0.7882 0.3020 0.2039
0.8196 0.3059 0.2078
0.8627 0.3176 0.2196
0.9020 0.3294 0.2235
0.9451 0.3373 0.2314
0.1176 0.1804 0.1137
0.1333 0.1843 0.1176
0.1608 0.1961 0.1294
0.1765 0.1961 0.1333
0.1804 0.1882 0.1255
0.2000 0.1882 0.1255
0.2196 0.1922 0.1294
0.2314 0.1961 0.1294
0.2431 0.1922 0.1294
0.2549 0.1922 0.1294
0.2706 0.2000 0.1333
0.2941 0.2078 0.1333
0.3255 0.2118 0.1451
0.3412 0.2118 0.1412
0.3647 0.2196 0.1412
0.4000 0.2314 0.1529
0.4235 0.2353 0.1569
0.4549 0.2431 0.1608
0.4824 0.2471 0.1608
0.5137 0.2549 0.1686
0.5529 0.2667 0.1765
0.5882 0.2706 0.1765
0.6275 0.2745 0.1804
0.6627 0.2941 0.1961
0.6824 0.2980 0.1804
0.7333 0.3059 0.1961
0.7569 0.3176 0.2000
0.7804 0.3255 0.2000
0.8118 0.3333 0.2078
0.8667 0.3412 0.2196
0.9020 0.3529 0.2196
0.9294 0.3608 0.2235
0.1294 0.2078 0.1255
0.1451 0.2078 0.1255
0.1647 0.2118 0.1294
0.1804 0.2157 0.1333
0.1961 0.2157 0.1333
0.2118 0.2157 0.1333
0.2235 0.2118 0.1333
0.2353 0.2118 0.1333
0.2510 0.2118 0.1333
0.2627 0.2157 0.1333
0.2745 0.2196 0.1333
0.2980 0.2196 0.1333
0.3294 0.2275 0.1451
0.3490 0.2314 0.1451
0.3686 0.2392 0.1412
0.4000 0.2471 0.1490
0.4275 0.2510 0.1569
0.4549 0.2588 0.1647
0.4863 0.2667 0.1647
0.5176 0.2745 0.1686
0.5569 0.2863 0.1765
0.6000 0.2941 0.1843
0.6353 0.2980 0.1843
0.6549 0.3020 0.1843
0.6824 0.3176 0.1843
0.7294 0.3333 0.2000
0.7529 0.3412 0.2039
0.7843 0.3451 0.2039
0.8196 0.3569 0.2157
0.8706 0.3686 0.2235
0.9020 0.3765 0.2235
0.9373 0.3804 0.2275
0.1294 0.2235 0.1255
0.1490 0.2314 0.1333
0.1647 0.2353 0.1333
0.1804 0.2353 0.1333
0.2000 0.2353 0.1373
0.2157 0.2353 0.1373
0.2275 0.2353 0.1373
0.2431 0.2392 0.1412
0.2549 0.2353 0.1373
0.2706 0.2353 0.1373
0.2824 0.2353 0.1373
0.2980 0.2353 0.1373
0.3333 0.2431 0.1451
0.3569 0.2549 0.1490
0.3725 0.2588 0.1451
0.4000 0.2627 0.1490
0.4275 0.2667 0.1529
0.4549 0.2745 0.1608
0.4941 0.2902 0.1686
0.5216 0.2980 0.1725
0.5569 0.3059 0.1765
0.5922 0.3059 0.1725
0.6353 0.3216 0.1804
0.6627 0.3333 0.1882
0.6824 0.3412 0.1882
0.7255 0.3569 0.2039
0.7490 0.3608 0.2039
0.7882 0.3647 0.2078
0.8196 0.3725 0.2157
0.8667 0.3843 0.2235
0.9020 0.3961 0.2235
0.9490 0.4039 0.2314
0.1294 0.2431 0.1294
0.1451 0.2549 0.1333
0.1686 0.2627 0.1412
0.1843 0.2627 0.1451
0.2000 0.2588 0.1412
0.2157 0.2588 0.1412
0.2353 0.2627 0.1490
0.2431 0.2667 0.1490
0.2588 0.2588 0.1412
0.2706 0.2588 0.1412
0.2824 0.2588 0.1412
0.3020 0.2588 0.1412
0.3294 0.2588 0.1451
0.3451 0.2667 0.1451
0.3647 0.2745 0.1451
0.4000 0.2863 0.1529
0.4235 0.2941 0.1569
0.4510 0.2980 0.1608
0.4863 0.3059 0.1647
0.5137 0.3137 0.1686
0.5569 0.3333 0.1804
0.5922 0.3373 0.1765
0.6314 0.3451 0.1843
0.6588 0.3608 0.1922
0.6784 0.3647 0.1843
0.7294 0.3765 0.2000
0.7529 0.3843 0.2039
0.7804 0.3961 0.2078
0.8157 0.4078 0.2157
0.8667 0.4118 0.2196
0.8980 0.4196 0.2196
0.9373 0.4353 0.2275
0.1412 0.2706 0.1373
0.1529 0.2784 0.1373
0.1686 0.2824 0.1412
0.1882 0.2824 0.1412
0.2078 0.2824 0.1412
0.2275 0.2824 0.1451
0.2392 0.2863 0.1451
0.2471 0.2863 0.1451
0.2627 0.2863 0.1451
0.2784 0.2863 0.1451
0.2941 0.2863 0.1451
0.3137 0.2863 0.1451
0.3333 0.2824 0.1451
0.3490 0.2824 0.1412
0.3647 0.2941 0.1412
0.4000 0.3059 0.1529
0.4196 0.3059 0.1529
0.4510 0.3176 0.1608
0.4902 0.3294 0.1686
0.5176 0.3373 0.1686
0.5529 0.3490 0.1725
0.5922 0.3569 0.1765
0.6314 0.3686 0.1804
0.6510 0.3725 0.1843
0.6941 0.3843 0.1922
0.7333 0.3922 0.2000
0.7529 0.4039 0.2000
0.7804 0.4118 0.2039
0.8118 0.4275 0.2118
0.8627 0.4431 0.2235
0.8980 0.4588 0.2235
0.9412 0.4706 0.2353
0.1451 0.2902 0.1373
0.1608 0.3059 0.1451
0.1765 0.3098 0.1451
0.1922 0.3098 0.1412
0.2157 0.3098 0.1412
0.2314 0.3059 0.1412
0.2431 0.3098 0.1451
0.2549 0.3137 0.1490
0.2706 0.3098 0.1451
0.2863 0.3137 0.1451
0.3020 0.3137 0.1451
0.3176 0.3098 0.1412
0.3412 0.3059 0.1451
0.3569 0.3098 0.1451
0.3686 0.3137 0.1412
0.3961 0.3216 0.1490
0.4314 0.3373 0.1608
0.4549 0.3373 0.1608
0.4863 0.3451 0.1647
0.5255 0.3608 0.1725
0.5569 0.3686 0.1765
0.5961 0.3765 0.1765
0.6314 0.3843 0.1804
0.6549 0.3961 0.1843
0.6902 0.4000 0.1882
0.7255 0.4118 0.2000
0.7529 0.4314 0.2039
0.7882 0.4392 0.2078
0.8196 0.4588 0.2157
0.8667 0.4745 0.2275
0.8941 0.4824 0.2235
0.9412 0.4863 0.2314
0.1490 0.3255 0.1490
0.1608 0.3333 0.1529
0.1804 0.3451 0.1569
0.2000 0.3490 0.1569
0.2157 0.3412 0.1529
0.2353 0.3412 0.1529
0.2510 0.3451 0.1569
0.2510 0.3412 0.1529
0.2745 0.3412 0.1490
0.2902 0.3451 0.1529
0.3059 0.3412 0.1490
0.3255 0.3412 0.1529
0.3490 0.3412 0.1569
0.3608 0.3412 0.1529
0.3686 0.3412 0.1490
0.4000 0.3490 0.1569
0.4235 0.3490 0.1569
0.4588 0.3647 0.1686
0.4902 0.3686 0.1686
0.5216 0.3804 0.1765
0.5529 0.3882 0.1765
0.5882 0.3961 0.1804
0.6235 0.4000 0.1804
0.6588 0.4235 0.1961
0.6824 0.4314 0.1922
0.7216 0.4392 0.1961
0.7529 0.4588 0.2039
0.7843 0.4745 0.2078
0.8157 0.4902 0.2157
0.8706 0.4980 0.2235
0.9020 0.5020 0.2157
0.9412 0.5098 0.2235
0.1490 0.3490 0.1412
0.1686 0.3686 0.1529
0.1843 0.3725 0.1529
0.2078 0.3765 0.1529
0.2235 0.3725 0.1569
0.2392 0.3725 0.1569
0.2549 0.3765 0.1569
0.2667 0.3765 0.1569
0.2863 0.3765 0.1569
0.2941 0.3765 0.1569
0.3176 0.3725 0.1569
0.3294 0.3765 0.1569
0.3569 0.3765 0.1608
0.3647 0.3765 0.1569
0.3882 0.3765 0.1569
0.4039 0.3804 0.1608
0.4275 0.3725 0.1569
0.4588 0.3804 0.1608
0.4863 0.3882 0.1608
0.5176 0.3961 0.1686
0.5529 0.4078 0.1804
0.5922 0.4157 0.1843
0.6314 0.4275 0.1882
0.6549 0.4392 0.1843
0.6824 0.4588 0.1804
0.7255 0.4784 0.2000
0.7569 0.4863 0.2039
0.7882 0.4941 0.2078
0.8196 0.5059 0.2118
0.8706 0.5137 0.2196
0.8980 0.5176 0.2196
0.9412 0.5216 0.2235
0.1608 0.3765 0.1529
0.1725 0.3882 0.1569
0.1922 0.3961 0.1569
0.2157 0.4039 0.1647
0.2275 0.3961 0.1608
0.2392 0.3961 0.1569
0.2588 0.4000 0.1608
0.2667 0.3961 0.1569
0.2902 0.3961 0.1608
0.3059 0.3961 0.1608
0.3255 0.3961 0.1608
0.3451 0.3922 0.1608
0.3608 0.3961 0.1608
0.3804 0.3961 0.1608
0.3961 0.3961 0.1608
0.4157 0.4000 0.1647
0.4275 0.3922 0.1569
0.4549 0.4000 0.1647
0.4863 0.4039 0.1647
0.5137 0.4118 0.1647
0.5569 0.4314 0.1765
0.5922 0.4431 0.1765
0.6275 0.4588 0.1765
0.6549 0.4784 0.1882
0.6902 0.4863 0.1922
0.7176 0.4902 0.1961
0.7490 0.5020 0.2000
0.7804 0.5098 0.2039
0.8078 0.5176 0.2039
0.8588 0.5294 0.2157
0.8941 0.5451 0.2196
0.9373 0.5490 0.2275
0.1529 0.4039 0.1569
0.1765 0.4235 0.1686
0.1961 0.4314 0.1686
0.2118 0.4314 0.1647
0.2275 0.4275 0.1647
0.2431 0.4314 0.1647
0.2588 0.4314 0.1686
0.2706 0.4314 0.1647
0.2863 0.4275 0.1569
0.3137 0.4353 0.1647
0.3216 0.4314 0.1608
0.3490 0.4275 0.1608
0.3529 0.4314 0.1569
0.3843 0.4314 0.1647
0.3961 0.4314 0.1608
0.4196 0.4353 0.1647
0.4471 0.4314 0.1647
0.4706 0.4392 0.1765
0.4863 0.4275 0.1686
0.5176 0.4431 0.1725
0.5569 0.4706 0.1804
0.5922 0.4824 0.1765
0.6235 0.4941 0.1765
0.6392 0.5020 0.1804
0.6863 0.4980 0.1843
0.7216 0.5137 0.2000
0.7569 0.5255 0.2078
0.7843 0.5333 0.2039
0.8118 0.5451 0.2039
0.8706 0.5647 0.2196
0.9020 0.5804 0.2235
0.9451 0.5843 0.2314
0.1569 0.4510 0.1529
0.1843 0.4706 0.1686
0.2039 0.4784 0.1686
0.2314 0.4863 0.1725
0.2471 0.4863 0.1765
0.2549 0.4824 0.1725
0.2667 0.4824 0.1686
0.2863 0.4863 0.1725
0.3020 0.4784 0.1686
0.3255 0.4863 0.1765
0.3373 0.4863 0.1765
0.3608 0.4824 0.1725
0.3725 0.4824 0.1725
0.4000 0.4863 0.1765
0.4157 0.4824 0.1725
0.4353 0.4863 0.1765
0.4627 0.4863 0.1725
0.4784 0.4863 0.1765
0.5020 0.4902 0.1843
0.5176 0.4863 0.1765
0.5490 0.4902 0.1725
0.5922 0.4980 0.1765
0.6314 0.5020 0.1804
0.6627 0.5137 0.1882
0.6902 0.5255 0.1843
0.7216 0.5333 0.1922
0.7529 0.5451 0.2000
0.7843 0.5608 0.2039
0.8235 0.5765 0.2157
0.8745 0.5922 0.2235
0.8941 0.6000 0.2196
0.9490 0.6078 0.2314
0.1686 0.4941 0.1725
0.1843 0.5020 0.1725
0.2039 0.5059 0.1765
0.2275 0.5137 0.1765
0.2392 0.5098 0.1765
0.2510 0.5137 0.1765
0.2745 0.5137 0.1765
0.2902 0.5137 0.1765
0.3137 0.5098 0.1725
0.3255 0.5137 0.1765
0.3490 0.5098 0.1725
0.3608 0.5098 0.1686
0.3882 0.5137 0.1765
0.4039 0.5137 0.1725
0.4275 0.5098 0.1725
0.4471 0.5137 0.1725
0.4745 0.5137 0.1725
0.4941 0.5176 0.1765
0.5059 0.5098 0.1686
0.5255 0.5137 0.1725
0.5529 0.5137 0.1804
0.5843 0.5137 0.1804
0.6314 0.5294 0.1882
0.6588 0.5373 0.1882
0.6863 0.5569 0.1843
0.7216 0.5686 0.1961
0.7569 0.5843 0.2078
0.7843 0.5882 0.2078
0.8157 0.6000 0.2118
0.8745 0.6157 0.2275
0.8980 0.6275 0.2275
0.9412 0.6275 0.2314
0.1686 0.5255 0.1647
0.1882 0.5412 0.1725
0.2157 0.5490 0.1765
0.2353 0.5490 0.1765
0.2431 0.5490 0.1725
0.2588 0.5490 0.1725
0.2745 0.5490 0.1725
0.2902 0.5451 0.1686
0.3176 0.5451 0.1765
0.3294 0.5490 0.1765
0.3569 0.5451 0.1765
0.3647 0.5451 0.1725
0.4000 0.5490 0.1804
0.4078 0.5451 0.1765
0.4392 0.5451 0.1765
0.4510 0.5451 0.1765
0.4706 0.5490 0.1804
0.4902 0.5490 0.1765
0.5216 0.5529 0.1765
0.5412 0.5490 0.1765
0.5686 0.5490 0.1804
0.5961 0.5451 0.1804
0.6235 0.5451 0.1725
0.6588 0.5686 0.1843
0.6902 0.5882 0.1882
0.7216 0.5961 0.1961
0.7529 0.6039 0.2039
0.7882 0.6157 0.2118
0.8196 0.6275 0.2157
0.8667 0.6314 0.2196
0.8902 0.6353 0.2157
0.9451 0.6471 0.2314
0.1725 0.5725 0.1765
0.1961 0.5843 0.1843
0.2196 0.5882 0.1843
0.2392 0.5922 0.1882
0.2549 0.5961 0.1882
0.2667 0.5922 0.1843
0.2863 0.5882 0.1843
0.3137 0.5961 0.1961
0.3255 0.5922 0.1882
0.3412 0.5961 0.1882
0.3608 0.5922 0.1843
0.3765 0.5922 0.1843
0.4000 0.5961 0.1882
0.4196 0.5922 0.1843
0.4471 0.5922 0.1843
0.4627 0.5961 0.1882
0.4902 0.5922 0.1882
0.5137 0.5922 0.1882
0.5294 0.5843 0.1765
0.5529 0.5882 0.1804
0.5843 0.5961 0.1922
0.6039 0.5922 0.1843
0.6275 0.5922 0.1804
0.6510 0.6039 0.1843
0.6941 0.6118 0.1882
0.7294 0.6275 0.2039
0.7529 0.6275 0.2000
0.7804 0.6314 0.2000
0.8196 0.6471 0.2118
0.8745 0.6588 0.2235
0.8941 0.6627 0.2196
0.9412 0.6667 0.2235
0.1804 0.6118 0.1804
0.1961 0.6157 0.1804
0.2235 0.6235 0.1843
0.2431 0.6235 0.1843
0.2549 0.6235 0.1804
0.2706 0.6235 0.1843
0.2902 0.6235 0.1843
0.3098 0.6235 0.1882
0.3333 0.6235 0.1843
0.3529 0.6235 0.1882
0.3647 0.6235 0.1882
0.3922 0.6235 0.1882
0.4039 0.6235 0.1843
0.4353 0.6235 0.1882
0.4510 0.6235 0.1843
0.4745 0.6235 0.1882
0.4980 0.6275 0.1843
0.5098 0.6235 0.1843
0.5333 0.6235 0.1882
0.5529 0.6235 0.1843
0.5804 0.6235 0.1843
0.6157 0.6235 0.1882
0.6431 0.6196 0.1882
0.6627 0.6235 0.1961
0.6824 0.6275 0.1843
0.7216 0.6392 0.2000
0.7529 0.6510 0.2039
0.7843 0.6549 0.2078
0.8157 0.6667 0.2118
0.8706 0.6824 0.2235
0.9020 0.6941 0.2275
0.9451 0.6941 0.2314
0.1843 0.6392 0.1804
0.2078 0.6510 0.1882
0.2275 0.6588 0.1882
0.2431 0.6588 0.1882
0.2667 0.6588 0.1922
0.2824 0.6627 0.1961
0.2980 0.6627 0.1922
0.3216 0.6588 0.1882
0.3412 0.6588 0.1882
0.3608 0.6549 0.1922
0.3765 0.6588 0.1922
0.3961 0.6588 0.1882
0.4196 0.6588 0.1882
0.4431 0.6588 0.1882
0.4667 0.6588 0.1882
0.4902 0.6588 0.1882
0.5059 0.6588 0.1843
0.5255 0.6588 0.1882
0.5451 0.6627 0.1922
0.5647 0.6549 0.1843
0.6039 0.6588 0.1922
0.6235 0.6549 0.1843
0.6471 0.6588 0.1882
0.6667 0.6627 0.1922
0.6824 0.6588 0.1882
0.7216 0.6667 0.2000
0.7608 0.6784 0.2078
0.7843 0.6863 0.2078
0.8157 0.6902 0.2078
0.8549 0.7098 0.2196
0.8980 0.7216 0.2235
0.9412 0.7255 0.2314
0.1882 0.6706 0.1804
0.2157 0.6824 0.1882
0.2353 0.6941 0.1922
0.2510 0.6941 0.1922
0.2745 0.6902 0.1961
0.2863 0.6941 0.1961
0.3020 0.6941 0.1922
0.3294 0.6941 0.1922
0.3373 0.6941 0.1882
0.3608 0.6941 0.1961
0.3804 0.6980 0.1961
0.4000 0.6980 0.1922
0.4275 0.6941 0.1922
0.4471 0.6980 0.1922
0.4706 0.6980 0.1922
0.4902 0.6980 0.1922
0.5176 0.6941 0.1922
0.5373 0.6941 0.1961
0.5569 0.6941 0.1961
0.5765 0.6941 0.1922
0.6118 0.6980 0.1961
0.6314 0.6941 0.1922
0.6510 0.6980 0.1961
0.6706 0.6980 0.1961
0.6902 0.6941 0.1882
0.7255 0.6941 0.1961
0.7569 0.7020 0.2000
0.7843 0.7098 0.2039
0.8196 0.7176 0.2078
0.8588 0.7294 0.2157
0.9020 0.7373 0.2196
0.9451 0.7451 0.2275
0.1961 0.7137 0.1922
0.2196 0.7216 0.1961
0.2392 0.7333 0.2000
0.2549 0.7333 0.2000
0.2745 0.7294 0.2039
0.2902 0.7333 0.2039
0.3098 0.7333 0.2039
0.3412 0.7373 0.2078
0.3529 0.7294 0.2000
0.3804 0.7333 0.2078
0.3961 0.7294 0.2039
0.4157 0.7294 0.2000
0.4431 0.7255 0.2000
0.4627 0.7255 0.2000
0.4824 0.7255 0.1961
0.5059 0.7294 0.2000
0.5216 0.7294 0.2039
0.5490 0.7333 0.2078
0.5647 0.7333 0.2039
0.5882 0.7294 0.2000
0.6196 0.7294 0.2039
0.6431 0.7255 0.2000
0.6627 0.7255 0.2000
0.6863 0.7294 0.2039
0.6980 0.7294 0.1961
0.7255 0.7294 0.2000
0.7529 0.7333 0.2039
0.7804 0.7373 0.2078
0.8157 0.7451 0.2118
0.8588 0.7569 0.2196
0.8980 0.7608 0.2196
0.9373 0.7608 0.2235
0.2039 0.7412 0.1961
0.2235 0.7490 0.2000
0.2471 0.7608 0.2078
0.2627 0.7647 0.2078
0.2824 0.7608 0.2078
0.2980 0.7647 0.2118
0.3216 0.7647 0.2118
0.3490 0.7647 0.2118
0.3569 0.7647 0.2078
0.3804 0.7647 0.2118
0.4000 0.7608 0.2078
0.4196 0.7608 0.2078
0.4549 0.7647 0.2078
0.4706 0.7608 0.2039
0.4902 0.7608 0.2039
0.5176 0.7647 0.2078
0.5373 0.7569 0.2039
0.5647 0.7608 0.2118
0.5804 0.7608 0.2118
0.6039 0.7647 0.2118
0.6314 0.7647 0.2118
0.6510 0.7647 0.2118
0.6627 0.7608 0.2078
0.6863 0.7647 0.2118
0.7098 0.7608 0.2039
0.7412 0.7608 0.2078
0.7647 0.7647 0.2078
0.7843 0.7608 0.2078
0.8196 0.7647 0.2118
0.8627 0.7765 0.2196
0.9059 0.7843 0.2235
0.9451 0.7882 0.2314
0.2078 0.7804 0.1961
0.2275 0.7882 0.2039
0.2510 0.8039 0.2157
0.2706 0.8039 0.2157
0.2863 0.7961 0.2118
0.3020 0.8000 0.2118
0.3255 0.8000 0.2118
0.3490 0.7961 0.2118
0.3647 0.8000 0.2078
0.3882 0.7961 0.2078
0.4078 0.7961 0.2039
0.4353 0.8000 0.2078
0.4667 0.8000 0.2118
0.4824 0.7961 0.2078
0.5020 0.7961 0.2039
0.5255 0.8000 0.2118
0.5333 0.8000 0.2078
0.5608 0.8000 0.2118
0.5804 0.7961 0.2078
0.6039 0.8000 0.2078
0.6353 0.7961 0.2078
0.6588 0.8000 0.2118
0.6745 0.7961 0.2078
0.7020 0.8000 0.2157
0.7176 0.7961 0.2039
0.7451 0.8000 0.2078
0.7647 0.8000 0.2078
0.7843 0.8000 0.2078
0.8157 0.7961 0.2078
0.8588 0.8078 0.2157
0.8980 0.8118 0.2196
0.9373 0.8196 0.2275
0.2118 0.8196 0.2078
0.2314 0.8275 0.2157
0.2549 0.8392 0.2235
0.2745 0.8431 0.2275
0.2941 0.8353 0.2235
0.3137 0.8392 0.2235
0.3373 0.8431 0.2275
0.3608 0.8392 0.2275
0.3765 0.8431 0.2235
0.4000 0.8392 0.2235
0.4196 0.8431 0.2235
0.4471 0.8431 0.2235
0.4745 0.8431 0.2235
0.4902 0.8392 0.2196
0.5098 0.8392 0.2196
0.5373 0.8431 0.2275
0.5569 0.8314 0.2196
0.5843 0.8353 0.2235
0.6078 0.8353 0.2235
0.6275 0.8431 0.2235
0.6549 0.8431 0.2235
0.6706 0.8431 0.2235
0.6824 0.8392 0.2196
0.7059 0.8392 0.2235
0.7373 0.8431 0.2235
0.7608 0.8431 0.2275
0.7804 0.8431 0.2235
0.8039 0.8431 0.2235
0.8314 0.8431 0.2275
0.8627 0.8431 0.2275
0.8941 0.8431 0.2235
0.9333 0.8510 0.2314
0.2275 0.8549 0.2157
0.2431 0.8588 0.2196
0.2627 0.8627 0.2275
0.2824 0.8627 0.2275
0.3059 0.8627 0.2235
0.3255 0.8667 0.2235
0.3451 0.8627 0.2235
0.3725 0.8627 0.2314
0.3843 0.8627 0.2196
0.4078 0.8627 0.2235
0.4275 0.8627 0.2235
0.4510 0.8667 0.2235
0.4784 0.8627 0.2235
0.4980 0.8627 0.2196
0.5216 0.8667 0.2235
0.5451 0.8667 0.2275
0.5569 0.8627 0.2235
0.5882 0.8627 0.2275
0.6078 0.8627 0.2235
0.6275 0.8627 0.2196
0.6549 0.8627 0.2196
0.6745 0.8627 0.2235
0.6941 0.8627 0.2235
0.7216 0.8667 0.2314
0.7412 0.8627 0.2235
0.7647 0.8627 0.2235
0.7843 0.8627 0.2196
0.8078 0.8627 0.2196
0.8431 0.8627 0.2235
0.8745 0.8627 0.2235
0.9020 0.8627 0.2235
0.9333 0.8667 0.2275
0.2196 0.8902 0.2157
0.2392 0.8941 0.2196
0.2588 0.8980 0.2235
0.2824 0.8980 0.2235
0.3098 0.8980 0.2235
0.3255 0.8980 0.2235
0.3451 0.8980 0.2235
0.3725 0.8980 0.2353
0.3961 0.8980 0.2275
0.4196 0.8980 0.2314
0.4392 0.8980 0.2275
0.4627 0.9020 0.2275
0.4902 0.8980 0.2275
0.5098 0.8980 0.2275
0.5294 0.8980 0.2275
0.5490 0.8941 0.2275
0.5725 0.8980 0.2314
0.6000 0.8980 0.2314
0.6235 0.8980 0.2275
0.6392 0.8980 0.2235
0.6667 0.9020 0.2275
0.6824 0.8980 0.2275
0.6980 0.8980 0.2235
0.7216 0.8980 0.2275
0.7412 0.8980 0.2275
0.7686 0.8980 0.2275
0.7882 0.8980 0.2235
0.8118 0.8980 0.2196
0.8471 0.8980 0.2235
0.8784 0.8980 0.2275
0.9020 0.8941 0.2235
0.9333 0.8941 0.2275
0.1137 0.0510 0.1216
0.1176 0.0510 0.1176
0.1294 0.0510 0.1176
0.1490 0.0549 0.1216
0.1608 0.0549 0.1255
0.1765 0.0549 0.1255
0.1922 0.0549 0.1255
0.2157 0.0627 0.1333
0.2275 0.0627 0.1333
0.2431 0.0627 0.1333
0.2667 0.0667 0.1373
0.2863 0.0706 0.1412
0.3176 0.0745 0.1490
0.3412 0.0745 0.1529
0.3569 0.0784 0.1569
0.3843 0.0824 0.1608
0.4118 0.0863 0.1647
0.4392 0.0863 0.1686
0.4706 0.0902 0.1725
0.5020 0.0980 0.1804
0.5412 0.0980 0.1804
0.5765 0.1020 0.1843
0.6118 0.1059 0.1882
0.6471 0.1098 0.1961
0.6706 0.1137 0.1961
0.7098 0.1176 0.2078
0.7412 0.1255 0.2118
0.7686 0.1333 0.2118
0.8039 0.1333 0.2196
0.8392 0.1373 0.2196
0.8902 0.1529 0.2314
0.9216 0.1569 0.2353
0.1098 0.0588 0.1098
0.1176 0.0627 0.1137
0.1294 0.0627 0.1098
0.1451 0.0627 0.1137
0.1608 0.0627 0.1137
0.1765 0.0667 0.1216
0.1922 0.0706 0.1216
0.2196 0.0784 0.1333
0.2353 0.0706 0.1373
0.2471 0.0745 0.1412
0.2706 0.0824 0.1451
0.2824 0.0863 0.1451
0.3098 0.0863 0.1490
0.3373 0.0863 0.1529
0.3608 0.0941 0.1608
0.3961 0.0980 0.1686
0.4118 0.1020 0.1647
0.4431 0.1020 0.1725
0.4745 0.1137 0.1804
0.5020 0.1098 0.1765
0.5451 0.1176 0.1843
0.5804 0.1216 0.1882
0.6196 0.1294 0.1961
0.6471 0.1294 0.1961
0.6745 0.1373 0.2039
0.7137 0.1412 0.2118
0.7490 0.1569 0.2235
0.7765 0.1608 0.2275
0.8118 0.1647 0.2314
0.8549 0.1725 0.2353
0.8902 0.1765 0.2392
0.9216 0.1765 0.2353
0.1098 0.0627 0.1098
0.1216 0.0706 0.1176
0.1373 0.0745 0.1176
0.1529 0.0745 0.1216
0.1686 0.0784 0.1255
0.1804 0.0784 0.1255
0.2000 0.0824 0.1294
0.2235 0.0863 0.1373
0.2471 0.0863 0.1412
0.2588 0.0863 0.1412
0.2784 0.0941 0.1490
0.2941 0.0980 0.1490
0.3176 0.0980 0.1529
0.3490 0.1020 0.1569
0.3686 0.1098 0.1647
0.4000 0.1137 0.1686
0.4314 0.1294 0.1725
0.4588 0.1255 0.1725
0.4824 0.1255 0.1725
0.5216 0.1373 0.1843
0.5569 0.1373 0.1843
0.5961 0.1451 0.1922
0.6314 0.1529 0.1961
0.6706 0.1647 0.2118
0.6902 0.1647 0.2118
0.7255 0.1686 0.2157
0.7529 0.1765 0.2196
0.7765 0.1804 0.2235
0.8157 0.1804 0.2275
0.8627 0.1961 0.2392
0.8980 0.1961 0.2392
0.9373 0.2039 0.2431
0.1098 0.0745 0.1176
0.1255 0.0824 0.1255
0.1373 0.0824 0.1216
0.1569 0.0863 0.1255
0.1686 0.0902 0.1294
0.1843 0.0902 0.1333
0.2078 0.0980 0.1373
0.2314 0.1020 0.1490
0.2431 0.1020 0.1451
0.2627 0.1059 0.1490
0.2902 0.1098 0.1529
0.3098 0.1137 0.1569
0.3373 0.1176 0.1608
0.3647 0.1255 0.1647
0.3765 0.1333 0.1686
0.4000 0.1333 0.1725
0.4392 0.1451 0.1725
0.4706 0.1490 0.1804
0.5059 0.1569 0.1882
0.5373 0.1608 0.1922
0.5765 0.1647 0.2000
0.6078 0.1686 0.2000
0.6392 0.1765 0.2000
0.6706 0.1765 0.2078
0.7020 0.1882 0.2157
0.7333 0.1922 0.2196
0.7647 0.2000 0.2235
0.7922 0.2078 0.2314
0.8275 0.2078 0.2353
0.8745 0.2196 0.2471
0.9098 0.2235 0.2431
0.9529 0.2353 0.2549
0.1098 0.0941 0.1176
0.1216 0.0980 0.1216
0.1333 0.0980 0.1216
0.1569 0.1059 0.1294
0.1686 0.1059 0.1294
0.1804 0.1059 0.1294
0.2000 0.1098 0.1333
0.2235 0.1137 0.1412
0.2431 0.1255 0.1490
0.2627 0.1294 0.1529
0.2863 0.1255 0.1490
0.3020 0.1294 0.1529
0.3333 0.1373 0.1608
0.3608 0.1412 0.1647
0.3725 0.1529 0.1686
0.4039 0.1608 0.1765
0.4392 0.1686 0.1804
0.4706 0.1686 0.1882
0.4980 0.1725 0.1882
0.5294 0.1725 0.1882
0.5686 0.1804 0.1961
0.6039 0.1882 0.2000
0.6353 0.1961 0.2039
0.6706 0.2039 0.2118
0.6941 0.2039 0.2118
0.7333 0.2118 0.2235
0.7608 0.2196 0.2235
0.7922 0.2314 0.2353
0.8275 0.2314 0.2392
0.8706 0.2431 0.2471
0.9059 0.2431 0.2431
0.9451 0.2510 0.2471
0.1176 0.1059 0.1216
0.1255 0.1098 0.1255
0.1412 0.1137 0.1255
0.1647 0.1216 0.1333
0.1765 0.1216 0.1333
0.1882 0.1216 0.1333
0.2078 0.1216 0.1373
0.2275 0.1255 0.1412
0.2471 0.1333 0.1412
0.2627 0.1412 0.1490
0.2824 0.1412 0.1490
0.3020 0.1569 0.1569
0.3373 0.1647 0.1686
0.3608 0.1647 0.1647
0.3765 0.1686 0.1647
0.4039 0.1686 0.1725
0.4392 0.1765 0.1765
0.4706 0.1843 0.1843
0.4941 0.1804 0.1804
0.5333 0.1961 0.1922
0.5647 0.1961 0.1922
0.6039 0.2078 0.2039
0.6314 0.2118 0.2000
0.6706 0.2196 0.2118
0.6980 0.2235 0.2118
0.7373 0.2353 0.2235
0.7647 0.2353 0.2235
0.7882 0.2431 0.2275
0.8235 0.2471 0.2314
0.8706 0.2627 0.2431
0.9137 0.2706 0.2431
0.9451 0.2745 0.2471
0.1216 0.1216 0.1294
0.1294 0.1255 0.1294
0.1451 0.1294 0.1333
0.1647 0.1333 0.1373
0.1765 0.1294 0.1333
0.1882 0.1333 0.1333
0.2118 0.1373 0.1373
0.2314 0.1412 0.1451
0.2549 0.1569 0.1490
0.2667 0.1608 0.1490
0.2824 0.1569 0.1451
0.2980 0.1686 0.1490
0.3333 0.1725 0.1608
0.3569 0.1725 0.1608
0.3765 0.1804 0.1647
0.4039 0.1804 0.1686
0.4392 0.1922 0.1725
0.4745 0.2039 0.1843
0.5020 0.2078 0.1882
0.5255 0.2078 0.1843
0.5686 0.2157 0.1922
0.6039 0.2275 0.2000
0.6392 0.2353 0.2078
0.6667 0.2353 0.2078
0.6980 0.2392 0.2078
0.7333 0.2471 0.2157
0.7686 0.2588 0.2275
0.7882 0.2627 0.2275
0.8275 0.2706 0.2314
0.8745 0.2863 0.2431
0.9176 0.2980 0.2431
0.9490 0.3020 0.2431
0.1137 0.1412 0.1255
0.1294 0.1490 0.1294
0.1529 0.1647 0.1412
0.1765 0.1686 0.1451
0.1843 0.1647 0.1412
0.1961 0.1647 0.1412
0.2118 0.1647 0.1412
0.2275 0.1647 0.1451
0.2392 0.1686 0.1412
0.2588 0.1725 0.1490
0.2824 0.1725 0.1490
0.3020 0.1804 0.1529
0.3333 0.1843 0.1608
0.3608 0.1882 0.1647
0.3765 0.2000 0.1725
0.4000 0.2039 0.1765
0.4392 0.2118 0.1725
0.4745 0.2196 0.1843
0.4980 0.2235 0.1843
0.5294 0.2314 0.1882
0.5647 0.2353 0.1922
0.6078 0.2510 0.2039
0.6353 0.2510 0.2039
0.6667 0.2588 0.2118
0.6980 0.2667 0.2157
0.7333 0.2667 0.2196
0.7725 0.2863 0.2353
0.7882 0.2863 0.2314
0.8275 0.2902 0.2353
0.8706 0.3059 0.2431
0.9098 0.3176 0.2431
0.9451 0.3255 0.2471
0.1216 0.1647 0.1333
0.1373 0.1686 0.1373
0.1529 0.1765 0.1412
0.1686 0.1765 0.1451
0.1843 0.1765 0.1451
0.2039 0.1765 0.1451
0.2196 0.1765 0.1451
0.2353 0.1804 0.1451
0.2431 0.1765 0.1412
0.2627 0.1804 0.1412
0.2824 0.1922 0.1451
0.3020 0.1961 0.1490
0.3373 0.2078 0.1608
0.3569 0.2157 0.1647
0.3765 0.2196 0.1686
0.4000 0.2235 0.1725
0.4392 0.2275 0.1765
0.4745 0.2353 0.1843
0.5059 0.2431 0.1882
0.5255 0.2431 0.1843
0.5725 0.2549 0.1961
0.6078 0.2588 0.2000
0.6392 0.2667 0.2039
0.6667 0.2745 0.2118
0.7020 0.2824 0.2118
0.7294 0.2941 0.2235
0.7647 0.3020 0.2275
0.7882 0.3137 0.2314
0.8353 0.3176 0.2392
0.8824 0.3255 0.2431
0.9176 0.3451 0.2471
0.9490 0.3490 0.2471
0.1216 0.1804 0.1294
0.1373 0.1843 0.1373
0.1569 0.1961 0.1451
0.1804 0.2000 0.1529
0.1961 0.2000 0.1529
0.2078 0.1961 0.1490
0.2275 0.1961 0.1490
0.2431 0.2000 0.1529
0.2471 0.1961 0.1490
0.2667 0.1961 0.1451
0.2863 0.2078 0.1529
0.3059 0.2157 0.1529
0.3333 0.2196 0.1608
0.3569 0.2275 0.1686
0.3804 0.2353 0.1725
0.4039 0.2353 0.1765
0.4392 0.2471 0.1765
0.4706 0.2510 0.1804
0.4902 0.2549 0.1765
0.5255 0.2706 0.1843
0.5686 0.2745 0.1922
0.6078 0.2863 0.2000
0.6353 0.2902 0.2000
0.6667 0.3020 0.2118
0.6941 0.3098 0.2039
0.7333 0.3216 0.2196
0.7686 0.3255 0.2235
0.7882 0.3333 0.2275
0.8275 0.3451 0.2353
0.8706 0.3529 0.2392
0.9059 0.3647 0.2431
0.9451 0.3725 0.2471
0.1333 0.2078 0.1412
0.1412 0.2118 0.1412
0.1608 0.2157 0.1451
0.1804 0.2235 0.1490
0.1961 0.2235 0.1529
0.2118 0.2196 0.1490
0.2275 0.2196 0.1490
0.2392 0.2235 0.1529
0.2510 0.2196 0.1529
0.2667 0.2196 0.1490
0.2824 0.2235 0.1490
0.3020 0.2275 0.1529
0.3333 0.2353 0.1647
0.3529 0.2392 0.1647
0.3725 0.2471 0.1647
0.4078 0.2588 0.1765
0.4392 0.2588 0.1765
0.4745 0.2667 0.1843
0.4941 0.2706 0.1804
0.5255 0.2863 0.1882
0.5686 0.2941 0.1922
0.6078 0.3020 0.2000
0.6392 0.3098 0.2039
0.6745 0.3216 0.2157
0.6980 0.3333 0.2078
0.7373 0.3451 0.2235
0.7725 0.3490 0.2275
0.7922 0.3569 0.2314
0.8353 0.3686 0.2431
0.8784 0.3804 0.2471
0.9098 0.3882 0.2431
0.9490 0.3961 0.2471
0.1333 0.2275 0.1412
0.1451 0.2314 0.1451
0.1608 0.2353 0.1451
0.1843 0.2431 0.1490
0.2000 0.2431 0.1529
0.2196 0.2471 0.1529
0.2353 0.2471 0.1569
0.2471 0.2471 0.1569
0.2549 0.2431 0.1529
0.2784 0.2471 0.1569
0.2902 0.2471 0.1529
0.2980 0.2431 0.1490
0.3333 0.2510 0.1608
0.3529 0.2588 0.1647
0.3725 0.2627 0.1647
0.4039 0.2745 0.1725
0.4392 0.2745 0.1765
0.4745 0.2863 0.1882
0.5059 0.2980 0.1922
0.5294 0.3059 0.1882
0.5725 0.3176 0.2000
0.6039 0.3176 0.2000
0.6392 0.3333 0.2078
0.6667 0.3373 0.2118
0.7020 0.3529 0.2157
0.7333 0.3647 0.2275
0.7725 0.3725 0.2353
0.7961 0.3804 0.2353
0.8353 0.3804 0.2392
0.8863 0.3922 0.2431
0.9176 0.4078 0.2431
0.9569 0.4196 0.2510
0.1333 0.2431 0.1451
0.1490 0.2510 0.1529
0.1725 0.2627 0.1569
0.1961 0.2706 0.1608
0.2078 0.2706 0.1608
0.2235 0.2706 0.1608
0.2392 0.2667 0.1608
0.2471 0.2667 0.1608
0.2627 0.2667 0.1569
0.2824 0.2667 0.1608
0.2980 0.2706 0.1647
0.3098 0.2667 0.1608
0.3294 0.2667 0.1608
0.3569 0.2745 0.1647
0.3804 0.2824 0.1686
0.4078 0.2902 0.1765
0.4353 0.3020 0.1725
0.4667 0.3098 0.1804
0.4980 0.3176 0.1804
0.5255 0.3294 0.1843
0.5725 0.3490 0.2000
0.6039 0.3490 0.2000
0.6392 0.3608 0.2039
0.6706 0.3686 0.2118
0.7059 0.3765 0.2196
0.7294 0.3843 0.2235
0.7647 0.3961 0.2275
0.7922 0.4078 0.2314
0.8353 0.4118 0.2353
0.8863 0.4275 0.2392
0.9137 0.4431 0.2392
0.9490 0.4510 0.2431
0.1373 0.2706 0.1490
0.1529 0.2745 0.1529
0.1725 0.2824 0.1569
0.2000 0.2941 0.1647
0.2157 0.2941 0.1647
0.2275 0.2980 0.1647
0.2431 0.2941 0.1647
0.2549 0.2980 0.1686
0.2745 0.2980 0.1686
0.2902 0.2941 0.1647
0.3020 0.2980 0.1686
0.3216 0.2980 0.1686
0.3412 0.2941 0.1686
0.3569 0.2941 0.1647
0.3765 0.2980 0.1647
0.4078 0.3137 0.1765
0.4392 0.3216 0.1765
0.4745 0.3333 0.1843
0.4941 0.3373 0.1804
0.5294 0.3529 0.1882
0.5686 0.3608 0.1961
0.6118 0.3765 0.2039
0.6392 0.3804 0.2039
0.6667 0.3843 0.2118
0.6980 0.3922 0.2157
0.7294 0.4000 0.2235
0.7686 0.4118 0.2275
0.7882 0.4275 0.2275
0.8157 0.4314 0.2235
0.8667 0.4510 0.2353
0.9098 0.4745 0.2431
0.9529 0.4863 0.2549
0.1412 0.3020 0.1569
0.1569 0.3059 0.1569
0.1765 0.3137 0.1608
0.2039 0.3216 0.1686
0.2157 0.3216 0.1686
0.2353 0.3255 0.1686
0.2471 0.3255 0.1686
0.2588 0.3294 0.1725
0.2706 0.3216 0.1647
0.2941 0.3255 0.1725
0.3059 0.3255 0.1686
0.3216 0.3216 0.1686
0.3490 0.3216 0.1686
0.3647 0.3255 0.1725
0.3765 0.3255 0.1647
0.4039 0.3294 0.1686
0.4353 0.3373 0.1725
0.4745 0.3529 0.1882
0.5020 0.3608 0.1882
0.5333 0.3725 0.1961
0.5725 0.3765 0.2000
0.6157 0.3922 0.2118
0.6392 0.3961 0.2078
0.6667 0.4039 0.2118
0.6902 0.4078 0.2078
0.7333 0.4314 0.2235
0.7686 0.4392 0.2314
0.7922 0.4588 0.2353
0.8275 0.4706 0.2392
0.8745 0.4863 0.2471
0.9098 0.4941 0.2471
0.9451 0.4980 0.2510
0.1451 0.3216 0.1569
0.1647 0.3333 0.1647
0.1882 0.3412 0.1725
0.2118 0.3529 0.1804
0.2235 0.3490 0.1725
0.2392 0.3490 0.1725
0.2471 0.3451 0.1686
0.2588 0.3490 0.1725
0.2784 0.3490 0.1725
0.2980 0.3490 0.1725
0.3137 0.3529 0.1725
0.3333 0.3529 0.1765
0.3529 0.3451 0.1725
0.3686 0.3490 0.1725
0.3843 0.3490 0.1686
0.4039 0.3490 0.1686
0.4392 0.3686 0.1804
0.4706 0.3686 0.1804
0.5020 0.3804 0.1882
0.5255 0.3882 0.1843
0.5725 0.4000 0.2000
0.6039 0.4039 0.1961
0.6353 0.4157 0.2039
0.6706 0.4275 0.2157
0.6941 0.4431 0.2078
0.7373 0.4706 0.2314
0.7647 0.4784 0.2275
0.7882 0.4863 0.2275
0.8314 0.4902 0.2314
0.8824 0.5020 0.2431
0.9137 0.5098 0.2431
0.9490 0.5176 0.2471
0.1490 0.3490 0.1647
0.1647 0.3647 0.1686
0.1843 0.3765 0.1725
0.2157 0.3804 0.1765
0.2235 0.3804 0.1765
0.2510 0.3843 0.1804
0.2588 0.3843 0.1765
0.2784 0.3804 0.1725
0.2902 0.3804 0.1765
0.3098 0.3804 0.1804
0.3294 0.3843 0.1804
0.3412 0.3804 0.1765
0.3608 0.3765 0.1725
0.3765 0.3804 0.1725
0.3961 0.3843 0.1765
0.4157 0.3843 0.1765
0.4431 0.3804 0.1804
0.4784 0.3922 0.1882
0.4980 0.3961 0.1804
0.5294 0.4078 0.1843
0.5725 0.4275 0.1961
0.6078 0.4392 0.2000
0.6314 0.4471 0.2000
0.6706 0.4667 0.2157
0.7020 0.4784 0.2157
0.7373 0.4863 0.2235
0.7647 0.4902 0.2235
0.7922 0.4980 0.2314
0.8353 0.5098 0.2431
0.8706 0.5137 0.2392
0.9137 0.5333 0.2431
0.9490 0.5412 0.2510
0.1647 0.3765 0.1725
0.1765 0.3882 0.1765
0.1961 0.4000 0.1765
0.2196 0.4039 0.1804
0.2314 0.4078 0.1804
0.2510 0.4118 0.1804
0.2588 0.4078 0.1765
0.2745 0.4078 0.1765
0.2941 0.4078 0.1804
0.3137 0.4078 0.1843
0.3294 0.4078 0.1804
0.3490 0.4118 0.1804
0.3686 0.4078 0.1804
0.3843 0.4078 0.1804
0.4000 0.4078 0.1765
0.4196 0.4078 0.1804
0.4392 0.4039 0.1725
0.4706 0.4078 0.1765
0.4980 0.4157 0.1804
0.5216 0.4275 0.1804
0.5647 0.4431 0.1922
0.6118 0.4667 0.2078
0.6392 0.4745 0.2039
0.6667 0.4863 0.2118
0.6902 0.4902 0.2078
0.7373 0.5059 0.2314
0.7608 0.5098 0.2275
0.7843 0.5176 0.2235
0.8275 0.5294 0.2314
0.8627 0.5412 0.2392
0.9098 0.5608 0.2471
0.9529 0.5804 0.2510
0.1608 0.4039 0.1686
0.1765 0.4196 0.1765
0.2000 0.4314 0.1765
0.2235 0.4431 0.1804
0.2431 0.4471 0.1843
0.2510 0.4510 0.1882
0.2627 0.4431 0.1804
0.2784 0.4471 0.1804
0.3059 0.4431 0.1804
0.3255 0.4431 0.1843
0.3412 0.4431 0.1804
0.3608 0.4431 0.1843
0.3804 0.4431 0.1843
0.4000 0.4431 0.1843
0.4157 0.4431 0.1843
0.4431 0.4510 0.1922
0.4510 0.4431 0.1804
0.4863 0.4510 0.1882
0.4980 0.4471 0.1804
0.5294 0.4627 0.1882
0.5725 0.4784 0.2000
0.6078 0.4863 0.2039
0.6392 0.4980 0.2078
0.6627 0.5020 0.2039
0.6941 0.5098 0.2196
0.7373 0.5255 0.2235
0.7647 0.5373 0.2275
0.7922 0.5490 0.2392
0.8196 0.5490 0.2353
0.8667 0.5686 0.2353
0.9176 0.5922 0.2471
0.9490 0.5961 0.2510
0.1569 0.4471 0.1765
0.1804 0.4706 0.1882
0.2157 0.4824 0.1922
0.2314 0.4902 0.1922
0.2471 0.4824 0.1882
0.2549 0.4863 0.1882
0.2784 0.4863 0.1882
0.3020 0.4941 0.1961
0.3059 0.4863 0.1843
0.3333 0.4902 0.1922
0.3451 0.4863 0.1882
0.3608 0.4863 0.1882
0.3843 0.4863 0.1882
0.4039 0.4863 0.1882
0.4157 0.4824 0.1843
0.4431 0.4863 0.1922
0.4667 0.4863 0.1882
0.4941 0.4863 0.1922
0.5137 0.4863 0.1922
0.5255 0.4863 0.1882
0.5686 0.4980 0.1961
0.6078 0.5098 0.2039
0.6353 0.5137 0.2000
0.6706 0.5294 0.2118
0.6941 0.5333 0.2078
0.7373 0.5490 0.2235
0.7608 0.5569 0.2235
0.8000 0.5804 0.2353
0.8353 0.5882 0.2392
0.8745 0.5961 0.2471
0.9137 0.6118 0.2471
0.9529 0.6235 0.2471
0.1647 0.4902 0.1804
0.1804 0.5059 0.1882
0.2078 0.5098 0.1882
0.2275 0.5216 0.1922
0.2471 0.5176 0.1882
0.2588 0.5255 0.1922
0.2824 0.5216 0.1922
0.2980 0.5216 0.1922
0.3176 0.5216 0.1882
0.3451 0.5294 0.1961
0.3569 0.5255 0.1922
0.3725 0.5255 0.1922
0.4000 0.5255 0.1961
0.4196 0.5294 0.1961
0.4353 0.5216 0.1922
0.4549 0.5216 0.1961
0.4745 0.5216 0.1922
0.5059 0.5255 0.2000
0.5176 0.5255 0.1961
0.5373 0.5255 0.1961
0.5647 0.5255 0.1922
0.6000 0.5255 0.1961
0.6431 0.5451 0.2078
0.6667 0.5490 0.2078
0.6941 0.5725 0.2078
0.7412 0.5882 0.2235
0.7647 0.5922 0.2235
0.7922 0.6078 0.2275
0.8275 0.6118 0.2275
0.8706 0.6235 0.2392
0.9098 0.6314 0.2392
0.9490 0.6431 0.2431
0.1647 0.5255 0.1765
0.1882 0.5373 0.1843
0.2157 0.5529 0.1922
0.2431 0.5686 0.2039
0.2549 0.5647 0.2000
0.2627 0.5686 0.2000
0.2863 0.5686 0.2039
0.3098 0.5725 0.2078
0.3255 0.5686 0.2000
0.3490 0.5765 0.2078
0.3608 0.5686 0.2000
0.3765 0.5686 0.1961
0.4039 0.5686 0.2000
0.4275 0.5725 0.2039
0.4431 0.5686 0.2000
0.4667 0.5686 0.2039
0.4902 0.5725 0.2000
0.5098 0.5686 0.2000
0.5373 0.5765 0.2078
0.5490 0.5725 0.2000
0.5765 0.5686 0.2000
0.6039 0.5686 0.2000
0.6314 0.5686 0.1961
0.6667 0.5843 0.2078
0.6941 0.5961 0.2157
0.7333 0.6078 0.2157
0.7647 0.6157 0.2235
0.7922 0.6235 0.2353
0.8196 0.6235 0.2314
0.8706 0.6392 0.2392
0.9137 0.6549 0.2431
0.9490 0.6588 0.2510
0.1765 0.5725 0.1843
0.1961 0.5804 0.1922
0.2196 0.5922 0.1961
0.2510 0.6000 0.2078
0.2588 0.6039 0.2118
0.2745 0.6078 0.2078
0.2941 0.6078 0.2078
0.3176 0.6078 0.2118
0.3294 0.6000 0.2000
0.3569 0.6039 0.2078
0.3686 0.6000 0.2000
0.3882 0.6039 0.2039
0.4118 0.6000 0.2039
0.4392 0.6078 0.2078
0.4549 0.6039 0.2039
0.4863 0.6078 0.2118
0.4941 0.6078 0.2039
0.5216 0.6078 0.2078
0.5373 0.6039 0.2039
0.5569 0.6039 0.2039
0.5922 0.6078 0.2118
0.6118 0.6039 0.2039
0.6353 0.6039 0.2039
0.6706 0.6157 0.2157
0.6980 0.6196 0.2118
0.7294 0.6235 0.2235
0.7647 0.6353 0.2314
0.7922 0.6471 0.2314
0.8353 0.6588 0.2431
0.8745 0.6627 0.2510
0.9059 0.6706 0.2431
0.9529 0.6863 0.2510
0.1804 0.6078 0.1922
0.2039 0.6196 0.2039
0.2235 0.6235 0.2039
0.2549 0.6235 0.2118
0.2549 0.6275 0.2078
0.2784 0.6235 0.2078
0.2941 0.6235 0.2078
0.3255 0.6235 0.2078
0.3412 0.6314 0.2118
0.3608 0.6314 0.2157
0.3725 0.6275 0.2078
0.3961 0.6353 0.2118
0.4235 0.6314 0.2118
0.4431 0.6314 0.2118
0.4588 0.6235 0.2039
0.4863 0.6275 0.2118
0.5020 0.6235 0.2118
0.5255 0.6235 0.2118
0.5529 0.6314 0.2157
0.5569 0.6196 0.2039
0.5922 0.6235 0.2118
0.6275 0.6314 0.2196
0.6431 0.6235 0.2118
0.6627 0.6196 0.2078
0.7020 0.6471 0.2157
0.7333 0.6510 0.2157
0.7725 0.6667 0.2275
0.7882 0.6627 0.2275
0.8235 0.6706 0.2314
0.8745 0.6902 0.2392
0.9176 0.7059 0.2431
0.9412 0.7098 0.2392
0.1804 0.6392 0.2000
0.2078 0.6549 0.2078
0.2275 0.6588 0.2078
0.2510 0.6627 0.2118
0.2706 0.6588 0.2157
0.2863 0.6627 0.2196
0.3059 0.6627 0.2157
0.3333 0.6627 0.2157
0.3412 0.6627 0.2157
0.3647 0.6627 0.2196
0.3804 0.6627 0.2157
0.4039 0.6627 0.2157
0.4275 0.6627 0.2157
0.4549 0.6667 0.2157
0.4706 0.6667 0.2157
0.4941 0.6627 0.2157
0.5098 0.6588 0.2157
0.5333 0.6627 0.2157
0.5529 0.6627 0.2157
0.5765 0.6627 0.2157
0.6039 0.6627 0.2157
0.6275 0.6627 0.2157
0.6510 0.6627 0.2157
0.6745 0.6627 0.2157
0.6941 0.6667 0.2235
0.7294 0.6667 0.2196
0.7647 0.6902 0.2275
0.7882 0.6941 0.2275
0.8235 0.7020 0.2353
0.8745 0.7098 0.2431
0.9137 0.7255 0.2471
0.9529 0.7373 0.2510
0.1922 0.6706 0.2039
0.2157 0.6824 0.2078
0.2392 0.6980 0.2118
0.2627 0.7059 0.2196
0.2784 0.6980 0.2196
0.2941 0.7059 0.2235
0.3137 0.7059 0.2235
0.3373 0.7059 0.2235
0.3529 0.7059 0.2196
0.3765 0.7059 0.2275
0.3961 0.7059 0.2235
0.4157 0.7059 0.2235
0.4431 0.7059 0.2235
0.4706 0.7098 0.2275
0.4863 0.7098 0.2235
0.5059 0.7059 0.2235
0.5294 0.7098 0.2275
0.5490 0.7059 0.2275
0.5686 0.7059 0.2235
0.5882 0.7059 0.2196
0.6196 0.7059 0.2235
0.6431 0.7059 0.2235
0.6667 0.7059 0.2235
0.6902 0.7098 0.2275
0.7059 0.7020 0.2235
0.7333 0.7020 0.2196
0.7725 0.7216 0.2314
0.7922 0.7294 0.2314
0.8235 0.7255 0.2314
0.8706 0.7333 0.2392
0.9137 0.7490 0.2431
0.9490 0.7608 0.2471
0.1961 0.7059 0.2078
0.2275 0.7216 0.2196
0.2431 0.7294 0.2196
0.2627 0.7373 0.2235
0.2863 0.7373 0.2314
0.3059 0.7412 0.2314
0.3216 0.7373 0.2275
0.3529 0.7412 0.2353
0.3608 0.7412 0.2275
0.3843 0.7412 0.2314
0.4039 0.7373 0.2275
0.4235 0.7373 0.2235
0.4510 0.7373 0.2275
0.4745 0.7412 0.2275
0.4941 0.7373 0.2275
0.5137 0.7373 0.2275
0.5294 0.7373 0.2275
0.5569 0.7373 0.2275
0.5804 0.7412 0.2275
0.6000 0.7412 0.2275
0.6314 0.7412 0.2275
0.6510 0.7412 0.2275
0.6706 0.7412 0.2235
0.6941 0.7373 0.2275
0.7176 0.7333 0.2275
0.7373 0.7333 0.2235
0.7686 0.7373 0.2235
0.7882 0.7490 0.2275
0.8353 0.7529 0.2392
0.8784 0.7686 0.2510
0.9137 0.7647 0.2431
0.9451 0.7725 0.2431
0.2000 0.7412 0.2157
0.2196 0.7490 0.2196
0.2431 0.7647 0.2235
0.2706 0.7725 0.2314
0.2863 0.7647 0.2275
0.3059 0.7686 0.2314
0.3333 0.7725 0.2353
0.3569 0.7647 0.2314
0.3686 0.7647 0.2275
0.3961 0.7686 0.2314
0.4157 0.7686 0.2314
0.4353 0.7686 0.2314
0.4667 0.7686 0.2353
0.4863 0.7686 0.2314
0.5059 0.7647 0.2275
0.5294 0.7647 0.2314
0.5412 0.7647 0.2275
0.5686 0.7647 0.2314
0.5922 0.7686 0.2314
0.6157 0.7686 0.2275
0.6431 0.7686 0.2314
0.6627 0.7686 0.2275
0.6784 0.7647 0.2275
0.7020 0.7686 0.2314
0.7216 0.7647 0.2275
0.7490 0.7686 0.2314
0.7686 0.7686 0.2275
0.7882 0.7725 0.2275
0.8314 0.7725 0.2353
0.8784 0.7922 0.2510
0.9137 0.7922 0.2471
0.9529 0.8039 0.2510
0.2078 0.7765 0.2157
0.2314 0.7922 0.2275
0.2471 0.8000 0.2275
0.2745 0.8118 0.2353
0.2941 0.8118 0.2353
0.3098 0.8118 0.2353
0.3294 0.8118 0.2314
0.3569 0.8118 0.2353
0.3725 0.8118 0.2314
0.3961 0.8118 0.2353
0.4157 0.8078 0.2353
0.4431 0.8118 0.2353
0.4745 0.8118 0.2392
0.4902 0.8078 0.2353
0.5059 0.8078 0.2314
0.5333 0.8118 0.2353
0.5490 0.8078 0.2353
0.5765 0.8118 0.2353
0.5961 0.8078 0.2314
0.6157 0.8078 0.2314
0.6471 0.8118 0.2353
0.6667 0.8118 0.2314
0.6824 0.8078 0.2314
0.7059 0.8118 0.2353
0.7294 0.8118 0.2314
0.7529 0.8078 0.2314
0.7725 0.8118 0.2314
0.8000 0.8118 0.2314
0.8196 0.8039 0.2275
0.8706 0.8157 0.2392
0.9059 0.8275 0.2431
0.9490 0.8314 0.2471
0.2157 0.8196 0.2275
0.2314 0.8235 0.2314
0.2549 0.8392 0.2392
0.2863 0.8549 0.2510
0.3020 0.8431 0.2392
0.3255 0.8510 0.2431
0.3490 0.8588 0.2510
0.3686 0.8471 0.2471
0.3882 0.8510 0.2431
0.4078 0.8510 0.2431
0.4314 0.8471 0.2431
0.4549 0.8510 0.2431
0.4824 0.8510 0.2471
0.4980 0.8471 0.2431
0.5176 0.8471 0.2392
0.5412 0.8510 0.2471
0.5608 0.8471 0.2392
0.5882 0.8471 0.2431
0.6078 0.8471 0.2431
0.6314 0.8471 0.2431
0.6627 0.8510 0.2471
0.6784 0.8510 0.2431
0.6902 0.8471 0.2392
0.7137 0.8471 0.2471
0.7451 0.8549 0.2431
0.7647 0.8510 0.2431
0.7804 0.8510 0.2431
0.8196 0.8510 0.2431
0.8392 0.8471 0.2431
0.8824 0.8510 0.2471
0.9059 0.8588 0.2471
0.9490 0.8588 0.2510
0.2196 0.8588 0.2392
0.2392 0.8667 0.2431
0.2588 0.8706 0.2431
0.2863 0.8784 0.2471
0.3137 0.8745 0.2431
0.3294 0.8745 0.2431
0.3490 0.8706 0.2392
0.3765 0.8706 0.2431
0.3961 0.8706 0.2392
0.4196 0.8706 0.2392
0.4471 0.8745 0.2431
0.4667 0.8745 0.2431
0.4980 0.8745 0.2471
0.5137 0.8745 0.2431
0.5333 0.8745 0.2392
0.5529 0.8745 0.2431
0.5765 0.8706 0.2392
0.6039 0.8745 0.2431
0.6235 0.8745 0.2431
0.6431 0.8745 0.2431
0.6745 0.8745 0.2431
0.6902 0.8706 0.2431
0.7059 0.8706 0.2392
0.7294 0.8745 0.2471
0.7451 0.8745 0.2392
0.7686 0.8784 0.2431
0.7843 0.8784 0.2431
0.8157 0.8706 0.2392
0.8510 0.8745 0.2392
0.8745 0.8745 0.2392
0.9020 0.8745 0.2353
0.9451 0.8824 0.2510
0.2235 0.8863 0.2314
0.2431 0.8902 0.2392
0.2627 0.8980 0.2431
0.2941 0.9098 0.2510
0.3216 0.9137 0.2471
0.3412 0.9176 0.2471
0.3569 0.9176 0.2471
0.3804 0.9098 0.2510
0.4000 0.9137 0.2431
0.4235 0.9137 0.2431
0.4471 0.9176 0.2471
0.4706 0.9137 0.2431
0.4980 0.9137 0.2471
0.5176 0.9137 0.2431
0.5333 0.9176 0.2431
0.5529 0.9137 0.2431
0.5804 0.9137 0.2431
0.6078 0.9176 0.2471
0.6235 0.9137 0.2471
0.6431 0.9137 0.2431
0.6745 0.9176 0.2510
0.6941 0.9176 0.2471
0.7098 0.9137 0.2431
0.7333 0.9176 0.2471
0.7608 0.9137 0.2471
0.7725 0.9137 0.2471
0.8000 0.9137 0.2471
0.8235 0.9137 0.2431
0.8667 0.9137 0.2471
0.8824 0.9137 0.2431
0.9137 0.9137 0.2431
0.9451 0.9137 0.2471
0.1176 0.0549 0.1333
0.1216 0.0549 0.1294
0.1333 0.0549 0.1294
0.1490 0.0549 0.1294
0.1608 0.0549 0.1294
0.1765 0.0588 0.1333
0.1922 0.0549 0.1333
0.2118 0.0588 0.1412
0.2314 0.0588 0.1412
0.2471 0.0627 0.1451
0.2627 0.0667 0.1529
0.2863 0.0706 0.1569
0.3176 0.0745 0.1686
0.3373 0.0784 0.1725
0.3529 0.0784 0.1686
0.3843 0.0824 0.1765
0.4078 0.0863 0.1804
0.4431 0.0902 0.1843
0.4706 0.0863 0.1843
0.5020 0.0941 0.1922
0.5333 0.0980 0.1961
0.5725 0.1059 0.2000
0.6078 0.1098 0.2078
0.6431 0.1098 0.2078
0.6745 0.1137 0.2157
0.7059 0.1176 0.2235
0.7373 0.1255 0.2275
0.7647 0.1255 0.2275
0.8078 0.1333 0.2353
0.8431 0.1373 0.2353
0.8902 0.1569 0.2471
0.9255 0.1608 0.2510
0.1137 0.0588 0.1255
0.1216 0.0627 0.1294
0.1333 0.0627 0.1294
0.1490 0.0627 0.1294
0.1569 0.0627 0.1294
0.1804 0.0706 0.1373
0.2000 0.0706 0.1412
0.2196 0.0745 0.1451
0.2392 0.0745 0.1451
0.2549 0.0784 0.1490
0.2745 0.0824 0.1529
0.2941 0.0824 0.1569
0.3216 0.0863 0.1647
0.3412 0.0902 0.1686
0.3608 0.0902 0.1686
0.3922 0.0980 0.1765
0.4118 0.1020 0.1804
0.4471 0.1020 0.1843
0.4824 0.1098 0.1922
0.5098 0.1137 0.1961
0.5490 0.1216 0.2039
0.5804 0.1255 0.2078
0.6157 0.1294 0.2078
0.6431 0.1255 0.2078
0.6745 0.1333 0.2118
0.7098 0.1451 0.2235
0.7490 0.1569 0.2353
0.7804 0.1608 0.2392
0.8157 0.1608 0.2392
0.8549 0.1686 0.2431
0.8902 0.1765 0.2431
0.9255 0.1804 0.2510
0.1137 0.0706 0.1255
0.1255 0.0784 0.1294
0.1373 0.0784 0.1333
0.1529 0.0745 0.1333
0.1608 0.0745 0.1333
0.1804 0.0824 0.1373
0.2039 0.0863 0.1451
0.2196 0.0863 0.1451
0.2431 0.0863 0.1529
0.2588 0.0902 0.1569
0.2745 0.0941 0.1608
0.2980 0.0941 0.1608
0.3255 0.0980 0.1686
0.3451 0.1020 0.1725
0.3647 0.1059 0.1725
0.3961 0.1098 0.1804
0.4235 0.1255 0.1804
0.4549 0.1216 0.1843
0.4902 0.1294 0.1922
0.5137 0.1333 0.1922
0.5608 0.1451 0.2078
0.5882 0.1451 0.2078
0.6275 0.1569 0.2157
0.6627 0.1608 0.2235
0.6902 0.1608 0.2196
0.7255 0.1686 0.2314
0.7529 0.1725 0.2314
0.7843 0.1804 0.2392
0.8196 0.1804 0.2392
0.8667 0.1961 0.2549
0.8980 0.1961 0.2510
0.9373 0.2000 0.2588
0.1176 0.0824 0.1255
0.1255 0.0863 0.1333
0.1412 0.0863 0.1373
0.1608 0.0902 0.1412
0.1686 0.0902 0.1412
0.1843 0.0941 0.1412
0.2118 0.1020 0.1490
0.2314 0.1020 0.1529
0.2471 0.1059 0.1608
0.2627 0.1059 0.1647
0.2824 0.1137 0.1686
0.3020 0.1137 0.1725
0.3333 0.1176 0.1765
0.3569 0.1255 0.1804
0.3765 0.1333 0.1843
0.4039 0.1333 0.1843
0.4392 0.1490 0.1882
0.4667 0.1451 0.1922
0.5020 0.1569 0.2000
0.5333 0.1608 0.2039
0.5765 0.1725 0.2196
0.6000 0.1725 0.2157
0.6314 0.1765 0.2157
0.6667 0.1804 0.2235
0.6980 0.1843 0.2275
0.7412 0.2000 0.2431
0.7647 0.1961 0.2392
0.8000 0.2078 0.2471
0.8353 0.2078 0.2510
0.8784 0.2196 0.2588
0.9137 0.2235 0.2627
0.9569 0.2353 0.2745
0.1137 0.0902 0.1255
0.1255 0.0941 0.1333
0.1412 0.0941 0.1373
0.1647 0.1020 0.1490
0.1765 0.1059 0.1490
0.1882 0.1059 0.1451
0.2118 0.1137 0.1490
0.2353 0.1176 0.1569
0.2510 0.1255 0.1608
0.2667 0.1255 0.1608
0.2863 0.1333 0.1647
0.3098 0.1373 0.1686
0.3412 0.1412 0.1765
0.3686 0.1529 0.1843
0.3922 0.1608 0.1882
0.4196 0.1647 0.1922
0.4549 0.1725 0.1961
0.4784 0.1686 0.2000
0.5059 0.1725 0.2000
0.5373 0.1804 0.2078
0.5804 0.1882 0.2196
0.6157 0.1961 0.2275
0.6431 0.2000 0.2275
0.6824 0.2078 0.2353
0.7059 0.2118 0.2275
0.7412 0.2235 0.2431
0.7686 0.2235 0.2392
0.8039 0.2353 0.2471
0.8431 0.2431 0.2549
0.8824 0.2471 0.2588
0.9176 0.2549 0.2627
0.9569 0.2588 0.2745
0.1176 0.1059 0.1333
0.1255 0.1137 0.1373
0.1451 0.1137 0.1412
0.1647 0.1216 0.1490
0.1804 0.1216 0.1490
0.1922 0.1255 0.1490
0.2118 0.1255 0.1490
0.2314 0.1333 0.1569
0.2431 0.1373 0.1569
0.2667 0.1451 0.1647
0.2902 0.1569 0.1725
0.3176 0.1608 0.1765
0.3490 0.1647 0.1804
0.3686 0.1725 0.1843
0.3843 0.1725 0.1804
0.4118 0.1725 0.1843
0.4471 0.1804 0.1882
0.4824 0.1882 0.2000
0.5098 0.1922 0.2039
0.5412 0.2000 0.2078
0.5804 0.2039 0.2157
0.6157 0.2157 0.2235
0.6431 0.2196 0.2275
0.6784 0.2275 0.2353
0.7059 0.2275 0.2275
0.7373 0.2353 0.2353
0.7725 0.2471 0.2431
0.8000 0.2510 0.2431
0.8392 0.2549 0.2510
0.8745 0.2627 0.2549
0.9137 0.2706 0.2588
0.9608 0.2863 0.2745
0.1176 0.1255 0.1373
0.1255 0.1294 0.1412
0.1451 0.1333 0.1451
0.1647 0.1373 0.1451
0.1804 0.1373 0.1451
0.1922 0.1451 0.1490
0.2118 0.1490 0.1490
0.2314 0.1529 0.1569
0.2471 0.1608 0.1686
0.2667 0.1647 0.1725
0.2863 0.1686 0.1725
0.3059 0.1647 0.1725
0.3373 0.1725 0.1765
0.3647 0.1804 0.1843
0.3882 0.1882 0.1843
0.4157 0.1922 0.1922
0.4471 0.1961 0.1882
0.4824 0.2078 0.2000
0.5098 0.2157 0.2039
0.5373 0.2157 0.2078
0.5765 0.2235 0.2157
0.6078 0.2275 0.2196
0.6431 0.2392 0.2235
0.6745 0.2471 0.2314
0.7098 0.2510 0.2353
0.7412 0.2549 0.2431
0.7765 0.2667 0.2471
0.8039 0.2706 0.2471
0.8471 0.2824 0.2549
0.8824 0.2902 0.2588
0.9176 0.2980 0.2627
0.9608 0.3098 0.2784
0.1216 0.1451 0.1451
0.1294 0.1451 0.1451
0.1529 0.1529 0.1529
0.1765 0.1647 0.1569
0.1882 0.1647 0.1569
0.2039 0.1686 0.1569
0.2157 0.1686 0.1529
0.2353 0.1686 0.1569
0.2471 0.1725 0.1608
0.2706 0.1765 0.1686
0.2863 0.1804 0.1686
0.3059 0.1804 0.1686
0.3451 0.1882 0.1765
0.3686 0.2000 0.1843
0.3922 0.2039 0.1843
0.4196 0.2078 0.1922
0.4549 0.2157 0.1922
0.4863 0.2235 0.2000
0.5137 0.2314 0.2078
0.5412 0.2353 0.2078
0.5882 0.2471 0.2235
0.6118 0.2471 0.2196
0.6431 0.2549 0.2275
0.6745 0.2627 0.2314
0.7020 0.2627 0.2275
0.7412 0.2784 0.2431
0.7725 0.2902 0.2471
0.8078 0.2980 0.2510
0.8431 0.3059 0.2510
0.8784 0.3137 0.2549
0.9216 0.3255 0.2627
0.9608 0.3373 0.2745
0.1216 0.1686 0.1451
0.1412 0.1686 0.1529
0.1529 0.1725 0.1569
0.1725 0.1765 0.1608
0.1961 0.1765 0.1647
0.2078 0.1804 0.1608
0.2235 0.1804 0.1647
0.2392 0.1804 0.1647
0.2471 0.1804 0.1608
0.2667 0.1922 0.1686
0.2902 0.2000 0.1686
0.3137 0.1961 0.1686
0.3451 0.2118 0.1804
0.3686 0.2196 0.1882
0.3922 0.2235 0.1843
0.4157 0.2275 0.1882
0.4510 0.2353 0.1922
0.4824 0.2392 0.2000
0.5098 0.2510 0.2039
0.5451 0.2510 0.2078
0.5843 0.2627 0.2196
0.6196 0.2667 0.2235
0.6431 0.2784 0.2235
0.6784 0.2902 0.2275
0.7020 0.2902 0.2353
0.7451 0.3059 0.2471
0.7725 0.3098 0.2431
0.8118 0.3216 0.2471
0.8471 0.3294 0.2510
0.8824 0.3373 0.2549
0.9176 0.3490 0.2627
0.9569 0.3608 0.2745
0.1216 0.1843 0.1412
0.1412 0.1882 0.1490
0.1608 0.1961 0.1569
0.1804 0.2039 0.1647
0.2039 0.2078 0.1686
0.2157 0.2039 0.1647
0.2314 0.2078 0.1647
0.2471 0.2078 0.1686
0.2549 0.2078 0.1686
0.2627 0.2078 0.1647
0.2824 0.2078 0.1608
0.3098 0.2157 0.1686
0.3373 0.2275 0.1765
0.3608 0.2314 0.1804
0.3843 0.2392 0.1804
0.4157 0.2471 0.1882
0.4510 0.2549 0.1961
0.4784 0.2549 0.2000
0.5059 0.2667 0.2039
0.5412 0.2706 0.2118
0.5843 0.2863 0.2235
0.6196 0.2902 0.2275
0.6431 0.2980 0.2235
0.6745 0.3098 0.2314
0.7020 0.3098 0.2275
0.7412 0.3255 0.2392
0.7686 0.3373 0.2392
0.8039 0.3529 0.2510
0.8431 0.3529 0.2549
0.8824 0.3647 0.2588
0.9216 0.3725 0.2627
0.9608 0.3804 0.2706
0.1255 0.2078 0.1490
0.1451 0.2078 0.1569
0.1608 0.2157 0.1608
0.1804 0.2275 0.1686
0.2078 0.2314 0.1725
0.2196 0.2314 0.1725
0.2314 0.2314 0.1686
0.2510 0.2314 0.1725
0.2588 0.2235 0.1686
0.2706 0.2275 0.1725
0.2902 0.2275 0.1686
0.3137 0.2314 0.1725
0.3412 0.2392 0.1804
0.3647 0.2510 0.1843
0.3922 0.2588 0.1843
0.4157 0.2627 0.1882
0.4471 0.2627 0.1882
0.4824 0.2745 0.2000
0.5098 0.2902 0.2078
0.5412 0.2863 0.2039
0.5765 0.3020 0.2157
0.6196 0.3098 0.2275
0.6471 0.3255 0.2275
0.6784 0.3294 0.2314
0.7059 0.3373 0.2314
0.7451 0.3529 0.2471
0.7725 0.3608 0.2471
0.8039 0.3686 0.2510
0.8392 0.3686 0.2510
0.8784 0.3804 0.2588
0.9216 0.3922 0.2667
0.9608 0.4039 0.2745
0.1294 0.2275 0.1608
0.1490 0.2314 0.1647
0.1608 0.2353 0.1647
0.1804 0.2431 0.1686
0.2078 0.2510 0.1725
0.2235 0.2510 0.1725
0.2353 0.2549 0.1765
0.2510 0.2510 0.1765
0.2667 0.2471 0.1725
0.2824 0.2549 0.1804
0.2980 0.2510 0.1765
0.3176 0.2471 0.1725
0.3412 0.2549 0.1804
0.3647 0.2627 0.1804
0.3922 0.2706 0.1843
0.4118 0.2745 0.1843
0.4549 0.2902 0.1961
0.4863 0.2941 0.2000
0.5098 0.3098 0.2039
0.5451 0.3137 0.2118
0.5804 0.3255 0.2157
0.6157 0.3255 0.2196
0.6431 0.3412 0.2235
0.6824 0.3569 0.2353
0.6980 0.3529 0.2314
0.7412 0.3686 0.2431
0.7765 0.3765 0.2471
0.8118 0.3882 0.2510
0.8510 0.3961 0.2588
0.8824 0.4000 0.2588
0.9098 0.4118 0.2588
0.9569 0.4314 0.2784
0.1333 0.2471 0.1569
0.1569 0.2510 0.1647
0.1725 0.2627 0.1686
0.1922 0.2706 0.1725
0.2157 0.2745 0.1765
0.2314 0.2784 0.1725
0.2431 0.2784 0.1765
0.2549 0.2784 0.1765
0.2667 0.2745 0.1725
0.2824 0.2784 0.1725
0.2941 0.2706 0.1686
0.3216 0.2745 0.1765
0.3451 0.2863 0.1804
0.3647 0.2902 0.1804
0.3922 0.2941 0.1804
0.4196 0.3059 0.1882
0.4471 0.3098 0.1922
0.4824 0.3176 0.2000
0.5059 0.3333 0.2039
0.5373 0.3373 0.2078
0.5725 0.3490 0.2157
0.6196 0.3608 0.2275
0.6431 0.3725 0.2275
0.6745 0.3765 0.2314
0.7059 0.3843 0.2353
0.7451 0.4000 0.2431
0.7725 0.4039 0.2431
0.8000 0.4078 0.2392
0.8431 0.4196 0.2471
0.8824 0.4392 0.2549
0.9176 0.4549 0.2588
0.9529 0.4706 0.2745
0.1373 0.2706 0.1647
0.1569 0.2745 0.1686
0.1725 0.2824 0.1725
0.1961 0.2980 0.1804
0.2235 0.3059 0.1843
0.2353 0.3059 0.1804
0.2471 0.3059 0.1804
0.2588 0.3020 0.1804
0.2784 0.3020 0.1843
0.2941 0.3098 0.1882
0.3098 0.3020 0.1843
0.3294 0.3020 0.1843
0.3490 0.3059 0.1882
0.3608 0.3059 0.1804
0.3843 0.3059 0.1804
0.4157 0.3176 0.1882
0.4510 0.3333 0.1961
0.4784 0.3333 0.1961
0.5020 0.3490 0.2000
0.5412 0.3608 0.2118
0.5804 0.3725 0.2196
0.6157 0.3765 0.2235
0.6392 0.3882 0.2235
0.6784 0.4000 0.2314
0.7020 0.3961 0.2275
0.7412 0.4118 0.2392
0.7725 0.4275 0.2431
0.8000 0.4392 0.2431
0.8392 0.4510 0.2471
0.8824 0.4706 0.2588
0.9255 0.4863 0.2667
0.9569 0.4902 0.2706
0.1412 0.2980 0.1765
0.1608 0.3020 0.1765
0.1765 0.3098 0.1765
0.2000 0.3255 0.1843
0.2275 0.3333 0.1882
0.2392 0.3373 0.1882
0.2510 0.3373 0.1882
0.2627 0.3333 0.1882
0.2863 0.3294 0.1882
0.3020 0.3373 0.1922
0.3176 0.3333 0.1922
0.3373 0.3294 0.1882
0.3529 0.3294 0.1882
0.3686 0.3333 0.1882
0.3922 0.3333 0.1882
0.4157 0.3373 0.1922
0.4471 0.3490 0.1882
0.4863 0.3608 0.2000
0.5098 0.3725 0.2039
0.5412 0.3765 0.2118
0.5765 0.3882 0.2157
0.6196 0.4000 0.2235
0.6471 0.4118 0.2275
0.6824 0.4235 0.2353
0.7098 0.4275 0.2353
0.7412 0.4392 0.2431
0.7765 0.4588 0.2471
0.8118 0.4745 0.2549
0.8510 0.4824 0.2588
0.8784 0.4863 0.2588
0.9216 0.4980 0.2667
0.9608 0.5098 0.2784
0.1451 0.3216 0.1725
0.1647 0.3294 0.1765
0.1843 0.3412 0.1804
0.2078 0.3529 0.1843
0.2314 0.3608 0.1882
0.2471 0.3647 0.1882
0.2588 0.3647 0.1882
0.2706 0.3647 0.1882
0.2902 0.3647 0.1882
0.2980 0.3647 0.1843
0.3216 0.3647 0.1882
0.3451 0.3686 0.1882
0.3647 0.3686 0.1922
0.3765 0.3647 0.1882
0.3922 0.3608 0.1843
0.4157 0.3647 0.1882
0.4471 0.3725 0.1961
0.4824 0.3804 0.2039
0.5020 0.3922 0.2078
0.5373 0.3961 0.2118
0.5686 0.4000 0.2157
0.6118 0.4118 0.2235
0.6392 0.4275 0.2235
0.6824 0.4431 0.2353
0.6980 0.4549 0.2275
0.7451 0.4784 0.2471
0.7765 0.4863 0.2431
0.8039 0.4902 0.2392
0.8471 0.5020 0.2510
0.8784 0.5059 0.2549
0.9137 0.5176 0.2627
0.9490 0.5216 0.2706
0.1529 0.3569 0.1765
0.1686 0.3686 0.1843
0.1843 0.3725 0.1804
0.2196 0.3922 0.1922
0.2353 0.3922 0.1922
0.2510 0.3961 0.1961
0.2627 0.3922 0.1961
0.2784 0.3922 0.1961
0.2980 0.3961 0.1922
0.3137 0.3922 0.1961
0.3255 0.3922 0.1922
0.3451 0.3961 0.1922
0.3686 0.3922 0.1922
0.3882 0.3922 0.1961
0.4039 0.3922 0.1922
0.4275 0.3922 0.1961
0.4549 0.3922 0.1961
0.4863 0.3961 0.2000
0.4980 0.4039 0.2000
0.5373 0.4157 0.2078
0.5882 0.4353 0.2196
0.6196 0.4588 0.2275
0.6431 0.4510 0.2118
0.6824 0.4784 0.2314
0.7059 0.4863 0.2314
0.7451 0.4980 0.2471
0.7725 0.5020 0.2392
0.8039 0.5098 0.2471
0.8431 0.5137 0.2510
0.8863 0.5333 0.2588
0.9216 0.5412 0.2667
0.9569 0.5569 0.2706
0.1608 0.3765 0.1843
0.1765 0.3922 0.1922
0.1922 0.4000 0.1882
0.2196 0.4118 0.1922
0.2392 0.4235 0.1961
0.2510 0.4275 0.1961
0.2667 0.4275 0.1961
0.2784 0.4235 0.1961
0.3059 0.4235 0.1961
0.3255 0.4275 0.1961
0.3373 0.4235 0.1961
0.3569 0.4275 0.1961
0.3804 0.4275 0.1961
0.3961 0.4235 0.1961
0.4157 0.4235 0.1922
0.4392 0.4235 0.2000
0.4510 0.4235 0.1882
0.4824 0.4275 0.2000
0.4980 0.4314 0.2000
0.5255 0.4392 0.2000
0.5725 0.4588 0.2118
0.6118 0.4824 0.2275
0.6392 0.4863 0.2235
0.6745 0.5020 0.2353
0.7020 0.5020 0.2275
0.7412 0.5137 0.2431
0.7725 0.5255 0.2392
0.8039 0.5333 0.2431
0.8431 0.5373 0.2471
0.8784 0.5529 0.2510
0.9137 0.5647 0.2588
0.9647 0.5922 0.2784
0.1569 0.4078 0.1843
0.1725 0.4235 0.1882
0.1961 0.4353 0.1961
0.2196 0.4471 0.1961
0.2431 0.4627 0.2039
0.2549 0.4706 0.2039
0.2784 0.4745 0.2078
0.2941 0.4745 0.2118
0.3137 0.4706 0.2039
0.3333 0.4745 0.2118
0.3451 0.4745 0.2078
0.3608 0.4745 0.2039
0.3922 0.4784 0.2118
0.4078 0.4745 0.2078
0.4235 0.4706 0.2039
0.4431 0.4627 0.2000
0.4706 0.4784 0.2078
0.4902 0.4784 0.2078
0.5137 0.4745 0.2078
0.5373 0.4784 0.2078
0.5804 0.4863 0.2157
0.6196 0.4941 0.2196
0.6431 0.5059 0.2235
0.6784 0.5137 0.2314
0.7059 0.5216 0.2314
0.7373 0.5294 0.2431
0.7765 0.5490 0.2431
0.8039 0.5569 0.2471
0.8471 0.5686 0.2549
0.8902 0.5922 0.2627
0.9216 0.5961 0.2706
0.9608 0.6118 0.2745
0.1608 0.4588 0.1882
0.1804 0.4706 0.1961
0.2078 0.4824 0.2039
0.2314 0.4902 0.2078
0.2471 0.4980 0.2118
0.2627 0.5020 0.2118
0.2824 0.5020 0.2118
0.2980 0.5020 0.2157
0.3176 0.4980 0.2078
0.3412 0.5020 0.2118
0.3529 0.5020 0.2078
0.3647 0.4980 0.2039
0.3961 0.5020 0.2118
0.4157 0.4980 0.2078
0.4392 0.5020 0.2118
0.4549 0.4941 0.2078
0.4863 0.5020 0.2078
0.5020 0.5020 0.2118
0.5294 0.5020 0.2157
0.5490 0.5059 0.2157
0.5882 0.5098 0.2235
0.6157 0.5098 0.2196
0.6431 0.5255 0.2235
0.6784 0.5333 0.2314
0.7020 0.5451 0.2353
0.7373 0.5569 0.2431
0.7804 0.5804 0.2510
0.8039 0.5882 0.2510
0.8431 0.5922 0.2549
0.8863 0.6118 0.2627
0.9216 0.6196 0.2745
0.9529 0.6235 0.2706
0.1647 0.4941 0.1922
0.1843 0.5059 0.1961
0.2078 0.5098 0.2000
0.2353 0.5255 0.2118
0.2471 0.5294 0.2118
0.2667 0.5373 0.2157
0.2824 0.5333 0.2118
0.3020 0.5333 0.2157
0.3294 0.5333 0.2157
0.3451 0.5333 0.2157
0.3647 0.5373 0.2196
0.3765 0.5333 0.2118
0.4000 0.5333 0.2118
0.4196 0.5294 0.2118
0.4471 0.5373 0.2196
0.4667 0.5333 0.2196
0.4941 0.5373 0.2157
0.5098 0.5373 0.2196
0.5333 0.5333 0.2196
0.5412 0.5294 0.2118
0.5804 0.5373 0.2196
0.6157 0.5412 0.2196
0.6431 0.5647 0.2314
0.6824 0.5725 0.2392
0.7059 0.5843 0.2314
0.7373 0.5922 0.2431
0.7725 0.6118 0.2431
0.8039 0.6196 0.2471
0.8431 0.6235 0.2510
0.8784 0.6275 0.2510
0.9216 0.6431 0.2706
0.9608 0.6510 0.2745
0.1686 0.5255 0.2000
0.1882 0.5373 0.2039
0.2118 0.5451 0.2078
0.2431 0.5647 0.2196
0.2549 0.5725 0.2157
0.2745 0.5843 0.2235
0.2902 0.5804 0.2196
0.3176 0.5843 0.2235
0.3294 0.5804 0.2235
0.3451 0.5765 0.2196
0.3686 0.5843 0.2235
0.3882 0.5843 0.2235
0.4118 0.5804 0.2235
0.4314 0.5804 0.2196
0.4549 0.5843 0.2235
0.4784 0.5843 0.2275
0.4980 0.5804 0.2235
0.5176 0.5843 0.2275
0.5412 0.5843 0.2275
0.5608 0.5843 0.2235
0.5961 0.5843 0.2275
0.6196 0.5804 0.2196
0.6431 0.5922 0.2235
0.6784 0.6000 0.2314
0.7059 0.6039 0.2314
0.7412 0.6157 0.2431
0.7686 0.6235 0.2314
0.8000 0.6314 0.2392
0.8471 0.6431 0.2549
0.8824 0.6510 0.2549
0.9216 0.6588 0.2706
0.9608 0.6706 0.2745
0.1725 0.5686 0.2000
0.1961 0.5843 0.2118
0.2196 0.5882 0.2157
0.2471 0.6039 0.2235
0.2667 0.6196 0.2275
0.2784 0.6235 0.2275
0.2980 0.6235 0.2235
0.3255 0.6235 0.2275
0.3451 0.6235 0.2314
0.3608 0.6157 0.2275
0.3804 0.6196 0.2275
0.4000 0.6196 0.2275
0.4235 0.6157 0.2275
0.4471 0.6196 0.2275
0.4667 0.6196 0.2275
0.4902 0.6196 0.2314
0.5176 0.6196 0.2275
0.5373 0.6157 0.2275
0.5490 0.6196 0.2275
0.5765 0.6196 0.2275
0.6039 0.6196 0.2314
0.6196 0.6196 0.2235
0.6431 0.6196 0.2235
0.6706 0.6275 0.2314
0.7059 0.6235 0.2314
0.7490 0.6392 0.2510
0.7765 0.6471 0.2431
0.8039 0.6549 0.2471
0.8471 0.6627 0.2510
0.8824 0.6745 0.2549
0.9216 0.6784 0.2667
0.9608 0.6941 0.2745
0.1765 0.6118 0.2078
0.2039 0.6235 0.2196
0.2235 0.6196 0.2157
0.2431 0.6275 0.2196
0.2706 0.6431 0.2353
0.2863 0.6471 0.2314
0.3098 0.6471 0.2353
0.3333 0.6431 0.2353
0.3451 0.6471 0.2314
0.3647 0.6431 0.2353
0.3843 0.6471 0.2353
0.4039 0.6471 0.2314
0.4275 0.6392 0.2275
0.4549 0.6471 0.2353
0.4667 0.6431 0.2314
0.4941 0.6471 0.2353
0.5137 0.6471 0.2275
0.5412 0.6471 0.2314
0.5529 0.6510 0.2314
0.5804 0.6471 0.2314
0.6118 0.6431 0.2353
0.6353 0.6510 0.2392
0.6627 0.6431 0.2353
0.6784 0.6431 0.2353
0.7059 0.6510 0.2353
0.7333 0.6549 0.2392
0.7686 0.6706 0.2353
0.8039 0.6824 0.2510
0.8392 0.6863 0.2471
0.8784 0.7020 0.2510
0.9137 0.7098 0.2627
0.9569 0.7255 0.2706
0.1843 0.6471 0.2196
0.2078 0.6549 0.2275
0.2275 0.6549 0.2235
0.2549 0.6667 0.2353
0.2784 0.6706 0.2392
0.2941 0.6784 0.2431
0.3020 0.6745 0.2314
0.3412 0.6824 0.2431
0.3529 0.6706 0.2275
0.3765 0.6824 0.2353
0.4000 0.6784 0.2353
0.4157 0.6745 0.2314
0.4392 0.6784 0.2353
0.4667 0.6824 0.2353
0.4902 0.6824 0.2353
0.5059 0.6824 0.2314
0.5255 0.6745 0.2353
0.5451 0.6667 0.2314
0.5647 0.6706 0.2314
0.5882 0.6745 0.2353
0.6196 0.6784 0.2392
0.6314 0.6706 0.2314
0.6667 0.6863 0.2392
0.6863 0.6784 0.2353
0.7020 0.6706 0.2314
0.7412 0.6863 0.2431
0.7686 0.6941 0.2392
0.8039 0.7059 0.2431
0.8471 0.7137 0.2549
0.8863 0.7255 0.2627
0.9255 0.7373 0.2706
0.9608 0.7412 0.2745
0.1843 0.6745 0.2118
0.2118 0.6863 0.2235
0.2353 0.6941 0.2275
0.2588 0.7020 0.2314
0.2863 0.7098 0.2392
0.3020 0.7176 0.2431
0.3176 0.7137 0.2392
0.3490 0.7216 0.2431
0.3608 0.7098 0.2431
0.3843 0.7176 0.2471
0.4039 0.7176 0.2431
0.4196 0.7137 0.2392
0.4471 0.7137 0.2431
0.4706 0.7176 0.2431
0.4902 0.7176 0.2431
0.5137 0.7216 0.2471
0.5333 0.7137 0.2471
0.5529 0.7098 0.2431
0.5765 0.7137 0.2431
0.6000 0.7137 0.2431
0.6275 0.7176 0.2471
0.6431 0.7098 0.2392
0.6706 0.7216 0.2471
0.6902 0.7176 0.2431
0.7176 0.7137 0.2431
0.7490 0.7216 0.2471
0.7725 0.7255 0.2392
0.8039 0.7333 0.2431
0.8431 0.7373 0.2510
0.8784 0.7451 0.2549
0.9216 0.7569 0.2627
0.9608 0.7686 0.2706
0.2000 0.7137 0.2275
0.2235 0.7216 0.2353
0.2431 0.7294 0.2353
0.2588 0.7333 0.2314
0.2863 0.7373 0.2392
0.3098 0.7451 0.2431
0.3255 0.7451 0.2431
0.3529 0.7451 0.2431
0.3686 0.7451 0.2431
0.3961 0.7451 0.2431
0.4118 0.7451 0.2392
0.4314 0.7451 0.2392
0.4627 0.7451 0.2431
0.4824 0.7412 0.2392
0.5020 0.7451 0.2392
0.5255 0.7451 0.2431
0.5490 0.7451 0.2431
0.5725 0.7451 0.2471
0.5922 0.7451 0.2431
0.6157 0.7451 0.2431
0.6392 0.7451 0.2431
0.6588 0.7451 0.2392
0.6784 0.7451 0.2392
0.6980 0.7451 0.2392
0.7255 0.7451 0.2471
0.7490 0.7451 0.2471
0.7725 0.7451 0.2392
0.8118 0.7608 0.2510
0.8510 0.7647 0.2588
0.8784 0.7647 0.2588
0.9176 0.7765 0.2627
0.9608 0.7922 0.2745
0.2000 0.7373 0.2314
0.2196 0.7490 0.2392
0.2471 0.7608 0.2431
0.2706 0.7686 0.2471
0.3020 0.7765 0.2549
0.3176 0.7804 0.2510
0.3333 0.7765 0.2510
0.3569 0.7725 0.2510
0.3804 0.7765 0.2549
0.4078 0.7725 0.2510
0.4235 0.7765 0.2471
0.4431 0.7804 0.2510
0.4824 0.7765 0.2549
0.4980 0.7765 0.2510
0.5098 0.7765 0.2471
0.5373 0.7725 0.2510
0.5529 0.7725 0.2471
0.5804 0.7725 0.2510
0.6039 0.7725 0.2471
0.6235 0.7765 0.2510
0.6471 0.7725 0.2471
0.6706 0.7765 0.2510
0.6863 0.7765 0.2471
0.7098 0.7765 0.2471
0.7333 0.7765 0.2471
0.7569 0.7765 0.2510
0.7765 0.7765 0.2471
0.8039 0.7804 0.2471
0.8431 0.7843 0.2549
0.8824 0.7961 0.2627
0.9255 0.8078 0.2706
0.9647 0.8157 0.2784
0.2078 0.7804 0.2353
0.2235 0.7882 0.2392
0.2471 0.8039 0.2431
0.2745 0.8118 0.2471
0.3059 0.8196 0.2549
0.3176 0.8157 0.2510
0.3412 0.8196 0.2549
0.3686 0.8196 0.2549
0.3804 0.8196 0.2549
0.4078 0.8157 0.2549
0.4235 0.8196 0.2510
0.4471 0.8235 0.2510
0.4863 0.8196 0.2549
0.5020 0.8196 0.2549
0.5137 0.8196 0.2510
0.5412 0.8157 0.2510
0.5569 0.8157 0.2510
0.5843 0.8196 0.2549
0.6039 0.8157 0.2510
0.6275 0.8196 0.2510
0.6510 0.8157 0.2510
0.6745 0.8196 0.2549
0.6863 0.8157 0.2471
0.7098 0.8196 0.2510
0.7373 0.8196 0.2471
0.7608 0.8157 0.2510
0.7804 0.8157 0.2471
0.8039 0.8157 0.2471
0.8353 0.8118 0.2471
0.8745 0.8235 0.2549
0.9176 0.8353 0.2627
0.9490 0.8392 0.2667
0.2157 0.8196 0.2392
0.2353 0.8275 0.2471
0.2549 0.8431 0.2510
0.2824 0.8510 0.2588
0.3137 0.8549 0.2627
0.3333 0.8510 0.2588
0.3490 0.8510 0.2588
0.3725 0.8510 0.2588
0.3922 0.8510 0.2549
0.4196 0.8510 0.2549
0.4431 0.8549 0.2549
0.4667 0.8588 0.2588
0.4980 0.8549 0.2588
0.5137 0.8549 0.2588
0.5294 0.8549 0.2549
0.5529 0.8510 0.2549
0.5725 0.8510 0.2549
0.6000 0.8549 0.2588
0.6196 0.8549 0.2549
0.6392 0.8549 0.2549
0.6667 0.8510 0.2549
0.6863 0.8549 0.2588
0.7020 0.8549 0.2549
0.7255 0.8549 0.2549
0.7529 0.8549 0.2588
0.7725 0.8510 0.2588
0.7961 0.8549 0.2627
0.8235 0.8588 0.2667
0.8510 0.8549 0.2627
0.8824 0.8510 0.2588
0.9176 0.8588 0.2627
0.9569 0.8667 0.2745
0.2235 0.8510 0.2471
0.2431 0.8588 0.2510
0.2549 0.8667 0.2510
0.2863 0.8784 0.2588
0.3176 0.8784 0.2627
0.3373 0.8784 0.2667
0.3569 0.8824 0.2627
0.3843 0.8824 0.2667
0.4039 0.8745 0.2627
0.4275 0.8784 0.2667
0.4549 0.8784 0.2706
0.4784 0.8784 0.2667
0.5020 0.8745 0.2667
0.5216 0.8784 0.2706
0.5451 0.8784 0.2667
0.5608 0.8784 0.2627
0.5843 0.8784 0.2667
0.6118 0.8784 0.2706
0.6275 0.8784 0.2667
0.6471 0.8745 0.2627
0.6745 0.8745 0.2667
0.6902 0.8745 0.2667
0.7098 0.8745 0.2627
0.7333 0.8745 0.2627
0.7529 0.8784 0.2627
0.7765 0.8784 0.2667
0.7961 0.8784 0.2667
0.8196 0.8784 0.2627
0.8510 0.8745 0.2588
0.8863 0.8824 0.2627
0.9216 0.8863 0.2667
0.9569 0.8863 0.2745
0.2196 0.8784 0.2431
0.2431 0.8902 0.2510
0.2588 0.8980 0.2549
0.2980 0.9137 0.2745
0.3294 0.9137 0.2784
0.3490 0.9176 0.2745
0.3647 0.9176 0.2706
0.3922 0.9216 0.2784
0.4118 0.9137 0.2667
0.4353 0.9176 0.2706
0.4627 0.9176 0.2706
0.4824 0.9137 0.2667
0.5059 0.9137 0.2706
0.5294 0.9176 0.2745
0.5569 0.9176 0.2706
0.5686 0.9176 0.2667
0.5961 0.9176 0.2706
0.6196 0.9176 0.2706
0.6392 0.9176 0.2706
0.6549 0.9176 0.2667
0.6824 0.9176 0.2706
0.6980 0.9176 0.2706
0.7216 0.9216 0.2706
0.7451 0.9176 0.2706
0.7608 0.9137 0.2667
0.7882 0.9137 0.2745
0.8078 0.9137 0.2745
0.8314 0.9176 0.2745
0.8667 0.9176 0.2745
0.8980 0.9176 0.2706
0.9255 0.9137 0.2706
0.9569 0.9137 0.2784
0.1137 0.0510 0.1451
0.1255 0.0549 0.1451
0.1373 0.0549 0.1451
0.1529 0.0549 0.1451
0.1686 0.0588 0.1490
0.1725 0.0549 0.1412
0.1922 0.0549 0.1412
0.2157 0.0588 0.1490
0.2353 0.0588 0.1569
0.2471 0.0667 0.1647
0.2667 0.0706 0.1686
0.2863 0.0667 0.1686
0.3098 0.0706 0.1765
0.3294 0.0784 0.1804
0.3569 0.0784 0.1843
0.3804 0.0824 0.1922
0.4118 0.0863 0.1882
0.4431 0.0863 0.1961
0.4706 0.0902 0.2000
0.5020 0.0980 0.2078
0.5333 0.0941 0.2078
0.5686 0.1020 0.2157
0.6039 0.1059 0.2196
0.6431 0.1098 0.2275
0.6784 0.1098 0.2353
0.7059 0.1216 0.2353
0.7412 0.1294 0.2392
0.7725 0.1294 0.2431
0.8039 0.1333 0.2471
0.8431 0.1412 0.2510
0.8902 0.1529 0.2627
0.9216 0.1608 0.2706
0.1176 0.0627 0.1451
0.1294 0.0667 0.1490
0.1412 0.0667 0.1451
0.1569 0.0667 0.1490
0.1686 0.0706 0.1490
0.1765 0.0667 0.1451
0.2000 0.0706 0.1529
0.2235 0.0745 0.1569
0.2314 0.0745 0.1569
0.2431 0.0784 0.1608
0.2667 0.0824 0.1647
0.2902 0.0863 0.1686
0.3137 0.0902 0.1765
0.3373 0.0902 0.1765
0.3647 0.0941 0.1843
0.3922 0.1020 0.1922
0.4157 0.0980 0.1882
0.4471 0.1020 0.1961
0.4863 0.1098 0.2078
0.5137 0.1059 0.2078
0.5529 0.1137 0.2157
0.5843 0.1216 0.2196
0.6196 0.1294 0.2275
0.6471 0.1294 0.2314
0.6784 0.1373 0.2314
0.7098 0.1451 0.2353
0.7451 0.1529 0.2392
0.7882 0.1647 0.2549
0.8157 0.1647 0.2549
0.8549 0.1725 0.2588
0.8902 0.1725 0.2588
0.9216 0.1804 0.2667
0.1137 0.0745 0.1451
0.1255 0.0784 0.1451
0.1412 0.0784 0.1451
0.1608 0.0824 0.1529
0.1686 0.0784 0.1490
0.1765 0.0784 0.1490
0.2039 0.0863 0.1569
0.2235 0.0863 0.1608
0.2431 0.0902 0.1686
0.2510 0.0902 0.1686
0.2706 0.0902 0.1686
0.2980 0.0941 0.1725
0.3255 0.1020 0.1804
0.3451 0.1020 0.1843
0.3725 0.1059 0.1882
0.4000 0.1137 0.1961
0.4275 0.1255 0.1961
0.4588 0.1255 0.2000
0.4863 0.1255 0.2039
0.5255 0.1333 0.2118
0.5569 0.1333 0.2157
0.5961 0.1490 0.2275
0.6235 0.1529 0.2275
0.6627 0.1647 0.2431
0.6902 0.1647 0.2392
0.7255 0.1765 0.2471
0.7529 0.1725 0.2431
0.7882 0.1765 0.2510
0.8196 0.1804 0.2549
0.8706 0.1961 0.2706
0.9020 0.2000 0.2706
0.9333 0.2000 0.2745
0.1176 0.0863 0.1490
0.1255 0.0863 0.1490
0.1412 0.0863 0.1490
0.1608 0.0941 0.1569
0.1725 0.0941 0.1569
0.1804 0.0902 0.1529
0.2078 0.0980 0.1608
0.2275 0.1020 0.1686
0.2549 0.1020 0.1765
0.2627 0.1020 0.1725
0.2863 0.1098 0.1765
0.3098 0.1137 0.1843
0.3373 0.1255 0.1922
0.3569 0.1255 0.1922
0.3804 0.1294 0.1961
0.4039 0.1333 0.2000
0.4431 0.1490 0.2039
0.4667 0.1490 0.2078
0.4980 0.1569 0.2157
0.5294 0.1647 0.2235
0.5725 0.1725 0.2314
0.6039 0.1725 0.2314
0.6353 0.1765 0.2314
0.6667 0.1804 0.2392
0.7020 0.1882 0.2471
0.7373 0.1961 0.2510
0.7647 0.2000 0.2510
0.8000 0.2039 0.2627
0.8392 0.2078 0.2706
0.8824 0.2235 0.2824
0.9176 0.2275 0.2824
0.9529 0.2314 0.2902
0.1137 0.0902 0.1451
0.1255 0.0941 0.1490
0.1373 0.0941 0.1490
0.1647 0.1059 0.1608
0.1804 0.1098 0.1647
0.1922 0.1098 0.1647
0.2118 0.1137 0.1686
0.2353 0.1176 0.1725
0.2549 0.1216 0.1725
0.2667 0.1294 0.1725
0.2863 0.1333 0.1765
0.3098 0.1373 0.1804
0.3412 0.1490 0.1882
0.3608 0.1529 0.1922
0.3922 0.1608 0.2000
0.4157 0.1647 0.2039
0.4510 0.1647 0.2118
0.4824 0.1725 0.2196
0.5059 0.1804 0.2235
0.5333 0.1804 0.2235
0.5765 0.1882 0.2314
0.6157 0.1961 0.2353
0.6510 0.2039 0.2431
0.6784 0.2078 0.2471
0.7059 0.2157 0.2471
0.7412 0.2235 0.2510
0.7725 0.2314 0.2549
0.8000 0.2314 0.2627
0.8431 0.2392 0.2745
0.8824 0.2471 0.2784
0.9137 0.2510 0.2784
0.9529 0.2588 0.2863
0.1137 0.1059 0.1451
0.1255 0.1098 0.1490
0.1412 0.1098 0.1490
0.1647 0.1176 0.1608
0.1765 0.1216 0.1647
0.1961 0.1294 0.1647
0.2157 0.1294 0.1686
0.2353 0.1333 0.1686
0.2471 0.1412 0.1725
0.2667 0.1529 0.1804
0.2941 0.1608 0.1882
0.3216 0.1647 0.1882
0.3490 0.1725 0.2000
0.3686 0.1725 0.1961
0.4000 0.1765 0.2039
0.4196 0.1765 0.2078
0.4510 0.1804 0.2078
0.4902 0.1961 0.2235
0.5176 0.1961 0.2275
0.5529 0.2078 0.2353
0.5882 0.2078 0.2314
0.6275 0.2196 0.2431
0.6549 0.2275 0.2431
0.6824 0.2353 0.2510
0.7098 0.2353 0.2510
0.7529 0.2471 0.2588
0.7804 0.2549 0.2627
0.8000 0.2549 0.2627
0.8510 0.2588 0.2745
0.8902 0.2745 0.2824
0.9294 0.2863 0.2863
0.9725 0.2941 0.2980
0.1137 0.1255 0.1451
0.1255 0.1294 0.1490
0.1412 0.1333 0.1529
0.1647 0.1373 0.1608
0.1765 0.1412 0.1608
0.2000 0.1529 0.1725
0.2235 0.1569 0.1725
0.2431 0.1608 0.1765
0.2588 0.1608 0.1804
0.2745 0.1686 0.1882
0.2941 0.1725 0.1882
0.3176 0.1725 0.1882
0.3451 0.1804 0.1961
0.3686 0.1804 0.1961
0.4039 0.1922 0.2078
0.4275 0.1961 0.2118
0.4549 0.2000 0.2078
0.4863 0.2078 0.2196
0.5176 0.2196 0.2275
0.5529 0.2275 0.2314
0.6000 0.2353 0.2392
0.6235 0.2353 0.2353
0.6549 0.2471 0.2431
0.6863 0.2588 0.2510
0.7137 0.2549 0.2549
0.7529 0.2627 0.2588
0.7804 0.2745 0.2667
0.8078 0.2824 0.2706
0.8549 0.2863 0.2784
0.8941 0.2980 0.2824
0.9255 0.3059 0.2824
0.9804 0.3216 0.3020
0.1216 0.1451 0.1529
0.1294 0.1490 0.1529
0.1529 0.1569 0.1647
0.1765 0.1647 0.1725
0.1843 0.1647 0.1686
0.2039 0.1725 0.1765
0.2235 0.1725 0.1686
0.2392 0.1725 0.1725
0.2588 0.1725 0.1765
0.2706 0.1804 0.1804
0.2941 0.1843 0.1804
0.3137 0.1882 0.1843
0.3451 0.2000 0.1961
0.3686 0.2039 0.1961
0.4000 0.2157 0.2078
0.4196 0.2157 0.2118
0.4627 0.2196 0.2157
0.4941 0.2314 0.2275
0.5137 0.2353 0.2235
0.5451 0.2471 0.2314
0.5882 0.2510 0.2353
0.6235 0.2549 0.2392
0.6549 0.2627 0.2392
0.6824 0.2706 0.2471
0.7098 0.2745 0.2471
0.7529 0.2863 0.2588
0.7804 0.2980 0.2627
0.8078 0.3098 0.2706
0.8510 0.3098 0.2745
0.8941 0.3294 0.2824
0.9255 0.3333 0.2784
0.9804 0.3490 0.2980
0.1255 0.1647 0.1608
0.1373 0.1686 0.1647
0.1529 0.1725 0.1647
0.1765 0.1765 0.1686
0.1922 0.1765 0.1686
0.2196 0.1961 0.1804
0.2314 0.1922 0.1765
0.2431 0.1882 0.1765
0.2549 0.1922 0.1843
0.2745 0.1961 0.1843
0.2941 0.2039 0.1843
0.3176 0.2078 0.1843
0.3490 0.2157 0.1961
0.3686 0.2196 0.1961
0.3961 0.2314 0.2039
0.4275 0.2353 0.2118
0.4549 0.2353 0.2078
0.4941 0.2471 0.2235
0.5216 0.2549 0.2235
0.5529 0.2627 0.2275
0.5922 0.2667 0.2314
0.6275 0.2745 0.2353
0.6588 0.2863 0.2392
0.6863 0.2980 0.2471
0.7098 0.3020 0.2471
0.7490 0.3098 0.2510
0.7765 0.3216 0.2627
0.8157 0.3255 0.2784
0.8588 0.3373 0.2784
0.8824 0.3490 0.2784
0.9333 0.3529 0.2824
0.9765 0.3686 0.2941
0.1216 0.1804 0.1608
0.1333 0.1882 0.1647
0.1569 0.1961 0.1725
0.1765 0.1961 0.1725
0.2000 0.2078 0.1804
0.2196 0.2157 0.1843
0.2314 0.2118 0.1804
0.2431 0.2118 0.1804
0.2549 0.2118 0.1804
0.2706 0.2157 0.1843
0.2902 0.2196 0.1843
0.3137 0.2235 0.1882
0.3490 0.2353 0.2000
0.3686 0.2431 0.2000
0.3961 0.2510 0.2039
0.4235 0.2510 0.2078
0.4510 0.2588 0.2157
0.4863 0.2627 0.2196
0.5098 0.2706 0.2196
0.5451 0.2863 0.2314
0.5882 0.2941 0.2353
0.6196 0.2980 0.2392
0.6510 0.3059 0.2431
0.6824 0.3216 0.2549
0.7137 0.3216 0.2549
0.7529 0.3333 0.2549
0.7804 0.3451 0.2588
0.8118 0.3490 0.2667
0.8549 0.3647 0.2745
0.8863 0.3765 0.2784
0.9294 0.3765 0.2863
0.9686 0.3882 0.2941
0.1294 0.2078 0.1686
0.1412 0.2078 0.1686
0.1647 0.2157 0.1765
0.1804 0.2196 0.1765
0.2078 0.2314 0.1843
0.2235 0.2353 0.1843
0.2353 0.2353 0.1843
0.2510 0.2353 0.1843
0.2667 0.2353 0.1882
0.2784 0.2353 0.1882
0.2941 0.2353 0.1882
0.3137 0.2353 0.1882
0.3490 0.2471 0.1961
0.3686 0.2549 0.2000
0.4000 0.2667 0.2078
0.4314 0.2706 0.2118
0.4510 0.2745 0.2118
0.4902 0.2863 0.2235
0.5176 0.2941 0.2275
0.5451 0.3059 0.2275
0.5843 0.3098 0.2314
0.6235 0.3216 0.2392
0.6588 0.3333 0.2471
0.6824 0.3373 0.2510
0.7098 0.3490 0.2588
0.7490 0.3569 0.2549
0.7804 0.3725 0.2667
0.8196 0.3765 0.2745
0.8549 0.3804 0.2745
0.8941 0.3922 0.2824
0.9412 0.4000 0.2980
0.9765 0.4039 0.2980
0.1373 0.2275 0.1725
0.1451 0.2314 0.1725
0.1647 0.2353 0.1765
0.1882 0.2392 0.1765
0.2078 0.2510 0.1843
0.2275 0.2588 0.1882
0.2431 0.2549 0.1882
0.2588 0.2588 0.1882
0.2706 0.2549 0.1882
0.2863 0.2549 0.1882
0.2980 0.2549 0.1882
0.3176 0.2549 0.1882
0.3490 0.2588 0.1922
0.3686 0.2667 0.1961
0.4000 0.2824 0.2078
0.4314 0.2863 0.2118
0.4588 0.2941 0.2118
0.4941 0.3059 0.2235
0.5216 0.3137 0.2235
0.5490 0.3216 0.2275
0.5882 0.3294 0.2275
0.6275 0.3412 0.2392
0.6627 0.3529 0.2431
0.6902 0.3608 0.2510
0.7059 0.3647 0.2471
0.7490 0.3804 0.2549
0.7804 0.3882 0.2667
0.8118 0.3922 0.2784
0.8549 0.4039 0.2824
0.8863 0.4118 0.2824
0.9294 0.4196 0.2824
0.9843 0.4392 0.2980
0.1373 0.2471 0.1725
0.1490 0.2549 0.1804
0.1686 0.2627 0.1804
0.1922 0.2706 0.1882
0.2078 0.2784
gitextract_jhw_wgc3/
├── .gitignore
├── README.md
├── example-conway/
│ ├── Makefile
│ ├── Project.xcconfig
│ ├── addons.make
│ ├── config.make
│ ├── example-conway.sln
│ ├── example-conway.vcxproj
│ ├── example-conway.vcxproj.filters
│ ├── example-conway.vcxproj.user
│ ├── example-conway.xcodeproj/
│ │ ├── project.pbxproj
│ │ └── xcshareddata/
│ │ └── xcschemes/
│ │ ├── example-conway Debug.xcscheme
│ │ └── example-conway Release.xcscheme
│ ├── icon.rc
│ ├── openFrameworks-Info.plist
│ └── src/
│ ├── main.cpp
│ ├── testApp.cpp
│ └── testApp.h
├── example-filters/
│ ├── Makefile
│ ├── Project.xcconfig
│ ├── addons.make
│ ├── bin/
│ │ └── data/
│ │ └── LUTs/
│ │ ├── Brannan.cube
│ │ ├── Earlybird.cube
│ │ ├── Gotham.cube
│ │ ├── Hefe.cube
│ │ ├── Inkwell.cube
│ │ ├── Lomo-fi.cube
│ │ ├── Lord Kelvin.cube
│ │ ├── Nashville.cube
│ │ ├── Sutro.cube
│ │ ├── Toaster.cube
│ │ ├── Walden.cube
│ │ └── X Pro II.cube
│ ├── config.make
│ ├── example-filters.sln
│ ├── example-filters.vcxproj
│ ├── example-filters.vcxproj.filters
│ ├── example-filters.vcxproj.user
│ ├── example-filters.xcodeproj/
│ │ ├── project.pbxproj
│ │ └── xcshareddata/
│ │ └── xcschemes/
│ │ ├── example-filters Debug.xcscheme
│ │ └── example-filters Release.xcscheme
│ ├── icon.rc
│ ├── openFrameworks-Info.plist
│ └── src/
│ ├── .!10355!ofApp.cpp
│ ├── .!10390!ofApp.cpp
│ ├── .!10421!ofApp.cpp
│ ├── .!10452!ofApp.cpp
│ ├── main.cpp
│ ├── ofApp.cpp
│ ├── ofApp.cpp.bak
│ └── ofApp.h
├── example-grayscott/
│ ├── Makefile
│ ├── Project.xcconfig
│ ├── addons.make
│ ├── config.make
│ ├── example-grayscott.sln
│ ├── example-grayscott.vcxproj
│ ├── example-grayscott.vcxproj.filters
│ ├── example-grayscott.vcxproj.user
│ ├── example-grayscott.xcodeproj/
│ │ ├── project.pbxproj
│ │ └── xcshareddata/
│ │ └── xcschemes/
│ │ ├── example-grayscott Debug.xcscheme
│ │ └── example-grayscott Release.xcscheme
│ ├── icon.rc
│ ├── openFrameworks-Info.plist
│ └── src/
│ ├── main.cpp
│ ├── ofApp.cpp
│ ├── ofApp.cpp.bak
│ └── ofApp.h
├── example-sandbox/
│ ├── Makefile
│ ├── Project.xcconfig
│ ├── addons.make
│ ├── config.make
│ ├── example-sandbox.sln
│ ├── example-sandbox.vcxproj
│ ├── example-sandbox.vcxproj.filters
│ ├── example-sandbox.vcxproj.user
│ ├── example-sandbox.xcodeproj/
│ │ ├── project.pbxproj
│ │ └── xcshareddata/
│ │ └── xcschemes/
│ │ ├── example-sandbox Debug.xcscheme
│ │ └── example-sandbox Release.xcscheme
│ ├── icon.rc
│ ├── openFrameworks-Info.plist
│ └── src/
│ ├── main.cpp
│ ├── ofApp.cpp
│ ├── ofApp.cpp.bak
│ └── ofApp.h
├── example-waterRipples/
│ ├── Makefile
│ ├── Project.xcconfig
│ ├── addons.make
│ ├── config.make
│ ├── example-waterRipples.sln
│ ├── example-waterRipples.vcxproj
│ ├── example-waterRipples.vcxproj.filters
│ ├── example-waterRipples.vcxproj.user
│ ├── example-waterRipples.xcodeproj/
│ │ ├── project.pbxproj
│ │ └── xcshareddata/
│ │ └── xcschemes/
│ │ ├── example-waterRipples Debug.xcscheme
│ │ └── example-waterRipples Release.xcscheme
│ ├── icon.rc
│ ├── openFrameworks-Info.plist
│ └── src/
│ ├── main.cpp
│ ├── ofApp.cpp
│ ├── ofApp.cpp.bak
│ └── ofApp.h
├── example-watercolors/
│ ├── Makefile
│ ├── Project.xcconfig
│ ├── addons.make
│ ├── bin/
│ │ └── data/
│ │ └── .gitkeep
│ ├── config.make
│ ├── example-watercolors.sln
│ ├── example-watercolors.vcxproj
│ ├── example-watercolors.vcxproj.filters
│ ├── example-watercolors.vcxproj.user
│ ├── example-watercolors.xcodeproj/
│ │ ├── project.pbxproj
│ │ └── xcshareddata/
│ │ └── xcschemes/
│ │ ├── example-watercolors Debug.xcscheme
│ │ └── example-watercolors Release.xcscheme
│ ├── icon.rc
│ ├── openFrameworks-Info.plist
│ └── src/
│ ├── main.cpp
│ ├── ofApp.cpp
│ ├── ofApp.cpp.bak
│ └── ofApp.h
├── license.md
├── src/
│ ├── composers/
│ │ ├── ofxBlend.h
│ │ ├── ofxClone.h
│ │ ├── ofxMask.h
│ │ └── ofxMultiTexture.h
│ ├── filters/
│ │ ├── ofxBarrelChromaAb.h
│ │ ├── ofxBloom.h
│ │ ├── ofxBlur.h
│ │ ├── ofxBokeh.h
│ │ ├── ofxChromaAb.h
│ │ ├── ofxChromaGlitch.h
│ │ ├── ofxContrast.h
│ │ ├── ofxGaussianBlur.h
│ │ ├── ofxGlow.h
│ │ ├── ofxGrayscale.h
│ │ ├── ofxInverse.h
│ │ ├── ofxLUT.h
│ │ ├── ofxMedian.h
│ │ └── ofxOldTv.h
│ ├── generative/
│ │ ├── ofxFBM.h
│ │ ├── ofxFire.h
│ │ ├── ofxGrayScott.h
│ │ ├── ofxNoise.h
│ │ └── ofxTint.h
│ ├── ofxFX.h
│ ├── ofxFXObject.cpp
│ ├── ofxFXObject.h
│ ├── ofxSwapBuffer.h
│ └── operations/
│ ├── ofxAbsDiff.h
│ ├── ofxBounce.h
│ ├── ofxDisplacePixels.h
│ ├── ofxEdgeDetect.h
│ ├── ofxFlow.h
│ ├── ofxNormals.h
│ ├── ofxRipples.h
│ ├── ofxSubstract.h
│ └── ofxThreshold.h
├── test-buffer-copying/
│ ├── addons.make
│ ├── bin/
│ │ └── data/
│ │ └── shadersGL3/
│ │ ├── shader.frag
│ │ └── shader.vert
│ └── src/
│ ├── main.cpp
│ ├── ofApp.cpp
│ ├── ofApp.cpp.bak
│ ├── ofApp.h
│ └── ofxPassthrough.h
└── test-shader-load/
├── Makefile
├── Project.xcconfig
├── addons.make
├── bin/
│ └── data/
│ ├── blur_gl2.frag
│ └── blur_gl3.frag
├── config.make
├── icon.rc
├── openFrameworks-Info.plist
├── src/
│ ├── main.cpp
│ ├── ofApp.cpp
│ ├── ofApp.cpp.bak
│ ├── ofApp.h
│ └── ofxFileBlur.h
├── test-shader-load.sln
├── test-shader-load.vcxproj
├── test-shader-load.vcxproj.filters
├── test-shader-load.vcxproj.user
└── test-shader-load.xcodeproj/
├── project.pbxproj
└── xcshareddata/
└── xcschemes/
├── test-shader-load Debug.xcscheme
└── test-shader-load Release.xcscheme
SYMBOL INDEX (120 symbols across 54 files)
FILE: example-conway/src/main.cpp
function main (line 5) | int main( ){
FILE: example-conway/src/testApp.h
function class (line 13) | class testApp : public ofBaseApp{
FILE: example-filters/src/main.cpp
function main (line 7) | int main( ){
FILE: example-filters/src/ofApp.h
function class (line 13) | class testApp : public ofBaseApp{
FILE: example-grayscott/src/main.cpp
function main (line 5) | int main( ){
FILE: example-grayscott/src/ofApp.h
function class (line 7) | class testApp : public ofBaseApp{
FILE: example-sandbox/src/main.cpp
function main (line 5) | int main( ){
FILE: example-sandbox/src/ofApp.cpp
function main (line 32) | void main(void){
function main (line 57) | void main( void ) {
function main (line 78) | void main( void ){
function rand (line 110) | float rand(vec2 co){
function noise2f (line 114) | float noise2f( in vec2 p ){
function fbm (line 127) | float fbm(vec2 c) {
function vec2 (line 139) | vec2 cMul(vec2 a, vec2 b) {
function pattern (line 143) | float pattern( vec2 p, out vec2 q, out vec2 r ){
function main (line 157) | void main() {
function vec3 (line 187) | vec3 mod289(vec3 x) {
function vec2 (line 191) | vec2 mod289(vec2 x) {
function vec3 (line 195) | vec3 permute(vec3 x) {
function snoise (line 199) | float snoise(vec2 v){
function main (line 231) | void main( void ) {
function getValue (line 247) | float getValue(vec2 p, float x2, float y2, float cmin, float cmax){
function main (line 258) | void main( void ) {
function vec2 (line 299) | vec2 GetRandom2( in vec2 vInput ){
function vec2 (line 306) | vec2 GetOffset2( in vec2 vInput ){
function BlobTexture (line 310) | float BlobTexture( in vec2 vPos ){
function GetBlobValue (line 315) | float GetBlobValue( in vec2 vPosition, in vec2 vTileOffset ){
function vec3 (line 328) | vec3 GetColour( in vec2 vPixelPosition ){
function main (line 350) | void main( void ) {
function makePoint (line 365) | float makePoint(float x,float y,float fx,float fy,float sx,float sy,floa...
function vec3 (line 371) | vec3 gu(vec4 a,vec4 b,float f){
function vec3 (line 375) | vec3 grad(float f){
function main (line 387) | void main( void ) {
function vec3 (line 451) | vec3 mod289(vec3 x){
function vec4 (line 455) | vec4 mod289(vec4 x){
function vec4 (line 459) | vec4 permute(vec4 x) {
function vec4 (line 463) | vec4 taylorInvSqrt(vec4 r){
function snoise (line 467) | float snoise(vec3 v){
function obj (line 529) | float obj(in vec3 p){
function vec3 (line 537) | vec3 obj_c(in vec3 p){
function main (line 545) | void main(void){
function main (line 598) | void main( void ) {
function vec2 (line 633) | vec2 makeSymmetry(vec2 p){
function vec3 (line 642) | vec3 sim(vec3 p,float s){
function vec2 (line 649) | vec2 rot(vec2 p,float r){
function vec2 (line 656) | vec2 rotsim(vec2 p,float s){
function main (line 663) | void main( void ) {
function main (line 700) | void main( void ) {
function vec2 (line 727) | vec2 makeSymmetry(vec2 p){
function makePoint (line 735) | float makePoint(float x,float y,float fx,float fy,float sx,float sy,floa...
function vec3 (line 743) | vec3 sim(vec3 p,float s){
function vec2 (line 750) | vec2 rot(vec2 p,float r){
function vec2 (line 757) | vec2 rotsim(vec2 p,float s){
function main (line 764) | void main( void ) {
function main (line 848) | void main(void){
function vec3 (line 867) | vec3 mod289(vec3 x) {
function vec2 (line 871) | vec2 mod289(vec2 x) {
function vec3 (line 875) | vec3 permute(vec3 x) {
function snoise (line 879) | float snoise(vec2 v){
function main (line 912) | void main( void ) {
function wave (line 938) | float wave(vec2 position, float freq, float height, float speed) {
function vec3 (line 945) | vec3 combo(vec2 position, float center, float size) {
function main (line 958) | void main( void ) {
function vec3 (line 997) | vec3 permute(vec3 x) {
function vec2 (line 1003) | vec2 cellular(vec2 P) {
function main (line 1041) | void main( void ) {
function border (line 1059) | float border(vec2 uv, float thickness){
function vec2 (line 1066) | vec2 div(vec2 numerator, vec2 denominator){
function vec2 (line 1072) | vec2 spiralzoom(vec2 domain, vec2 center, float n, float spiral_factor, ...
function main (line 1078) | void main( void ) {
FILE: example-sandbox/src/ofApp.h
function class (line 13) | class testApp : public ofBaseApp{
FILE: example-waterRipples/src/main.cpp
function main (line 5) | int main( ){
FILE: example-waterRipples/src/ofApp.h
function class (line 7) | class testApp : public ofBaseApp{
FILE: example-watercolors/src/main.cpp
function main (line 5) | int main( ){
FILE: example-watercolors/src/ofApp.h
function class (line 11) | class testApp : public ofBaseApp{
FILE: src/composers/ofxBlend.h
type PSBlendMode (line 14) | typedef enum {
function class (line 42) | class ofxBlend : public ofxFXObject {
FILE: src/composers/ofxClone.h
function class (line 19) | class ofxClone : public ofxFXObject {
FILE: src/composers/ofxMask.h
function class (line 25) | class ofxMask : public ofxFXObject {
FILE: src/composers/ofxMultiTexture.h
function class (line 24) | class ofxMultiTexture : public ofxFXObject {
FILE: src/filters/ofxBarrelChromaAb.h
function class (line 15) | class ofxBarrelChromaAb : public ofxFXObject {
FILE: src/filters/ofxBloom.h
function class (line 16) | class ofxBloom : public ofxFXObject {
FILE: src/filters/ofxBlur.h
function class (line 52) | class ofxBlur : public ofxFXObject {
FILE: src/filters/ofxBokeh.h
function class (line 18) | class ofxBokeh : public ofxBlur {
FILE: src/filters/ofxChromaAb.h
function class (line 15) | class ofxChromaAb : public ofxFXObject {
FILE: src/filters/ofxChromaGlitch.h
function class (line 15) | class ofxChromaGlitch : public ofxFXObject {
FILE: src/filters/ofxContrast.h
function class (line 15) | class ofxContrast : public ofxFXObject {
FILE: src/filters/ofxGaussianBlur.h
function class (line 15) | class ofxGaussianBlur : public ofxFXObject {
FILE: src/filters/ofxGlow.h
function class (line 42) | class ofxGlow : public ofxGaussianBlur {
FILE: src/filters/ofxGrayscale.h
function class (line 17) | class ofxGrayscale : public ofxFXObject {
FILE: src/filters/ofxInverse.h
function class (line 15) | class ofxInverse : public ofxFXObject {
FILE: src/filters/ofxLUT.h
function class (line 21) | class ofxLUT : public ofxFXObject {
FILE: src/filters/ofxMedian.h
function class (line 18) | class ofxMedian : public ofxFXObject {
FILE: src/filters/ofxOldTv.h
function class (line 17) | class ofxOldTv : public ofxFXObject {
FILE: src/generative/ofxFBM.h
function class (line 15) | class ofxFBM : public ofxFXObject {
FILE: src/generative/ofxFire.h
function class (line 15) | class ofxFire : public ofxFXObject {
FILE: src/generative/ofxGrayScott.h
function class (line 41) | class ofxGrayScott : public ofxFXObject {
FILE: src/generative/ofxNoise.h
function class (line 15) | class ofxNoise : public ofxFXObject {
FILE: src/generative/ofxTint.h
function class (line 15) | class ofxTint : public ofxFXObject {
FILE: src/ofxFXObject.cpp
function ofxFXObject (line 78) | ofxFXObject& ofxFXObject::operator =(ofxFXObject& parent){
function main (line 231) | void main(){
FILE: src/ofxFXObject.h
function class (line 46) | class ofxFXObject: public ofBaseHasTexture {
function draw (line 103) | void draw(ofRectangle &_rect){ draw(_rect.x,_rect.y,_rect.wid...
function virtual (line 111) | virtual void injectUniforms() {}
FILE: src/ofxSwapBuffer.h
function class (line 12) | class ofxSwapBuffer {
FILE: src/operations/ofxAbsDiff.h
function class (line 15) | class ofxAbsDiff : public ofxFXObject {
FILE: src/operations/ofxBounce.h
function class (line 16) | class ofxBounce : public ofxFXObject {
FILE: src/operations/ofxDisplacePixels.h
function class (line 17) | class ofxDisplacePixels : public ofxFXObject {
FILE: src/operations/ofxEdgeDetect.h
function class (line 15) | class ofxEdgeDetect : public ofxFXObject {
FILE: src/operations/ofxFlow.h
function class (line 15) | class ofxFlow : public ofxFXObject {
FILE: src/operations/ofxNormals.h
function class (line 15) | class ofxNormals : public ofxFXObject {
FILE: src/operations/ofxRipples.h
function class (line 16) | class ofxRipples : public ofxFXObject {
FILE: src/operations/ofxSubstract.h
function class (line 14) | class ofxSubstract : public ofxFXObject {
FILE: src/operations/ofxThreshold.h
function class (line 15) | class ofxThreshold : public ofxFXObject {
FILE: test-buffer-copying/src/main.cpp
function main (line 14) | int main( ){
FILE: test-buffer-copying/src/ofApp.h
function class (line 6) | class ofApp : public ofBaseApp{
FILE: test-buffer-copying/src/ofxPassthrough.h
function class (line 16) | class ofxPassthrough : public ofxFXObject {
FILE: test-shader-load/src/main.cpp
function main (line 14) | int main( ){
FILE: test-shader-load/src/ofApp.h
function class (line 8) | class ofApp : public ofBaseApp{
FILE: test-shader-load/src/ofxFileBlur.h
function class (line 6) | class ofxFileBlur : public ofxFXObject {
Copy disabled (too large)
Download .json
Condensed preview — 185 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (10,422K chars).
[
{
"path": ".gitignore",
"chars": 857,
"preview": "# Some general ignore patterns\nbuild/\nobj/\n*.o\nDebug*/\nRelease*/\n*.mode*\n*.app/\n*.pyc\n.svn/\n\n\n#XCode\n*.pbxuser\n*.perspec"
},
{
"path": "README.md",
"chars": 4365,
"preview": "\n\nI [start this addon](https://github.com/patriciogonzalez"
},
{
"path": "example-conway/Makefile",
"chars": 394,
"preview": "# Attempt to load a config.make file.\n# If none is found, project defaults in config.project.make will be used.\nifneq ($"
},
{
"path": "example-conway/Project.xcconfig",
"chars": 656,
"preview": "//THE PATH TO THE ROOT OF OUR OF PATH RELATIVE TO THIS PROJECT.\n//THIS NEEDS TO BE DEFINED BEFORE CoreOF.xcconfig IS INC"
},
{
"path": "example-conway/addons.make",
"chars": 6,
"preview": "ofxFX\n"
},
{
"path": "example-conway/config.make",
"chars": 6545,
"preview": "################################################################################\n# CONFIGURE PROJECT MAKEFILE (optional)"
},
{
"path": "example-conway/example-conway.sln",
"chars": 2061,
"preview": "Microsoft Visual Studio Solution File, Format Version 12.00\r\n# Visual Studio 14\r\nProject(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C"
},
{
"path": "example-conway/example-conway.vcxproj",
"chars": 13767,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"15.0\" xmlns=\"http://schemas.microso"
},
{
"path": "example-conway/example-conway.vcxproj.filters",
"chars": 6602,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbuild"
},
{
"path": "example-conway/example-conway.vcxproj.user",
"chars": 1109,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbui"
},
{
"path": "example-conway/example-conway.xcodeproj/project.pbxproj",
"chars": 26010,
"preview": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section *"
},
{
"path": "example-conway/example-conway.xcodeproj/xcshareddata/xcschemes/example-conway Debug.xcscheme",
"chars": 3215,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0600\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "example-conway/example-conway.xcodeproj/xcshareddata/xcschemes/example-conway Release.xcscheme",
"chars": 3225,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0600\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "example-conway/icon.rc",
"chars": 230,
"preview": "// Icon Resource Definition\n#define MAIN_ICON 102\n\n#if defined(_DEBUG)\nMAIN_ICON ICO"
},
{
"path": "example-conway/openFrameworks-Info.plist",
"chars": 670,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "example-conway/src/main.cpp",
"chars": 346,
"preview": "#include \"ofMain.h\"\n#include \"testApp.h\"\n\n//========================================================================\nint"
},
{
"path": "example-conway/src/testApp.cpp",
"chars": 3761,
"preview": "// Conway Life GLSL Game\n//\n// Created by kalwalt alias Walter Perdan on 24/12/11\n// Copyright 2011 http://www.kalwal"
},
{
"path": "example-conway/src/testApp.h",
"chars": 788,
"preview": "// Conway Life GLSL Game\n//\n// Created by kalwalt alias Walter Perdan on 24/12/11\n// Copyright 2011 http://www.kalwal"
},
{
"path": "example-filters/Makefile",
"chars": 394,
"preview": "# Attempt to load a config.make file.\n# If none is found, project defaults in config.project.make will be used.\nifneq ($"
},
{
"path": "example-filters/Project.xcconfig",
"chars": 656,
"preview": "//THE PATH TO THE ROOT OF OUR OF PATH RELATIVE TO THIS PROJECT.\n//THIS NEEDS TO BE DEFINED BEFORE CoreOF.xcconfig IS INC"
},
{
"path": "example-filters/addons.make",
"chars": 6,
"preview": "ofxFX\n"
},
{
"path": "example-filters/bin/data/LUTs/Brannan.cube",
"chars": 720898,
"preview": "0.0980 0.0392 0.0863\r\n0.1176 0.0471 0.0941\r\n0.1255 0.0471 0.0941\r\n0.1451 0.0510 0.0980\r\n0.1647 0.0549 0.0980\r\n0.1725 0.0"
},
{
"path": "example-filters/bin/data/LUTs/Earlybird.cube",
"chars": 720898,
"preview": "0.1216 0.0196 0.0196\r\n0.1451 0.0235 0.0235\r\n0.1725 0.0314 0.0314\r\n0.2078 0.0431 0.0471\r\n0.2353 0.0471 0.0471\r\n0.2549 0.0"
},
{
"path": "example-filters/bin/data/LUTs/Gotham.cube",
"chars": 720898,
"preview": "0.0000 0.0000 0.0000\r\n0.0000 0.0000 0.0000\r\n0.0000 0.0000 0.0000\r\n0.0000 0.0000 0.0000\r\n0.0000 0.0000 0.0000\r\n0.0000 0.0"
},
{
"path": "example-filters/bin/data/LUTs/Hefe.cube",
"chars": 720898,
"preview": "0.0000 0.0000 0.0000\r\n0.0118 0.0000 0.0000\r\n0.0235 0.0039 0.0039\r\n0.0392 0.0078 0.0039\r\n0.0627 0.0078 0.0039\r\n0.0784 0.0"
},
{
"path": "example-filters/bin/data/LUTs/Inkwell.cube",
"chars": 720898,
"preview": "0.0000 0.0000 0.0000\r\n0.0000 0.0000 0.0000\r\n0.0000 0.0000 0.0000\r\n0.0039 0.0039 0.0039\r\n0.0235 0.0235 0.0235\r\n0.0353 0.0"
},
{
"path": "example-filters/bin/data/LUTs/Lomo-fi.cube",
"chars": 720898,
"preview": "0.0000 0.0000 0.0000\r\n0.0078 0.0000 0.0000\r\n0.0118 0.0000 0.0000\r\n0.0235 0.0000 0.0000\r\n0.0353 0.0000 0.0000\r\n0.0471 0.0"
},
{
"path": "example-filters/bin/data/LUTs/Lord Kelvin.cube",
"chars": 720898,
"preview": "0.1569 0.0902 0.3059\r\n0.2157 0.0863 0.3059\r\n0.2706 0.0902 0.3059\r\n0.3333 0.0941 0.3098\r\n0.4000 0.0902 0.3098\r\n0.4431 0.0"
},
{
"path": "example-filters/bin/data/LUTs/Nashville.cube",
"chars": 720898,
"preview": "0.0157 0.1059 0.3922\r\n0.0510 0.1059 0.3922\r\n0.0824 0.1098 0.3922\r\n0.1216 0.1137 0.3961\r\n0.1569 0.1098 0.3961\r\n0.1804 0.1"
},
{
"path": "example-filters/bin/data/LUTs/Sutro.cube",
"chars": 720898,
"preview": "0.1961 0.0275 0.0902\r\n0.1961 0.0353 0.0980\r\n0.2039 0.0353 0.0980\r\n0.2157 0.0431 0.0980\r\n0.2275 0.0510 0.0980\r\n0.2471 0.0"
},
{
"path": "example-filters/bin/data/LUTs/Toaster.cube",
"chars": 720898,
"preview": "0.2784 0.1059 0.0000\r\n0.2980 0.1059 0.0000\r\n0.3176 0.1059 0.0000\r\n0.3412 0.1059 0.0000\r\n0.3647 0.1059 0.0039\r\n0.3843 0.1"
},
{
"path": "example-filters/bin/data/LUTs/Walden.cube",
"chars": 720898,
"preview": "0.0000 0.0314 0.0588\r\n0.0000 0.0353 0.0706\r\n0.0000 0.0392 0.0745\r\n0.0039 0.0392 0.0784\r\n0.0196 0.0431 0.0824\r\n0.0314 0.0"
},
{
"path": "example-filters/bin/data/LUTs/X Pro II.cube",
"chars": 720898,
"preview": "0.0000 0.0000 0.1882\r\n0.0000 0.0000 0.1843\r\n0.0000 0.0000 0.1882\r\n0.0000 0.0000 0.1882\r\n0.0000 0.0000 0.1843\r\n0.0000 0.0"
},
{
"path": "example-filters/config.make",
"chars": 6545,
"preview": "################################################################################\n# CONFIGURE PROJECT MAKEFILE (optional)"
},
{
"path": "example-filters/example-filters.sln",
"chars": 2063,
"preview": "Microsoft Visual Studio Solution File, Format Version 12.00\r\n# Visual Studio 14\r\nProject(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C"
},
{
"path": "example-filters/example-filters.vcxproj",
"chars": 13764,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"15.0\" xmlns=\"http://schemas.microso"
},
{
"path": "example-filters/example-filters.vcxproj.filters",
"chars": 6243,
"preview": "<?xml version=\"1.0\"?>\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbuild/2003\">\n\t<ItemGro"
},
{
"path": "example-filters/example-filters.vcxproj.user",
"chars": 1109,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbui"
},
{
"path": "example-filters/example-filters.xcodeproj/project.pbxproj",
"chars": 40336,
"preview": "<?xml version=\"1.0\"?>\n<plist version=\"1.0\">\n\t<dict>\n\t\t<key>archiveVersion</key>\n\t\t<string>1</string>\n\t\t<key>classes</key"
},
{
"path": "example-filters/example-filters.xcodeproj/xcshareddata/xcschemes/example-filters Debug.xcscheme",
"chars": 3227,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0600\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "example-filters/example-filters.xcodeproj/xcshareddata/xcschemes/example-filters Release.xcscheme",
"chars": 3237,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0600\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "example-filters/icon.rc",
"chars": 230,
"preview": "// Icon Resource Definition\n#define MAIN_ICON 102\n\n#if defined(_DEBUG)\nMAIN_ICON ICO"
},
{
"path": "example-filters/openFrameworks-Info.plist",
"chars": 670,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "example-filters/src/.!10355!ofApp.cpp",
"chars": 3811,
"preview": "#define STRINGIFY(A) #A\n\n#include \"ofApp.h\"\n\n//--------------------------------------------------------------\nvoid testA"
},
{
"path": "example-filters/src/.!10390!ofApp.cpp",
"chars": 3811,
"preview": "#define STRINGIFY(A) #A\n\n#include \"ofApp.h\"\n\n//--------------------------------------------------------------\nvoid testA"
},
{
"path": "example-filters/src/.!10421!ofApp.cpp",
"chars": 3811,
"preview": "#define STRINGIFY(A) #A\n\n#include \"ofApp.h\"\n\n//--------------------------------------------------------------\nvoid testA"
},
{
"path": "example-filters/src/.!10452!ofApp.cpp",
"chars": 3811,
"preview": "#define STRINGIFY(A) #A\n\n#include \"ofApp.h\"\n\n//--------------------------------------------------------------\nvoid testA"
},
{
"path": "example-filters/src/main.cpp",
"chars": 359,
"preview": "#pragma once\n\n#include \"ofMain.h\"\n#include \"ofApp.h\"\n\n//================================================================"
},
{
"path": "example-filters/src/ofApp.cpp",
"chars": 5162,
"preview": "#define STRINGIFY(A) #A\n\n#include \"ofApp.h\"\n\n//--------------------------------------------------------------\nvoid testA"
},
{
"path": "example-filters/src/ofApp.cpp.bak",
"chars": 5172,
"preview": "#define STRINGIFY(A) #A\n\n#include \"ofApp.h\"\n\n//--------------------------------------------------------------\nvoid testA"
},
{
"path": "example-filters/src/ofApp.h",
"chars": 911,
"preview": "#pragma once\n\n#include \"ofMain.h\"\n\n#include \"ofxBloom.h\"\n#include \"ofxGaussianBlur.h\"\n#include \"ofxBokeh.h\"\n#include \"of"
},
{
"path": "example-grayscott/Makefile",
"chars": 394,
"preview": "# Attempt to load a config.make file.\n# If none is found, project defaults in config.project.make will be used.\nifneq ($"
},
{
"path": "example-grayscott/Project.xcconfig",
"chars": 656,
"preview": "//THE PATH TO THE ROOT OF OUR OF PATH RELATIVE TO THIS PROJECT.\n//THIS NEEDS TO BE DEFINED BEFORE CoreOF.xcconfig IS INC"
},
{
"path": "example-grayscott/addons.make",
"chars": 6,
"preview": "ofxFX\n"
},
{
"path": "example-grayscott/config.make",
"chars": 6545,
"preview": "################################################################################\n# CONFIGURE PROJECT MAKEFILE (optional)"
},
{
"path": "example-grayscott/example-grayscott.sln",
"chars": 2067,
"preview": "Microsoft Visual Studio Solution File, Format Version 12.00\r\n# Visual Studio 14\r\nProject(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C"
},
{
"path": "example-grayscott/example-grayscott.vcxproj",
"chars": 13766,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"15.0\" xmlns=\"http://schemas.microso"
},
{
"path": "example-grayscott/example-grayscott.vcxproj.filters",
"chars": 6243,
"preview": "<?xml version=\"1.0\"?>\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbuild/2003\">\n\t<ItemGro"
},
{
"path": "example-grayscott/example-grayscott.vcxproj.user",
"chars": 1109,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbui"
},
{
"path": "example-grayscott/example-grayscott.xcodeproj/project.pbxproj",
"chars": 40340,
"preview": "<?xml version=\"1.0\"?>\n<plist version=\"1.0\">\n\t<dict>\n\t\t<key>archiveVersion</key>\n\t\t<string>1</string>\n\t\t<key>classes</key"
},
{
"path": "example-grayscott/example-grayscott.xcodeproj/xcshareddata/xcschemes/example-grayscott Debug.xcscheme",
"chars": 3251,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0600\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "example-grayscott/example-grayscott.xcodeproj/xcshareddata/xcschemes/example-grayscott Release.xcscheme",
"chars": 3261,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0600\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "example-grayscott/icon.rc",
"chars": 230,
"preview": "// Icon Resource Definition\n#define MAIN_ICON 102\n\n#if defined(_DEBUG)\nMAIN_ICON ICO"
},
{
"path": "example-grayscott/openFrameworks-Info.plist",
"chars": 670,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "example-grayscott/src/main.cpp",
"chars": 345,
"preview": "#include \"ofMain.h\"\n#include \"ofApp.h\"\n\n//========================================================================\nint m"
},
{
"path": "example-grayscott/src/ofApp.cpp",
"chars": 2171,
"preview": "#include \"ofApp.h\"\n\n//--------------------------------------------------------------\nvoid testApp::setup(){\n ofEnable"
},
{
"path": "example-grayscott/src/ofApp.cpp.bak",
"chars": 2167,
"preview": "#include \"ofApp.h\"\n\n//--------------------------------------------------------------\nvoid testApp::setup(){\n ofEnable"
},
{
"path": "example-grayscott/src/ofApp.h",
"chars": 612,
"preview": "#pragma once\n\n#include \"ofMain.h\"\n#include \"ofxGrayScott.h\"\n#include \"ofxNormals.h\"\n\nclass testApp : public ofBaseApp{\np"
},
{
"path": "example-sandbox/Makefile",
"chars": 394,
"preview": "# Attempt to load a config.make file.\n# If none is found, project defaults in config.project.make will be used.\nifneq ($"
},
{
"path": "example-sandbox/Project.xcconfig",
"chars": 656,
"preview": "//THE PATH TO THE ROOT OF OUR OF PATH RELATIVE TO THIS PROJECT.\n//THIS NEEDS TO BE DEFINED BEFORE CoreOF.xcconfig IS INC"
},
{
"path": "example-sandbox/addons.make",
"chars": 6,
"preview": "ofxFX\n"
},
{
"path": "example-sandbox/config.make",
"chars": 6545,
"preview": "################################################################################\n# CONFIGURE PROJECT MAKEFILE (optional)"
},
{
"path": "example-sandbox/example-sandbox.sln",
"chars": 2063,
"preview": "Microsoft Visual Studio Solution File, Format Version 12.00\r\n# Visual Studio 14\r\nProject(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C"
},
{
"path": "example-sandbox/example-sandbox.vcxproj",
"chars": 13764,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"15.0\" xmlns=\"http://schemas.microso"
},
{
"path": "example-sandbox/example-sandbox.vcxproj.filters",
"chars": 6243,
"preview": "<?xml version=\"1.0\"?>\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbuild/2003\">\n\t<ItemGro"
},
{
"path": "example-sandbox/example-sandbox.vcxproj.user",
"chars": 1109,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbui"
},
{
"path": "example-sandbox/example-sandbox.xcodeproj/project.pbxproj",
"chars": 40336,
"preview": "<?xml version=\"1.0\"?>\n<plist version=\"1.0\">\n\t<dict>\n\t\t<key>archiveVersion</key>\n\t\t<string>1</string>\n\t\t<key>classes</key"
},
{
"path": "example-sandbox/example-sandbox.xcodeproj/xcshareddata/xcschemes/example-sandbox Debug.xcscheme",
"chars": 3227,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0600\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "example-sandbox/example-sandbox.xcodeproj/xcshareddata/xcschemes/example-sandbox Release.xcscheme",
"chars": 3237,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0600\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "example-sandbox/icon.rc",
"chars": 230,
"preview": "// Icon Resource Definition\n#define MAIN_ICON 102\n\n#if defined(_DEBUG)\nMAIN_ICON ICO"
},
{
"path": "example-sandbox/openFrameworks-Info.plist",
"chars": 670,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "example-sandbox/src/main.cpp",
"chars": 345,
"preview": "#include \"ofMain.h\"\n#include \"ofApp.h\"\n\n//========================================================================\nint m"
},
{
"path": "example-sandbox/src/ofApp.cpp",
"chars": 60100,
"preview": "#include \"ofApp.h\"\n\n#define STRINGIFY(A) #A\n\n//--------------------------------------------------------------\nvoid testA"
},
{
"path": "example-sandbox/src/ofApp.cpp.bak",
"chars": 60100,
"preview": "#include \"ofApp.h\"\n\n#define STRINGIFY(A) #A\n\n//--------------------------------------------------------------\nvoid testA"
},
{
"path": "example-sandbox/src/ofApp.h",
"chars": 1034,
"preview": "#pragma once\n\n#include \"ofMain.h\"\n\n#include \"ofxFXObject.h\"\n#include \"ofxBloom.h\"\n#include \"ofxGaussianBlur.h\"\n#include "
},
{
"path": "example-waterRipples/Makefile",
"chars": 394,
"preview": "# Attempt to load a config.make file.\n# If none is found, project defaults in config.project.make will be used.\nifneq ($"
},
{
"path": "example-waterRipples/Project.xcconfig",
"chars": 656,
"preview": "//THE PATH TO THE ROOT OF OUR OF PATH RELATIVE TO THIS PROJECT.\n//THIS NEEDS TO BE DEFINED BEFORE CoreOF.xcconfig IS INC"
},
{
"path": "example-waterRipples/addons.make",
"chars": 6,
"preview": "ofxFX\n"
},
{
"path": "example-waterRipples/config.make",
"chars": 6545,
"preview": "################################################################################\n# CONFIGURE PROJECT MAKEFILE (optional)"
},
{
"path": "example-waterRipples/example-waterRipples.sln",
"chars": 2073,
"preview": "Microsoft Visual Studio Solution File, Format Version 12.00\r\n# Visual Studio 14\r\nProject(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C"
},
{
"path": "example-waterRipples/example-waterRipples.vcxproj",
"chars": 13769,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"15.0\" xmlns=\"http://schemas.microso"
},
{
"path": "example-waterRipples/example-waterRipples.vcxproj.filters",
"chars": 6243,
"preview": "<?xml version=\"1.0\"?>\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbuild/2003\">\n\t<ItemGro"
},
{
"path": "example-waterRipples/example-waterRipples.vcxproj.user",
"chars": 1109,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbui"
},
{
"path": "example-waterRipples/example-waterRipples.xcodeproj/project.pbxproj",
"chars": 40346,
"preview": "<?xml version=\"1.0\"?>\n<plist version=\"1.0\">\n\t<dict>\n\t\t<key>archiveVersion</key>\n\t\t<string>1</string>\n\t\t<key>classes</key"
},
{
"path": "example-waterRipples/example-waterRipples.xcodeproj/xcshareddata/xcschemes/example-waterRipples Debug.xcscheme",
"chars": 3287,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0600\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "example-waterRipples/example-waterRipples.xcodeproj/xcshareddata/xcschemes/example-waterRipples Release.xcscheme",
"chars": 3297,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0600\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "example-waterRipples/icon.rc",
"chars": 230,
"preview": "// Icon Resource Definition\n#define MAIN_ICON 102\n\n#if defined(_DEBUG)\nMAIN_ICON ICO"
},
{
"path": "example-waterRipples/openFrameworks-Info.plist",
"chars": 670,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "example-waterRipples/src/main.cpp",
"chars": 345,
"preview": "#include \"ofMain.h\"\n#include \"ofApp.h\"\n\n//========================================================================\nint m"
},
{
"path": "example-waterRipples/src/ofApp.cpp",
"chars": 2281,
"preview": "#include \"ofApp.h\"\n\n//--------------------------------------------------------------\nvoid testApp::setup(){\n ofSetFra"
},
{
"path": "example-waterRipples/src/ofApp.cpp.bak",
"chars": 2281,
"preview": "#include \"ofApp.h\"\n\n//--------------------------------------------------------------\nvoid testApp::setup(){\n ofSetFra"
},
{
"path": "example-waterRipples/src/ofApp.h",
"chars": 594,
"preview": "#pragma once\n\n#include \"ofMain.h\"\n#include \"ofxRipples.h\"\n#include \"ofxBounce.h\"\n\nclass testApp : public ofBaseApp{\npubl"
},
{
"path": "example-watercolors/Makefile",
"chars": 394,
"preview": "# Attempt to load a config.make file.\n# If none is found, project defaults in config.project.make will be used.\nifneq ($"
},
{
"path": "example-watercolors/Project.xcconfig",
"chars": 656,
"preview": "//THE PATH TO THE ROOT OF OUR OF PATH RELATIVE TO THIS PROJECT.\n//THIS NEEDS TO BE DEFINED BEFORE CoreOF.xcconfig IS INC"
},
{
"path": "example-watercolors/addons.make",
"chars": 6,
"preview": "ofxFX\n"
},
{
"path": "example-watercolors/bin/data/.gitkeep",
"chars": 0,
"preview": ""
},
{
"path": "example-watercolors/config.make",
"chars": 6545,
"preview": "################################################################################\n# CONFIGURE PROJECT MAKEFILE (optional)"
},
{
"path": "example-watercolors/example-watercolors.sln",
"chars": 2071,
"preview": "Microsoft Visual Studio Solution File, Format Version 12.00\r\n# Visual Studio 14\r\nProject(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C"
},
{
"path": "example-watercolors/example-watercolors.vcxproj",
"chars": 13768,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"15.0\" xmlns=\"http://schemas.microso"
},
{
"path": "example-watercolors/example-watercolors.vcxproj.filters",
"chars": 6243,
"preview": "<?xml version=\"1.0\"?>\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbuild/2003\">\n\t<ItemGro"
},
{
"path": "example-watercolors/example-watercolors.vcxproj.user",
"chars": 1109,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbui"
},
{
"path": "example-watercolors/example-watercolors.xcodeproj/project.pbxproj",
"chars": 40344,
"preview": "<?xml version=\"1.0\"?>\n<plist version=\"1.0\">\n\t<dict>\n\t\t<key>archiveVersion</key>\n\t\t<string>1</string>\n\t\t<key>classes</key"
},
{
"path": "example-watercolors/example-watercolors.xcodeproj/xcshareddata/xcschemes/example-watercolors Debug.xcscheme",
"chars": 3275,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0600\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "example-watercolors/example-watercolors.xcodeproj/xcshareddata/xcschemes/example-watercolors Release.xcscheme",
"chars": 3285,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0600\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "example-watercolors/icon.rc",
"chars": 230,
"preview": "// Icon Resource Definition\n#define MAIN_ICON 102\n\n#if defined(_DEBUG)\nMAIN_ICON ICO"
},
{
"path": "example-watercolors/openFrameworks-Info.plist",
"chars": 670,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "example-watercolors/src/main.cpp",
"chars": 345,
"preview": "#include \"ofMain.h\"\n#include \"ofApp.h\"\n\n//========================================================================\nint m"
},
{
"path": "example-watercolors/src/ofApp.cpp",
"chars": 2966,
"preview": "#include \"ofApp.h\"\n#define STRINGIFY(A) #A\n\n//--------------------------------------------------------------\nvoid testAp"
},
{
"path": "example-watercolors/src/ofApp.cpp.bak",
"chars": 2966,
"preview": "#include \"ofApp.h\"\n#define STRINGIFY(A) #A\n\n//--------------------------------------------------------------\nvoid testAp"
},
{
"path": "example-watercolors/src/ofApp.h",
"chars": 941,
"preview": "#pragma once\n\n#include \"ofMain.h\"\n\n#include \"ofxGrayscale.h\"\n#include \"ofxBlur.h\"\n#include \"ofxNormals.h\"\n#include \"ofxD"
},
{
"path": "license.md",
"chars": 1232,
"preview": "The code in this repository is available under the [MIT License](https://secure.wikimedia.org/wikipedia/en/wiki/Mit_lice"
},
{
"path": "src/composers/ofxBlend.h",
"chars": 19240,
"preview": "//\n// ofxBlend.h\n//\n// Created by Akira Hayasaka on 5/14/12.\n//\n\n#pragma once\n\n#include \"ofMain.h\"\n#include \"ofxFXObje"
},
{
"path": "src/composers/ofxClone.h",
"chars": 4197,
"preview": "//\n// ofxClone.h\n//\n// The shaders and class was created by Arturo Castro and Kyle McDonald \n// for FaceSubstitution "
},
{
"path": "src/composers/ofxMask.h",
"chars": 1957,
"preview": "/*\n * ofxMask.h\n *\n * Created by Patricio Gonzalez Vivo on 10/1/11.\n * Copyright 2011 http://PatricioGonzalezVivo.com"
},
{
"path": "src/composers/ofxMultiTexture.h",
"chars": 1396,
"preview": "/*\n * ofxMask.h\n *\n * Created by Patricio Gonzalez Vivo on 10/1/11.\n * Copyright 2011 http://PatricioGonzalezVivo.com"
},
{
"path": "src/filters/ofxBarrelChromaAb.h",
"chars": 4152,
"preview": "//\n// BarrelChromaAb.h\n//\n// Created by Patricio Gonzalez Vivo on 5/15/13.\n//\n//\n\n#pragma once\n\n#define STRINGIFY(A) #"
},
{
"path": "src/filters/ofxBloom.h",
"chars": 2794,
"preview": "//\n// ofxBloom.h\n// emptyExample\n//\n// Created by Patricio Gonzalez Vivo on 25/11/11.\n// Copyright (c) 2011 http://P"
},
{
"path": "src/filters/ofxBlur.h",
"chars": 6036,
"preview": "/*\n * ofxBlur.h\n *\n * Created by Patricio Gonzalez Vivo on 25/11/11.\n * Copyright (c) 2011 http://PatricioGonzalezViv"
},
{
"path": "src/filters/ofxBokeh.h",
"chars": 2959,
"preview": "//\n// ofxBokeh.h\n//\n//\n// Created by Tim Scaffidi ( http://timothyscaffidi.com/ )\n//\n// He share it on the openFramew"
},
{
"path": "src/filters/ofxChromaAb.h",
"chars": 1882,
"preview": "//\n// ofxChromaAb.h\n//\n// Created by Patricio Gonzalez Vivo on 3/18/13.\n//\n//\n\n#pragma once\n\n#define STRINGIFY(A) #A\n\n"
},
{
"path": "src/filters/ofxChromaGlitch.h",
"chars": 2580,
"preview": "//\n// ofxGlitch.h\n//\n// Created by Patricio Gonzalez Vivo on 5/11/13.\n//\n//\n\n#pragma once\n\n#define STRINGIFY(A) #A\n\n#i"
},
{
"path": "src/filters/ofxContrast.h",
"chars": 1710,
"preview": "//\n// ofxContrast.h\n//\n// Created by Patricio Gonzalez Vivo on 25/11/11.\n// Copyright (c) 2011 http://PatricioGonzale"
},
{
"path": "src/filters/ofxGaussianBlur.h",
"chars": 6880,
"preview": "//\n// ofxBlur.h\n//\n// Created by Patricio Gonzalez Vivo on 25/11/11.\n// Copyright (c) 2011 http://PatricioGonzalezViv"
},
{
"path": "src/filters/ofxGlow.h",
"chars": 8089,
"preview": "/*\n * ofxGlow.h\n *\n * Created by Patricio Gonzalez Vivo on 03/07/11.\n * Copyright 2011 http://www.PatricioGonzalezViv"
},
{
"path": "src/filters/ofxGrayscale.h",
"chars": 1050,
"preview": "//\n// ofxGrayscale.h\n//\n// Created by Patricio Gonzalez Vivo on 25/11/11.\n// Copyright (c) 2011 http://PatricioGonzal"
},
{
"path": "src/filters/ofxInverse.h",
"chars": 787,
"preview": "//\n// ofxInverse.h\n//\n// Created by Patricio Gonzalez Vivo on 25/11/11.\n// Copyright (c) 2011 http://PatricioGonzalez"
},
{
"path": "src/filters/ofxLUT.h",
"chars": 6758,
"preview": "/*\n * ofxMask.h\n *\n * Created by Patricio Gonzalez Vivo on 10/1/11.\n * Copyright 2011 http://PatricioGonzalezVivo.com"
},
{
"path": "src/filters/ofxMedian.h",
"chars": 4576,
"preview": "//\n// ofxMedian.h\n// medianFilter\n//\n// Created by Patricio Gonzalez Vivo on 12/20/12.\n// Copyright (c) 2012 http://"
},
{
"path": "src/filters/ofxOldTv.h",
"chars": 2801,
"preview": "//\n// ofxOldTv.h\n//\n// Created by Patricio Gonzalez Vivo on 25/11/11.\n// Copyright (c) 2011 http://PatricioGonzalezVi"
},
{
"path": "src/generative/ofxFBM.h",
"chars": 4670,
"preview": "//\n// ofxNoise.h\n//\n// Created by Patricio Gonzalez Vivo on 4/12/12.\n// Copyright (c) 2012 http://www.PatricioGonzale"
},
{
"path": "src/generative/ofxFire.h",
"chars": 4349,
"preview": "//\n// ofxFire.h\n//\n// Created by Patricio Gonzalez Vivo on 4/12/12.\n// Copyright (c) 2012 http://www.PatricioGonzalez"
},
{
"path": "src/generative/ofxGrayScott.h",
"chars": 7194,
"preview": "/*\n * ofxGrayScott.h\n *\n * Created by Patricio Gonzalez Vivo on 10/1/11.\n * Copyright 2011 http://PatricioGonzalezViv"
},
{
"path": "src/generative/ofxNoise.h",
"chars": 16178,
"preview": "//\n// ofxNoise.h\n//\n// Created by Patricio Gonzalez Vivo on 4/12/12.\n// Copyright (c) 2012 http://www.PatricioGonzale"
},
{
"path": "src/generative/ofxTint.h",
"chars": 5808,
"preview": "//\n// ofxTint.h\n//\n// Created by Patricio Gonzalez Vivo on 4/12/12.\n// Copyright (c) 2012 http://www.PatricioGonzalez"
},
{
"path": "src/ofxFX.h",
"chars": 1839,
"preview": "/*\n * ofxFX.h\n *\n * Created by Patricio González Vivo on 03/07/11.\n * Copyright 2011 http://www.PatricioGonzalezVivo."
},
{
"path": "src/ofxFXObject.cpp",
"chars": 15779,
"preview": "/*\n * ofxFXObject.h\n *\n * Created by Patricio González Vivo on 03/07/11.\n * Copyright 2011 http://www.PatricioGonzale"
},
{
"path": "src/ofxFXObject.h",
"chars": 6802,
"preview": "/*\n * ofxFXObject.h\n *\n * Created by Patricio González Vivo on 03/07/11.\n * Copyright 2011 http://www.PatricioGonzale"
},
{
"path": "src/ofxSwapBuffer.h",
"chars": 1444,
"preview": "//\n// ofxSwapBuffer.h\n// emptyExample\n//\n// Created by Patricio González Vivo on 13/01/12.\n// Copyright (c) 2012 Pat"
},
{
"path": "src/operations/ofxAbsDiff.h",
"chars": 1478,
"preview": "//\n// ofxAbsDiff.h\n//\n// Created by Patricio Gonzalez Vivo on 25/11/11.\n// Copyright (c) 2012 http://PatricioGonzalez"
},
{
"path": "src/operations/ofxBounce.h",
"chars": 1574,
"preview": "//\n// ofxBounce.h\n// example-waterRipples\n//\n// Created by Patricio Gonzalez Vivo on 11/24/12.\n//\n//\n\n#pragma once\n\n#"
},
{
"path": "src/operations/ofxDisplacePixels.h",
"chars": 4876,
"preview": "//\n// ofxDisplacePixels.h\n//\n// Created by Patricio Gonzalez Vivo on 11/24/12.\n// Copyright 2012 http://PatricioGonza"
},
{
"path": "src/operations/ofxEdgeDetect.h",
"chars": 2480,
"preview": "//\n// ofxEdgeDetect.h\n//\n// Created by Patricio Gonzalez Vivo on 2/16/14.\n//\n//\n\n#pragma once\n\n#define STRINGIFY(A) #A"
},
{
"path": "src/operations/ofxFlow.h",
"chars": 4213,
"preview": "//\n// ofxFlow.h\n//\n// Created by Patricio Gonzalez Vivo on 3/2/14.\n// Based on Andrew Benson's GPU OpticalFlow implem"
},
{
"path": "src/operations/ofxNormals.h",
"chars": 2636,
"preview": "//\n// ofxNormals.h\n//\n// Created by Patricio González Vivo on 25/11/11.\n// Copyright (c) 2011 http://PatricioGonzalez"
},
{
"path": "src/operations/ofxRipples.h",
"chars": 3285,
"preview": "//\n// ofxRipples.h\n// example-waterRipples\n//\n// Created by Patricio Gonzalez Vivo on 11/24/12.\n//\n//\n\n#pragma once\n\n"
},
{
"path": "src/operations/ofxSubstract.h",
"chars": 922,
"preview": "//\n// ofxSubstract.h\n//\n// Created by Patricio Gonzalez Vivo on 25/10/12.\n// Copyright (c) 2012 http://PatricioGonzal"
},
{
"path": "src/operations/ofxThreshold.h",
"chars": 1430,
"preview": "//\n// ofxThreshold.h\n//\n// Created by Patricio González Vivo on 25/11/11.\n// Copyright (c) 2011 http://PatricioGonzal"
},
{
"path": "test-buffer-copying/addons.make",
"chars": 6,
"preview": "ofxFX\n"
},
{
"path": "test-buffer-copying/bin/data/shadersGL3/shader.frag",
"chars": 110,
"preview": "#version 130\n\nout vec4 outputColor;\n\nuniform vec4 line_color;\n \nvoid main()\n{\n outputColor = line_color;\n}\n"
},
{
"path": "test-buffer-copying/bin/data/shadersGL3/shader.vert",
"chars": 145,
"preview": "#version 130\n\nuniform mat4 modelViewProjectionMatrix;\nin vec4 position;\n\nvoid main()\n{\n gl_Position = modelViewProjec"
},
{
"path": "test-buffer-copying/src/main.cpp",
"chars": 784,
"preview": "#include \"ofMain.h\"\n#include \"ofApp.h\"\n#include \"ofAppGlutWindow.h\"\n\n// comment out the line below if you want to use a "
},
{
"path": "test-buffer-copying/src/ofApp.cpp",
"chars": 3101,
"preview": "#include \"ofApp.h\"\n#include \"ofFbo.h\"\n\nvoid ofApp::setup(){\n\n ofSetLogLevel(OF_LOG_VERBOSE);\n ofEnableAlphaBlendin"
},
{
"path": "test-buffer-copying/src/ofApp.cpp.bak",
"chars": 3101,
"preview": "#include \"ofApp.h\"\n#include \"ofFbo.h\"\n\nvoid ofApp::setup(){\n\n ofSetLogLevel(OF_LOG_VERBOSE);\n ofEnableAlphaBlendin"
},
{
"path": "test-buffer-copying/src/ofApp.h",
"chars": 980,
"preview": "#pragma once\n\n#include \"ofMain.h\"\n#include \"ofxPassthrough.h\"\n\nclass ofApp : public ofBaseApp{\n public:\n\n void"
},
{
"path": "test-buffer-copying/src/ofxPassthrough.h",
"chars": 1249,
"preview": "//\n// ofxBloom.h\n// emptyExample\n//\n// Created by Patricio Gonzalez Vivo on 25/11/11.\n// Copyright (c) 2011 http://P"
},
{
"path": "test-shader-load/Makefile",
"chars": 394,
"preview": "# Attempt to load a config.make file.\n# If none is found, project defaults in config.project.make will be used.\nifneq ($"
},
{
"path": "test-shader-load/Project.xcconfig",
"chars": 656,
"preview": "//THE PATH TO THE ROOT OF OUR OF PATH RELATIVE TO THIS PROJECT.\n//THIS NEEDS TO BE DEFINED BEFORE CoreOF.xcconfig IS INC"
},
{
"path": "test-shader-load/addons.make",
"chars": 6,
"preview": "ofxFX\n"
},
{
"path": "test-shader-load/bin/data/blur_gl2.frag",
"chars": 980,
"preview": "uniform sampler2DRect backbuffer;\nuniform float fade;\n\nfloat kernel[9];\nvec2 offset[9];\n\nvoid main(void){\n vec2 st ="
},
{
"path": "test-shader-load/bin/data/blur_gl3.frag",
"chars": 1001,
"preview": "#version 150\n\nout vec4 outputColor;\nuniform sampler2DRect backbuffer;\nuniform float fade;\n\nfloat kernel[9];\nvec2 offset["
},
{
"path": "test-shader-load/config.make",
"chars": 6545,
"preview": "################################################################################\n# CONFIGURE PROJECT MAKEFILE (optional)"
},
{
"path": "test-shader-load/icon.rc",
"chars": 230,
"preview": "// Icon Resource Definition\n#define MAIN_ICON 102\n\n#if defined(_DEBUG)\nMAIN_ICON ICO"
},
{
"path": "test-shader-load/openFrameworks-Info.plist",
"chars": 670,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "test-shader-load/src/main.cpp",
"chars": 619,
"preview": "#include \"ofMain.h\"\n#include \"ofApp.h\"\n#include \"ofAppGlutWindow.h\"\n\n// This program should look exactly the same whethe"
},
{
"path": "test-shader-load/src/ofApp.cpp",
"chars": 3087,
"preview": "#include \"ofApp.h\"\n#include \"ofFbo.h\"\n\nvoid ofApp::setup(){\n\n ofSetLogLevel(OF_LOG_VERBOSE);\n ofEnableAlphaBlendin"
},
{
"path": "test-shader-load/src/ofApp.cpp.bak",
"chars": 3087,
"preview": "#include \"ofApp.h\"\n#include \"ofFbo.h\"\n\nvoid ofApp::setup(){\n\n ofSetLogLevel(OF_LOG_VERBOSE);\n ofEnableAlphaBlendin"
},
{
"path": "test-shader-load/src/ofApp.h",
"chars": 1047,
"preview": "#pragma once\n\n#include \"ofMain.h\"\n#include \"ofxFXObject.h\"\n#include \"ofxBlur.h\"\n#include \"ofxFileBlur.h\"\n\nclass ofApp : "
},
{
"path": "test-shader-load/src/ofxFileBlur.h",
"chars": 470,
"preview": "#pragma once\n\n#include \"ofMain.h\"\n#include \"ofxFXObject.h\"\n\nclass ofxFileBlur : public ofxFXObject {\n public:\n "
},
{
"path": "test-shader-load/test-shader-load.sln",
"chars": 2065,
"preview": "Microsoft Visual Studio Solution File, Format Version 12.00\r\n# Visual Studio 14\r\nProject(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C"
},
{
"path": "test-shader-load/test-shader-load.vcxproj",
"chars": 13236,
"preview": "<?xml version=\"1.0\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"14.0\" xmlns=\"http://schemas.microsoft.com/developer/"
},
{
"path": "test-shader-load/test-shader-load.vcxproj.filters",
"chars": 6324,
"preview": "<?xml version=\"1.0\"?>\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbuild/2003\">\n\t<ItemGro"
},
{
"path": "test-shader-load/test-shader-load.vcxproj.user",
"chars": 1109,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbui"
},
{
"path": "test-shader-load/test-shader-load.xcodeproj/project.pbxproj",
"chars": 40795,
"preview": "<?xml version=\"1.0\"?>\n<plist version=\"1.0\">\n\t<dict>\n\t\t<key>archiveVersion</key>\n\t\t<string>1</string>\n\t\t<key>classes</key"
},
{
"path": "test-shader-load/test-shader-load.xcodeproj/xcshareddata/xcschemes/test-shader-load Debug.xcscheme",
"chars": 3239,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0600\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "test-shader-load/test-shader-load.xcodeproj/xcshareddata/xcschemes/test-shader-load Release.xcscheme",
"chars": 3249,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0600\"\n version = \"1.3\">\n <BuildAction\n "
}
]
About this extraction
This page contains the full source code of the patriciogonzalezvivo/ofxFX GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 185 files (9.1 MB), approximately 2.4M tokens, and a symbol index with 120 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.