diff --git a/app/scripts/components/common/map/layer-legend.tsx b/app/scripts/components/common/map/layer-legend.tsx index 86d6678c5..903082650 100644 --- a/app/scripts/components/common/map/layer-legend.tsx +++ b/app/scripts/components/common/map/layer-legend.tsx @@ -25,6 +25,7 @@ import { WidgetItemHGroup } from '$styles/panel'; import { LayerLegendCategorical, LayerLegendGradient } from '$types/veda'; +import { divergingColorMaps, sequentialColorMaps } from '$components/exploration/components/datasets/colorMaps'; interface LayerLegendCommonProps { id: string; @@ -300,18 +301,22 @@ export function LayerCategoricalGraphic(props: LayerLegendCategorical) { ); } -export function LayerGradientGraphic(props: LayerLegendGradient) { +export const LayerGradientGraphic = (props: LayerLegendGradient) => { const { stops, min, max, unit } = props; - const [hoverVal, setHoverVal] = useState(0); const moveListener = useCallback( (e) => { - const width = e.nativeEvent.target.clientWidth; + const target = e.nativeEvent.target; + const boundingRect = target.getBoundingClientRect(); + const offsetX = e.nativeEvent.clientX - boundingRect.left; + const width = boundingRect.width; + const scale = scaleLinear() .domain([0, width]) .range([Number(min), Number(max)]); - setHoverVal(scale(e.nativeEvent.layerX)); + + setHoverVal(Math.max(Number(min), Math.min(Number(max), scale(offsetX)))); }, [min, max] ); @@ -340,4 +345,40 @@ export function LayerGradientGraphic(props: LayerLegendGradient) { {unit?.label &&
{unit.label}
} ); -} +}; + +export const LayerGradientColormapGraphic = (props: Omit) => { + const { colorMap, ...otherProps } = props; + + const colormap = findColormapByName(colorMap ?? 'viridis'); + if (!colormap) { + return null; + } + + const stops = Object.values(colormap).map((value) => { + if (Array.isArray(value) && value.length === 4) { + return `rgba(${value.join(',')})`; + } else { + return `rgba(0, 0, 0, 1)`; + } + }); + + const processedStops = colormap.isReversed + ? stops.reduceRight((acc, stop) => [...acc, stop], []) + : stops; + + return ; +}; + +export const findColormapByName = (name: string) => { + const isReversed = name.toLowerCase().endsWith('_r'); + const baseName = isReversed ? name.slice(0, -2).toLowerCase() : name.toLowerCase(); + + const colormap = sequentialColorMaps[baseName] ?? divergingColorMaps[baseName]; + + if (!colormap) { + return null; + } + + return { ...colormap, isReversed }; +}; \ No newline at end of file diff --git a/app/scripts/components/common/map/style-generators/raster-paint-layer.tsx b/app/scripts/components/common/map/style-generators/raster-paint-layer.tsx index d89c4970f..93dae72df 100644 --- a/app/scripts/components/common/map/style-generators/raster-paint-layer.tsx +++ b/app/scripts/components/common/map/style-generators/raster-paint-layer.tsx @@ -13,6 +13,7 @@ interface RasterPaintLayerProps extends BaseGeneratorParams { tileApiEndpoint?: string; zoomExtent?: number[]; assetUrl: string; + colorMap?: string | undefined; } export function RasterPaintLayer(props: RasterPaintLayerProps) { @@ -24,19 +25,24 @@ export function RasterPaintLayer(props: RasterPaintLayerProps) { zoomExtent, assetUrl, hidden, - opacity + opacity, + colorMap } = props; const { updateStyle } = useMapStyle(); const [minZoom] = zoomExtent ?? [0, 20]; const generatorId = `zarr-timeseries-${id}`; + const updatedSourceParams = useMemo(() => { + return { ...sourceParams, ...colorMap && {colormap_name: colorMap}}; + }, [sourceParams, colorMap]); + // // Generate Mapbox GL layers and sources for raster timeseries // const haveSourceParamsChanged = useMemo( - () => JSON.stringify(sourceParams), - [sourceParams] + () => JSON.stringify(updatedSourceParams), + [updatedSourceParams] ); const generatorParams = useGeneratorParams(props); @@ -48,7 +54,7 @@ export function RasterPaintLayer(props: RasterPaintLayerProps) { const tileParams = qs.stringify({ url: assetUrl, time_slice: date, - ...sourceParams + ...updatedSourceParams, }); const zarrSource: RasterSource = { @@ -65,12 +71,13 @@ export function RasterPaintLayer(props: RasterPaintLayerProps) { paint: { 'raster-opacity': hidden ? 0 : rasterOpacity, 'raster-opacity-transition': { - duration: 320 - } + duration: 320, + }, }, minzoom: minZoom, metadata: { - layerOrderPosition: 'raster' + layerOrderPosition: 'raster', + colorMapVersion: colorMap, } }; @@ -96,7 +103,8 @@ export function RasterPaintLayer(props: RasterPaintLayerProps) { minZoom, tileApiEndpoint, haveSourceParamsChanged, - generatorParams + generatorParams, + colorMap // generatorParams includes hidden and opacity // hidden, // opacity, @@ -119,4 +127,4 @@ export function RasterPaintLayer(props: RasterPaintLayerProps) { }, [updateStyle, generatorId]); return null; -} \ No newline at end of file +} diff --git a/app/scripts/components/common/map/style-generators/raster-timeseries.tsx b/app/scripts/components/common/map/style-generators/raster-timeseries.tsx index 79f322869..271bf74ac 100644 --- a/app/scripts/components/common/map/style-generators/raster-timeseries.tsx +++ b/app/scripts/components/common/map/style-generators/raster-timeseries.tsx @@ -61,7 +61,8 @@ export function RasterTimeseries(props: RasterTimeseriesProps) { hidden, opacity, stacApiEndpoint, - tileApiEndpoint + tileApiEndpoint, + colorMap, } = props; const { current: mapInstance } = useMaps(); @@ -259,7 +260,7 @@ export function RasterTimeseries(props: RasterTimeseriesProps) { LOG && console.log('Payload', payload); LOG && console.groupEnd(); /* eslint-enable no-console */ - + let responseData; try { @@ -271,7 +272,7 @@ export function RasterTimeseries(props: RasterTimeseriesProps) { const mosaicUrl = responseData.links[1].href; setMosaicUrl(mosaicUrl.replace('/{tileMatrixSetId}', '/WebMercatorQuad')); } catch (error) { - // @NOTE: conditional logic TO BE REMOVED once new BE endpoints have moved to prod... Fallback on old request url if new endpoints error with nonexistance... + // @NOTE: conditional logic TO BE REMOVED once new BE endpoints have moved to prod... Fallback on old request url if new endpoints error with nonexistance... if (error.request) { // The request was made but no response was received responseData = await requestQuickCache({ @@ -279,11 +280,11 @@ export function RasterTimeseries(props: RasterTimeseriesProps) { payload, controller }); - + const mosaicUrl = responseData.links[1].href; setMosaicUrl(mosaicUrl); } else { - LOG && + LOG && /* eslint-disable-next-line no-console */ console.log('Titiler /register %cEndpoint error', 'color: red;', error); throw error; @@ -321,6 +322,7 @@ export function RasterTimeseries(props: RasterTimeseriesProps) { changeStatus({ status: 'idle', context: STATUS_KEY.Layer }); }; }, [ + colorMap, stacCollection // This hook depends on a series of properties, but whenever they change the // `stacCollection` is guaranteed to change because a new STAC request is @@ -358,7 +360,8 @@ export function RasterTimeseries(props: RasterTimeseriesProps) { const tileParams = qs.stringify( { assets: 'cog_default', - ...(sourceParams ?? {}) + ...(sourceParams ?? {}), + ...colorMap && {colormap_name: colorMap} }, // Temporary solution to pass different tile parameters for hls data { @@ -485,6 +488,7 @@ export function RasterTimeseries(props: RasterTimeseriesProps) { }; }, [ mosaicUrl, + colorMap, points, minZoom, haveSourceParamsChanged, diff --git a/app/scripts/components/common/map/types.d.ts b/app/scripts/components/common/map/types.d.ts index 5cfb1fd84..899931d39 100644 --- a/app/scripts/components/common/map/types.d.ts +++ b/app/scripts/components/common/map/types.d.ts @@ -53,6 +53,7 @@ export interface BaseTimeseriesProps extends BaseGeneratorParams { tileApiEndpoint?: string; zoomExtent?: number[]; onStatusChange?: (result: { status: ActionStatus; id: string }) => void; + colorMap?: string; } // export interface ZarrTimeseriesProps extends BaseTimeseriesProps { @@ -72,4 +73,3 @@ interface AssetUrlReplacement { export interface CMRTimeseriesProps extends BaseTimeseriesProps { assetUrlReplacements?: AssetUrlReplacement; } - diff --git a/app/scripts/components/exploration/atoms/datasets.ts b/app/scripts/components/exploration/atoms/datasets.ts index e85f36201..ed9751f07 100644 --- a/app/scripts/components/exploration/atoms/datasets.ts +++ b/app/scripts/components/exploration/atoms/datasets.ts @@ -1,4 +1,5 @@ -import { datasetLayers, reconcileDatasets } from '../data-utils'; +import { datasetLayers } from '../data-utils'; +import { reconcileDatasets } from '../data-utils-no-faux-module'; import { TimelineDataset, TimelineDatasetForUrl } from '../types.d.ts'; import { atomWithUrlValueStability } from '$utils/params-location-atom/atom-with-url-value-stability'; diff --git a/app/scripts/components/exploration/atoms/hooks.ts b/app/scripts/components/exploration/atoms/hooks.ts index b0ec75527..93ea7f5d1 100644 --- a/app/scripts/components/exploration/atoms/hooks.ts +++ b/app/scripts/components/exploration/atoms/hooks.ts @@ -145,6 +145,18 @@ export function useTimelineDatasetVisibility( return useAtom(visibilityAtom); } +export function useTimelineDatasetColormap( + datasetAtom: PrimitiveAtom +) { + const colorMapAtom = useMemo(() => { + return focusAtom(datasetAtom, (optic) => + optic.prop('settings').prop('colorMap') + ); + }, [datasetAtom]); + + return useAtom(colorMapAtom); +} + export const useTimelineDatasetAnalysis = ( datasetAtom: PrimitiveAtom ) => { diff --git a/app/scripts/components/exploration/atoms/rescale.ts b/app/scripts/components/exploration/atoms/rescale.ts new file mode 100644 index 000000000..31b5ccd08 --- /dev/null +++ b/app/scripts/components/exploration/atoms/rescale.ts @@ -0,0 +1,11 @@ +import { atomWithUrlValueStability } from '$utils/params-location-atom/atom-with-url-value-stability'; + +const initialParams = new URLSearchParams(window.location.search); + +export const reverseAtom = atomWithUrlValueStability({ + initialValue: initialParams.get('reverse') === 'true', + urlParam: 'reverse', + hydrate: (value) => value === 'true', + areEqual: (prev, next) => prev === next, + dehydrate: (value) => (value ? 'true' : 'false') +}); diff --git a/app/scripts/components/exploration/components/dataset-selector-modal/index.tsx b/app/scripts/components/exploration/components/dataset-selector-modal/index.tsx index c417f881f..2175243be 100644 --- a/app/scripts/components/exploration/components/dataset-selector-modal/index.tsx +++ b/app/scripts/components/exploration/components/dataset-selector-modal/index.tsx @@ -14,10 +14,10 @@ import { glsp, themeVal } from '@devseed-ui/theme-provider'; import { Link } from 'react-router-dom'; import { timelineDatasetsAtom } from '../../atoms/datasets'; import { - reconcileDatasets, - datasetLayers, - allExploreDatasets -} from '../../data-utils'; + reconcileDatasets +} from '../../data-utils-no-faux-module'; +import { datasetLayers, + allExploreDatasets} from '../../data-utils'; import RenderModalHeader from './header'; import ModalFooterRender from './footer'; diff --git a/app/scripts/components/exploration/components/datasets/colorMaps.ts b/app/scripts/components/exploration/components/datasets/colorMaps.ts new file mode 100644 index 000000000..b8e87eacc --- /dev/null +++ b/app/scripts/components/exploration/components/datasets/colorMaps.ts @@ -0,0 +1,114 @@ +export const sequentialColorMaps = { + afmhot: {"0":[0,0,0,255],"1":[2,0,0,255],"2":[4,0,0,255],"3":[6,0,0,255],"4":[8,0,0,255],"5":[10,0,0,255],"6":[12,0,0,255],"7":[14,0,0,255],"8":[16,0,0,255],"9":[18,0,0,255],"10":[20,0,0,255],"11":[22,0,0,255],"12":[24,0,0,255],"13":[26,0,0,255],"14":[28,0,0,255],"15":[30,0,0,255],"16":[32,0,0,255],"17":[34,0,0,255],"18":[36,0,0,255],"19":[38,0,0,255],"20":[40,0,0,255],"21":[42,0,0,255],"22":[44,0,0,255],"23":[46,0,0,255],"24":[48,0,0,255],"25":[50,0,0,255],"26":[52,0,0,255],"27":[54,0,0,255],"28":[56,0,0,255],"29":[58,0,0,255],"30":[60,0,0,255],"31":[62,0,0,255],"32":[64,0,0,255],"33":[65,0,0,255],"34":[68,0,0,255],"35":[70,0,0,255],"36":[72,0,0,255],"37":[73,0,0,255],"38":[76,0,0,255],"39":[78,0,0,255],"40":[80,0,0,255],"41":[81,0,0,255],"42":[84,0,0,255],"43":[86,0,0,255],"44":[88,0,0,255],"45":[89,0,0,255],"46":[92,0,0,255],"47":[94,0,0,255],"48":[96,0,0,255],"49":[97,0,0,255],"50":[100,0,0,255],"51":[102,0,0,255],"52":[104,0,0,255],"53":[105,0,0,255],"54":[108,0,0,255],"55":[110,0,0,255],"56":[112,0,0,255],"57":[113,0,0,255],"58":[116,0,0,255],"59":[118,0,0,255],"60":[120,0,0,255],"61":[121,0,0,255],"62":[124,0,0,255],"63":[126,0,0,255],"64":[128,0,0,255],"65":[130,2,0,255],"66":[131,4,0,255],"67":[134,6,0,255],"68":[136,8,0,255],"69":[138,10,0,255],"70":[140,12,0,255],"71":[142,14,0,255],"72":[144,16,0,255],"73":[146,18,0,255],"74":[147,20,0,255],"75":[150,22,0,255],"76":[152,24,0,255],"77":[154,26,0,255],"78":[156,28,0,255],"79":[158,30,0,255],"80":[160,32,0,255],"81":[162,34,0,255],"82":[163,36,0,255],"83":[166,38,0,255],"84":[168,40,0,255],"85":[170,42,0,255],"86":[172,44,0,255],"87":[174,46,0,255],"88":[176,48,0,255],"89":[178,50,0,255],"90":[179,52,0,255],"91":[182,54,0,255],"92":[184,56,0,255],"93":[186,58,0,255],"94":[188,60,0,255],"95":[190,62,0,255],"96":[192,64,0,255],"97":[194,66,0,255],"98":[195,68,0,255],"99":[198,70,0,255],"100":[200,72,0,255],"101":[202,74,0,255],"102":[204,76,0,255],"103":[206,78,0,255],"104":[208,80,0,255],"105":[210,82,0,255],"106":[211,84,0,255],"107":[214,86,0,255],"108":[216,88,0,255],"109":[218,90,0,255],"110":[220,92,0,255],"111":[222,94,0,255],"112":[224,96,0,255],"113":[226,98,0,255],"114":[227,100,0,255],"115":[230,102,0,255],"116":[232,104,0,255],"117":[234,106,0,255],"118":[236,108,0,255],"119":[238,110,0,255],"120":[240,112,0,255],"121":[242,114,0,255],"122":[243,116,0,255],"123":[246,118,0,255],"124":[248,120,0,255],"125":[250,122,0,255],"126":[252,124,0,255],"127":[254,126,0,255],"128":[255,128,0,255],"129":[255,130,2,255],"130":[255,132,4,255],"131":[255,134,6,255],"132":[255,136,8,255],"133":[255,138,11,255],"134":[255,140,13,255],"135":[255,142,15,255],"136":[255,144,16,255],"137":[255,146,18,255],"138":[255,148,20,255],"139":[255,150,22,255],"140":[255,152,25,255],"141":[255,154,27,255],"142":[255,156,29,255],"143":[255,158,31,255],"144":[255,160,32,255],"145":[255,162,34,255],"146":[255,164,36,255],"147":[255,166,38,255],"148":[255,168,40,255],"149":[255,170,43,255],"150":[255,172,45,255],"151":[255,174,47,255],"152":[255,176,48,255],"153":[255,178,50,255],"154":[255,180,52,255],"155":[255,182,54,255],"156":[255,184,57,255],"157":[255,186,59,255],"158":[255,188,61,255],"159":[255,190,63,255],"160":[255,192,65,255],"161":[255,194,66,255],"162":[255,196,68,255],"163":[255,198,70,255],"164":[255,200,72,255],"165":[255,202,75,255],"166":[255,204,77,255],"167":[255,206,79,255],"168":[255,208,81,255],"169":[255,210,82,255],"170":[255,212,84,255],"171":[255,214,86,255],"172":[255,216,89,255],"173":[255,218,91,255],"174":[255,220,93,255],"175":[255,222,95,255],"176":[255,224,97,255],"177":[255,226,98,255],"178":[255,228,100,255],"179":[255,230,102,255],"180":[255,232,104,255],"181":[255,234,107,255],"182":[255,236,109,255],"183":[255,238,111,255],"184":[255,240,113,255],"185":[255,242,114,255],"186":[255,244,116,255],"187":[255,246,118,255],"188":[255,248,121,255],"189":[255,250,123,255],"190":[255,252,125,255],"191":[255,254,127,255],"192":[255,255,129,255],"193":[255,255,131,255],"194":[255,255,132,255],"195":[255,255,134,255],"196":[255,255,136,255],"197":[255,255,139,255],"198":[255,255,141,255],"199":[255,255,143,255],"200":[255,255,145,255],"201":[255,255,147,255],"202":[255,255,148,255],"203":[255,255,150,255],"204":[255,255,153,255],"205":[255,255,155,255],"206":[255,255,157,255],"207":[255,255,159,255],"208":[255,255,161,255],"209":[255,255,163,255],"210":[255,255,164,255],"211":[255,255,166,255],"212":[255,255,168,255],"213":[255,255,171,255],"214":[255,255,173,255],"215":[255,255,175,255],"216":[255,255,177,255],"217":[255,255,179,255],"218":[255,255,180,255],"219":[255,255,182,255],"220":[255,255,185,255],"221":[255,255,187,255],"222":[255,255,189,255],"223":[255,255,191,255],"224":[255,255,193,255],"225":[255,255,195,255],"226":[255,255,196,255],"227":[255,255,198,255],"228":[255,255,200,255],"229":[255,255,203,255],"230":[255,255,205,255],"231":[255,255,207,255],"232":[255,255,209,255],"233":[255,255,211,255],"234":[255,255,212,255],"235":[255,255,214,255],"236":[255,255,217,255],"237":[255,255,219,255],"238":[255,255,221,255],"239":[255,255,223,255],"240":[255,255,225,255],"241":[255,255,227,255],"242":[255,255,228,255],"243":[255,255,230,255],"244":[255,255,232,255],"245":[255,255,235,255],"246":[255,255,237,255],"247":[255,255,239,255],"248":[255,255,241,255],"249":[255,255,243,255],"250":[255,255,244,255],"251":[255,255,246,255],"252":[255,255,249,255],"253":[255,255,251,255],"254":[255,255,253,255],"255":[255,255,255,255]}, + algae: {"0":[214,249,207,255],"1":[213,248,206,255],"2":[212,247,204,255],"3":[211,246,203,255],"4":[209,245,201,255],"5":[208,244,200,255],"6":[207,243,198,255],"7":[206,242,197,255],"8":[204,241,195,255],"9":[203,240,194,255],"10":[202,239,193,255],"11":[201,239,191,255],"12":[199,238,190,255],"13":[198,237,188,255],"14":[197,236,187,255],"15":[196,235,185,255],"16":[194,234,184,255],"17":[193,233,183,255],"18":[192,232,181,255],"19":[191,231,180,255],"20":[189,231,178,255],"21":[188,230,177,255],"22":[187,229,176,255],"23":[186,228,174,255],"24":[184,227,173,255],"25":[183,226,171,255],"26":[182,225,170,255],"27":[181,225,169,255],"28":[179,224,167,255],"29":[178,223,166,255],"30":[177,222,165,255],"31":[175,221,163,255],"32":[174,220,162,255],"33":[173,219,160,255],"34":[172,219,159,255],"35":[170,218,158,255],"36":[169,217,156,255],"37":[168,216,155,255],"38":[166,215,154,255],"39":[165,215,152,255],"40":[164,214,151,255],"41":[163,213,150,255],"42":[161,212,149,255],"43":[160,211,147,255],"44":[159,211,146,255],"45":[157,210,145,255],"46":[156,209,143,255],"47":[155,208,142,255],"48":[153,207,141,255],"49":[152,207,140,255],"50":[151,206,138,255],"51":[149,205,137,255],"52":[148,204,136,255],"53":[147,203,135,255],"54":[145,203,133,255],"55":[144,202,132,255],"56":[143,201,131,255],"57":[141,200,130,255],"58":[140,200,128,255],"59":[139,199,127,255],"60":[137,198,126,255],"61":[136,197,125,255],"62":[134,197,124,255],"63":[133,196,122,255],"64":[132,195,121,255],"65":[130,194,120,255],"66":[129,194,119,255],"67":[127,193,118,255],"68":[126,192,117,255],"69":[124,191,115,255],"70":[123,191,114,255],"71":[121,190,113,255],"72":[120,189,112,255],"73":[118,188,111,255],"74":[117,188,110,255],"75":[115,187,109,255],"76":[114,186,108,255],"77":[112,185,107,255],"78":[111,185,105,255],"79":[109,184,104,255],"80":[108,183,103,255],"81":[106,183,102,255],"82":[104,182,101,255],"83":[103,181,100,255],"84":[101,181,99,255],"85":[100,180,98,255],"86":[98,179,97,255],"87":[96,178,96,255],"88":[94,178,96,255],"89":[93,177,95,255],"90":[91,176,94,255],"91":[89,176,93,255],"92":[87,175,92,255],"93":[85,174,91,255],"94":[83,174,90,255],"95":[82,173,90,255],"96":[80,172,89,255],"97":[78,171,88,255],"98":[76,171,87,255],"99":[74,170,87,255],"100":[71,169,86,255],"101":[69,169,86,255],"102":[67,168,85,255],"103":[65,167,84,255],"104":[63,167,84,255],"105":[61,166,84,255],"106":[58,165,83,255],"107":[56,164,83,255],"108":[54,164,82,255],"109":[52,163,82,255],"110":[50,162,82,255],"111":[47,161,82,255],"112":[45,161,81,255],"113":[43,160,81,255],"114":[41,159,81,255],"115":[39,158,81,255],"116":[37,157,81,255],"117":[35,157,81,255],"118":[33,156,81,255],"119":[31,155,80,255],"120":[30,154,80,255],"121":[28,153,80,255],"122":[26,152,80,255],"123":[25,152,80,255],"124":[23,151,80,255],"125":[21,150,80,255],"126":[20,149,80,255],"127":[19,148,80,255],"128":[17,147,79,255],"129":[16,146,79,255],"130":[15,146,79,255],"131":[13,145,79,255],"132":[12,144,79,255],"133":[11,143,79,255],"134":[10,142,79,255],"135":[10,141,78,255],"136":[9,140,78,255],"137":[8,139,78,255],"138":[8,138,78,255],"139":[7,138,78,255],"140":[7,137,77,255],"141":[7,136,77,255],"142":[6,135,77,255],"143":[6,134,77,255],"144":[6,133,77,255],"145":[6,132,76,255],"146":[6,131,76,255],"147":[7,130,76,255],"148":[7,129,76,255],"149":[7,129,75,255],"150":[7,128,75,255],"151":[8,127,75,255],"152":[8,126,74,255],"153":[9,125,74,255],"154":[9,124,74,255],"155":[10,123,74,255],"156":[10,122,73,255],"157":[11,121,73,255],"158":[11,120,73,255],"159":[12,119,72,255],"160":[12,119,72,255],"161":[13,118,72,255],"162":[13,117,71,255],"163":[14,116,71,255],"164":[14,115,70,255],"165":[15,114,70,255],"166":[15,113,70,255],"167":[16,112,69,255],"168":[16,111,69,255],"169":[17,110,69,255],"170":[17,110,68,255],"171":[18,109,68,255],"172":[18,108,67,255],"173":[18,107,67,255],"174":[19,106,67,255],"175":[19,105,66,255],"176":[20,104,66,255],"177":[20,103,65,255],"178":[20,102,65,255],"179":[21,102,64,255],"180":[21,101,64,255],"181":[21,100,63,255],"182":[21,99,63,255],"183":[22,98,63,255],"184":[22,97,62,255],"185":[22,96,62,255],"186":[23,95,61,255],"187":[23,94,61,255],"188":[23,94,60,255],"189":[23,93,60,255],"190":[23,92,59,255],"191":[24,91,59,255],"192":[24,90,58,255],"193":[24,89,58,255],"194":[24,88,57,255],"195":[24,87,57,255],"196":[25,86,56,255],"197":[25,86,56,255],"198":[25,85,55,255],"199":[25,84,55,255],"200":[25,83,54,255],"201":[25,82,54,255],"202":[25,81,53,255],"203":[25,80,52,255],"204":[25,80,52,255],"205":[25,79,51,255],"206":[25,78,51,255],"207":[25,77,50,255],"208":[25,76,50,255],"209":[25,75,49,255],"210":[25,74,49,255],"211":[25,73,48,255],"212":[25,73,47,255],"213":[25,72,47,255],"214":[25,71,46,255],"215":[25,70,46,255],"216":[25,69,45,255],"217":[25,68,44,255],"218":[25,67,44,255],"219":[25,67,43,255],"220":[25,66,43,255],"221":[25,65,42,255],"222":[25,64,41,255],"223":[25,63,41,255],"224":[25,62,40,255],"225":[24,61,40,255],"226":[24,61,39,255],"227":[24,60,38,255],"228":[24,59,38,255],"229":[24,58,37,255],"230":[24,57,36,255],"231":[23,56,36,255],"232":[23,55,35,255],"233":[23,55,35,255],"234":[23,54,34,255],"235":[23,53,33,255],"236":[22,52,33,255],"237":[22,51,32,255],"238":[22,50,31,255],"239":[22,49,31,255],"240":[22,49,30,255],"241":[21,48,29,255],"242":[21,47,29,255],"243":[21,46,28,255],"244":[21,45,27,255],"245":[20,44,27,255],"246":[20,43,26,255],"247":[20,43,25,255],"248":[19,42,25,255],"249":[19,41,24,255],"250":[19,40,23,255],"251":[18,39,22,255],"252":[18,38,22,255],"253":[18,37,21,255],"254":[17,37,20,255],"255":[17,36,20,255]}, + autumn: {"0":[255,0,0,255],"1":[255,1,0,255],"2":[255,2,0,255],"3":[255,3,0,255],"4":[255,4,0,255],"5":[255,5,0,255],"6":[255,6,0,255],"7":[255,7,0,255],"8":[255,8,0,255],"9":[255,9,0,255],"10":[255,10,0,255],"11":[255,11,0,255],"12":[255,12,0,255],"13":[255,13,0,255],"14":[255,14,0,255],"15":[255,15,0,255],"16":[255,16,0,255],"17":[255,17,0,255],"18":[255,18,0,255],"19":[255,19,0,255],"20":[255,20,0,255],"21":[255,21,0,255],"22":[255,22,0,255],"23":[255,23,0,255],"24":[255,24,0,255],"25":[255,25,0,255],"26":[255,26,0,255],"27":[255,27,0,255],"28":[255,28,0,255],"29":[255,29,0,255],"30":[255,30,0,255],"31":[255,31,0,255],"32":[255,32,0,255],"33":[255,32,0,255],"34":[255,34,0,255],"35":[255,35,0,255],"36":[255,36,0,255],"37":[255,36,0,255],"38":[255,38,0,255],"39":[255,39,0,255],"40":[255,40,0,255],"41":[255,40,0,255],"42":[255,42,0,255],"43":[255,43,0,255],"44":[255,44,0,255],"45":[255,44,0,255],"46":[255,46,0,255],"47":[255,47,0,255],"48":[255,48,0,255],"49":[255,48,0,255],"50":[255,50,0,255],"51":[255,51,0,255],"52":[255,52,0,255],"53":[255,52,0,255],"54":[255,54,0,255],"55":[255,55,0,255],"56":[255,56,0,255],"57":[255,56,0,255],"58":[255,58,0,255],"59":[255,59,0,255],"60":[255,60,0,255],"61":[255,60,0,255],"62":[255,62,0,255],"63":[255,63,0,255],"64":[255,64,0,255],"65":[255,65,0,255],"66":[255,65,0,255],"67":[255,67,0,255],"68":[255,68,0,255],"69":[255,69,0,255],"70":[255,70,0,255],"71":[255,71,0,255],"72":[255,72,0,255],"73":[255,73,0,255],"74":[255,73,0,255],"75":[255,75,0,255],"76":[255,76,0,255],"77":[255,77,0,255],"78":[255,78,0,255],"79":[255,79,0,255],"80":[255,80,0,255],"81":[255,81,0,255],"82":[255,81,0,255],"83":[255,83,0,255],"84":[255,84,0,255],"85":[255,85,0,255],"86":[255,86,0,255],"87":[255,87,0,255],"88":[255,88,0,255],"89":[255,89,0,255],"90":[255,89,0,255],"91":[255,91,0,255],"92":[255,92,0,255],"93":[255,93,0,255],"94":[255,94,0,255],"95":[255,95,0,255],"96":[255,96,0,255],"97":[255,97,0,255],"98":[255,97,0,255],"99":[255,99,0,255],"100":[255,100,0,255],"101":[255,101,0,255],"102":[255,102,0,255],"103":[255,103,0,255],"104":[255,104,0,255],"105":[255,105,0,255],"106":[255,105,0,255],"107":[255,107,0,255],"108":[255,108,0,255],"109":[255,109,0,255],"110":[255,110,0,255],"111":[255,111,0,255],"112":[255,112,0,255],"113":[255,113,0,255],"114":[255,113,0,255],"115":[255,115,0,255],"116":[255,116,0,255],"117":[255,117,0,255],"118":[255,118,0,255],"119":[255,119,0,255],"120":[255,120,0,255],"121":[255,121,0,255],"122":[255,121,0,255],"123":[255,123,0,255],"124":[255,124,0,255],"125":[255,125,0,255],"126":[255,126,0,255],"127":[255,127,0,255],"128":[255,128,0,255],"129":[255,129,0,255],"130":[255,130,0,255],"131":[255,131,0,255],"132":[255,131,0,255],"133":[255,133,0,255],"134":[255,134,0,255],"135":[255,135,0,255],"136":[255,136,0,255],"137":[255,137,0,255],"138":[255,138,0,255],"139":[255,139,0,255],"140":[255,140,0,255],"141":[255,141,0,255],"142":[255,142,0,255],"143":[255,143,0,255],"144":[255,144,0,255],"145":[255,145,0,255],"146":[255,146,0,255],"147":[255,147,0,255],"148":[255,147,0,255],"149":[255,149,0,255],"150":[255,150,0,255],"151":[255,151,0,255],"152":[255,152,0,255],"153":[255,153,0,255],"154":[255,154,0,255],"155":[255,155,0,255],"156":[255,156,0,255],"157":[255,157,0,255],"158":[255,158,0,255],"159":[255,159,0,255],"160":[255,160,0,255],"161":[255,161,0,255],"162":[255,162,0,255],"163":[255,163,0,255],"164":[255,163,0,255],"165":[255,165,0,255],"166":[255,166,0,255],"167":[255,167,0,255],"168":[255,168,0,255],"169":[255,169,0,255],"170":[255,170,0,255],"171":[255,171,0,255],"172":[255,172,0,255],"173":[255,173,0,255],"174":[255,174,0,255],"175":[255,175,0,255],"176":[255,176,0,255],"177":[255,177,0,255],"178":[255,178,0,255],"179":[255,179,0,255],"180":[255,179,0,255],"181":[255,181,0,255],"182":[255,182,0,255],"183":[255,183,0,255],"184":[255,184,0,255],"185":[255,185,0,255],"186":[255,186,0,255],"187":[255,187,0,255],"188":[255,188,0,255],"189":[255,189,0,255],"190":[255,190,0,255],"191":[255,191,0,255],"192":[255,192,0,255],"193":[255,193,0,255],"194":[255,194,0,255],"195":[255,195,0,255],"196":[255,195,0,255],"197":[255,197,0,255],"198":[255,198,0,255],"199":[255,199,0,255],"200":[255,200,0,255],"201":[255,201,0,255],"202":[255,202,0,255],"203":[255,203,0,255],"204":[255,204,0,255],"205":[255,205,0,255],"206":[255,206,0,255],"207":[255,207,0,255],"208":[255,208,0,255],"209":[255,209,0,255],"210":[255,210,0,255],"211":[255,211,0,255],"212":[255,211,0,255],"213":[255,213,0,255],"214":[255,214,0,255],"215":[255,215,0,255],"216":[255,216,0,255],"217":[255,217,0,255],"218":[255,218,0,255],"219":[255,219,0,255],"220":[255,220,0,255],"221":[255,221,0,255],"222":[255,222,0,255],"223":[255,223,0,255],"224":[255,224,0,255],"225":[255,225,0,255],"226":[255,226,0,255],"227":[255,227,0,255],"228":[255,227,0,255],"229":[255,229,0,255],"230":[255,230,0,255],"231":[255,231,0,255],"232":[255,232,0,255],"233":[255,233,0,255],"234":[255,234,0,255],"235":[255,235,0,255],"236":[255,236,0,255],"237":[255,237,0,255],"238":[255,238,0,255],"239":[255,239,0,255],"240":[255,240,0,255],"241":[255,241,0,255],"242":[255,242,0,255],"243":[255,243,0,255],"244":[255,243,0,255],"245":[255,245,0,255],"246":[255,246,0,255],"247":[255,247,0,255],"248":[255,248,0,255],"249":[255,249,0,255],"250":[255,250,0,255],"251":[255,251,0,255],"252":[255,252,0,255],"253":[255,253,0,255],"254":[255,254,0,255],"255":[255,255,0,255]}, + balance: {"0":[23,28,66,255],"1":[24,29,69,255],"2":[25,31,72,255],"3":[26,32,75,255],"4":[27,33,78,255],"5":[28,35,81,255],"6":[29,36,85,255],"7":[30,38,88,255],"8":[31,39,91,255],"9":[32,40,94,255],"10":[33,41,97,255],"11":[34,43,101,255],"12":[35,44,104,255],"13":[35,45,107,255],"14":[36,47,111,255],"15":[37,48,114,255],"16":[38,49,118,255],"17":[38,51,121,255],"18":[39,52,125,255],"19":[39,53,128,255],"20":[40,55,132,255],"21":[40,56,136,255],"22":[40,57,139,255],"23":[41,58,143,255],"24":[41,60,146,255],"25":[41,61,150,255],"26":[41,63,154,255],"27":[40,64,158,255],"28":[40,65,161,255],"29":[39,67,165,255],"30":[39,68,168,255],"31":[38,70,172,255],"32":[36,72,175,255],"33":[35,74,178,255],"34":[33,75,181,255],"35":[30,77,184,255],"36":[28,80,186,255],"37":[24,82,187,255],"38":[21,84,188,255],"39":[18,86,189,255],"40":[15,89,189,255],"41":[13,91,190,255],"42":[11,93,190,255],"43":[10,95,189,255],"44":[9,98,189,255],"45":[10,100,189,255],"46":[11,102,189,255],"47":[12,104,188,255],"48":[14,106,188,255],"49":[16,108,188,255],"50":[19,110,187,255],"51":[21,112,187,255],"52":[24,114,187,255],"53":[27,116,187,255],"54":[29,117,186,255],"55":[32,119,186,255],"56":[35,121,186,255],"57":[37,123,186,255],"58":[40,125,186,255],"59":[43,127,186,255],"60":[45,128,185,255],"61":[48,130,185,255],"62":[51,132,185,255],"63":[53,134,185,255],"64":[56,135,185,255],"65":[59,137,185,255],"66":[61,139,185,255],"67":[64,140,185,255],"68":[66,142,185,255],"69":[69,144,185,255],"70":[72,145,185,255],"71":[75,147,186,255],"72":[77,149,186,255],"73":[80,150,186,255],"74":[83,152,186,255],"75":[86,154,186,255],"76":[89,155,186,255],"77":[91,157,186,255],"78":[94,158,187,255],"79":[97,160,187,255],"80":[100,162,187,255],"81":[104,163,188,255],"82":[107,165,188,255],"83":[110,166,188,255],"84":[113,168,189,255],"85":[116,169,189,255],"86":[119,171,190,255],"87":[123,172,190,255],"88":[126,173,191,255],"89":[129,175,191,255],"90":[132,176,192,255],"91":[135,178,193,255],"92":[139,179,193,255],"93":[142,181,194,255],"94":[145,182,195,255],"95":[148,184,196,255],"96":[151,185,197,255],"97":[154,186,197,255],"98":[157,188,198,255],"99":[160,189,199,255],"100":[163,191,200,255],"101":[166,192,201,255],"102":[169,194,202,255],"103":[172,195,203,255],"104":[175,197,205,255],"105":[178,198,206,255],"106":[181,200,207,255],"107":[184,202,208,255],"108":[187,203,209,255],"109":[190,205,210,255],"110":[193,206,212,255],"111":[196,208,213,255],"112":[199,210,214,255],"113":[202,211,215,255],"114":[204,213,217,255],"115":[207,214,218,255],"116":[210,216,219,255],"117":[213,218,221,255],"118":[216,220,222,255],"119":[219,221,223,255],"120":[221,223,225,255],"121":[224,225,226,255],"122":[227,227,228,255],"123":[230,228,229,255],"124":[232,230,231,255],"125":[235,232,232,255],"126":[238,234,234,255],"127":[240,236,235,255],"128":[240,236,235,255],"129":[239,233,232,255],"130":[238,231,230,255],"131":[237,229,227,255],"132":[236,226,224,255],"133":[235,224,221,255],"134":[234,222,218,255],"135":[233,219,215,255],"136":[232,217,213,255],"137":[231,214,210,255],"138":[231,212,207,255],"139":[230,210,204,255],"140":[229,207,201,255],"141":[228,205,198,255],"142":[227,203,195,255],"143":[227,200,192,255],"144":[226,198,190,255],"145":[225,196,187,255],"146":[224,193,184,255],"147":[223,191,181,255],"148":[223,189,178,255],"149":[222,186,175,255],"150":[221,184,172,255],"151":[221,182,169,255],"152":[220,179,166,255],"153":[219,177,163,255],"154":[218,175,161,255],"155":[218,173,158,255],"156":[217,170,155,255],"157":[216,168,152,255],"158":[216,166,149,255],"159":[215,163,146,255],"160":[214,161,143,255],"161":[214,159,140,255],"162":[213,157,137,255],"163":[212,154,135,255],"164":[212,152,132,255],"165":[211,150,129,255],"166":[210,148,126,255],"167":[210,145,123,255],"168":[209,143,120,255],"169":[208,141,118,255],"170":[208,138,115,255],"171":[207,136,112,255],"172":[206,134,109,255],"173":[205,132,106,255],"174":[205,129,104,255],"175":[204,127,101,255],"176":[203,125,98,255],"177":[203,122,95,255],"178":[202,120,93,255],"179":[201,118,90,255],"180":[200,115,87,255],"181":[200,113,85,255],"182":[199,111,82,255],"183":[198,108,79,255],"184":[197,106,77,255],"185":[197,104,74,255],"186":[196,101,72,255],"187":[195,99,69,255],"188":[194,96,67,255],"189":[193,94,64,255],"190":[192,92,62,255],"191":[192,89,60,255],"192":[191,87,58,255],"193":[190,84,55,255],"194":[189,82,53,255],"195":[188,79,51,255],"196":[187,77,49,255],"197":[186,74,47,255],"198":[185,72,45,255],"199":[184,69,44,255],"200":[183,66,42,255],"201":[182,64,41,255],"202":[181,61,40,255],"203":[180,58,39,255],"204":[179,56,38,255],"205":[177,53,37,255],"206":[176,50,36,255],"207":[175,48,36,255],"208":[173,45,36,255],"209":[172,43,36,255],"210":[170,40,36,255],"211":[168,38,36,255],"212":[167,35,36,255],"213":[165,33,36,255],"214":[163,31,37,255],"215":[161,29,37,255],"216":[159,27,37,255],"217":[157,25,38,255],"218":[155,23,38,255],"219":[153,21,39,255],"220":[150,20,39,255],"221":[148,18,39,255],"222":[146,17,40,255],"223":[143,16,40,255],"224":[141,15,40,255],"225":[138,15,41,255],"226":[136,14,41,255],"227":[133,14,41,255],"228":[130,14,41,255],"229":[128,13,41,255],"230":[125,13,41,255],"231":[122,14,40,255],"232":[120,14,40,255],"233":[117,14,39,255],"234":[114,14,39,255],"235":[112,14,38,255],"236":[109,14,38,255],"237":[106,14,37,255],"238":[104,14,36,255],"239":[101,14,35,255],"240":[98,14,34,255],"241":[96,14,33,255],"242":[93,14,33,255],"243":[90,14,32,255],"244":[88,13,30,255],"245":[85,13,29,255],"246":[83,13,28,255],"247":[80,12,27,255],"248":[77,12,26,255],"249":[75,12,25,255],"250":[72,11,24,255],"251":[70,11,22,255],"252":[67,10,21,255],"253":[65,10,20,255],"254":[62,9,19,255],"255":[60,9,17,255]}, + binary: {"0":[255,255,255,255],"1":[254,254,254,255],"2":[253,253,253,255],"3":[252,252,252,255],"4":[251,251,251,255],"5":[250,250,250,255],"6":[249,249,249,255],"7":[248,248,248,255],"8":[247,247,247,255],"9":[246,246,246,255],"10":[245,245,245,255],"11":[244,244,244,255],"12":[243,243,243,255],"13":[242,242,242,255],"14":[241,241,241,255],"15":[240,240,240,255],"16":[239,239,239,255],"17":[238,238,238,255],"18":[237,237,237,255],"19":[236,236,236,255],"20":[235,235,235,255],"21":[234,234,234,255],"22":[233,233,233,255],"23":[232,232,232,255],"24":[231,231,231,255],"25":[230,230,230,255],"26":[229,229,229,255],"27":[228,228,228,255],"28":[227,227,227,255],"29":[226,226,226,255],"30":[225,225,225,255],"31":[224,224,224,255],"32":[223,223,223,255],"33":[222,222,222,255],"34":[221,221,221,255],"35":[220,220,220,255],"36":[219,219,219,255],"37":[218,218,218,255],"38":[217,217,217,255],"39":[216,216,216,255],"40":[215,215,215,255],"41":[214,214,214,255],"42":[213,213,213,255],"43":[211,211,211,255],"44":[211,211,211,255],"45":[210,210,210,255],"46":[209,209,209,255],"47":[208,208,208,255],"48":[207,207,207,255],"49":[206,206,206,255],"50":[205,205,205,255],"51":[204,204,204,255],"52":[203,203,203,255],"53":[202,202,202,255],"54":[201,201,201,255],"55":[200,200,200,255],"56":[199,199,199,255],"57":[198,198,198,255],"58":[197,197,197,255],"59":[195,195,195,255],"60":[195,195,195,255],"61":[194,194,194,255],"62":[193,193,193,255],"63":[192,192,192,255],"64":[191,191,191,255],"65":[190,190,190,255],"66":[189,189,189,255],"67":[188,188,188,255],"68":[187,187,187,255],"69":[186,186,186,255],"70":[185,185,185,255],"71":[184,184,184,255],"72":[183,183,183,255],"73":[182,182,182,255],"74":[181,181,181,255],"75":[179,179,179,255],"76":[179,179,179,255],"77":[178,178,178,255],"78":[177,177,177,255],"79":[176,176,176,255],"80":[175,175,175,255],"81":[174,174,174,255],"82":[173,173,173,255],"83":[172,172,172,255],"84":[171,171,171,255],"85":[170,170,170,255],"86":[169,169,169,255],"87":[168,168,168,255],"88":[167,167,167,255],"89":[166,166,166,255],"90":[165,165,165,255],"91":[163,163,163,255],"92":[163,163,163,255],"93":[162,162,162,255],"94":[161,161,161,255],"95":[160,160,160,255],"96":[159,159,159,255],"97":[158,158,158,255],"98":[157,157,157,255],"99":[156,156,156,255],"100":[155,155,155,255],"101":[154,154,154,255],"102":[153,153,153,255],"103":[152,152,152,255],"104":[151,151,151,255],"105":[150,150,150,255],"106":[149,149,149,255],"107":[147,147,147,255],"108":[147,147,147,255],"109":[146,146,146,255],"110":[145,145,145,255],"111":[144,144,144,255],"112":[143,143,143,255],"113":[142,142,142,255],"114":[141,141,141,255],"115":[140,140,140,255],"116":[139,139,139,255],"117":[138,138,138,255],"118":[137,137,137,255],"119":[136,136,136,255],"120":[135,135,135,255],"121":[134,134,134,255],"122":[133,133,133,255],"123":[131,131,131,255],"124":[131,131,131,255],"125":[130,130,130,255],"126":[129,129,129,255],"127":[128,128,128,255],"128":[127,127,127,255],"129":[126,126,126,255],"130":[125,125,125,255],"131":[124,124,124,255],"132":[123,123,123,255],"133":[121,121,121,255],"134":[121,121,121,255],"135":[120,120,120,255],"136":[119,119,119,255],"137":[118,118,118,255],"138":[117,117,117,255],"139":[116,116,116,255],"140":[114,114,114,255],"141":[113,113,113,255],"142":[113,113,113,255],"143":[112,112,112,255],"144":[111,111,111,255],"145":[110,110,110,255],"146":[109,109,109,255],"147":[108,108,108,255],"148":[107,107,107,255],"149":[105,105,105,255],"150":[105,105,105,255],"151":[104,104,104,255],"152":[103,103,103,255],"153":[102,102,102,255],"154":[101,101,101,255],"155":[100,100,100,255],"156":[98,98,98,255],"157":[97,97,97,255],"158":[97,97,97,255],"159":[96,96,96,255],"160":[95,95,95,255],"161":[94,94,94,255],"162":[93,93,93,255],"163":[92,92,92,255],"164":[91,91,91,255],"165":[89,89,89,255],"166":[89,89,89,255],"167":[88,88,88,255],"168":[87,87,87,255],"169":[86,86,86,255],"170":[85,85,85,255],"171":[84,84,84,255],"172":[82,82,82,255],"173":[81,81,81,255],"174":[81,81,81,255],"175":[80,80,80,255],"176":[79,79,79,255],"177":[78,78,78,255],"178":[77,77,77,255],"179":[76,76,76,255],"180":[75,75,75,255],"181":[73,73,73,255],"182":[73,73,73,255],"183":[72,72,72,255],"184":[71,71,71,255],"185":[70,70,70,255],"186":[69,69,69,255],"187":[68,68,68,255],"188":[66,66,66,255],"189":[65,65,65,255],"190":[65,65,65,255],"191":[64,64,64,255],"192":[63,63,63,255],"193":[62,62,62,255],"194":[61,61,61,255],"195":[60,60,60,255],"196":[59,59,59,255],"197":[57,57,57,255],"198":[56,56,56,255],"199":[56,56,56,255],"200":[55,55,55,255],"201":[54,54,54,255],"202":[53,53,53,255],"203":[52,52,52,255],"204":[50,50,50,255],"205":[49,49,49,255],"206":[48,48,48,255],"207":[48,48,48,255],"208":[47,47,47,255],"209":[46,46,46,255],"210":[45,45,45,255],"211":[44,44,44,255],"212":[43,43,43,255],"213":[41,41,41,255],"214":[40,40,40,255],"215":[40,40,40,255],"216":[39,39,39,255],"217":[38,38,38,255],"218":[37,37,37,255],"219":[36,36,36,255],"220":[34,34,34,255],"221":[33,33,33,255],"222":[32,32,32,255],"223":[32,32,32,255],"224":[31,31,31,255],"225":[30,30,30,255],"226":[29,29,29,255],"227":[28,28,28,255],"228":[27,27,27,255],"229":[25,25,25,255],"230":[24,24,24,255],"231":[24,24,24,255],"232":[23,23,23,255],"233":[22,22,22,255],"234":[21,21,21,255],"235":[20,20,20,255],"236":[18,18,18,255],"237":[17,17,17,255],"238":[16,16,16,255],"239":[16,16,16,255],"240":[15,15,15,255],"241":[14,14,14,255],"242":[13,13,13,255],"243":[12,12,12,255],"244":[11,11,11,255],"245":[9,9,9,255],"246":[8,8,8,255],"247":[8,8,8,255],"248":[7,7,7,255],"249":[6,6,6,255],"250":[5,5,5,255],"251":[4,4,4,255],"252":[2,2,2,255],"253":[1,1,1,255],"254":[0,0,0,255],"255":[0,0,0,255]}, + blues: {"0":[247,251,255,255],"1":[246,250,254,255],"2":[245,249,254,255],"3":[244,249,254,255],"4":[243,248,253,255],"5":[243,248,253,255],"6":[242,247,253,255],"7":[241,247,253,255],"8":[240,246,252,255],"9":[239,246,252,255],"10":[239,245,252,255],"11":[238,245,252,255],"12":[237,244,251,255],"13":[236,244,251,255],"14":[236,243,251,255],"15":[235,243,251,255],"16":[234,242,250,255],"17":[233,242,250,255],"18":[232,241,250,255],"19":[232,241,250,255],"20":[231,240,249,255],"21":[230,240,249,255],"22":[229,239,249,255],"23":[228,239,249,255],"24":[228,238,248,255],"25":[227,238,248,255],"26":[226,237,248,255],"27":[225,237,248,255],"28":[225,236,247,255],"29":[224,236,247,255],"30":[223,235,247,255],"31":[222,235,247,255],"32":[221,234,246,255],"33":[221,234,246,255],"34":[220,233,246,255],"35":[219,233,246,255],"36":[218,232,245,255],"37":[218,232,245,255],"38":[217,231,245,255],"39":[216,231,245,255],"40":[215,230,244,255],"41":[215,230,244,255],"42":[214,229,244,255],"43":[213,229,244,255],"44":[212,228,243,255],"45":[212,228,243,255],"46":[211,227,243,255],"47":[210,227,243,255],"48":[209,226,242,255],"49":[209,226,242,255],"50":[208,225,242,255],"51":[207,225,242,255],"52":[206,224,241,255],"53":[206,224,241,255],"54":[205,223,241,255],"55":[204,223,241,255],"56":[203,222,240,255],"57":[203,222,240,255],"58":[202,221,240,255],"59":[201,221,240,255],"60":[200,220,239,255],"61":[200,220,239,255],"62":[199,219,239,255],"63":[198,219,239,255],"64":[197,218,238,255],"65":[196,218,238,255],"66":[195,217,238,255],"67":[193,217,237,255],"68":[192,216,237,255],"69":[191,216,236,255],"70":[190,215,236,255],"71":[188,215,235,255],"72":[187,214,235,255],"73":[186,214,234,255],"74":[185,213,234,255],"75":[183,212,234,255],"76":[182,212,233,255],"77":[181,211,233,255],"78":[180,211,232,255],"79":[178,210,232,255],"80":[177,210,231,255],"81":[176,209,231,255],"82":[175,209,230,255],"83":[173,208,230,255],"84":[172,208,230,255],"85":[171,207,229,255],"86":[170,207,229,255],"87":[168,206,228,255],"88":[167,206,228,255],"89":[166,205,227,255],"90":[165,205,227,255],"91":[163,204,227,255],"92":[162,203,226,255],"93":[161,203,226,255],"94":[160,202,225,255],"95":[158,202,225,255],"96":[157,201,224,255],"97":[155,200,224,255],"98":[154,199,224,255],"99":[152,199,223,255],"100":[151,198,223,255],"101":[149,197,223,255],"102":[147,196,222,255],"103":[146,195,222,255],"104":[144,194,222,255],"105":[143,193,221,255],"106":[141,192,221,255],"107":[139,192,221,255],"108":[138,191,220,255],"109":[136,190,220,255],"110":[135,189,220,255],"111":[133,188,219,255],"112":[131,187,219,255],"113":[130,186,219,255],"114":[128,185,218,255],"115":[127,184,218,255],"116":[125,184,217,255],"117":[123,183,217,255],"118":[122,182,217,255],"119":[120,181,216,255],"120":[119,180,216,255],"121":[117,179,216,255],"122":[115,178,215,255],"123":[114,177,215,255],"124":[112,177,215,255],"125":[111,176,214,255],"126":[109,175,214,255],"127":[107,174,214,255],"128":[106,173,213,255],"129":[105,172,213,255],"130":[103,171,212,255],"131":[102,170,212,255],"132":[101,170,211,255],"133":[99,169,211,255],"134":[98,168,210,255],"135":[97,167,210,255],"136":[96,166,209,255],"137":[94,165,209,255],"138":[93,164,208,255],"139":[92,163,208,255],"140":[90,163,207,255],"141":[89,162,207,255],"142":[88,161,206,255],"143":[87,160,206,255],"144":[85,159,205,255],"145":[84,158,205,255],"146":[83,157,204,255],"147":[81,156,204,255],"148":[80,155,203,255],"149":[79,155,203,255],"150":[78,154,202,255],"151":[76,153,202,255],"152":[75,152,201,255],"153":[74,151,201,255],"154":[72,150,200,255],"155":[71,149,200,255],"156":[70,148,199,255],"157":[69,148,199,255],"158":[67,147,198,255],"159":[66,146,198,255],"160":[65,145,197,255],"161":[64,144,197,255],"162":[63,143,196,255],"163":[62,142,196,255],"164":[61,141,195,255],"165":[60,140,195,255],"166":[59,139,194,255],"167":[58,138,193,255],"168":[57,137,193,255],"169":[56,136,192,255],"170":[55,135,192,255],"171":[53,133,191,255],"172":[52,132,191,255],"173":[51,131,190,255],"174":[50,130,190,255],"175":[49,129,189,255],"176":[48,128,189,255],"177":[47,127,188,255],"178":[46,126,188,255],"179":[45,125,187,255],"180":[44,124,187,255],"181":[43,123,186,255],"182":[42,122,185,255],"183":[41,121,185,255],"184":[40,120,184,255],"185":[39,119,184,255],"186":[38,118,183,255],"187":[37,117,183,255],"188":[36,116,182,255],"189":[35,115,182,255],"190":[34,114,181,255],"191":[33,113,181,255],"192":[32,112,180,255],"193":[31,111,179,255],"194":[30,110,178,255],"195":[30,109,178,255],"196":[29,108,177,255],"197":[28,107,176,255],"198":[27,106,175,255],"199":[26,105,174,255],"200":[26,104,174,255],"201":[25,103,173,255],"202":[24,102,172,255],"203":[23,101,171,255],"204":[23,100,171,255],"205":[22,99,170,255],"206":[21,98,169,255],"207":[20,97,168,255],"208":[19,96,167,255],"209":[19,95,167,255],"210":[18,94,166,255],"211":[17,93,165,255],"212":[16,92,164,255],"213":[15,91,163,255],"214":[15,90,163,255],"215":[14,89,162,255],"216":[13,88,161,255],"217":[12,87,160,255],"218":[12,86,160,255],"219":[11,85,159,255],"220":[10,84,158,255],"221":[9,83,157,255],"222":[8,82,156,255],"223":[8,81,156,255],"224":[8,80,154,255],"225":[8,79,153,255],"226":[8,78,151,255],"227":[8,76,150,255],"228":[8,75,148,255],"229":[8,74,146,255],"230":[8,73,145,255],"231":[8,72,143,255],"232":[8,71,142,255],"233":[8,70,140,255],"234":[8,69,139,255],"235":[8,68,137,255],"236":[8,67,136,255],"237":[8,66,134,255],"238":[8,65,133,255],"239":[8,64,131,255],"240":[8,63,130,255],"241":[8,62,128,255],"242":[8,61,126,255],"243":[8,60,125,255],"244":[8,59,123,255],"245":[8,58,122,255],"246":[8,57,120,255],"247":[8,56,119,255],"248":[8,55,117,255],"249":[8,54,116,255],"250":[8,53,114,255],"251":[8,52,113,255],"252":[8,51,111,255],"253":[8,50,110,255],"254":[8,49,108,255],"255":[8,48,107,255]}, + bone: {"0":[0,0,0,255],"1":[0,0,1,255],"2":[1,1,2,255],"3":[2,2,3,255],"4":[3,3,4,255],"5":[4,4,6,255],"6":[5,5,7,255],"7":[6,6,8,255],"8":[7,6,9,255],"9":[7,7,10,255],"10":[8,8,12,255],"11":[9,9,13,255],"12":[10,10,14,255],"13":[11,11,15,255],"14":[12,12,17,255],"15":[13,13,18,255],"16":[14,13,19,255],"17":[14,14,20,255],"18":[15,15,21,255],"19":[16,16,23,255],"20":[17,17,24,255],"21":[18,18,25,255],"22":[19,19,26,255],"23":[20,20,28,255],"24":[21,20,29,255],"25":[21,21,30,255],"26":[22,22,31,255],"27":[23,23,32,255],"28":[24,24,34,255],"29":[25,25,35,255],"30":[26,26,36,255],"31":[27,27,37,255],"32":[28,27,38,255],"33":[28,28,40,255],"34":[29,29,41,255],"35":[30,30,42,255],"36":[31,31,43,255],"37":[32,32,45,255],"38":[33,33,46,255],"39":[34,34,47,255],"40":[35,34,48,255],"41":[35,35,49,255],"42":[36,36,51,255],"43":[37,37,52,255],"44":[38,38,53,255],"45":[39,39,54,255],"46":[40,40,56,255],"47":[41,41,57,255],"48":[42,41,58,255],"49":[42,42,59,255],"50":[43,43,60,255],"51":[44,44,62,255],"52":[45,45,63,255],"53":[46,46,64,255],"54":[47,47,65,255],"55":[48,48,66,255],"56":[49,48,68,255],"57":[49,49,69,255],"58":[50,50,70,255],"59":[51,51,71,255],"60":[52,52,73,255],"61":[53,53,74,255],"62":[54,54,75,255],"63":[55,55,76,255],"64":[56,55,77,255],"65":[56,56,79,255],"66":[57,57,80,255],"67":[58,58,81,255],"68":[59,59,82,255],"69":[60,60,84,255],"70":[61,61,85,255],"71":[62,62,86,255],"72":[63,62,87,255],"73":[63,63,88,255],"74":[64,64,90,255],"75":[65,65,91,255],"76":[66,66,92,255],"77":[67,67,93,255],"78":[68,68,94,255],"79":[69,69,96,255],"80":[70,69,97,255],"81":[70,70,98,255],"82":[71,71,99,255],"83":[72,72,101,255],"84":[73,73,102,255],"85":[74,74,103,255],"86":[75,75,104,255],"87":[76,76,105,255],"88":[77,76,107,255],"89":[77,77,108,255],"90":[78,78,109,255],"91":[79,79,110,255],"92":[80,80,112,255],"93":[81,81,113,255],"94":[82,82,114,255],"95":[83,83,114,255],"96":[84,84,115,255],"97":[84,86,116,255],"98":[85,87,117,255],"99":[86,88,118,255],"100":[87,89,119,255],"101":[88,90,120,255],"102":[89,92,121,255],"103":[90,93,121,255],"104":[91,94,122,255],"105":[91,95,123,255],"106":[92,96,124,255],"107":[93,98,125,255],"108":[94,99,126,255],"109":[95,100,127,255],"110":[96,101,128,255],"111":[97,102,128,255],"112":[98,104,129,255],"113":[98,105,130,255],"114":[99,106,131,255],"115":[100,107,132,255],"116":[101,109,133,255],"117":[102,110,134,255],"118":[103,111,135,255],"119":[104,112,135,255],"120":[105,113,136,255],"121":[105,115,137,255],"122":[106,116,138,255],"123":[107,117,139,255],"124":[108,118,140,255],"125":[109,119,141,255],"126":[110,121,142,255],"127":[111,122,142,255],"128":[112,123,143,255],"129":[112,124,144,255],"130":[113,125,145,255],"131":[114,127,146,255],"132":[115,128,147,255],"133":[116,129,148,255],"134":[117,130,149,255],"135":[118,131,149,255],"136":[119,133,150,255],"137":[119,134,151,255],"138":[120,135,152,255],"139":[121,136,153,255],"140":[122,137,154,255],"141":[123,139,155,255],"142":[124,140,156,255],"143":[125,141,156,255],"144":[126,142,157,255],"145":[126,143,158,255],"146":[127,145,159,255],"147":[128,146,160,255],"148":[129,147,161,255],"149":[130,148,162,255],"150":[131,149,163,255],"151":[132,151,163,255],"152":[133,152,164,255],"153":[133,153,165,255],"154":[134,154,166,255],"155":[135,155,167,255],"156":[136,157,168,255],"157":[137,158,169,255],"158":[138,159,170,255],"159":[139,160,170,255],"160":[140,161,171,255],"161":[140,163,172,255],"162":[141,164,173,255],"163":[142,165,174,255],"164":[143,166,175,255],"165":[144,167,176,255],"166":[145,169,177,255],"167":[146,170,177,255],"168":[147,171,178,255],"169":[147,172,179,255],"170":[148,173,180,255],"171":[149,175,181,255],"172":[150,176,182,255],"173":[151,177,183,255],"174":[152,178,184,255],"175":[153,179,184,255],"176":[154,181,185,255],"177":[154,182,186,255],"178":[155,183,187,255],"179":[156,184,188,255],"180":[157,186,189,255],"181":[158,187,190,255],"182":[159,188,191,255],"183":[160,189,191,255],"184":[161,190,192,255],"185":[161,192,193,255],"186":[162,193,194,255],"187":[163,194,195,255],"188":[164,195,196,255],"189":[165,196,197,255],"190":[166,198,198,255],"191":[167,199,198,255],"192":[168,199,199,255],"193":[170,200,200,255],"194":[171,201,201,255],"195":[172,202,202,255],"196":[174,203,203,255],"197":[175,204,204,255],"198":[177,205,205,255],"199":[178,206,205,255],"200":[179,206,206,255],"201":[181,207,207,255],"202":[182,208,208,255],"203":[183,209,209,255],"204":[185,210,210,255],"205":[186,211,211,255],"206":[188,212,212,255],"207":[189,213,212,255],"208":[190,213,213,255],"209":[192,214,214,255],"210":[193,215,215,255],"211":[194,216,216,255],"212":[196,217,217,255],"213":[197,218,218,255],"214":[198,219,219,255],"215":[200,220,219,255],"216":[201,220,220,255],"217":[203,221,221,255],"218":[204,222,222,255],"219":[205,223,223,255],"220":[207,224,224,255],"221":[208,225,225,255],"222":[209,226,226,255],"223":[211,227,226,255],"224":[212,227,227,255],"225":[213,228,228,255],"226":[215,229,229,255],"227":[216,230,230,255],"228":[218,231,231,255],"229":[219,232,232,255],"230":[220,233,233,255],"231":[222,234,233,255],"232":[223,234,234,255],"233":[224,235,235,255],"234":[226,236,236,255],"235":[227,237,237,255],"236":[229,238,238,255],"237":[230,239,239,255],"238":[231,240,240,255],"239":[233,241,240,255],"240":[234,241,241,255],"241":[235,242,242,255],"242":[237,243,243,255],"243":[238,244,244,255],"244":[239,245,245,255],"245":[241,246,246,255],"246":[242,247,247,255],"247":[244,248,247,255],"248":[245,248,248,255],"249":[246,249,249,255],"250":[248,250,250,255],"251":[249,251,251,255],"252":[250,252,252,255],"253":[252,253,253,255],"254":[253,254,254,255],"255":[255,255,255,255]}, + bugn: {"0":[247,252,253,255],"1":[246,251,252,255],"2":[245,251,252,255],"3":[245,251,252,255],"4":[244,251,252,255],"5":[244,250,252,255],"6":[243,250,252,255],"7":[243,250,252,255],"8":[242,250,251,255],"9":[241,250,251,255],"10":[241,249,251,255],"11":[240,249,251,255],"12":[240,249,251,255],"13":[239,249,251,255],"14":[239,248,251,255],"15":[238,248,251,255],"16":[237,248,250,255],"17":[237,248,250,255],"18":[236,248,250,255],"19":[236,247,250,255],"20":[235,247,250,255],"21":[235,247,250,255],"22":[234,247,250,255],"23":[234,246,250,255],"24":[233,246,249,255],"25":[232,246,249,255],"26":[232,246,249,255],"27":[231,246,249,255],"28":[231,245,249,255],"29":[230,245,249,255],"30":[230,245,249,255],"31":[229,245,249,255],"32":[228,244,248,255],"33":[228,244,248,255],"34":[227,244,247,255],"35":[226,244,247,255],"36":[225,243,246,255],"37":[224,243,245,255],"38":[224,243,245,255],"39":[223,242,244,255],"40":[222,242,244,255],"41":[221,242,243,255],"42":[221,242,242,255],"43":[220,241,242,255],"44":[219,241,241,255],"45":[218,241,241,255],"46":[217,241,240,255],"47":[217,240,239,255],"48":[216,240,239,255],"49":[215,240,238,255],"50":[214,239,238,255],"51":[214,239,237,255],"52":[213,239,237,255],"53":[212,239,236,255],"54":[211,238,235,255],"55":[210,238,235,255],"56":[210,238,234,255],"57":[209,237,234,255],"58":[208,237,233,255],"59":[207,237,232,255],"60":[206,237,232,255],"61":[206,236,231,255],"62":[205,236,231,255],"63":[204,236,230,255],"64":[203,235,229,255],"65":[202,235,228,255],"66":[200,234,227,255],"67":[198,233,227,255],"68":[197,233,226,255],"69":[195,232,225,255],"70":[194,232,224,255],"71":[192,231,223,255],"72":[190,230,222,255],"73":[189,230,221,255],"74":[187,229,220,255],"75":[186,228,219,255],"76":[184,228,218,255],"77":[182,227,217,255],"78":[181,227,217,255],"79":[179,226,216,255],"80":[178,225,215,255],"81":[176,225,214,255],"82":[174,224,213,255],"83":[173,223,212,255],"84":[171,223,211,255],"85":[170,222,210,255],"86":[168,222,209,255],"87":[166,221,208,255],"88":[165,220,207,255],"89":[163,220,207,255],"90":[162,219,206,255],"91":[160,218,205,255],"92":[158,218,204,255],"93":[157,217,203,255],"94":[155,217,202,255],"95":[154,216,201,255],"96":[152,215,200,255],"97":[150,215,199,255],"98":[149,214,198,255],"99":[147,213,197,255],"100":[146,212,195,255],"101":[144,212,194,255],"102":[142,211,193,255],"103":[141,210,192,255],"104":[139,210,191,255],"105":[138,209,190,255],"106":[136,208,188,255],"107":[134,208,187,255],"108":[133,207,186,255],"109":[131,206,185,255],"110":[130,206,184,255],"111":[128,205,183,255],"112":[126,204,181,255],"113":[125,204,180,255],"114":[123,203,179,255],"115":[122,202,178,255],"116":[120,201,177,255],"117":[118,201,176,255],"118":[117,200,175,255],"119":[115,199,173,255],"120":[114,199,172,255],"121":[112,198,171,255],"122":[110,197,170,255],"123":[109,197,169,255],"124":[107,196,168,255],"125":[106,195,166,255],"126":[104,195,165,255],"127":[102,194,164,255],"128":[101,193,163,255],"129":[100,193,161,255],"130":[99,192,160,255],"131":[97,191,158,255],"132":[96,191,157,255],"133":[95,190,156,255],"134":[94,189,154,255],"135":[93,189,153,255],"136":[92,188,151,255],"137":[90,188,150,255],"138":[89,187,148,255],"139":[88,186,147,255],"140":[87,186,145,255],"141":[86,185,144,255],"142":[85,184,143,255],"143":[84,184,141,255],"144":[82,183,140,255],"145":[81,183,138,255],"146":[80,182,137,255],"147":[79,181,135,255],"148":[78,181,134,255],"149":[77,180,132,255],"150":[75,179,131,255],"151":[74,179,130,255],"152":[73,178,128,255],"153":[72,178,127,255],"154":[71,177,125,255],"155":[70,176,124,255],"156":[68,176,122,255],"157":[67,175,121,255],"158":[66,174,119,255],"159":[65,174,118,255],"160":[64,173,117,255],"161":[63,172,115,255],"162":[62,171,113,255],"163":[61,170,112,255],"164":[60,168,110,255],"165":[59,167,109,255],"166":[58,166,107,255],"167":[57,165,106,255],"168":[56,164,104,255],"169":[55,163,103,255],"170":[55,162,101,255],"171":[54,161,100,255],"172":[53,160,98,255],"173":[52,159,97,255],"174":[51,157,95,255],"175":[50,156,93,255],"176":[49,155,92,255],"177":[48,154,90,255],"178":[47,153,89,255],"179":[46,152,87,255],"180":[45,151,86,255],"181":[44,150,84,255],"182":[43,149,83,255],"183":[42,148,81,255],"184":[41,146,80,255],"185":[40,145,78,255],"186":[39,144,77,255],"187":[39,143,75,255],"188":[38,142,73,255],"189":[37,141,72,255],"190":[36,140,70,255],"191":[35,139,69,255],"192":[34,138,68,255],"193":[33,137,67,255],"194":[31,136,66,255],"195":[30,135,66,255],"196":[29,134,65,255],"197":[28,133,64,255],"198":[27,132,63,255],"199":[26,131,62,255],"200":[25,130,62,255],"201":[24,129,61,255],"202":[23,128,60,255],"203":[22,127,59,255],"204":[21,126,58,255],"205":[19,126,58,255],"206":[18,125,57,255],"207":[17,124,56,255],"208":[16,123,55,255],"209":[15,122,55,255],"210":[14,121,54,255],"211":[13,120,53,255],"212":[12,119,52,255],"213":[11,118,51,255],"214":[10,117,51,255],"215":[8,116,50,255],"216":[7,115,49,255],"217":[6,114,48,255],"218":[5,113,48,255],"219":[4,112,47,255],"220":[3,111,46,255],"221":[2,111,45,255],"222":[1,110,44,255],"223":[0,109,44,255],"224":[0,107,43,255],"225":[0,106,43,255],"226":[0,105,42,255],"227":[0,104,41,255],"228":[0,102,41,255],"229":[0,101,40,255],"230":[0,100,40,255],"231":[0,98,39,255],"232":[0,97,39,255],"233":[0,96,38,255],"234":[0,95,38,255],"235":[0,93,37,255],"236":[0,92,37,255],"237":[0,91,36,255],"238":[0,89,36,255],"239":[0,88,35,255],"240":[0,87,35,255],"241":[0,86,34,255],"242":[0,84,33,255],"243":[0,83,33,255],"244":[0,82,32,255],"245":[0,80,32,255],"246":[0,79,31,255],"247":[0,78,31,255],"248":[0,77,30,255],"249":[0,75,30,255],"250":[0,74,29,255],"251":[0,73,29,255],"252":[0,71,28,255],"253":[0,70,28,255],"254":[0,69,27,255],"255":[0,68,27,255]}, + bupu: {"0":[247,252,253,255],"1":[246,251,252,255],"2":[245,250,252,255],"3":[244,250,252,255],"4":[244,249,251,255],"5":[243,249,251,255],"6":[242,248,251,255],"7":[241,248,251,255],"8":[241,247,250,255],"9":[240,247,250,255],"10":[239,246,250,255],"11":[239,246,249,255],"12":[238,245,249,255],"13":[237,245,249,255],"14":[236,244,249,255],"15":[236,244,248,255],"16":[235,243,248,255],"17":[234,243,248,255],"18":[234,242,247,255],"19":[233,242,247,255],"20":[232,241,247,255],"21":[231,241,247,255],"22":[231,240,246,255],"23":[230,240,246,255],"24":[229,239,246,255],"25":[228,239,245,255],"26":[228,238,245,255],"27":[227,238,245,255],"28":[226,237,245,255],"29":[226,237,244,255],"30":[225,236,244,255],"31":[224,236,244,255],"32":[223,235,243,255],"33":[222,235,243,255],"34":[221,234,243,255],"35":[220,233,242,255],"36":[219,232,242,255],"37":[218,231,241,255],"38":[217,231,241,255],"39":[216,230,240,255],"40":[215,229,240,255],"41":[214,228,239,255],"42":[213,228,239,255],"43":[212,227,239,255],"44":[211,226,238,255],"45":[210,225,238,255],"46":[209,224,237,255],"47":[208,224,237,255],"48":[207,223,236,255],"49":[206,222,236,255],"50":[205,221,236,255],"51":[204,221,235,255],"52":[203,220,235,255],"53":[202,219,234,255],"54":[201,218,234,255],"55":[200,217,233,255],"56":[199,217,233,255],"57":[197,216,232,255],"58":[196,215,232,255],"59":[195,214,232,255],"60":[194,213,231,255],"61":[193,213,231,255],"62":[192,212,230,255],"63":[191,211,230,255],"64":[190,210,229,255],"65":[189,210,229,255],"66":[188,209,229,255],"67":[187,208,228,255],"68":[186,207,228,255],"69":[185,207,228,255],"70":[184,206,227,255],"71":[183,205,227,255],"72":[182,205,226,255],"73":[181,204,226,255],"74":[180,203,226,255],"75":[179,202,225,255],"76":[178,202,225,255],"77":[177,201,225,255],"78":[176,200,224,255],"79":[175,199,224,255],"80":[174,199,223,255],"81":[173,198,223,255],"82":[172,197,223,255],"83":[171,197,222,255],"84":[170,196,222,255],"85":[169,195,222,255],"86":[167,194,221,255],"87":[166,194,221,255],"88":[165,193,220,255],"89":[164,192,220,255],"90":[163,192,220,255],"91":[162,191,219,255],"92":[161,190,219,255],"93":[160,189,218,255],"94":[159,189,218,255],"95":[158,188,218,255],"96":[157,187,217,255],"97":[157,186,217,255],"98":[156,185,216,255],"99":[156,183,215,255],"100":[155,182,215,255],"101":[154,181,214,255],"102":[154,180,214,255],"103":[153,179,213,255],"104":[153,178,212,255],"105":[152,176,212,255],"106":[152,175,211,255],"107":[151,174,210,255],"108":[151,173,210,255],"109":[150,172,209,255],"110":[149,170,208,255],"111":[149,169,208,255],"112":[148,168,207,255],"113":[148,167,207,255],"114":[147,166,206,255],"115":[147,164,205,255],"116":[146,163,205,255],"117":[145,162,204,255],"118":[145,161,203,255],"119":[144,160,203,255],"120":[144,158,202,255],"121":[143,157,202,255],"122":[143,156,201,255],"123":[142,155,200,255],"124":[141,154,200,255],"125":[141,152,199,255],"126":[140,151,198,255],"127":[140,150,198,255],"128":[140,149,197,255],"129":[140,147,197,255],"130":[140,146,196,255],"131":[140,145,195,255],"132":[140,143,195,255],"133":[140,142,194,255],"134":[140,141,193,255],"135":[140,139,193,255],"136":[140,138,192,255],"137":[140,137,191,255],"138":[140,135,191,255],"139":[140,134,190,255],"140":[140,133,189,255],"141":[140,131,189,255],"142":[140,130,188,255],"143":[140,129,187,255],"144":[140,127,187,255],"145":[140,126,186,255],"146":[140,125,185,255],"147":[140,123,185,255],"148":[140,122,184,255],"149":[140,120,183,255],"150":[140,119,183,255],"151":[140,118,182,255],"152":[140,116,181,255],"153":[140,115,181,255],"154":[140,114,180,255],"155":[140,112,179,255],"156":[140,111,179,255],"157":[140,110,178,255],"158":[140,108,177,255],"159":[140,107,177,255],"160":[139,106,176,255],"161":[139,104,175,255],"162":[139,103,175,255],"163":[139,102,174,255],"164":[139,100,174,255],"165":[139,99,173,255],"166":[139,98,172,255],"167":[139,96,172,255],"168":[138,95,171,255],"169":[138,94,170,255],"170":[138,93,170,255],"171":[138,91,169,255],"172":[138,90,169,255],"173":[138,89,168,255],"174":[138,87,167,255],"175":[138,86,167,255],"176":[137,85,166,255],"177":[137,83,165,255],"178":[137,82,165,255],"179":[137,81,164,255],"180":[137,79,164,255],"181":[137,78,163,255],"182":[137,77,162,255],"183":[137,75,162,255],"184":[136,74,161,255],"185":[136,73,160,255],"186":[136,71,160,255],"187":[136,70,159,255],"188":[136,69,159,255],"189":[136,67,158,255],"190":[136,66,157,255],"191":[136,65,157,255],"192":[135,63,156,255],"193":[135,62,155,255],"194":[135,60,154,255],"195":[135,59,153,255],"196":[134,57,152,255],"197":[134,55,151,255],"198":[134,54,150,255],"199":[134,52,148,255],"200":[134,51,147,255],"201":[133,49,146,255],"202":[133,48,145,255],"203":[133,46,144,255],"204":[133,44,143,255],"205":[132,43,142,255],"206":[132,41,141,255],"207":[132,40,140,255],"208":[132,38,139,255],"209":[132,37,138,255],"210":[131,35,137,255],"211":[131,34,136,255],"212":[131,32,135,255],"213":[131,30,134,255],"214":[131,29,133,255],"215":[130,27,132,255],"216":[130,26,131,255],"217":[130,24,130,255],"218":[130,23,129,255],"219":[129,21,128,255],"220":[129,19,127,255],"221":[129,18,126,255],"222":[129,16,125,255],"223":[129,15,124,255],"224":[127,14,122,255],"225":[125,14,121,255],"226":[124,13,119,255],"227":[122,13,118,255],"228":[121,12,116,255],"229":[119,12,114,255],"230":[117,11,113,255],"231":[116,11,111,255],"232":[114,10,110,255],"233":[112,10,108,255],"234":[111,9,107,255],"235":[109,9,105,255],"236":[107,8,104,255],"237":[106,8,102,255],"238":[104,8,101,255],"239":[103,7,99,255],"240":[101,7,98,255],"241":[99,6,96,255],"242":[98,6,94,255],"243":[96,5,93,255],"244":[94,5,91,255],"245":[93,4,90,255],"246":[91,4,88,255],"247":[90,3,87,255],"248":[88,3,85,255],"249":[86,2,84,255],"250":[85,2,82,255],"251":[83,1,81,255],"252":[81,1,79,255],"253":[80,0,78,255],"254":[78,0,76,255],"255":[77,0,75,255]}, + cividis: {"0":[0,34,77,255],"1":[0,35,79,255],"2":[0,35,80,255],"3":[0,36,82,255],"4":[0,37,84,255],"5":[0,38,85,255],"6":[0,38,87,255],"7":[0,39,89,255],"8":[0,40,91,255],"9":[0,40,92,255],"10":[0,41,94,255],"11":[0,42,96,255],"12":[0,42,98,255],"13":[0,43,100,255],"14":[0,44,102,255],"15":[0,44,103,255],"16":[0,45,105,255],"17":[0,46,107,255],"18":[0,47,109,255],"19":[0,47,111,255],"20":[0,48,112,255],"21":[0,48,112,255],"22":[0,49,112,255],"23":[0,49,112,255],"24":[4,50,112,255],"25":[8,51,112,255],"26":[11,51,112,255],"27":[14,52,112,255],"28":[17,53,111,255],"29":[20,54,111,255],"30":[22,54,111,255],"31":[24,55,111,255],"32":[26,56,111,255],"33":[28,56,110,255],"34":[29,57,110,255],"35":[31,58,110,255],"36":[33,59,110,255],"37":[34,59,110,255],"38":[36,60,110,255],"39":[37,61,109,255],"40":[39,61,109,255],"41":[40,62,109,255],"42":[42,63,109,255],"43":[43,63,109,255],"44":[44,64,109,255],"45":[46,65,108,255],"46":[47,66,108,255],"47":[48,66,108,255],"48":[49,67,108,255],"49":[50,68,108,255],"50":[52,68,108,255],"51":[53,69,108,255],"52":[54,70,108,255],"53":[55,70,108,255],"54":[56,71,108,255],"55":[57,72,108,255],"56":[58,72,107,255],"57":[59,73,107,255],"58":[61,74,107,255],"59":[62,75,107,255],"60":[63,75,107,255],"61":[64,76,107,255],"62":[65,77,107,255],"63":[66,77,107,255],"64":[67,78,107,255],"65":[68,79,107,255],"66":[69,79,107,255],"67":[70,80,107,255],"68":[71,81,107,255],"69":[72,81,107,255],"70":[73,82,107,255],"71":[74,83,107,255],"72":[75,84,108,255],"73":[76,84,108,255],"74":[77,85,108,255],"75":[78,86,108,255],"76":[78,86,108,255],"77":[79,87,108,255],"78":[80,88,108,255],"79":[81,88,108,255],"80":[82,89,108,255],"81":[83,90,108,255],"82":[84,90,108,255],"83":[85,91,109,255],"84":[86,92,109,255],"85":[87,93,109,255],"86":[88,93,109,255],"87":[89,94,109,255],"88":[89,95,109,255],"89":[90,95,109,255],"90":[91,96,110,255],"91":[92,97,110,255],"92":[93,97,110,255],"93":[94,98,110,255],"94":[95,99,110,255],"95":[96,100,110,255],"96":[97,100,111,255],"97":[97,101,111,255],"98":[98,102,111,255],"99":[99,102,111,255],"100":[100,103,111,255],"101":[101,104,112,255],"102":[102,105,112,255],"103":[103,105,112,255],"104":[104,106,112,255],"105":[104,107,113,255],"106":[105,107,113,255],"107":[106,108,113,255],"108":[107,109,113,255],"109":[108,109,114,255],"110":[109,110,114,255],"111":[110,111,114,255],"112":[110,112,115,255],"113":[111,112,115,255],"114":[112,113,115,255],"115":[113,114,115,255],"116":[114,115,116,255],"117":[115,115,116,255],"118":[116,116,117,255],"119":[116,117,117,255],"120":[117,117,117,255],"121":[118,118,118,255],"122":[119,119,118,255],"123":[120,120,118,255],"124":[121,120,119,255],"125":[121,121,119,255],"126":[122,122,119,255],"127":[123,123,119,255],"128":[124,123,120,255],"129":[125,124,120,255],"130":[126,125,120,255],"131":[127,125,120,255],"132":[128,126,120,255],"133":[129,127,120,255],"134":[130,128,120,255],"135":[131,128,120,255],"136":[132,129,120,255],"137":[133,130,120,255],"138":[133,131,120,255],"139":[134,131,120,255],"140":[135,132,120,255],"141":[136,133,120,255],"142":[137,134,120,255],"143":[138,134,120,255],"144":[139,135,120,255],"145":[140,136,120,255],"146":[141,137,120,255],"147":[142,137,120,255],"148":[143,138,119,255],"149":[144,139,119,255],"150":[145,140,119,255],"151":[146,140,119,255],"152":[147,141,119,255],"153":[148,142,119,255],"154":[149,143,119,255],"155":[150,143,119,255],"156":[151,144,118,255],"157":[152,145,118,255],"158":[153,146,118,255],"159":[154,147,118,255],"160":[155,147,118,255],"161":[156,148,118,255],"162":[157,149,117,255],"163":[158,150,117,255],"164":[159,150,117,255],"165":[160,151,117,255],"166":[161,152,116,255],"167":[162,153,116,255],"168":[163,154,116,255],"169":[164,154,116,255],"170":[165,155,115,255],"171":[166,156,115,255],"172":[167,157,115,255],"173":[168,158,115,255],"174":[169,158,114,255],"175":[170,159,114,255],"176":[171,160,114,255],"177":[172,161,113,255],"178":[173,162,113,255],"179":[174,162,113,255],"180":[175,163,112,255],"181":[176,164,112,255],"182":[177,165,112,255],"183":[178,166,111,255],"184":[179,166,111,255],"185":[180,167,111,255],"186":[181,168,110,255],"187":[182,169,110,255],"188":[183,170,109,255],"189":[184,171,109,255],"190":[185,171,109,255],"191":[186,172,108,255],"192":[187,173,108,255],"193":[188,174,107,255],"194":[189,175,107,255],"195":[190,176,106,255],"196":[191,176,106,255],"197":[193,177,105,255],"198":[194,178,105,255],"199":[195,179,104,255],"200":[196,180,104,255],"201":[197,181,103,255],"202":[198,181,103,255],"203":[199,182,102,255],"204":[200,183,101,255],"205":[201,184,101,255],"206":[202,185,100,255],"207":[203,186,100,255],"208":[204,187,99,255],"209":[205,188,98,255],"210":[206,188,98,255],"211":[207,189,97,255],"212":[208,190,96,255],"213":[210,191,96,255],"214":[211,192,95,255],"215":[212,193,94,255],"216":[213,194,94,255],"217":[214,195,93,255],"218":[215,195,92,255],"219":[216,196,91,255],"220":[217,197,90,255],"221":[218,198,90,255],"222":[219,199,89,255],"223":[220,200,88,255],"224":[222,201,87,255],"225":[223,202,86,255],"226":[224,203,85,255],"227":[225,204,84,255],"228":[226,204,83,255],"229":[227,205,82,255],"230":[228,206,81,255],"231":[229,207,80,255],"232":[230,208,79,255],"233":[232,209,78,255],"234":[233,210,77,255],"235":[234,211,76,255],"236":[235,212,75,255],"237":[236,213,74,255],"238":[237,214,72,255],"239":[238,215,71,255],"240":[239,216,70,255],"241":[241,217,68,255],"242":[242,218,67,255],"243":[243,218,66,255],"244":[244,219,64,255],"245":[245,220,63,255],"246":[246,221,61,255],"247":[248,222,59,255],"248":[249,223,58,255],"249":[250,224,56,255],"250":[251,225,54,255],"251":[253,226,52,255],"252":[253,227,51,255],"253":[253,229,52,255],"254":[253,230,54,255],"255":[253,231,55,255]}, + cmrmap: {"0":[0,0,0,255],"1":[1,1,4,255],"2":[2,2,8,255],"3":[3,3,12,255],"4":[4,4,16,255],"5":[6,6,20,255],"6":[7,7,24,255],"7":[8,8,28,255],"8":[9,9,32,255],"9":[10,10,36,255],"10":[12,12,40,255],"11":[13,13,44,255],"12":[14,14,48,255],"13":[15,15,52,255],"14":[16,16,56,255],"15":[18,18,60,255],"16":[19,19,64,255],"17":[20,20,68,255],"18":[21,21,72,255],"19":[22,22,76,255],"20":[24,24,80,255],"21":[25,25,84,255],"22":[26,26,88,255],"23":[27,27,92,255],"24":[28,28,96,255],"25":[30,30,100,255],"26":[31,31,104,255],"27":[32,32,108,255],"28":[33,33,112,255],"29":[34,34,116,255],"30":[36,36,120,255],"31":[37,37,124,255],"32":[38,38,127,255],"33":[39,38,129,255],"34":[40,38,131,255],"35":[42,38,133,255],"36":[43,38,135,255],"37":[44,38,137,255],"38":[45,38,139,255],"39":[46,38,141,255],"40":[48,38,143,255],"41":[49,38,145,255],"42":[50,38,147,255],"43":[51,38,149,255],"44":[52,38,151,255],"45":[53,38,153,255],"46":[55,38,155,255],"47":[56,38,157,255],"48":[57,38,159,255],"49":[58,38,161,255],"50":[60,38,163,255],"51":[61,38,165,255],"52":[62,38,167,255],"53":[63,38,169,255],"54":[64,38,171,255],"55":[65,38,173,255],"56":[67,38,175,255],"57":[68,38,177,255],"58":[69,38,179,255],"59":[70,38,181,255],"60":[72,38,183,255],"61":[73,38,185,255],"62":[74,38,187,255],"63":[75,38,189,255],"64":[77,38,190,255],"65":[79,38,188,255],"66":[81,39,186,255],"67":[84,39,184,255],"68":[86,39,182,255],"69":[89,40,180,255],"70":[91,40,178,255],"71":[93,41,176,255],"72":[96,41,174,255],"73":[98,41,172,255],"74":[101,42,170,255],"75":[103,42,168,255],"76":[105,43,166,255],"77":[108,43,164,255],"78":[110,43,162,255],"79":[113,44,160,255],"80":[115,44,158,255],"81":[117,45,156,255],"82":[120,45,154,255],"83":[122,45,152,255],"84":[125,46,150,255],"85":[127,46,148,255],"86":[129,47,146,255],"87":[132,47,144,255],"88":[134,47,142,255],"89":[137,48,140,255],"90":[139,48,138,255],"91":[141,49,136,255],"92":[144,49,134,255],"93":[146,49,132,255],"94":[149,50,130,255],"95":[151,50,128,255],"96":[154,51,126,255],"97":[157,51,123,255],"98":[160,51,120,255],"99":[163,52,118,255],"100":[167,52,115,255],"101":[170,53,112,255],"102":[173,53,109,255],"103":[176,53,106,255],"104":[179,54,104,255],"105":[183,54,101,255],"106":[186,55,98,255],"107":[189,55,95,255],"108":[192,55,92,255],"109":[195,56,90,255],"110":[199,56,87,255],"111":[202,57,84,255],"112":[205,57,81,255],"113":[208,57,78,255],"114":[211,58,76,255],"115":[215,58,73,255],"116":[218,59,70,255],"117":[221,59,67,255],"118":[224,59,64,255],"119":[227,60,62,255],"120":[231,60,59,255],"121":[234,61,56,255],"122":[237,61,53,255],"123":[240,61,50,255],"124":[243,62,48,255],"125":[247,62,45,255],"126":[250,63,42,255],"127":[253,63,39,255],"128":[254,64,37,255],"129":[253,66,36,255],"130":[253,68,35,255],"131":[252,70,34,255],"132":[251,72,32,255],"133":[250,74,31,255],"134":[249,76,30,255],"135":[249,78,29,255],"136":[248,80,28,255],"137":[247,82,26,255],"138":[246,84,25,255],"139":[245,86,24,255],"140":[245,88,23,255],"141":[244,90,22,255],"142":[243,92,20,255],"143":[242,94,19,255],"144":[241,96,18,255],"145":[241,98,17,255],"146":[240,100,16,255],"147":[239,102,14,255],"148":[238,104,13,255],"149":[237,106,12,255],"150":[237,108,11,255],"151":[236,110,10,255],"152":[235,112,8,255],"153":[234,114,7,255],"154":[233,116,6,255],"155":[233,118,5,255],"156":[232,120,4,255],"157":[231,122,2,255],"158":[230,124,1,255],"159":[229,126,0,255],"160":[229,128,0,255],"161":[229,130,1,255],"162":[229,132,2,255],"163":[229,134,2,255],"164":[229,136,3,255],"165":[229,138,4,255],"166":[229,140,5,255],"167":[229,142,6,255],"168":[229,144,6,255],"169":[229,146,7,255],"170":[229,148,8,255],"171":[229,150,9,255],"172":[229,152,10,255],"173":[229,154,10,255],"174":[229,156,11,255],"175":[229,158,12,255],"176":[229,160,13,255],"177":[229,162,14,255],"178":[229,164,14,255],"179":[229,166,15,255],"180":[229,168,16,255],"181":[229,170,17,255],"182":[229,172,18,255],"183":[229,174,18,255],"184":[229,176,19,255],"185":[229,178,20,255],"186":[229,180,21,255],"187":[229,182,22,255],"188":[229,184,22,255],"189":[229,186,23,255],"190":[229,188,24,255],"191":[229,190,25,255],"192":[229,192,27,255],"193":[229,193,31,255],"194":[229,194,34,255],"195":[229,195,37,255],"196":[229,196,40,255],"197":[229,198,43,255],"198":[229,199,47,255],"199":[229,200,50,255],"200":[229,201,53,255],"201":[229,202,56,255],"202":[229,204,59,255],"203":[229,205,63,255],"204":[229,206,66,255],"205":[229,207,69,255],"206":[229,208,72,255],"207":[229,210,75,255],"208":[229,211,79,255],"209":[229,212,82,255],"210":[229,213,85,255],"211":[229,214,88,255],"212":[229,216,91,255],"213":[229,217,95,255],"214":[229,218,98,255],"215":[229,219,101,255],"216":[229,220,104,255],"217":[229,222,107,255],"218":[229,223,111,255],"219":[229,224,114,255],"220":[229,225,117,255],"221":[229,226,120,255],"222":[229,228,123,255],"223":[229,229,127,255],"224":[230,230,131,255],"225":[231,231,135,255],"226":[231,231,139,255],"227":[232,232,143,255],"228":[233,233,146,255],"229":[234,234,151,255],"230":[235,235,155,255],"231":[235,235,159,255],"232":[236,236,163,255],"233":[237,237,167,255],"234":[238,238,171,255],"235":[239,239,175,255],"236":[239,239,179,255],"237":[240,240,183,255],"238":[241,241,187,255],"239":[242,242,191,255],"240":[243,243,195,255],"241":[243,243,199,255],"242":[244,244,203,255],"243":[245,245,207,255],"244":[246,246,210,255],"245":[247,247,215,255],"246":[247,247,219,255],"247":[248,248,223,255],"248":[249,249,227,255],"249":[250,250,231,255],"250":[251,251,235,255],"251":[251,251,239,255],"252":[252,252,243,255],"253":[253,253,247,255],"254":[254,254,251,255],"255":[255,255,255,255]}, + cool: {"0":[0,255,255,255],"1":[1,254,255,255],"2":[2,253,255,255],"3":[3,252,255,255],"4":[4,251,255,255],"5":[5,250,255,255],"6":[6,249,255,255],"7":[7,248,255,255],"8":[8,247,255,255],"9":[9,246,255,255],"10":[10,245,255,255],"11":[11,244,255,255],"12":[12,243,255,255],"13":[13,242,255,255],"14":[14,241,255,255],"15":[15,240,255,255],"16":[16,239,255,255],"17":[17,238,255,255],"18":[18,237,255,255],"19":[19,236,255,255],"20":[20,235,255,255],"21":[21,234,255,255],"22":[22,233,255,255],"23":[23,232,255,255],"24":[24,231,255,255],"25":[25,230,255,255],"26":[26,229,255,255],"27":[27,228,255,255],"28":[28,227,255,255],"29":[29,226,255,255],"30":[30,225,255,255],"31":[31,224,255,255],"32":[32,223,255,255],"33":[32,222,255,255],"34":[34,221,255,255],"35":[35,220,255,255],"36":[36,219,255,255],"37":[36,218,255,255],"38":[38,217,255,255],"39":[39,216,255,255],"40":[40,215,255,255],"41":[40,214,255,255],"42":[42,213,255,255],"43":[43,211,255,255],"44":[44,211,255,255],"45":[44,210,255,255],"46":[46,209,255,255],"47":[47,208,255,255],"48":[48,207,255,255],"49":[48,206,255,255],"50":[50,205,255,255],"51":[51,204,255,255],"52":[52,203,255,255],"53":[52,202,255,255],"54":[54,201,255,255],"55":[55,200,255,255],"56":[56,199,255,255],"57":[56,198,255,255],"58":[58,197,255,255],"59":[59,195,255,255],"60":[60,195,255,255],"61":[60,194,255,255],"62":[62,193,255,255],"63":[63,192,255,255],"64":[64,191,255,255],"65":[65,190,255,255],"66":[65,189,255,255],"67":[67,188,255,255],"68":[68,187,255,255],"69":[69,186,255,255],"70":[70,185,255,255],"71":[71,184,255,255],"72":[72,183,255,255],"73":[73,182,255,255],"74":[73,181,255,255],"75":[75,179,255,255],"76":[76,179,255,255],"77":[77,178,255,255],"78":[78,177,255,255],"79":[79,176,255,255],"80":[80,175,255,255],"81":[81,174,255,255],"82":[81,173,255,255],"83":[83,172,255,255],"84":[84,171,255,255],"85":[85,170,255,255],"86":[86,169,255,255],"87":[87,168,255,255],"88":[88,167,255,255],"89":[89,166,255,255],"90":[89,165,255,255],"91":[91,163,255,255],"92":[92,163,255,255],"93":[93,162,255,255],"94":[94,161,255,255],"95":[95,160,255,255],"96":[96,159,255,255],"97":[97,158,255,255],"98":[97,157,255,255],"99":[99,156,255,255],"100":[100,155,255,255],"101":[101,154,255,255],"102":[102,153,255,255],"103":[103,152,255,255],"104":[104,151,255,255],"105":[105,150,255,255],"106":[105,149,255,255],"107":[107,147,255,255],"108":[108,147,255,255],"109":[109,146,255,255],"110":[110,145,255,255],"111":[111,144,255,255],"112":[112,143,255,255],"113":[113,142,255,255],"114":[113,141,255,255],"115":[115,140,255,255],"116":[116,139,255,255],"117":[117,138,255,255],"118":[118,137,255,255],"119":[119,136,255,255],"120":[120,135,255,255],"121":[121,134,255,255],"122":[121,133,255,255],"123":[123,131,255,255],"124":[124,131,255,255],"125":[125,130,255,255],"126":[126,129,255,255],"127":[127,128,255,255],"128":[128,127,255,255],"129":[129,126,255,255],"130":[130,125,255,255],"131":[131,124,255,255],"132":[131,123,255,255],"133":[133,121,255,255],"134":[134,121,255,255],"135":[135,120,255,255],"136":[136,119,255,255],"137":[137,118,255,255],"138":[138,117,255,255],"139":[139,116,255,255],"140":[140,114,255,255],"141":[141,113,255,255],"142":[142,113,255,255],"143":[143,112,255,255],"144":[144,111,255,255],"145":[145,110,255,255],"146":[146,109,255,255],"147":[147,108,255,255],"148":[147,107,255,255],"149":[149,105,255,255],"150":[150,105,255,255],"151":[151,104,255,255],"152":[152,103,255,255],"153":[153,102,255,255],"154":[154,101,255,255],"155":[155,100,255,255],"156":[156,98,255,255],"157":[157,97,255,255],"158":[158,97,255,255],"159":[159,96,255,255],"160":[160,95,255,255],"161":[161,94,255,255],"162":[162,93,255,255],"163":[163,92,255,255],"164":[163,91,255,255],"165":[165,89,255,255],"166":[166,89,255,255],"167":[167,88,255,255],"168":[168,87,255,255],"169":[169,86,255,255],"170":[170,85,255,255],"171":[171,84,255,255],"172":[172,82,255,255],"173":[173,81,255,255],"174":[174,81,255,255],"175":[175,80,255,255],"176":[176,79,255,255],"177":[177,78,255,255],"178":[178,77,255,255],"179":[179,76,255,255],"180":[179,75,255,255],"181":[181,73,255,255],"182":[182,73,255,255],"183":[183,72,255,255],"184":[184,71,255,255],"185":[185,70,255,255],"186":[186,69,255,255],"187":[187,68,255,255],"188":[188,66,255,255],"189":[189,65,255,255],"190":[190,65,255,255],"191":[191,64,255,255],"192":[192,63,255,255],"193":[193,62,255,255],"194":[194,61,255,255],"195":[195,60,255,255],"196":[195,59,255,255],"197":[197,57,255,255],"198":[198,56,255,255],"199":[199,56,255,255],"200":[200,55,255,255],"201":[201,54,255,255],"202":[202,53,255,255],"203":[203,52,255,255],"204":[204,50,255,255],"205":[205,49,255,255],"206":[206,48,255,255],"207":[207,48,255,255],"208":[208,47,255,255],"209":[209,46,255,255],"210":[210,45,255,255],"211":[211,44,255,255],"212":[211,43,255,255],"213":[213,41,255,255],"214":[214,40,255,255],"215":[215,40,255,255],"216":[216,39,255,255],"217":[217,38,255,255],"218":[218,37,255,255],"219":[219,36,255,255],"220":[220,34,255,255],"221":[221,33,255,255],"222":[222,32,255,255],"223":[223,32,255,255],"224":[224,31,255,255],"225":[225,30,255,255],"226":[226,29,255,255],"227":[227,28,255,255],"228":[227,27,255,255],"229":[229,25,255,255],"230":[230,24,255,255],"231":[231,24,255,255],"232":[232,23,255,255],"233":[233,22,255,255],"234":[234,21,255,255],"235":[235,20,255,255],"236":[236,18,255,255],"237":[237,17,255,255],"238":[238,16,255,255],"239":[239,16,255,255],"240":[240,15,255,255],"241":[241,14,255,255],"242":[242,13,255,255],"243":[243,12,255,255],"244":[243,11,255,255],"245":[245,9,255,255],"246":[246,8,255,255],"247":[247,8,255,255],"248":[248,7,255,255],"249":[249,6,255,255],"250":[250,5,255,255],"251":[251,4,255,255],"252":[252,2,255,255],"253":[253,1,255,255],"254":[254,0,255,255],"255":[255,0,255,255]}, + copper: {"0":[0,0,0,255],"1":[1,0,0,255],"2":[2,1,0,255],"3":[3,2,1,255],"4":[4,3,1,255],"5":[6,3,2,255],"6":[7,4,2,255],"7":[8,5,3,255],"8":[9,6,3,255],"9":[11,7,4,255],"10":[12,7,4,255],"11":[13,8,5,255],"12":[14,9,5,255],"13":[16,10,6,255],"14":[17,10,6,255],"15":[18,11,7,255],"16":[19,12,7,255],"17":[20,13,8,255],"18":[22,14,8,255],"19":[23,14,9,255],"20":[24,15,9,255],"21":[25,16,10,255],"22":[27,17,10,255],"23":[28,17,11,255],"24":[29,18,11,255],"25":[30,19,12,255],"26":[32,20,12,255],"27":[33,21,13,255],"28":[34,21,13,255],"29":[35,22,14,255],"30":[37,23,14,255],"31":[38,24,15,255],"32":[39,24,15,255],"33":[40,25,16,255],"34":[41,26,16,255],"35":[43,27,17,255],"36":[44,28,17,255],"37":[45,28,18,255],"38":[46,29,18,255],"39":[48,30,19,255],"40":[49,31,19,255],"41":[50,32,20,255],"42":[51,32,20,255],"43":[53,33,21,255],"44":[54,34,21,255],"45":[55,35,22,255],"46":[56,35,22,255],"47":[58,36,23,255],"48":[59,37,23,255],"49":[60,38,24,255],"50":[61,39,24,255],"51":[62,39,25,255],"52":[64,40,25,255],"53":[65,41,26,255],"54":[66,42,26,255],"55":[67,42,27,255],"56":[69,43,27,255],"57":[70,44,28,255],"58":[71,45,28,255],"59":[72,46,29,255],"60":[74,46,29,255],"61":[75,47,30,255],"62":[76,48,30,255],"63":[77,49,31,255],"64":[79,49,31,255],"65":[80,50,32,255],"66":[81,51,32,255],"67":[82,52,33,255],"68":[83,53,33,255],"69":[85,53,34,255],"70":[86,54,34,255],"71":[87,55,35,255],"72":[88,56,35,255],"73":[90,57,36,255],"74":[91,57,36,255],"75":[92,58,37,255],"76":[93,59,37,255],"77":[95,60,38,255],"78":[96,60,38,255],"79":[97,61,39,255],"80":[98,62,39,255],"81":[100,63,40,255],"82":[101,64,40,255],"83":[102,64,41,255],"84":[103,65,41,255],"85":[104,66,42,255],"86":[106,67,42,255],"87":[107,67,43,255],"88":[108,68,43,255],"89":[109,69,44,255],"90":[111,70,44,255],"91":[112,71,45,255],"92":[113,71,45,255],"93":[114,72,46,255],"94":[116,73,46,255],"95":[117,74,47,255],"96":[118,74,47,255],"97":[119,75,48,255],"98":[121,76,48,255],"99":[122,77,49,255],"100":[123,78,49,255],"101":[124,78,50,255],"102":[125,79,50,255],"103":[127,80,51,255],"104":[128,81,51,255],"105":[129,82,52,255],"106":[130,82,52,255],"107":[132,83,53,255],"108":[133,84,53,255],"109":[134,85,54,255],"110":[135,85,54,255],"111":[137,86,55,255],"112":[138,87,55,255],"113":[139,88,56,255],"114":[140,89,56,255],"115":[142,89,57,255],"116":[143,90,57,255],"117":[144,91,58,255],"118":[145,92,58,255],"119":[146,92,59,255],"120":[148,93,59,255],"121":[149,94,60,255],"122":[150,95,60,255],"123":[151,96,61,255],"124":[153,96,61,255],"125":[154,97,62,255],"126":[155,98,62,255],"127":[156,99,63,255],"128":[158,99,63,255],"129":[159,100,64,255],"130":[160,101,64,255],"131":[161,102,65,255],"132":[163,103,65,255],"133":[164,103,66,255],"134":[165,104,66,255],"135":[166,105,67,255],"136":[167,106,67,255],"137":[169,107,68,255],"138":[170,107,68,255],"139":[171,108,69,255],"140":[172,109,69,255],"141":[174,110,70,255],"142":[175,110,70,255],"143":[176,111,71,255],"144":[177,112,71,255],"145":[179,113,72,255],"146":[180,114,72,255],"147":[181,114,73,255],"148":[182,115,73,255],"149":[184,116,74,255],"150":[185,117,74,255],"151":[186,117,75,255],"152":[187,118,75,255],"153":[188,119,76,255],"154":[190,120,76,255],"155":[191,121,77,255],"156":[192,121,77,255],"157":[193,122,78,255],"158":[195,123,78,255],"159":[196,124,79,255],"160":[197,124,79,255],"161":[198,125,80,255],"162":[200,126,80,255],"163":[201,127,81,255],"164":[202,128,81,255],"165":[203,128,82,255],"166":[205,129,82,255],"167":[206,130,83,255],"168":[207,131,83,255],"169":[208,132,84,255],"170":[209,132,84,255],"171":[211,133,85,255],"172":[212,134,85,255],"173":[213,135,86,255],"174":[214,135,86,255],"175":[216,136,87,255],"176":[217,137,87,255],"177":[218,138,88,255],"178":[219,139,88,255],"179":[221,139,89,255],"180":[222,140,89,255],"181":[223,141,90,255],"182":[224,142,90,255],"183":[226,142,91,255],"184":[227,143,91,255],"185":[228,144,92,255],"186":[229,145,92,255],"187":[230,146,93,255],"188":[232,146,93,255],"189":[233,147,94,255],"190":[234,148,94,255],"191":[235,149,95,255],"192":[237,149,95,255],"193":[238,150,96,255],"194":[239,151,96,255],"195":[240,152,97,255],"196":[242,153,97,255],"197":[243,153,98,255],"198":[244,154,98,255],"199":[245,155,99,255],"200":[247,156,99,255],"201":[248,157,99,255],"202":[249,157,100,255],"203":[250,158,100,255],"204":[251,159,101,255],"205":[253,160,101,255],"206":[254,160,102,255],"207":[255,161,102,255],"208":[255,162,103,255],"209":[255,163,103,255],"210":[255,164,104,255],"211":[255,164,104,255],"212":[255,165,105,255],"213":[255,166,105,255],"214":[255,167,106,255],"215":[255,167,106,255],"216":[255,168,107,255],"217":[255,169,107,255],"218":[255,170,108,255],"219":[255,171,108,255],"220":[255,171,109,255],"221":[255,172,109,255],"222":[255,173,110,255],"223":[255,174,110,255],"224":[255,174,111,255],"225":[255,175,111,255],"226":[255,176,112,255],"227":[255,177,112,255],"228":[255,178,113,255],"229":[255,178,113,255],"230":[255,179,114,255],"231":[255,180,114,255],"232":[255,181,115,255],"233":[255,182,115,255],"234":[255,182,116,255],"235":[255,183,116,255],"236":[255,184,117,255],"237":[255,185,117,255],"238":[255,185,118,255],"239":[255,186,118,255],"240":[255,187,119,255],"241":[255,188,119,255],"242":[255,189,120,255],"243":[255,189,120,255],"244":[255,190,121,255],"245":[255,191,121,255],"246":[255,192,122,255],"247":[255,192,122,255],"248":[255,193,123,255],"249":[255,194,123,255],"250":[255,195,124,255],"251":[255,196,124,255],"252":[255,196,125,255],"253":[255,197,125,255],"254":[255,198,126,255],"255":[255,199,126,255]}, + cubehelix: {"0":[0,0,0,255],"1":[1,0,1,255],"2":[3,1,3,255],"3":[4,1,4,255],"4":[6,2,6,255],"5":[8,2,8,255],"6":[9,3,9,255],"7":[10,4,11,255],"8":[12,4,13,255],"9":[13,5,15,255],"10":[14,6,17,255],"11":[15,6,19,255],"12":[17,7,21,255],"13":[18,8,23,255],"14":[19,9,25,255],"15":[20,10,27,255],"16":[20,11,29,255],"17":[21,11,31,255],"18":[22,12,33,255],"19":[23,13,35,255],"20":[23,14,37,255],"21":[24,15,39,255],"22":[24,17,41,255],"23":[25,18,43,255],"24":[25,19,45,255],"25":[25,20,47,255],"26":[26,21,48,255],"27":[26,22,50,255],"28":[26,24,52,255],"29":[26,25,54,255],"30":[26,26,56,255],"31":[26,28,57,255],"32":[26,29,59,255],"33":[26,31,60,255],"34":[26,32,62,255],"35":[26,34,63,255],"36":[26,35,65,255],"37":[25,37,66,255],"38":[25,38,67,255],"39":[25,40,69,255],"40":[25,41,70,255],"41":[24,43,71,255],"42":[24,45,72,255],"43":[24,46,73,255],"44":[23,48,74,255],"45":[23,50,74,255],"46":[23,52,75,255],"47":[23,53,76,255],"48":[22,55,76,255],"49":[22,57,77,255],"50":[22,58,77,255],"51":[21,60,77,255],"52":[21,62,78,255],"53":[21,64,78,255],"54":[21,66,78,255],"55":[21,67,78,255],"56":[21,69,78,255],"57":[20,71,78,255],"58":[20,73,78,255],"59":[20,74,77,255],"60":[21,76,77,255],"61":[21,78,77,255],"62":[21,79,76,255],"63":[21,81,76,255],"64":[21,83,75,255],"65":[22,84,75,255],"66":[22,86,74,255],"67":[22,88,73,255],"68":[23,89,73,255],"69":[23,91,72,255],"70":[24,92,71,255],"71":[25,94,70,255],"72":[26,95,69,255],"73":[27,97,68,255],"74":[27,98,67,255],"75":[28,99,66,255],"76":[30,101,66,255],"77":[31,102,65,255],"78":[32,103,64,255],"79":[33,104,63,255],"80":[35,106,61,255],"81":[36,107,60,255],"82":[38,108,59,255],"83":[39,109,58,255],"84":[41,110,58,255],"85":[43,111,57,255],"86":[45,112,56,255],"87":[47,113,55,255],"88":[49,114,54,255],"89":[51,114,53,255],"90":[53,115,52,255],"91":[55,116,51,255],"92":[57,116,51,255],"93":[60,117,50,255],"94":[62,118,49,255],"95":[65,118,49,255],"96":[67,119,48,255],"97":[70,119,48,255],"98":[72,120,47,255],"99":[75,120,47,255],"100":[78,120,47,255],"101":[81,121,46,255],"102":[83,121,46,255],"103":[86,121,46,255],"104":[89,121,46,255],"105":[92,122,46,255],"106":[95,122,47,255],"107":[98,122,47,255],"108":[101,122,47,255],"109":[104,122,48,255],"110":[107,122,48,255],"111":[110,122,49,255],"112":[113,122,50,255],"113":[116,122,50,255],"114":[120,122,51,255],"115":[123,122,52,255],"116":[126,122,53,255],"117":[129,122,55,255],"118":[132,122,56,255],"119":[135,122,57,255],"120":[138,121,59,255],"121":[141,121,60,255],"122":[144,121,62,255],"123":[147,121,64,255],"124":[150,121,65,255],"125":[153,121,67,255],"126":[155,121,69,255],"127":[158,121,71,255],"128":[161,121,74,255],"129":[164,120,76,255],"130":[166,120,78,255],"131":[169,120,81,255],"132":[171,120,83,255],"133":[174,120,86,255],"134":[176,120,88,255],"135":[178,120,91,255],"136":[181,120,94,255],"137":[183,120,96,255],"138":[185,120,99,255],"139":[187,121,102,255],"140":[189,121,105,255],"141":[191,121,108,255],"142":[193,121,111,255],"143":[194,121,114,255],"144":[196,122,117,255],"145":[198,122,120,255],"146":[199,122,124,255],"147":[201,123,127,255],"148":[202,123,130,255],"149":[203,124,133,255],"150":[204,124,136,255],"151":[205,125,140,255],"152":[206,125,143,255],"153":[207,126,146,255],"154":[208,127,149,255],"155":[209,127,153,255],"156":[209,128,156,255],"157":[210,129,159,255],"158":[211,130,162,255],"159":[211,131,165,255],"160":[211,131,169,255],"161":[212,132,172,255],"162":[212,133,175,255],"163":[212,135,178,255],"164":[212,136,181,255],"165":[212,137,184,255],"166":[212,138,186,255],"167":[212,139,189,255],"168":[212,140,192,255],"169":[211,142,195,255],"170":[211,143,197,255],"171":[211,144,200,255],"172":[210,146,203,255],"173":[210,147,205,255],"174":[210,149,207,255],"175":[209,150,210,255],"176":[208,152,212,255],"177":[208,154,214,255],"178":[207,155,216,255],"179":[207,157,218,255],"180":[206,158,220,255],"181":[205,160,222,255],"182":[205,162,224,255],"183":[204,164,226,255],"184":[203,165,227,255],"185":[203,167,229,255],"186":[202,169,230,255],"187":[201,171,231,255],"188":[201,172,233,255],"189":[200,174,234,255],"190":[199,176,235,255],"191":[199,178,236,255],"192":[198,180,237,255],"193":[197,182,238,255],"194":[197,183,239,255],"195":[196,185,239,255],"196":[196,187,240,255],"197":[195,189,241,255],"198":[195,191,241,255],"199":[194,193,242,255],"200":[194,194,242,255],"201":[194,196,242,255],"202":[193,198,243,255],"203":[193,200,243,255],"204":[193,202,243,255],"205":[193,203,243,255],"206":[193,205,243,255],"207":[193,207,243,255],"208":[193,208,243,255],"209":[193,210,243,255],"210":[193,212,243,255],"211":[193,213,243,255],"212":[194,215,242,255],"213":[194,216,242,255],"214":[195,218,242,255],"215":[195,219,242,255],"216":[196,221,241,255],"217":[196,222,241,255],"218":[197,224,241,255],"219":[198,225,241,255],"220":[199,226,240,255],"221":[200,228,240,255],"222":[200,229,240,255],"223":[202,230,239,255],"224":[203,231,239,255],"225":[204,232,239,255],"226":[205,233,239,255],"227":[206,235,239,255],"228":[208,236,238,255],"229":[209,237,238,255],"230":[210,238,238,255],"231":[212,239,238,255],"232":[213,240,238,255],"233":[215,240,238,255],"234":[217,241,238,255],"235":[218,242,238,255],"236":[220,243,239,255],"237":[222,244,239,255],"238":[223,244,239,255],"239":[225,245,240,255],"240":[227,246,240,255],"241":[229,247,240,255],"242":[231,247,241,255],"243":[232,248,242,255],"244":[234,248,242,255],"245":[236,249,243,255],"246":[238,250,244,255],"247":[240,250,245,255],"248":[242,251,246,255],"249":[244,251,247,255],"250":[245,252,248,255],"251":[247,252,249,255],"252":[249,253,250,255],"253":[251,253,252,255],"254":[253,254,253,255],"255":[255,255,255,255]}, + gnbu: {"0":[247,252,240,255],"1":[246,251,239,255],"2":[245,251,238,255],"3":[244,251,238,255],"4":[244,250,237,255],"5":[243,250,236,255],"6":[242,250,236,255],"7":[241,250,235,255],"8":[241,249,234,255],"9":[240,249,234,255],"10":[239,249,233,255],"11":[239,248,232,255],"12":[238,248,232,255],"13":[237,248,231,255],"14":[236,248,230,255],"15":[236,247,230,255],"16":[235,247,229,255],"17":[234,247,228,255],"18":[234,246,228,255],"19":[233,246,227,255],"20":[232,246,226,255],"21":[231,246,226,255],"22":[231,245,225,255],"23":[230,245,224,255],"24":[229,245,224,255],"25":[228,244,223,255],"26":[228,244,222,255],"27":[227,244,222,255],"28":[226,244,221,255],"29":[226,243,220,255],"30":[225,243,220,255],"31":[224,243,219,255],"32":[223,242,218,255],"33":[223,242,218,255],"34":[222,242,217,255],"35":[222,242,216,255],"36":[221,241,216,255],"37":[220,241,215,255],"38":[220,241,214,255],"39":[219,241,214,255],"40":[218,240,213,255],"41":[218,240,212,255],"42":[217,240,212,255],"43":[217,240,211,255],"44":[216,239,210,255],"45":[215,239,209,255],"46":[215,239,209,255],"47":[214,239,208,255],"48":[213,238,207,255],"49":[213,238,207,255],"50":[212,238,206,255],"51":[212,238,205,255],"52":[211,237,205,255],"53":[210,237,204,255],"54":[210,237,203,255],"55":[209,237,203,255],"56":[208,236,202,255],"57":[208,236,201,255],"58":[207,236,200,255],"59":[206,236,200,255],"60":[206,235,199,255],"61":[205,235,198,255],"62":[205,235,198,255],"63":[204,235,197,255],"64":[203,234,196,255],"65":[202,234,196,255],"66":[201,234,195,255],"67":[200,233,195,255],"68":[199,233,194,255],"69":[198,232,194,255],"70":[196,232,193,255],"71":[195,231,193,255],"72":[194,231,192,255],"73":[193,230,192,255],"74":[192,230,191,255],"75":[191,230,191,255],"76":[190,229,190,255],"77":[189,229,190,255],"78":[187,228,189,255],"79":[186,228,189,255],"80":[185,227,188,255],"81":[184,227,188,255],"82":[183,226,187,255],"83":[182,226,187,255],"84":[181,226,186,255],"85":[180,225,186,255],"86":[178,225,185,255],"87":[177,224,185,255],"88":[176,224,184,255],"89":[175,223,184,255],"90":[174,223,183,255],"91":[173,223,183,255],"92":[172,222,182,255],"93":[170,222,182,255],"94":[169,221,181,255],"95":[168,221,181,255],"96":[167,220,181,255],"97":[166,220,181,255],"98":[164,219,182,255],"99":[163,219,182,255],"100":[161,218,183,255],"101":[160,218,183,255],"102":[159,217,184,255],"103":[157,217,184,255],"104":[156,216,184,255],"105":[154,216,185,255],"106":[153,215,185,255],"107":[151,214,186,255],"108":[150,214,186,255],"109":[149,213,187,255],"110":[147,213,187,255],"111":[146,212,188,255],"112":[144,212,188,255],"113":[143,211,189,255],"114":[142,211,189,255],"115":[140,210,190,255],"116":[139,210,190,255],"117":[137,209,191,255],"118":[136,209,191,255],"119":[135,208,192,255],"120":[133,208,192,255],"121":[132,207,192,255],"122":[130,206,193,255],"123":[129,206,193,255],"124":[127,205,194,255],"125":[126,205,194,255],"126":[125,204,195,255],"127":[123,204,195,255],"128":[122,203,196,255],"129":[120,202,196,255],"130":[119,202,197,255],"131":[118,201,197,255],"132":[116,200,198,255],"133":[115,199,198,255],"134":[113,198,199,255],"135":[112,198,199,255],"136":[111,197,200,255],"137":[109,196,200,255],"138":[108,195,200,255],"139":[106,194,201,255],"140":[105,194,201,255],"141":[103,193,202,255],"142":[102,192,202,255],"143":[101,191,203,255],"144":[99,191,203,255],"145":[98,190,204,255],"146":[96,189,204,255],"147":[95,188,205,255],"148":[94,187,205,255],"149":[92,187,206,255],"150":[91,186,206,255],"151":[89,185,207,255],"152":[88,184,207,255],"153":[87,184,208,255],"154":[85,183,208,255],"155":[84,182,208,255],"156":[82,181,209,255],"157":[81,180,209,255],"158":[79,180,210,255],"159":[78,179,210,255],"160":[77,178,210,255],"161":[76,177,209,255],"162":[75,175,209,255],"163":[74,174,208,255],"164":[72,173,207,255],"165":[71,172,207,255],"166":[70,170,206,255],"167":[69,169,205,255],"168":[68,168,205,255],"169":[67,167,204,255],"170":[66,166,203,255],"171":[65,164,203,255],"172":[64,163,202,255],"173":[63,162,202,255],"174":[61,161,201,255],"175":[60,159,200,255],"176":[59,158,200,255],"177":[58,157,199,255],"178":[57,156,198,255],"179":[56,154,198,255],"180":[55,153,197,255],"181":[54,152,196,255],"182":[53,151,196,255],"183":[52,150,195,255],"184":[50,148,194,255],"185":[49,147,194,255],"186":[48,146,193,255],"187":[47,145,192,255],"188":[46,143,192,255],"189":[45,142,191,255],"190":[44,141,190,255],"191":[43,140,190,255],"192":[42,139,189,255],"193":[41,138,189,255],"194":[39,136,188,255],"195":[38,135,187,255],"196":[37,134,187,255],"197":[36,133,186,255],"198":[35,132,186,255],"199":[34,131,185,255],"200":[33,130,185,255],"201":[32,128,184,255],"202":[31,127,183,255],"203":[30,126,183,255],"204":[29,125,182,255],"205":[27,124,182,255],"206":[26,123,181,255],"207":[25,122,181,255],"208":[24,121,180,255],"209":[23,119,179,255],"210":[22,118,179,255],"211":[21,117,178,255],"212":[20,116,178,255],"213":[19,115,177,255],"214":[18,114,177,255],"215":[16,113,176,255],"216":[15,112,176,255],"217":[14,110,175,255],"218":[13,109,174,255],"219":[12,108,174,255],"220":[11,107,173,255],"221":[10,106,173,255],"222":[9,105,172,255],"223":[8,104,172,255],"224":[8,102,170,255],"225":[8,101,169,255],"226":[8,100,168,255],"227":[8,99,166,255],"228":[8,97,165,255],"229":[8,96,164,255],"230":[8,95,162,255],"231":[8,94,161,255],"232":[8,92,160,255],"233":[8,91,158,255],"234":[8,90,157,255],"235":[8,89,155,255],"236":[8,87,154,255],"237":[8,86,153,255],"238":[8,85,151,255],"239":[8,84,150,255],"240":[8,82,149,255],"241":[8,81,147,255],"242":[8,80,146,255],"243":[8,79,145,255],"244":[8,77,143,255],"245":[8,76,142,255],"246":[8,75,141,255],"247":[8,74,139,255],"248":[8,72,138,255],"249":[8,71,137,255],"250":[8,70,135,255],"251":[8,69,134,255],"252":[8,67,133,255],"253":[8,66,131,255],"254":[8,65,130,255],"255":[8,64,129,255]}, + gray: {"0":[0,0,0,255],"1":[1,1,1,255],"2":[2,2,2,255],"3":[3,3,3,255],"4":[4,4,4,255],"5":[5,5,5,255],"6":[6,6,6,255],"7":[7,7,7,255],"8":[8,8,8,255],"9":[9,9,9,255],"10":[10,10,10,255],"11":[11,11,11,255],"12":[12,12,12,255],"13":[13,13,13,255],"14":[14,14,14,255],"15":[15,15,15,255],"16":[16,16,16,255],"17":[17,17,17,255],"18":[18,18,18,255],"19":[19,19,19,255],"20":[20,20,20,255],"21":[21,21,21,255],"22":[22,22,22,255],"23":[23,23,23,255],"24":[24,24,24,255],"25":[25,25,25,255],"26":[26,26,26,255],"27":[27,27,27,255],"28":[28,28,28,255],"29":[29,29,29,255],"30":[30,30,30,255],"31":[31,31,31,255],"32":[32,32,32,255],"33":[32,32,32,255],"34":[34,34,34,255],"35":[35,35,35,255],"36":[36,36,36,255],"37":[36,36,36,255],"38":[38,38,38,255],"39":[39,39,39,255],"40":[40,40,40,255],"41":[40,40,40,255],"42":[42,42,42,255],"43":[43,43,43,255],"44":[44,44,44,255],"45":[44,44,44,255],"46":[46,46,46,255],"47":[47,47,47,255],"48":[48,48,48,255],"49":[48,48,48,255],"50":[50,50,50,255],"51":[51,51,51,255],"52":[52,52,52,255],"53":[52,52,52,255],"54":[54,54,54,255],"55":[55,55,55,255],"56":[56,56,56,255],"57":[56,56,56,255],"58":[58,58,58,255],"59":[59,59,59,255],"60":[60,60,60,255],"61":[60,60,60,255],"62":[62,62,62,255],"63":[63,63,63,255],"64":[64,64,64,255],"65":[65,65,65,255],"66":[65,65,65,255],"67":[67,67,67,255],"68":[68,68,68,255],"69":[69,69,69,255],"70":[70,70,70,255],"71":[71,71,71,255],"72":[72,72,72,255],"73":[73,73,73,255],"74":[73,73,73,255],"75":[75,75,75,255],"76":[76,76,76,255],"77":[77,77,77,255],"78":[78,78,78,255],"79":[79,79,79,255],"80":[80,80,80,255],"81":[81,81,81,255],"82":[81,81,81,255],"83":[83,83,83,255],"84":[84,84,84,255],"85":[85,85,85,255],"86":[86,86,86,255],"87":[87,87,87,255],"88":[88,88,88,255],"89":[89,89,89,255],"90":[89,89,89,255],"91":[91,91,91,255],"92":[92,92,92,255],"93":[93,93,93,255],"94":[94,94,94,255],"95":[95,95,95,255],"96":[96,96,96,255],"97":[97,97,97,255],"98":[97,97,97,255],"99":[99,99,99,255],"100":[100,100,100,255],"101":[101,101,101,255],"102":[102,102,102,255],"103":[103,103,103,255],"104":[104,104,104,255],"105":[105,105,105,255],"106":[105,105,105,255],"107":[107,107,107,255],"108":[108,108,108,255],"109":[109,109,109,255],"110":[110,110,110,255],"111":[111,111,111,255],"112":[112,112,112,255],"113":[113,113,113,255],"114":[113,113,113,255],"115":[115,115,115,255],"116":[116,116,116,255],"117":[117,117,117,255],"118":[118,118,118,255],"119":[119,119,119,255],"120":[120,120,120,255],"121":[121,121,121,255],"122":[121,121,121,255],"123":[123,123,123,255],"124":[124,124,124,255],"125":[125,125,125,255],"126":[126,126,126,255],"127":[127,127,127,255],"128":[128,128,128,255],"129":[129,129,129,255],"130":[130,130,130,255],"131":[131,131,131,255],"132":[131,131,131,255],"133":[133,133,133,255],"134":[134,134,134,255],"135":[135,135,135,255],"136":[136,136,136,255],"137":[137,137,137,255],"138":[138,138,138,255],"139":[139,139,139,255],"140":[140,140,140,255],"141":[141,141,141,255],"142":[142,142,142,255],"143":[143,143,143,255],"144":[144,144,144,255],"145":[145,145,145,255],"146":[146,146,146,255],"147":[147,147,147,255],"148":[147,147,147,255],"149":[149,149,149,255],"150":[150,150,150,255],"151":[151,151,151,255],"152":[152,152,152,255],"153":[153,153,153,255],"154":[154,154,154,255],"155":[155,155,155,255],"156":[156,156,156,255],"157":[157,157,157,255],"158":[158,158,158,255],"159":[159,159,159,255],"160":[160,160,160,255],"161":[161,161,161,255],"162":[162,162,162,255],"163":[163,163,163,255],"164":[163,163,163,255],"165":[165,165,165,255],"166":[166,166,166,255],"167":[167,167,167,255],"168":[168,168,168,255],"169":[169,169,169,255],"170":[170,170,170,255],"171":[171,171,171,255],"172":[172,172,172,255],"173":[173,173,173,255],"174":[174,174,174,255],"175":[175,175,175,255],"176":[176,176,176,255],"177":[177,177,177,255],"178":[178,178,178,255],"179":[179,179,179,255],"180":[179,179,179,255],"181":[181,181,181,255],"182":[182,182,182,255],"183":[183,183,183,255],"184":[184,184,184,255],"185":[185,185,185,255],"186":[186,186,186,255],"187":[187,187,187,255],"188":[188,188,188,255],"189":[189,189,189,255],"190":[190,190,190,255],"191":[191,191,191,255],"192":[192,192,192,255],"193":[193,193,193,255],"194":[194,194,194,255],"195":[195,195,195,255],"196":[195,195,195,255],"197":[197,197,197,255],"198":[198,198,198,255],"199":[199,199,199,255],"200":[200,200,200,255],"201":[201,201,201,255],"202":[202,202,202,255],"203":[203,203,203,255],"204":[204,204,204,255],"205":[205,205,205,255],"206":[206,206,206,255],"207":[207,207,207,255],"208":[208,208,208,255],"209":[209,209,209,255],"210":[210,210,210,255],"211":[211,211,211,255],"212":[211,211,211,255],"213":[213,213,213,255],"214":[214,214,214,255],"215":[215,215,215,255],"216":[216,216,216,255],"217":[217,217,217,255],"218":[218,218,218,255],"219":[219,219,219,255],"220":[220,220,220,255],"221":[221,221,221,255],"222":[222,222,222,255],"223":[223,223,223,255],"224":[224,224,224,255],"225":[225,225,225,255],"226":[226,226,226,255],"227":[227,227,227,255],"228":[227,227,227,255],"229":[229,229,229,255],"230":[230,230,230,255],"231":[231,231,231,255],"232":[232,232,232,255],"233":[233,233,233,255],"234":[234,234,234,255],"235":[235,235,235,255],"236":[236,236,236,255],"237":[237,237,237,255],"238":[238,238,238,255],"239":[239,239,239,255],"240":[240,240,240,255],"241":[241,241,241,255],"242":[242,242,242,255],"243":[243,243,243,255],"244":[243,243,243,255],"245":[245,245,245,255],"246":[246,246,246,255],"247":[247,247,247,255],"248":[248,248,248,255],"249":[249,249,249,255],"250":[250,250,250,255],"251":[251,251,251,255],"252":[252,252,252,255],"253":[253,253,253,255],"254":[254,254,254,255],"255":[255,255,255,255]}, + greens: {"0":[247,252,245,255],"1":[246,251,244,255],"2":[245,251,243,255],"3":[245,251,243,255],"4":[244,251,242,255],"5":[244,250,241,255],"6":[243,250,241,255],"7":[243,250,240,255],"8":[242,250,239,255],"9":[241,250,239,255],"10":[241,249,238,255],"11":[240,249,237,255],"12":[240,249,237,255],"13":[239,249,236,255],"14":[239,248,235,255],"15":[238,248,235,255],"16":[237,248,234,255],"17":[237,248,233,255],"18":[236,248,233,255],"19":[236,247,232,255],"20":[235,247,231,255],"21":[235,247,231,255],"22":[234,247,230,255],"23":[234,246,229,255],"24":[233,246,229,255],"25":[232,246,228,255],"26":[232,246,227,255],"27":[231,246,227,255],"28":[231,245,226,255],"29":[230,245,225,255],"30":[230,245,225,255],"31":[229,245,224,255],"32":[228,244,223,255],"33":[227,244,222,255],"34":[227,244,221,255],"35":[226,243,220,255],"36":[225,243,219,255],"37":[224,243,218,255],"38":[223,242,217,255],"39":[222,242,216,255],"40":[221,241,215,255],"41":[220,241,214,255],"42":[219,241,213,255],"43":[218,240,212,255],"44":[217,240,211,255],"45":[216,240,210,255],"46":[215,239,209,255],"47":[214,239,208,255],"48":[213,238,207,255],"49":[212,238,206,255],"50":[211,238,205,255],"51":[211,237,204,255],"52":[210,237,203,255],"53":[209,237,202,255],"54":[208,236,201,255],"55":[207,236,200,255],"56":[206,235,199,255],"57":[205,235,198,255],"58":[204,235,197,255],"59":[203,234,196,255],"60":[202,234,195,255],"61":[201,234,194,255],"62":[200,233,193,255],"63":[199,233,192,255],"64":[198,232,191,255],"65":[197,232,190,255],"66":[196,231,189,255],"67":[195,231,188,255],"68":[193,230,187,255],"69":[192,230,185,255],"70":[191,229,184,255],"71":[190,229,183,255],"72":[189,228,182,255],"73":[187,228,181,255],"74":[186,227,180,255],"75":[185,227,178,255],"76":[184,226,177,255],"77":[183,226,176,255],"78":[182,225,175,255],"79":[180,225,174,255],"80":[179,224,173,255],"81":[178,224,171,255],"82":[177,223,170,255],"83":[176,223,169,255],"84":[174,222,168,255],"85":[173,222,167,255],"86":[172,221,166,255],"87":[171,221,165,255],"88":[170,220,163,255],"89":[168,220,162,255],"90":[167,219,161,255],"91":[166,219,160,255],"92":[165,218,159,255],"93":[164,218,158,255],"94":[162,217,156,255],"95":[161,217,155,255],"96":[160,216,154,255],"97":[159,216,153,255],"98":[157,215,152,255],"99":[156,214,151,255],"100":[154,214,149,255],"101":[153,213,148,255],"102":[152,212,147,255],"103":[150,212,146,255],"104":[149,211,145,255],"105":[147,210,144,255],"106":[146,210,142,255],"107":[144,209,141,255],"108":[143,208,140,255],"109":[142,208,139,255],"110":[140,207,138,255],"111":[139,206,137,255],"112":[137,206,135,255],"113":[136,205,134,255],"114":[135,204,133,255],"115":[133,204,132,255],"116":[132,203,131,255],"117":[130,202,130,255],"118":[129,202,129,255],"119":[128,201,127,255],"120":[126,200,126,255],"121":[125,200,125,255],"122":[123,199,124,255],"123":[122,198,123,255],"124":[120,198,122,255],"125":[119,197,120,255],"126":[118,196,119,255],"127":[116,196,118,255],"128":[115,195,117,255],"129":[113,194,116,255],"130":[112,194,116,255],"131":[110,193,115,255],"132":[108,192,114,255],"133":[107,191,113,255],"134":[105,190,112,255],"135":[104,190,112,255],"136":[102,189,111,255],"137":[100,188,110,255],"138":[99,187,109,255],"139":[97,186,108,255],"140":[96,186,108,255],"141":[94,185,107,255],"142":[92,184,106,255],"143":[91,183,105,255],"144":[89,183,105,255],"145":[88,182,104,255],"146":[86,181,103,255],"147":[84,180,102,255],"148":[83,179,101,255],"149":[81,179,101,255],"150":[80,178,100,255],"151":[78,177,99,255],"152":[76,176,98,255],"153":[75,176,97,255],"154":[73,175,97,255],"155":[72,174,96,255],"156":[70,173,95,255],"157":[68,172,94,255],"158":[67,172,94,255],"159":[65,171,93,255],"160":[64,170,92,255],"161":[63,169,91,255],"162":[62,168,91,255],"163":[61,167,90,255],"164":[60,166,89,255],"165":[59,165,88,255],"166":[58,164,88,255],"167":[57,163,87,255],"168":[56,162,86,255],"169":[55,161,85,255],"170":[55,160,85,255],"171":[54,159,84,255],"172":[53,158,83,255],"173":[52,157,82,255],"174":[51,156,81,255],"175":[50,155,81,255],"176":[49,154,80,255],"177":[48,153,79,255],"178":[47,152,78,255],"179":[46,151,78,255],"180":[45,150,77,255],"181":[44,149,76,255],"182":[43,148,75,255],"183":[42,147,75,255],"184":[41,146,74,255],"185":[40,145,73,255],"186":[39,144,72,255],"187":[39,143,72,255],"188":[38,142,71,255],"189":[37,141,70,255],"190":[36,140,69,255],"191":[35,139,69,255],"192":[34,138,68,255],"193":[33,137,67,255],"194":[31,136,66,255],"195":[30,135,66,255],"196":[29,134,65,255],"197":[28,133,64,255],"198":[27,132,63,255],"199":[26,131,62,255],"200":[25,130,62,255],"201":[24,129,61,255],"202":[23,128,60,255],"203":[22,127,59,255],"204":[21,126,58,255],"205":[19,126,58,255],"206":[18,125,57,255],"207":[17,124,56,255],"208":[16,123,55,255],"209":[15,122,55,255],"210":[14,121,54,255],"211":[13,120,53,255],"212":[12,119,52,255],"213":[11,118,51,255],"214":[10,117,51,255],"215":[8,116,50,255],"216":[7,115,49,255],"217":[6,114,48,255],"218":[5,113,48,255],"219":[4,112,47,255],"220":[3,111,46,255],"221":[2,111,45,255],"222":[1,110,44,255],"223":[0,109,44,255],"224":[0,107,43,255],"225":[0,106,43,255],"226":[0,105,42,255],"227":[0,104,41,255],"228":[0,102,41,255],"229":[0,101,40,255],"230":[0,100,40,255],"231":[0,98,39,255],"232":[0,97,39,255],"233":[0,96,38,255],"234":[0,95,38,255],"235":[0,93,37,255],"236":[0,92,37,255],"237":[0,91,36,255],"238":[0,89,36,255],"239":[0,88,35,255],"240":[0,87,35,255],"241":[0,86,34,255],"242":[0,84,33,255],"243":[0,83,33,255],"244":[0,82,32,255],"245":[0,80,32,255],"246":[0,79,31,255],"247":[0,78,31,255],"248":[0,77,30,255],"249":[0,75,30,255],"250":[0,74,29,255],"251":[0,73,29,255],"252":[0,71,28,255],"253":[0,70,28,255],"254":[0,69,27,255],"255":[0,68,27,255]}, + greys: {"0":[255,255,255,255],"1":[254,254,254,255],"2":[254,254,254,255],"3":[253,253,253,255],"4":[253,253,253,255],"5":[252,252,252,255],"6":[252,252,252,255],"7":[251,251,251,255],"8":[251,251,251,255],"9":[250,250,250,255],"10":[250,250,250,255],"11":[249,249,249,255],"12":[249,249,249,255],"13":[248,248,248,255],"14":[248,248,248,255],"15":[247,247,247,255],"16":[247,247,247,255],"17":[247,247,247,255],"18":[246,246,246,255],"19":[246,246,246,255],"20":[245,245,245,255],"21":[245,245,245,255],"22":[244,244,244,255],"23":[244,244,244,255],"24":[243,243,243,255],"25":[243,243,243,255],"26":[242,242,242,255],"27":[242,242,242,255],"28":[241,241,241,255],"29":[241,241,241,255],"30":[240,240,240,255],"31":[240,240,240,255],"32":[239,239,239,255],"33":[239,239,239,255],"34":[238,238,238,255],"35":[237,237,237,255],"36":[237,237,237,255],"37":[236,236,236,255],"38":[235,235,235,255],"39":[234,234,234,255],"40":[234,234,234,255],"41":[233,233,233,255],"42":[232,232,232,255],"43":[231,231,231,255],"44":[231,231,231,255],"45":[230,230,230,255],"46":[229,229,229,255],"47":[229,229,229,255],"48":[228,228,228,255],"49":[227,227,227,255],"50":[226,226,226,255],"51":[226,226,226,255],"52":[225,225,225,255],"53":[224,224,224,255],"54":[224,224,224,255],"55":[223,223,223,255],"56":[222,222,222,255],"57":[221,221,221,255],"58":[221,221,221,255],"59":[220,220,220,255],"60":[219,219,219,255],"61":[218,218,218,255],"62":[218,218,218,255],"63":[217,217,217,255],"64":[216,216,216,255],"65":[215,215,215,255],"66":[215,215,215,255],"67":[214,214,214,255],"68":[213,213,213,255],"69":[212,212,212,255],"70":[211,211,211,255],"71":[210,210,210,255],"72":[209,209,209,255],"73":[208,208,208,255],"74":[207,207,207,255],"75":[207,207,207,255],"76":[206,206,206,255],"77":[205,205,205,255],"78":[204,204,204,255],"79":[203,203,203,255],"80":[202,202,202,255],"81":[201,201,201,255],"82":[200,200,200,255],"83":[200,200,200,255],"84":[199,199,199,255],"85":[198,198,198,255],"86":[197,197,197,255],"87":[196,196,196,255],"88":[195,195,195,255],"89":[194,194,194,255],"90":[193,193,193,255],"91":[193,193,193,255],"92":[192,192,192,255],"93":[191,191,191,255],"94":[190,190,190,255],"95":[189,189,189,255],"96":[188,188,188,255],"97":[187,187,187,255],"98":[186,186,186,255],"99":[184,184,184,255],"100":[183,183,183,255],"101":[182,182,182,255],"102":[181,181,181,255],"103":[179,179,179,255],"104":[178,178,178,255],"105":[177,177,177,255],"106":[176,176,176,255],"107":[175,175,175,255],"108":[173,173,173,255],"109":[172,172,172,255],"110":[171,171,171,255],"111":[170,170,170,255],"112":[168,168,168,255],"113":[167,167,167,255],"114":[166,166,166,255],"115":[165,165,165,255],"116":[164,164,164,255],"117":[162,162,162,255],"118":[161,161,161,255],"119":[160,160,160,255],"120":[159,159,159,255],"121":[157,157,157,255],"122":[156,156,156,255],"123":[155,155,155,255],"124":[154,154,154,255],"125":[153,153,153,255],"126":[151,151,151,255],"127":[150,150,150,255],"128":[149,149,149,255],"129":[148,148,148,255],"130":[147,147,147,255],"131":[146,146,146,255],"132":[145,145,145,255],"133":[143,143,143,255],"134":[142,142,142,255],"135":[141,141,141,255],"136":[140,140,140,255],"137":[139,139,139,255],"138":[138,138,138,255],"139":[137,137,137,255],"140":[136,136,136,255],"141":[135,135,135,255],"142":[134,134,134,255],"143":[132,132,132,255],"144":[131,131,131,255],"145":[130,130,130,255],"146":[129,129,129,255],"147":[128,128,128,255],"148":[127,127,127,255],"149":[126,126,126,255],"150":[125,125,125,255],"151":[124,124,124,255],"152":[123,123,123,255],"153":[122,122,122,255],"154":[120,120,120,255],"155":[119,119,119,255],"156":[118,118,118,255],"157":[117,117,117,255],"158":[116,116,116,255],"159":[115,115,115,255],"160":[114,114,114,255],"161":[113,113,113,255],"162":[112,112,112,255],"163":[111,111,111,255],"164":[110,110,110,255],"165":[109,109,109,255],"166":[108,108,108,255],"167":[107,107,107,255],"168":[106,106,106,255],"169":[105,105,105,255],"170":[104,104,104,255],"171":[102,102,102,255],"172":[101,101,101,255],"173":[100,100,100,255],"174":[99,99,99,255],"175":[98,98,98,255],"176":[97,97,97,255],"177":[96,96,96,255],"178":[95,95,95,255],"179":[94,94,94,255],"180":[93,93,93,255],"181":[92,92,92,255],"182":[91,91,91,255],"183":[90,90,90,255],"184":[89,89,89,255],"185":[88,88,88,255],"186":[87,87,87,255],"187":[86,86,86,255],"188":[85,85,85,255],"189":[84,84,84,255],"190":[83,83,83,255],"191":[82,82,82,255],"192":[80,80,80,255],"193":[79,79,79,255],"194":[78,78,78,255],"195":[76,76,76,255],"196":[75,75,75,255],"197":[73,73,73,255],"198":[72,72,72,255],"199":[71,71,71,255],"200":[69,69,69,255],"201":[68,68,68,255],"202":[66,66,66,255],"203":[65,65,65,255],"204":[64,64,64,255],"205":[62,62,62,255],"206":[61,61,61,255],"207":[59,59,59,255],"208":[58,58,58,255],"209":[56,56,56,255],"210":[55,55,55,255],"211":[54,54,54,255],"212":[52,52,52,255],"213":[51,51,51,255],"214":[49,49,49,255],"215":[48,48,48,255],"216":[47,47,47,255],"217":[45,45,45,255],"218":[44,44,44,255],"219":[42,42,42,255],"220":[41,41,41,255],"221":[40,40,40,255],"222":[38,38,38,255],"223":[37,37,37,255],"224":[35,35,35,255],"225":[34,34,34,255],"226":[33,33,33,255],"227":[32,32,32,255],"228":[31,31,31,255],"229":[30,30,30,255],"230":[29,29,29,255],"231":[27,27,27,255],"232":[26,26,26,255],"233":[25,25,25,255],"234":[24,24,24,255],"235":[23,23,23,255],"236":[22,22,22,255],"237":[20,20,20,255],"238":[19,19,19,255],"239":[18,18,18,255],"240":[17,17,17,255],"241":[16,16,16,255],"242":[15,15,15,255],"243":[13,13,13,255],"244":[12,12,12,255],"245":[11,11,11,255],"246":[10,10,10,255],"247":[9,9,9,255],"248":[8,8,8,255],"249":[6,6,6,255],"250":[5,5,5,255],"251":[4,4,4,255],"252":[3,3,3,255],"253":[2,2,2,255],"254":[1,1,1,255],"255":[0,0,0,255]}, + haline: {"0":[41,24,107,255],"1":[42,24,110,255],"2":[42,24,112,255],"3":[42,25,114,255],"4":[43,25,117,255],"5":[43,25,119,255],"6":[44,25,122,255],"7":[44,26,124,255],"8":[44,26,127,255],"9":[45,26,129,255],"10":[45,26,132,255],"11":[45,27,134,255],"12":[45,27,137,255],"13":[46,27,139,255],"14":[46,28,142,255],"15":[46,28,144,255],"16":[46,29,147,255],"17":[46,29,149,255],"18":[45,30,151,255],"19":[45,31,153,255],"20":[45,32,155,255],"21":[44,33,157,255],"22":[43,34,159,255],"23":[42,35,160,255],"24":[41,37,161,255],"25":[40,39,162,255],"26":[39,40,162,255],"27":[38,42,162,255],"28":[37,44,162,255],"29":[35,46,162,255],"30":[34,48,162,255],"31":[33,49,162,255],"32":[31,51,161,255],"33":[30,53,161,255],"34":[29,55,160,255],"35":[27,56,160,255],"36":[26,58,159,255],"37":[25,59,159,255],"38":[24,61,158,255],"39":[22,62,157,255],"40":[21,64,157,255],"41":[20,65,156,255],"42":[19,66,155,255],"43":[18,68,155,255],"44":[17,69,154,255],"45":[16,70,153,255],"46":[15,71,153,255],"47":[15,73,152,255],"48":[14,74,152,255],"49":[13,75,151,255],"50":[13,76,150,255],"51":[12,77,150,255],"52":[12,78,149,255],"53":[12,79,149,255],"54":[12,81,148,255],"55":[12,82,148,255],"56":[12,83,147,255],"57":[12,84,147,255],"58":[12,85,146,255],"59":[12,86,146,255],"60":[13,87,145,255],"61":[13,88,145,255],"62":[14,89,144,255],"63":[14,90,144,255],"64":[15,91,144,255],"65":[15,92,143,255],"66":[16,93,143,255],"67":[17,93,143,255],"68":[18,94,142,255],"69":[18,95,142,255],"70":[19,96,142,255],"71":[20,97,141,255],"72":[21,98,141,255],"73":[21,99,141,255],"74":[22,100,140,255],"75":[23,101,140,255],"76":[24,102,140,255],"77":[25,103,140,255],"78":[26,103,140,255],"79":[26,104,139,255],"80":[27,105,139,255],"81":[28,106,139,255],"82":[29,107,139,255],"83":[30,108,139,255],"84":[31,109,138,255],"85":[31,109,138,255],"86":[32,110,138,255],"87":[33,111,138,255],"88":[34,112,138,255],"89":[35,113,138,255],"90":[35,114,137,255],"91":[36,115,137,255],"92":[37,115,137,255],"93":[38,116,137,255],"94":[39,117,137,255],"95":[39,118,137,255],"96":[40,119,137,255],"97":[41,120,137,255],"98":[42,121,137,255],"99":[42,121,137,255],"100":[43,122,137,255],"101":[44,123,136,255],"102":[44,124,136,255],"103":[45,125,136,255],"104":[46,126,136,255],"105":[46,127,136,255],"106":[47,127,136,255],"107":[48,128,136,255],"108":[48,129,136,255],"109":[49,130,136,255],"110":[49,131,136,255],"111":[50,132,136,255],"112":[51,133,136,255],"113":[51,133,136,255],"114":[52,134,136,255],"115":[52,135,136,255],"116":[53,136,136,255],"117":[54,137,136,255],"118":[54,138,135,255],"119":[55,139,135,255],"120":[55,140,135,255],"121":[56,140,135,255],"122":[56,141,135,255],"123":[57,142,135,255],"124":[57,143,135,255],"125":[58,144,135,255],"126":[58,145,135,255],"127":[59,146,135,255],"128":[59,147,135,255],"129":[60,148,134,255],"130":[60,148,134,255],"131":[61,149,134,255],"132":[61,150,134,255],"133":[62,151,134,255],"134":[62,152,134,255],"135":[63,153,133,255],"136":[64,154,133,255],"137":[64,155,133,255],"138":[65,156,133,255],"139":[65,157,133,255],"140":[66,158,132,255],"141":[66,158,132,255],"142":[67,159,132,255],"143":[67,160,132,255],"144":[68,161,131,255],"145":[69,162,131,255],"146":[69,163,131,255],"147":[70,164,131,255],"148":[70,165,130,255],"149":[71,166,130,255],"150":[72,167,130,255],"151":[72,168,129,255],"152":[73,169,129,255],"153":[74,169,128,255],"154":[74,170,128,255],"155":[75,171,128,255],"156":[76,172,127,255],"157":[77,173,127,255],"158":[78,174,126,255],"159":[78,175,126,255],"160":[79,176,125,255],"161":[80,177,125,255],"162":[81,178,124,255],"163":[82,179,124,255],"164":[83,179,123,255],"165":[84,180,123,255],"166":[85,181,122,255],"167":[86,182,121,255],"168":[87,183,121,255],"169":[88,184,120,255],"170":[89,185,120,255],"171":[90,186,119,255],"172":[91,187,118,255],"173":[92,187,118,255],"174":[94,188,117,255],"175":[95,189,116,255],"176":[96,190,115,255],"177":[98,191,115,255],"178":[99,192,114,255],"179":[100,193,113,255],"180":[102,193,112,255],"181":[103,194,112,255],"182":[105,195,111,255],"183":[106,196,110,255],"184":[108,197,109,255],"185":[109,198,108,255],"186":[111,198,107,255],"187":[113,199,107,255],"188":[114,200,106,255],"189":[116,201,105,255],"190":[118,201,104,255],"191":[120,202,103,255],"192":[122,203,102,255],"193":[124,204,101,255],"194":[126,204,100,255],"195":[128,205,100,255],"196":[130,206,99,255],"197":[132,206,98,255],"198":[134,207,97,255],"199":[136,208,96,255],"200":[138,208,95,255],"201":[141,209,95,255],"202":[143,210,94,255],"203":[145,210,93,255],"204":[148,211,93,255],"205":[150,211,92,255],"206":[152,212,92,255],"207":[155,212,92,255],"208":[157,213,91,255],"209":[160,214,91,255],"210":[162,214,91,255],"211":[165,215,91,255],"212":[167,215,91,255],"213":[170,215,92,255],"214":[172,216,92,255],"215":[175,216,92,255],"216":[177,217,93,255],"217":[179,217,94,255],"218":[182,218,94,255],"219":[184,218,95,255],"220":[186,219,96,255],"221":[189,219,97,255],"222":[191,220,98,255],"223":[193,220,99,255],"224":[195,221,100,255],"225":[197,221,102,255],"226":[199,222,103,255],"227":[202,222,104,255],"228":[204,223,106,255],"229":[206,223,107,255],"230":[208,224,109,255],"231":[210,224,110,255],"232":[212,225,112,255],"233":[214,225,113,255],"234":[216,226,115,255],"235":[217,226,117,255],"236":[219,227,118,255],"237":[221,228,120,255],"238":[223,228,122,255],"239":[225,229,123,255],"240":[227,229,125,255],"241":[229,230,127,255],"242":[230,230,129,255],"243":[232,231,131,255],"244":[234,232,132,255],"245":[236,232,134,255],"246":[238,233,136,255],"247":[239,233,138,255],"248":[241,234,140,255],"249":[243,235,142,255],"250":[245,235,144,255],"251":[246,236,145,255],"252":[248,236,147,255],"253":[250,237,149,255],"254":[251,238,151,255],"255":[253,238,153,255]}, + hot: {"0":[10,0,0,255],"1":[13,0,0,255],"2":[15,0,0,255],"3":[18,0,0,255],"4":[21,0,0,255],"5":[23,0,0,255],"6":[26,0,0,255],"7":[28,0,0,255],"8":[31,0,0,255],"9":[34,0,0,255],"10":[36,0,0,255],"11":[39,0,0,255],"12":[42,0,0,255],"13":[44,0,0,255],"14":[47,0,0,255],"15":[49,0,0,255],"16":[52,0,0,255],"17":[55,0,0,255],"18":[57,0,0,255],"19":[60,0,0,255],"20":[63,0,0,255],"21":[65,0,0,255],"22":[68,0,0,255],"23":[70,0,0,255],"24":[73,0,0,255],"25":[76,0,0,255],"26":[78,0,0,255],"27":[81,0,0,255],"28":[84,0,0,255],"29":[86,0,0,255],"30":[89,0,0,255],"31":[91,0,0,255],"32":[94,0,0,255],"33":[97,0,0,255],"34":[99,0,0,255],"35":[102,0,0,255],"36":[105,0,0,255],"37":[107,0,0,255],"38":[110,0,0,255],"39":[112,0,0,255],"40":[115,0,0,255],"41":[118,0,0,255],"42":[120,0,0,255],"43":[123,0,0,255],"44":[126,0,0,255],"45":[128,0,0,255],"46":[131,0,0,255],"47":[133,0,0,255],"48":[136,0,0,255],"49":[139,0,0,255],"50":[141,0,0,255],"51":[144,0,0,255],"52":[147,0,0,255],"53":[149,0,0,255],"54":[152,0,0,255],"55":[154,0,0,255],"56":[157,0,0,255],"57":[160,0,0,255],"58":[162,0,0,255],"59":[165,0,0,255],"60":[168,0,0,255],"61":[170,0,0,255],"62":[173,0,0,255],"63":[175,0,0,255],"64":[178,0,0,255],"65":[181,0,0,255],"66":[183,0,0,255],"67":[186,0,0,255],"68":[189,0,0,255],"69":[191,0,0,255],"70":[194,0,0,255],"71":[196,0,0,255],"72":[199,0,0,255],"73":[202,0,0,255],"74":[204,0,0,255],"75":[207,0,0,255],"76":[210,0,0,255],"77":[212,0,0,255],"78":[215,0,0,255],"79":[217,0,0,255],"80":[220,0,0,255],"81":[223,0,0,255],"82":[225,0,0,255],"83":[228,0,0,255],"84":[231,0,0,255],"85":[233,0,0,255],"86":[236,0,0,255],"87":[238,0,0,255],"88":[241,0,0,255],"89":[244,0,0,255],"90":[246,0,0,255],"91":[249,0,0,255],"92":[252,0,0,255],"93":[254,0,0,255],"94":[255,2,0,255],"95":[255,5,0,255],"96":[255,7,0,255],"97":[255,10,0,255],"98":[255,12,0,255],"99":[255,15,0,255],"100":[255,18,0,255],"101":[255,20,0,255],"102":[255,23,0,255],"103":[255,26,0,255],"104":[255,28,0,255],"105":[255,31,0,255],"106":[255,33,0,255],"107":[255,36,0,255],"108":[255,39,0,255],"109":[255,41,0,255],"110":[255,44,0,255],"111":[255,47,0,255],"112":[255,49,0,255],"113":[255,52,0,255],"114":[255,54,0,255],"115":[255,57,0,255],"116":[255,60,0,255],"117":[255,62,0,255],"118":[255,65,0,255],"119":[255,68,0,255],"120":[255,70,0,255],"121":[255,73,0,255],"122":[255,75,0,255],"123":[255,78,0,255],"124":[255,81,0,255],"125":[255,83,0,255],"126":[255,86,0,255],"127":[255,89,0,255],"128":[255,91,0,255],"129":[255,94,0,255],"130":[255,96,0,255],"131":[255,99,0,255],"132":[255,102,0,255],"133":[255,104,0,255],"134":[255,107,0,255],"135":[255,110,0,255],"136":[255,112,0,255],"137":[255,115,0,255],"138":[255,117,0,255],"139":[255,120,0,255],"140":[255,123,0,255],"141":[255,125,0,255],"142":[255,128,0,255],"143":[255,131,0,255],"144":[255,133,0,255],"145":[255,136,0,255],"146":[255,138,0,255],"147":[255,141,0,255],"148":[255,144,0,255],"149":[255,146,0,255],"150":[255,149,0,255],"151":[255,151,0,255],"152":[255,154,0,255],"153":[255,157,0,255],"154":[255,159,0,255],"155":[255,162,0,255],"156":[255,165,0,255],"157":[255,167,0,255],"158":[255,170,0,255],"159":[255,172,0,255],"160":[255,175,0,255],"161":[255,178,0,255],"162":[255,180,0,255],"163":[255,183,0,255],"164":[255,186,0,255],"165":[255,188,0,255],"166":[255,191,0,255],"167":[255,193,0,255],"168":[255,196,0,255],"169":[255,199,0,255],"170":[255,201,0,255],"171":[255,204,0,255],"172":[255,207,0,255],"173":[255,209,0,255],"174":[255,212,0,255],"175":[255,214,0,255],"176":[255,217,0,255],"177":[255,220,0,255],"178":[255,222,0,255],"179":[255,225,0,255],"180":[255,228,0,255],"181":[255,230,0,255],"182":[255,233,0,255],"183":[255,235,0,255],"184":[255,238,0,255],"185":[255,241,0,255],"186":[255,243,0,255],"187":[255,246,0,255],"188":[255,249,0,255],"189":[255,251,0,255],"190":[255,254,0,255],"191":[255,255,2,255],"192":[255,255,6,255],"193":[255,255,10,255],"194":[255,255,14,255],"195":[255,255,18,255],"196":[255,255,22,255],"197":[255,255,26,255],"198":[255,255,30,255],"199":[255,255,34,255],"200":[255,255,38,255],"201":[255,255,42,255],"202":[255,255,46,255],"203":[255,255,50,255],"204":[255,255,54,255],"205":[255,255,58,255],"206":[255,255,62,255],"207":[255,255,65,255],"208":[255,255,69,255],"209":[255,255,73,255],"210":[255,255,77,255],"211":[255,255,81,255],"212":[255,255,85,255],"213":[255,255,89,255],"214":[255,255,93,255],"215":[255,255,97,255],"216":[255,255,101,255],"217":[255,255,105,255],"218":[255,255,109,255],"219":[255,255,113,255],"220":[255,255,117,255],"221":[255,255,121,255],"222":[255,255,125,255],"223":[255,255,128,255],"224":[255,255,132,255],"225":[255,255,136,255],"226":[255,255,140,255],"227":[255,255,144,255],"228":[255,255,148,255],"229":[255,255,152,255],"230":[255,255,156,255],"231":[255,255,160,255],"232":[255,255,164,255],"233":[255,255,168,255],"234":[255,255,172,255],"235":[255,255,176,255],"236":[255,255,180,255],"237":[255,255,184,255],"238":[255,255,188,255],"239":[255,255,191,255],"240":[255,255,195,255],"241":[255,255,199,255],"242":[255,255,203,255],"243":[255,255,207,255],"244":[255,255,211,255],"245":[255,255,215,255],"246":[255,255,219,255],"247":[255,255,223,255],"248":[255,255,227,255],"249":[255,255,231,255],"250":[255,255,235,255],"251":[255,255,239,255],"252":[255,255,243,255],"253":[255,255,247,255],"254":[255,255,251,255],"255":[255,255,255,255]}, + inferno: {"0":[0,0,3,255],"1":[0,0,4,255],"2":[0,0,6,255],"3":[1,0,7,255],"4":[1,1,9,255],"5":[1,1,11,255],"6":[2,1,14,255],"7":[2,2,16,255],"8":[3,2,18,255],"9":[4,3,20,255],"10":[4,3,22,255],"11":[5,4,24,255],"12":[6,4,27,255],"13":[7,5,29,255],"14":[8,6,31,255],"15":[9,6,33,255],"16":[10,7,35,255],"17":[11,7,38,255],"18":[13,8,40,255],"19":[14,8,42,255],"20":[15,9,45,255],"21":[16,9,47,255],"22":[18,10,50,255],"23":[19,10,52,255],"24":[20,11,54,255],"25":[22,11,57,255],"26":[23,11,59,255],"27":[25,11,62,255],"28":[26,11,64,255],"29":[28,12,67,255],"30":[29,12,69,255],"31":[31,12,71,255],"32":[32,12,74,255],"33":[34,11,76,255],"34":[36,11,78,255],"35":[38,11,80,255],"36":[39,11,82,255],"37":[41,11,84,255],"38":[43,10,86,255],"39":[45,10,88,255],"40":[46,10,90,255],"41":[48,10,92,255],"42":[50,9,93,255],"43":[52,9,95,255],"44":[53,9,96,255],"45":[55,9,97,255],"46":[57,9,98,255],"47":[59,9,100,255],"48":[60,9,101,255],"49":[62,9,102,255],"50":[64,9,102,255],"51":[65,9,103,255],"52":[67,10,104,255],"53":[69,10,105,255],"54":[70,10,105,255],"55":[72,11,106,255],"56":[74,11,106,255],"57":[75,12,107,255],"58":[77,12,107,255],"59":[79,13,108,255],"60":[80,13,108,255],"61":[82,14,108,255],"62":[83,14,109,255],"63":[85,15,109,255],"64":[87,15,109,255],"65":[88,16,109,255],"66":[90,17,109,255],"67":[91,17,110,255],"68":[93,18,110,255],"69":[95,18,110,255],"70":[96,19,110,255],"71":[98,20,110,255],"72":[99,20,110,255],"73":[101,21,110,255],"74":[102,21,110,255],"75":[104,22,110,255],"76":[106,23,110,255],"77":[107,23,110,255],"78":[109,24,110,255],"79":[110,24,110,255],"80":[112,25,110,255],"81":[114,25,109,255],"82":[115,26,109,255],"83":[117,27,109,255],"84":[118,27,109,255],"85":[120,28,109,255],"86":[122,28,109,255],"87":[123,29,108,255],"88":[125,29,108,255],"89":[126,30,108,255],"90":[128,31,107,255],"91":[129,31,107,255],"92":[131,32,107,255],"93":[133,32,106,255],"94":[134,33,106,255],"95":[136,33,106,255],"96":[137,34,105,255],"97":[139,34,105,255],"98":[141,35,105,255],"99":[142,36,104,255],"100":[144,36,104,255],"101":[145,37,103,255],"102":[147,37,103,255],"103":[149,38,102,255],"104":[150,38,102,255],"105":[152,39,101,255],"106":[153,40,100,255],"107":[155,40,100,255],"108":[156,41,99,255],"109":[158,41,99,255],"110":[160,42,98,255],"111":[161,43,97,255],"112":[163,43,97,255],"113":[164,44,96,255],"114":[166,44,95,255],"115":[167,45,95,255],"116":[169,46,94,255],"117":[171,46,93,255],"118":[172,47,92,255],"119":[174,48,91,255],"120":[175,49,91,255],"121":[177,49,90,255],"122":[178,50,89,255],"123":[180,51,88,255],"124":[181,51,87,255],"125":[183,52,86,255],"126":[184,53,86,255],"127":[186,54,85,255],"128":[187,55,84,255],"129":[189,55,83,255],"130":[190,56,82,255],"131":[191,57,81,255],"132":[193,58,80,255],"133":[194,59,79,255],"134":[196,60,78,255],"135":[197,61,77,255],"136":[199,62,76,255],"137":[200,62,75,255],"138":[201,63,74,255],"139":[203,64,73,255],"140":[204,65,72,255],"141":[205,66,71,255],"142":[207,68,70,255],"143":[208,69,68,255],"144":[209,70,67,255],"145":[210,71,66,255],"146":[212,72,65,255],"147":[213,73,64,255],"148":[214,74,63,255],"149":[215,75,62,255],"150":[217,77,61,255],"151":[218,78,59,255],"152":[219,79,58,255],"153":[220,80,57,255],"154":[221,82,56,255],"155":[222,83,55,255],"156":[223,84,54,255],"157":[224,86,52,255],"158":[226,87,51,255],"159":[227,88,50,255],"160":[228,90,49,255],"161":[229,91,48,255],"162":[230,92,46,255],"163":[230,94,45,255],"164":[231,95,44,255],"165":[232,97,43,255],"166":[233,98,42,255],"167":[234,100,40,255],"168":[235,101,39,255],"169":[236,103,38,255],"170":[237,104,37,255],"171":[237,106,35,255],"172":[238,108,34,255],"173":[239,109,33,255],"174":[240,111,31,255],"175":[240,112,30,255],"176":[241,114,29,255],"177":[242,116,28,255],"178":[242,117,26,255],"179":[243,119,25,255],"180":[243,121,24,255],"181":[244,122,22,255],"182":[245,124,21,255],"183":[245,126,20,255],"184":[246,128,18,255],"185":[246,129,17,255],"186":[247,131,16,255],"187":[247,133,14,255],"188":[248,135,13,255],"189":[248,136,12,255],"190":[248,138,11,255],"191":[249,140,9,255],"192":[249,142,8,255],"193":[249,144,8,255],"194":[250,145,7,255],"195":[250,147,6,255],"196":[250,149,6,255],"197":[250,151,6,255],"198":[251,153,6,255],"199":[251,155,6,255],"200":[251,157,6,255],"201":[251,158,7,255],"202":[251,160,7,255],"203":[251,162,8,255],"204":[251,164,10,255],"205":[251,166,11,255],"206":[251,168,13,255],"207":[251,170,14,255],"208":[251,172,16,255],"209":[251,174,18,255],"210":[251,176,20,255],"211":[251,177,22,255],"212":[251,179,24,255],"213":[251,181,26,255],"214":[251,183,28,255],"215":[251,185,30,255],"216":[250,187,33,255],"217":[250,189,35,255],"218":[250,191,37,255],"219":[250,193,40,255],"220":[249,195,42,255],"221":[249,197,44,255],"222":[249,199,47,255],"223":[248,201,49,255],"224":[248,203,52,255],"225":[248,205,55,255],"226":[247,207,58,255],"227":[247,209,60,255],"228":[246,211,63,255],"229":[246,213,66,255],"230":[245,215,69,255],"231":[245,217,72,255],"232":[244,219,75,255],"233":[244,220,79,255],"234":[243,222,82,255],"235":[243,224,86,255],"236":[243,226,89,255],"237":[242,228,93,255],"238":[242,230,96,255],"239":[241,232,100,255],"240":[241,233,104,255],"241":[241,235,108,255],"242":[241,237,112,255],"243":[241,238,116,255],"244":[241,240,121,255],"245":[241,242,125,255],"246":[242,243,129,255],"247":[242,244,133,255],"248":[243,246,137,255],"249":[244,247,141,255],"250":[245,248,145,255],"251":[246,250,149,255],"252":[247,251,153,255],"253":[249,252,157,255],"254":[250,253,160,255],"255":[252,254,164,255]}, + jet: {"0":[0,0,127,255],"1":[0,0,132,255],"2":[0,0,136,255],"3":[0,0,141,255],"4":[0,0,145,255],"5":[0,0,150,255],"6":[0,0,154,255],"7":[0,0,159,255],"8":[0,0,163,255],"9":[0,0,168,255],"10":[0,0,172,255],"11":[0,0,177,255],"12":[0,0,182,255],"13":[0,0,186,255],"14":[0,0,191,255],"15":[0,0,195,255],"16":[0,0,200,255],"17":[0,0,204,255],"18":[0,0,209,255],"19":[0,0,213,255],"20":[0,0,218,255],"21":[0,0,222,255],"22":[0,0,227,255],"23":[0,0,232,255],"24":[0,0,236,255],"25":[0,0,241,255],"26":[0,0,245,255],"27":[0,0,250,255],"28":[0,0,254,255],"29":[0,0,255,255],"30":[0,0,255,255],"31":[0,0,255,255],"32":[0,0,255,255],"33":[0,4,255,255],"34":[0,8,255,255],"35":[0,12,255,255],"36":[0,16,255,255],"37":[0,20,255,255],"38":[0,24,255,255],"39":[0,28,255,255],"40":[0,32,255,255],"41":[0,36,255,255],"42":[0,40,255,255],"43":[0,44,255,255],"44":[0,48,255,255],"45":[0,52,255,255],"46":[0,56,255,255],"47":[0,60,255,255],"48":[0,64,255,255],"49":[0,68,255,255],"50":[0,72,255,255],"51":[0,76,255,255],"52":[0,80,255,255],"53":[0,84,255,255],"54":[0,88,255,255],"55":[0,92,255,255],"56":[0,96,255,255],"57":[0,100,255,255],"58":[0,104,255,255],"59":[0,108,255,255],"60":[0,112,255,255],"61":[0,116,255,255],"62":[0,120,255,255],"63":[0,124,255,255],"64":[0,128,255,255],"65":[0,132,255,255],"66":[0,136,255,255],"67":[0,140,255,255],"68":[0,144,255,255],"69":[0,148,255,255],"70":[0,152,255,255],"71":[0,156,255,255],"72":[0,160,255,255],"73":[0,164,255,255],"74":[0,168,255,255],"75":[0,172,255,255],"76":[0,176,255,255],"77":[0,180,255,255],"78":[0,184,255,255],"79":[0,188,255,255],"80":[0,192,255,255],"81":[0,196,255,255],"82":[0,200,255,255],"83":[0,204,255,255],"84":[0,208,255,255],"85":[0,212,255,255],"86":[0,216,255,255],"87":[0,220,254,255],"88":[0,224,250,255],"89":[0,228,247,255],"90":[2,232,244,255],"91":[5,236,241,255],"92":[8,240,237,255],"93":[12,244,234,255],"94":[15,248,231,255],"95":[18,252,228,255],"96":[21,255,225,255],"97":[24,255,221,255],"98":[28,255,218,255],"99":[31,255,215,255],"100":[34,255,212,255],"101":[37,255,208,255],"102":[41,255,205,255],"103":[44,255,202,255],"104":[47,255,199,255],"105":[50,255,195,255],"106":[54,255,192,255],"107":[57,255,189,255],"108":[60,255,186,255],"109":[63,255,183,255],"110":[66,255,179,255],"111":[70,255,176,255],"112":[73,255,173,255],"113":[76,255,170,255],"114":[79,255,166,255],"115":[83,255,163,255],"116":[86,255,160,255],"117":[89,255,157,255],"118":[92,255,154,255],"119":[95,255,150,255],"120":[99,255,147,255],"121":[102,255,144,255],"122":[105,255,141,255],"123":[108,255,137,255],"124":[112,255,134,255],"125":[115,255,131,255],"126":[118,255,128,255],"127":[121,255,125,255],"128":[124,255,121,255],"129":[128,255,118,255],"130":[131,255,115,255],"131":[134,255,112,255],"132":[137,255,108,255],"133":[141,255,105,255],"134":[144,255,102,255],"135":[147,255,99,255],"136":[150,255,95,255],"137":[154,255,92,255],"138":[157,255,89,255],"139":[160,255,86,255],"140":[163,255,83,255],"141":[166,255,79,255],"142":[170,255,76,255],"143":[173,255,73,255],"144":[176,255,70,255],"145":[179,255,66,255],"146":[183,255,63,255],"147":[186,255,60,255],"148":[189,255,57,255],"149":[192,255,54,255],"150":[195,255,50,255],"151":[199,255,47,255],"152":[202,255,44,255],"153":[205,255,41,255],"154":[208,255,37,255],"155":[212,255,34,255],"156":[215,255,31,255],"157":[218,255,28,255],"158":[221,255,24,255],"159":[224,255,21,255],"160":[228,255,18,255],"161":[231,255,15,255],"162":[234,255,12,255],"163":[237,255,8,255],"164":[241,252,5,255],"165":[244,248,2,255],"166":[247,244,0,255],"167":[250,240,0,255],"168":[254,237,0,255],"169":[255,233,0,255],"170":[255,229,0,255],"171":[255,226,0,255],"172":[255,222,0,255],"173":[255,218,0,255],"174":[255,215,0,255],"175":[255,211,0,255],"176":[255,207,0,255],"177":[255,203,0,255],"178":[255,200,0,255],"179":[255,196,0,255],"180":[255,192,0,255],"181":[255,189,0,255],"182":[255,185,0,255],"183":[255,181,0,255],"184":[255,177,0,255],"185":[255,174,0,255],"186":[255,170,0,255],"187":[255,166,0,255],"188":[255,163,0,255],"189":[255,159,0,255],"190":[255,155,0,255],"191":[255,152,0,255],"192":[255,148,0,255],"193":[255,144,0,255],"194":[255,140,0,255],"195":[255,137,0,255],"196":[255,133,0,255],"197":[255,129,0,255],"198":[255,126,0,255],"199":[255,122,0,255],"200":[255,118,0,255],"201":[255,115,0,255],"202":[255,111,0,255],"203":[255,107,0,255],"204":[255,103,0,255],"205":[255,100,0,255],"206":[255,96,0,255],"207":[255,92,0,255],"208":[255,89,0,255],"209":[255,85,0,255],"210":[255,81,0,255],"211":[255,77,0,255],"212":[255,74,0,255],"213":[255,70,0,255],"214":[255,66,0,255],"215":[255,63,0,255],"216":[255,59,0,255],"217":[255,55,0,255],"218":[255,52,0,255],"219":[255,48,0,255],"220":[255,44,0,255],"221":[255,40,0,255],"222":[255,37,0,255],"223":[255,33,0,255],"224":[255,29,0,255],"225":[255,26,0,255],"226":[255,22,0,255],"227":[254,18,0,255],"228":[250,15,0,255],"229":[245,11,0,255],"230":[241,7,0,255],"231":[236,3,0,255],"232":[232,0,0,255],"233":[227,0,0,255],"234":[222,0,0,255],"235":[218,0,0,255],"236":[213,0,0,255],"237":[209,0,0,255],"238":[204,0,0,255],"239":[200,0,0,255],"240":[195,0,0,255],"241":[191,0,0,255],"242":[186,0,0,255],"243":[182,0,0,255],"244":[177,0,0,255],"245":[172,0,0,255],"246":[168,0,0,255],"247":[163,0,0,255],"248":[159,0,0,255],"249":[154,0,0,255],"250":[150,0,0,255],"251":[145,0,0,255],"252":[141,0,0,255],"253":[136,0,0,255],"254":[132,0,0,255],"255":[127,0,0,255]}, + magma: {"0":[0,0,3,255],"1":[0,0,4,255],"2":[0,0,6,255],"3":[1,0,7,255],"4":[1,1,9,255],"5":[1,1,11,255],"6":[2,2,13,255],"7":[2,2,15,255],"8":[3,3,17,255],"9":[4,3,19,255],"10":[4,4,21,255],"11":[5,4,23,255],"12":[6,5,25,255],"13":[7,5,27,255],"14":[8,6,29,255],"15":[9,7,31,255],"16":[10,7,34,255],"17":[11,8,36,255],"18":[12,9,38,255],"19":[13,10,40,255],"20":[14,10,42,255],"21":[15,11,44,255],"22":[16,12,47,255],"23":[17,12,49,255],"24":[18,13,51,255],"25":[20,13,53,255],"26":[21,14,56,255],"27":[22,14,58,255],"28":[23,15,60,255],"29":[24,15,63,255],"30":[26,16,65,255],"31":[27,16,68,255],"32":[28,16,70,255],"33":[30,16,73,255],"34":[31,17,75,255],"35":[32,17,77,255],"36":[34,17,80,255],"37":[35,17,82,255],"38":[37,17,85,255],"39":[38,17,87,255],"40":[40,17,89,255],"41":[42,17,92,255],"42":[43,17,94,255],"43":[45,16,96,255],"44":[47,16,98,255],"45":[48,16,101,255],"46":[50,16,103,255],"47":[52,16,104,255],"48":[53,15,106,255],"49":[55,15,108,255],"50":[57,15,110,255],"51":[59,15,111,255],"52":[60,15,113,255],"53":[62,15,114,255],"54":[64,15,115,255],"55":[66,15,116,255],"56":[67,15,117,255],"57":[69,15,118,255],"58":[71,15,119,255],"59":[72,16,120,255],"60":[74,16,121,255],"61":[75,16,121,255],"62":[77,17,122,255],"63":[79,17,123,255],"64":[80,18,123,255],"65":[82,18,124,255],"66":[83,19,124,255],"67":[85,19,125,255],"68":[87,20,125,255],"69":[88,21,126,255],"70":[90,21,126,255],"71":[91,22,126,255],"72":[93,23,126,255],"73":[94,23,127,255],"74":[96,24,127,255],"75":[97,24,127,255],"76":[99,25,127,255],"77":[101,26,128,255],"78":[102,26,128,255],"79":[104,27,128,255],"80":[105,28,128,255],"81":[107,28,128,255],"82":[108,29,128,255],"83":[110,30,129,255],"84":[111,30,129,255],"85":[113,31,129,255],"86":[115,31,129,255],"87":[116,32,129,255],"88":[118,33,129,255],"89":[119,33,129,255],"90":[121,34,129,255],"91":[122,34,129,255],"92":[124,35,129,255],"93":[126,36,129,255],"94":[127,36,129,255],"95":[129,37,129,255],"96":[130,37,129,255],"97":[132,38,129,255],"98":[133,38,129,255],"99":[135,39,129,255],"100":[137,40,129,255],"101":[138,40,129,255],"102":[140,41,128,255],"103":[141,41,128,255],"104":[143,42,128,255],"105":[145,42,128,255],"106":[146,43,128,255],"107":[148,43,128,255],"108":[149,44,128,255],"109":[151,44,127,255],"110":[153,45,127,255],"111":[154,45,127,255],"112":[156,46,127,255],"113":[158,46,126,255],"114":[159,47,126,255],"115":[161,47,126,255],"116":[163,48,126,255],"117":[164,48,125,255],"118":[166,49,125,255],"119":[167,49,125,255],"120":[169,50,124,255],"121":[171,51,124,255],"122":[172,51,123,255],"123":[174,52,123,255],"124":[176,52,123,255],"125":[177,53,122,255],"126":[179,53,122,255],"127":[181,54,121,255],"128":[182,54,121,255],"129":[184,55,120,255],"130":[185,55,120,255],"131":[187,56,119,255],"132":[189,57,119,255],"133":[190,57,118,255],"134":[192,58,117,255],"135":[194,58,117,255],"136":[195,59,116,255],"137":[197,60,116,255],"138":[198,60,115,255],"139":[200,61,114,255],"140":[202,62,114,255],"141":[203,62,113,255],"142":[205,63,112,255],"143":[206,64,112,255],"144":[208,65,111,255],"145":[209,66,110,255],"146":[211,66,109,255],"147":[212,67,109,255],"148":[214,68,108,255],"149":[215,69,107,255],"150":[217,70,106,255],"151":[218,71,105,255],"152":[220,72,105,255],"153":[221,73,104,255],"154":[222,74,103,255],"155":[224,75,102,255],"156":[225,76,102,255],"157":[226,77,101,255],"158":[228,78,100,255],"159":[229,80,99,255],"160":[230,81,98,255],"161":[231,82,98,255],"162":[232,84,97,255],"163":[234,85,96,255],"164":[235,86,96,255],"165":[236,88,95,255],"166":[237,89,95,255],"167":[238,91,94,255],"168":[238,93,93,255],"169":[239,94,93,255],"170":[240,96,93,255],"171":[241,97,92,255],"172":[242,99,92,255],"173":[243,101,92,255],"174":[243,103,91,255],"175":[244,104,91,255],"176":[245,106,91,255],"177":[245,108,91,255],"178":[246,110,91,255],"179":[246,112,91,255],"180":[247,113,91,255],"181":[247,115,92,255],"182":[248,117,92,255],"183":[248,119,92,255],"184":[249,121,92,255],"185":[249,123,93,255],"186":[249,125,93,255],"187":[250,127,94,255],"188":[250,128,94,255],"189":[250,130,95,255],"190":[251,132,96,255],"191":[251,134,96,255],"192":[251,136,97,255],"193":[251,138,98,255],"194":[252,140,99,255],"195":[252,142,99,255],"196":[252,144,100,255],"197":[252,146,101,255],"198":[252,147,102,255],"199":[253,149,103,255],"200":[253,151,104,255],"201":[253,153,105,255],"202":[253,155,106,255],"203":[253,157,107,255],"204":[253,159,108,255],"205":[253,161,110,255],"206":[253,162,111,255],"207":[253,164,112,255],"208":[254,166,113,255],"209":[254,168,115,255],"210":[254,170,116,255],"211":[254,172,117,255],"212":[254,174,118,255],"213":[254,175,120,255],"214":[254,177,121,255],"215":[254,179,123,255],"216":[254,181,124,255],"217":[254,183,125,255],"218":[254,185,127,255],"219":[254,187,128,255],"220":[254,188,130,255],"221":[254,190,131,255],"222":[254,192,133,255],"223":[254,194,134,255],"224":[254,196,136,255],"225":[254,198,137,255],"226":[254,199,139,255],"227":[254,201,141,255],"228":[254,203,142,255],"229":[253,205,144,255],"230":[253,207,146,255],"231":[253,209,147,255],"232":[253,210,149,255],"233":[253,212,151,255],"234":[253,214,152,255],"235":[253,216,154,255],"236":[253,218,156,255],"237":[253,220,157,255],"238":[253,221,159,255],"239":[253,223,161,255],"240":[253,225,163,255],"241":[252,227,165,255],"242":[252,229,166,255],"243":[252,230,168,255],"244":[252,232,170,255],"245":[252,234,172,255],"246":[252,236,174,255],"247":[252,238,176,255],"248":[252,240,177,255],"249":[252,241,179,255],"250":[252,243,181,255],"251":[252,245,183,255],"252":[251,247,185,255],"253":[251,249,187,255],"254":[251,250,189,255],"255":[251,252,191,255]}, + matter: {"0":[253,237,176,255],"1":[253,235,174,255],"2":[253,234,173,255],"3":[253,233,172,255],"4":[253,231,170,255],"5":[252,230,169,255],"6":[252,228,167,255],"7":[252,227,166,255],"8":[252,226,165,255],"9":[252,224,163,255],"10":[252,223,162,255],"11":[252,221,161,255],"12":[252,220,159,255],"13":[251,219,158,255],"14":[251,217,157,255],"15":[251,216,156,255],"16":[251,214,154,255],"17":[251,213,153,255],"18":[251,212,152,255],"19":[251,210,150,255],"20":[250,209,149,255],"21":[250,207,148,255],"22":[250,206,147,255],"23":[250,205,145,255],"24":[250,203,144,255],"25":[250,202,143,255],"26":[250,200,142,255],"27":[249,199,141,255],"28":[249,198,139,255],"29":[249,196,138,255],"30":[249,195,137,255],"31":[249,194,136,255],"32":[249,192,135,255],"33":[248,191,134,255],"34":[248,189,132,255],"35":[248,188,131,255],"36":[248,187,130,255],"37":[248,185,129,255],"38":[247,184,128,255],"39":[247,183,127,255],"40":[247,181,126,255],"41":[247,180,125,255],"42":[247,178,124,255],"43":[247,177,122,255],"44":[246,176,121,255],"45":[246,174,120,255],"46":[246,173,119,255],"47":[246,172,118,255],"48":[245,170,117,255],"49":[245,169,116,255],"50":[245,168,115,255],"51":[245,166,114,255],"52":[245,165,113,255],"53":[244,163,112,255],"54":[244,162,111,255],"55":[244,161,110,255],"56":[244,159,109,255],"57":[243,158,108,255],"58":[243,157,108,255],"59":[243,155,107,255],"60":[243,154,106,255],"61":[242,153,105,255],"62":[242,151,104,255],"63":[242,150,103,255],"64":[241,148,102,255],"65":[241,147,101,255],"66":[241,146,101,255],"67":[241,144,100,255],"68":[240,143,99,255],"69":[240,142,98,255],"70":[240,140,97,255],"71":[239,139,97,255],"72":[239,138,96,255],"73":[239,136,95,255],"74":[238,135,94,255],"75":[238,133,94,255],"76":[238,132,93,255],"77":[237,131,92,255],"78":[237,129,92,255],"79":[237,128,91,255],"80":[236,127,91,255],"81":[236,125,90,255],"82":[235,124,89,255],"83":[235,123,89,255],"84":[235,121,88,255],"85":[234,120,88,255],"86":[234,118,87,255],"87":[233,117,87,255],"88":[233,116,86,255],"89":[232,114,86,255],"90":[232,113,85,255],"91":[232,112,85,255],"92":[231,110,85,255],"93":[231,109,84,255],"94":[230,108,84,255],"95":[230,106,84,255],"96":[229,105,83,255],"97":[229,104,83,255],"98":[228,102,83,255],"99":[228,101,83,255],"100":[227,100,83,255],"101":[226,98,82,255],"102":[226,97,82,255],"103":[225,96,82,255],"104":[225,95,82,255],"105":[224,93,82,255],"106":[223,92,82,255],"107":[223,91,82,255],"108":[222,89,82,255],"109":[221,88,82,255],"110":[221,87,82,255],"111":[220,86,82,255],"112":[219,85,82,255],"113":[218,83,82,255],"114":[218,82,83,255],"115":[217,81,83,255],"116":[216,80,83,255],"117":[215,79,83,255],"118":[215,77,83,255],"119":[214,76,83,255],"120":[213,75,84,255],"121":[212,74,84,255],"122":[211,73,84,255],"123":[210,72,84,255],"124":[209,71,85,255],"125":[208,70,85,255],"126":[208,69,85,255],"127":[207,68,86,255],"128":[206,67,86,255],"129":[205,66,86,255],"130":[204,65,87,255],"131":[203,64,87,255],"132":[202,63,87,255],"133":[201,62,88,255],"134":[200,61,88,255],"135":[199,60,88,255],"136":[198,59,89,255],"137":[197,58,89,255],"138":[196,57,89,255],"139":[195,56,90,255],"140":[193,56,90,255],"141":[192,55,90,255],"142":[191,54,91,255],"143":[190,53,91,255],"144":[189,52,91,255],"145":[188,52,92,255],"146":[187,51,92,255],"147":[186,50,92,255],"148":[185,49,93,255],"149":[184,48,93,255],"150":[182,48,93,255],"151":[181,47,93,255],"152":[180,46,94,255],"153":[179,46,94,255],"154":[178,45,94,255],"155":[177,44,95,255],"156":[175,44,95,255],"157":[174,43,95,255],"158":[173,42,95,255],"159":[172,42,96,255],"160":[171,41,96,255],"161":[169,40,96,255],"162":[168,40,96,255],"163":[167,39,97,255],"164":[166,39,97,255],"165":[165,38,97,255],"166":[163,37,97,255],"167":[162,37,97,255],"168":[161,36,98,255],"169":[160,36,98,255],"170":[158,35,98,255],"171":[157,35,98,255],"172":[156,34,98,255],"173":[155,34,98,255],"174":[153,33,98,255],"175":[152,33,99,255],"176":[151,33,99,255],"177":[149,32,99,255],"178":[148,32,99,255],"179":[147,31,99,255],"180":[146,31,99,255],"181":[144,31,99,255],"182":[143,30,99,255],"183":[142,30,99,255],"184":[140,30,99,255],"185":[139,29,99,255],"186":[138,29,99,255],"187":[136,29,99,255],"188":[135,28,99,255],"189":[134,28,99,255],"190":[133,28,99,255],"191":[131,28,98,255],"192":[130,27,98,255],"193":[129,27,98,255],"194":[127,27,98,255],"195":[126,27,98,255],"196":[125,26,98,255],"197":[123,26,97,255],"198":[122,26,97,255],"199":[120,26,97,255],"200":[119,26,97,255],"201":[118,26,96,255],"202":[116,25,96,255],"203":[115,25,96,255],"204":[114,25,95,255],"205":[112,25,95,255],"206":[111,25,95,255],"207":[110,25,94,255],"208":[108,25,94,255],"209":[107,24,93,255],"210":[106,24,93,255],"211":[104,24,93,255],"212":[103,24,92,255],"213":[102,24,92,255],"214":[100,24,91,255],"215":[99,24,91,255],"216":[98,23,90,255],"217":[96,23,90,255],"218":[95,23,89,255],"219":[94,23,89,255],"220":[92,23,88,255],"221":[91,23,87,255],"222":[89,23,87,255],"223":[88,23,86,255],"224":[87,22,86,255],"225":[85,22,85,255],"226":[84,22,84,255],"227":[83,22,84,255],"228":[82,22,83,255],"229":[80,22,82,255],"230":[79,21,82,255],"231":[78,21,81,255],"232":[76,21,80,255],"233":[75,21,79,255],"234":[74,21,79,255],"235":[72,20,78,255],"236":[71,20,77,255],"237":[70,20,76,255],"238":[68,20,76,255],"239":[67,19,75,255],"240":[66,19,74,255],"241":[65,19,73,255],"242":[63,19,73,255],"243":[62,18,72,255],"244":[61,18,71,255],"245":[59,18,70,255],"246":[58,18,69,255],"247":[57,17,68,255],"248":[56,17,68,255],"249":[54,17,67,255],"250":[53,16,66,255],"251":[52,16,65,255],"252":[50,16,64,255],"253":[49,15,63,255],"254":[48,15,62,255],"255":[47,15,61,255]}, + nipy_spectral: {"0":[0,0,0,255],"1":[9,0,10,255],"2":[18,0,21,255],"3":[28,0,31,255],"4":[37,0,42,255],"5":[46,0,53,255],"6":[56,0,63,255],"7":[65,0,74,255],"8":[74,0,85,255],"9":[84,0,95,255],"10":[93,0,106,255],"11":[102,0,117,255],"12":[112,0,127,255],"13":[119,0,136,255],"14":[120,0,137,255],"15":[122,0,138,255],"16":[123,0,140,255],"17":[124,0,141,255],"18":[126,0,142,255],"19":[127,0,144,255],"20":[128,0,145,255],"21":[129,0,146,255],"22":[131,0,148,255],"23":[132,0,149,255],"24":[133,0,150,255],"25":[135,0,152,255],"26":[130,0,153,255],"27":[119,0,155,255],"28":[109,0,156,255],"29":[98,0,157,255],"30":[87,0,159,255],"31":[77,0,160,255],"32":[66,0,161,255],"33":[55,0,163,255],"34":[45,0,164,255],"35":[34,0,165,255],"36":[23,0,167,255],"37":[13,0,168,255],"38":[2,0,169,255],"39":[0,0,173,255],"40":[0,0,177,255],"41":[0,0,181,255],"42":[0,0,185,255],"43":[0,0,189,255],"44":[0,0,193,255],"45":[0,0,197,255],"46":[0,0,201,255],"47":[0,0,205,255],"48":[0,0,209,255],"49":[0,0,213,255],"50":[0,0,217,255],"51":[0,0,221,255],"52":[0,9,221,255],"53":[0,18,221,255],"54":[0,28,221,255],"55":[0,37,221,255],"56":[0,46,221,255],"57":[0,56,221,255],"58":[0,65,221,255],"59":[0,74,221,255],"60":[0,84,221,255],"61":[0,93,221,255],"62":[0,102,221,255],"63":[0,112,221,255],"64":[0,119,221,255],"65":[0,122,221,255],"66":[0,125,221,255],"67":[0,127,221,255],"68":[0,130,221,255],"69":[0,133,221,255],"70":[0,135,221,255],"71":[0,138,221,255],"72":[0,141,221,255],"73":[0,143,221,255],"74":[0,146,221,255],"75":[0,149,221,255],"76":[0,151,221,255],"77":[0,153,219,255],"78":[0,155,215,255],"79":[0,156,211,255],"80":[0,157,207,255],"81":[0,159,203,255],"82":[0,160,199,255],"83":[0,161,195,255],"84":[0,163,191,255],"85":[0,164,187,255],"86":[0,165,183,255],"87":[0,167,179,255],"88":[0,168,175,255],"89":[0,169,171,255],"90":[0,170,168,255],"91":[0,170,165,255],"92":[0,170,162,255],"93":[0,170,160,255],"94":[0,170,157,255],"95":[0,170,154,255],"96":[0,170,151,255],"97":[0,170,149,255],"98":[0,170,146,255],"99":[0,170,143,255],"100":[0,170,141,255],"101":[0,170,138,255],"102":[0,170,135,255],"103":[0,168,125,255],"104":[0,167,114,255],"105":[0,166,103,255],"106":[0,164,93,255],"107":[0,163,82,255],"108":[0,162,71,255],"109":[0,160,61,255],"110":[0,159,50,255],"111":[0,158,39,255],"112":[0,156,29,255],"113":[0,155,18,255],"114":[0,154,7,255],"115":[0,153,0,255],"116":[0,156,0,255],"117":[0,158,0,255],"118":[0,161,0,255],"119":[0,164,0,255],"120":[0,166,0,255],"121":[0,169,0,255],"122":[0,172,0,255],"123":[0,174,0,255],"124":[0,177,0,255],"125":[0,180,0,255],"126":[0,182,0,255],"127":[0,185,0,255],"128":[0,188,0,255],"129":[0,190,0,255],"130":[0,193,0,255],"131":[0,196,0,255],"132":[0,198,0,255],"133":[0,201,0,255],"134":[0,204,0,255],"135":[0,207,0,255],"136":[0,209,0,255],"137":[0,212,0,255],"138":[0,215,0,255],"139":[0,217,0,255],"140":[0,220,0,255],"141":[0,223,0,255],"142":[0,225,0,255],"143":[0,228,0,255],"144":[0,231,0,255],"145":[0,233,0,255],"146":[0,236,0,255],"147":[0,239,0,255],"148":[0,241,0,255],"149":[0,244,0,255],"150":[0,247,0,255],"151":[0,249,0,255],"152":[0,252,0,255],"153":[0,255,0,255],"154":[14,255,0,255],"155":[29,255,0,255],"156":[43,255,0,255],"157":[58,255,0,255],"158":[73,255,0,255],"159":[87,255,0,255],"160":[102,255,0,255],"161":[117,255,0,255],"162":[131,255,0,255],"163":[146,255,0,255],"164":[161,255,0,255],"165":[175,255,0,255],"166":[187,254,0,255],"167":[191,253,0,255],"168":[195,251,0,255],"169":[199,250,0,255],"170":[203,249,0,255],"171":[207,247,0,255],"172":[211,246,0,255],"173":[215,245,0,255],"174":[219,243,0,255],"175":[223,242,0,255],"176":[227,241,0,255],"177":[231,239,0,255],"178":[235,238,0,255],"179":[238,236,0,255],"180":[239,233,0,255],"181":[241,231,0,255],"182":[242,228,0,255],"183":[243,225,0,255],"184":[245,223,0,255],"185":[246,220,0,255],"186":[247,217,0,255],"187":[249,215,0,255],"188":[250,212,0,255],"189":[251,209,0,255],"190":[253,207,0,255],"191":[254,204,0,255],"192":[255,201,0,255],"193":[255,197,0,255],"194":[255,193,0,255],"195":[255,189,0,255],"196":[255,185,0,255],"197":[255,181,0,255],"198":[255,177,0,255],"199":[255,173,0,255],"200":[255,169,0,255],"201":[255,165,0,255],"202":[255,161,0,255],"203":[255,157,0,255],"204":[255,153,0,255],"205":[255,141,0,255],"206":[255,129,0,255],"207":[255,117,0,255],"208":[255,105,0,255],"209":[255,93,0,255],"210":[255,81,0,255],"211":[255,69,0,255],"212":[255,57,0,255],"213":[255,44,0,255],"214":[255,32,0,255],"215":[255,20,0,255],"216":[255,8,0,255],"217":[254,0,0,255],"218":[251,0,0,255],"219":[249,0,0,255],"220":[246,0,0,255],"221":[243,0,0,255],"222":[241,0,0,255],"223":[238,0,0,255],"224":[235,0,0,255],"225":[233,0,0,255],"226":[230,0,0,255],"227":[227,0,0,255],"228":[225,0,0,255],"229":[222,0,0,255],"230":[220,0,0,255],"231":[219,0,0,255],"232":[217,0,0,255],"233":[216,0,0,255],"234":[215,0,0,255],"235":[213,0,0,255],"236":[212,0,0,255],"237":[211,0,0,255],"238":[209,0,0,255],"239":[208,0,0,255],"240":[207,0,0,255],"241":[205,0,0,255],"242":[204,0,0,255],"243":[204,12,12,255],"244":[204,27,27,255],"245":[204,44,44,255],"246":[204,60,60,255],"247":[204,76,76,255],"248":[204,92,92,255],"249":[204,108,108,255],"250":[204,124,124,255],"251":[204,140,140,255],"252":[204,156,156,255],"253":[204,172,172,255],"254":[204,188,188,255],"255":[204,204,204,255]}, + ocean: {"0":[0,127,0,255],"1":[0,126,1,255],"2":[0,124,2,255],"3":[0,123,3,255],"4":[0,121,4,255],"5":[0,120,5,255],"6":[0,118,6,255],"7":[0,117,7,255],"8":[0,115,8,255],"9":[0,114,9,255],"10":[0,112,10,255],"11":[0,111,11,255],"12":[0,109,12,255],"13":[0,108,13,255],"14":[0,106,14,255],"15":[0,105,15,255],"16":[0,103,16,255],"17":[0,102,17,255],"18":[0,100,18,255],"19":[0,99,19,255],"20":[0,97,20,255],"21":[0,96,21,255],"22":[0,94,22,255],"23":[0,93,23,255],"24":[0,91,24,255],"25":[0,89,25,255],"26":[0,88,26,255],"27":[0,87,27,255],"28":[0,85,28,255],"29":[0,84,29,255],"30":[0,82,30,255],"31":[0,81,31,255],"32":[0,79,32,255],"33":[0,78,32,255],"34":[0,76,34,255],"35":[0,74,35,255],"36":[0,73,36,255],"37":[0,72,36,255],"38":[0,70,38,255],"39":[0,69,39,255],"40":[0,67,40,255],"41":[0,66,40,255],"42":[0,64,42,255],"43":[0,63,43,255],"44":[0,61,44,255],"45":[0,60,44,255],"46":[0,58,46,255],"47":[0,56,47,255],"48":[0,55,48,255],"49":[0,54,48,255],"50":[0,52,50,255],"51":[0,50,51,255],"52":[0,49,52,255],"53":[0,48,52,255],"54":[0,46,54,255],"55":[0,44,55,255],"56":[0,43,56,255],"57":[0,42,56,255],"58":[0,40,58,255],"59":[0,39,59,255],"60":[0,37,60,255],"61":[0,36,60,255],"62":[0,34,62,255],"63":[0,32,63,255],"64":[0,31,64,255],"65":[0,30,65,255],"66":[0,28,65,255],"67":[0,26,67,255],"68":[0,25,68,255],"69":[0,24,69,255],"70":[0,22,70,255],"71":[0,20,71,255],"72":[0,19,72,255],"73":[0,18,73,255],"74":[0,16,73,255],"75":[0,15,75,255],"76":[0,13,76,255],"77":[0,12,77,255],"78":[0,10,78,255],"79":[0,8,79,255],"80":[0,7,80,255],"81":[0,6,81,255],"82":[0,4,81,255],"83":[0,2,83,255],"84":[0,1,84,255],"85":[0,0,85,255],"86":[0,1,86,255],"87":[0,2,87,255],"88":[0,4,88,255],"89":[0,5,89,255],"90":[0,7,89,255],"91":[0,8,91,255],"92":[0,10,92,255],"93":[0,11,93,255],"94":[0,13,94,255],"95":[0,15,95,255],"96":[0,16,96,255],"97":[0,17,97,255],"98":[0,19,97,255],"99":[0,21,99,255],"100":[0,22,100,255],"101":[0,24,101,255],"102":[0,25,102,255],"103":[0,27,103,255],"104":[0,28,104,255],"105":[0,30,105,255],"106":[0,31,105,255],"107":[0,32,107,255],"108":[0,34,108,255],"109":[0,35,109,255],"110":[0,37,110,255],"111":[0,39,111,255],"112":[0,40,112,255],"113":[0,41,113,255],"114":[0,43,113,255],"115":[0,45,115,255],"116":[0,46,116,255],"117":[0,48,117,255],"118":[0,49,118,255],"119":[0,50,119,255],"120":[0,52,120,255],"121":[0,53,121,255],"122":[0,55,121,255],"123":[0,56,123,255],"124":[0,58,124,255],"125":[0,59,125,255],"126":[0,61,126,255],"127":[0,63,127,255],"128":[0,64,128,255],"129":[0,65,129,255],"130":[0,67,130,255],"131":[0,68,131,255],"132":[0,70,131,255],"133":[0,72,133,255],"134":[0,73,134,255],"135":[0,75,135,255],"136":[0,76,136,255],"137":[0,78,137,255],"138":[0,79,138,255],"139":[0,81,139,255],"140":[0,82,140,255],"141":[0,84,141,255],"142":[0,85,142,255],"143":[0,87,143,255],"144":[0,88,144,255],"145":[0,89,145,255],"146":[0,91,146,255],"147":[0,92,147,255],"148":[0,94,147,255],"149":[0,96,149,255],"150":[0,97,150,255],"151":[0,98,151,255],"152":[0,100,152,255],"153":[0,101,153,255],"154":[0,103,154,255],"155":[0,104,155,255],"156":[0,106,156,255],"157":[0,108,157,255],"158":[0,109,158,255],"159":[0,111,159,255],"160":[0,112,160,255],"161":[0,113,161,255],"162":[0,115,162,255],"163":[0,116,163,255],"164":[0,118,163,255],"165":[0,120,165,255],"166":[0,121,166,255],"167":[0,123,167,255],"168":[0,124,168,255],"169":[0,126,169,255],"170":[0,127,170,255],"171":[2,129,171,255],"172":[5,130,172,255],"173":[8,131,173,255],"174":[11,133,174,255],"175":[14,134,175,255],"176":[17,136,176,255],"177":[20,137,177,255],"178":[23,139,178,255],"179":[26,140,179,255],"180":[29,142,179,255],"181":[32,144,181,255],"182":[35,145,182,255],"183":[38,147,183,255],"184":[41,148,184,255],"185":[44,149,185,255],"186":[47,151,186,255],"187":[50,152,187,255],"188":[54,154,188,255],"189":[57,156,189,255],"190":[60,157,190,255],"191":[63,159,191,255],"192":[65,160,192,255],"193":[68,162,193,255],"194":[71,163,194,255],"195":[74,164,195,255],"196":[77,166,195,255],"197":[81,168,197,255],"198":[84,169,198,255],"199":[87,171,199,255],"200":[90,172,200,255],"201":[93,174,201,255],"202":[96,175,202,255],"203":[98,177,203,255],"204":[102,178,204,255],"205":[105,180,205,255],"206":[108,181,206,255],"207":[111,183,207,255],"208":[114,184,208,255],"209":[117,186,209,255],"210":[120,187,210,255],"211":[123,189,211,255],"212":[126,190,211,255],"213":[129,192,213,255],"214":[131,193,214,255],"215":[134,195,215,255],"216":[137,196,216,255],"217":[140,197,217,255],"218":[143,199,218,255],"219":[146,200,219,255],"220":[150,202,220,255],"221":[153,204,221,255],"222":[156,205,222,255],"223":[159,207,223,255],"224":[162,208,224,255],"225":[164,210,225,255],"226":[167,211,226,255],"227":[170,212,227,255],"228":[173,214,227,255],"229":[177,216,229,255],"230":[180,217,230,255],"231":[183,219,231,255],"232":[186,220,232,255],"233":[189,222,233,255],"234":[192,223,234,255],"235":[195,225,235,255],"236":[197,226,236,255],"237":[200,227,237,255],"238":[203,229,238,255],"239":[206,230,239,255],"240":[209,232,240,255],"241":[212,233,241,255],"242":[215,235,242,255],"243":[218,236,243,255],"244":[221,238,243,255],"245":[225,240,245,255],"246":[227,241,246,255],"247":[230,243,247,255],"248":[233,244,248,255],"249":[236,245,249,255],"250":[239,247,250,255],"251":[242,248,251,255],"252":[246,250,252,255],"253":[249,252,253,255],"254":[252,253,254,255],"255":[255,255,255,255]}, + oranges: {"0":[255,245,235,255],"1":[254,244,234,255],"2":[254,244,233,255],"3":[254,243,232,255],"4":[254,243,231,255],"5":[254,242,230,255],"6":[254,242,229,255],"7":[254,241,228,255],"8":[254,241,227,255],"9":[254,240,226,255],"10":[254,240,225,255],"11":[254,239,224,255],"12":[254,239,224,255],"13":[254,238,223,255],"14":[254,238,222,255],"15":[254,237,221,255],"16":[254,237,220,255],"17":[254,237,219,255],"18":[254,236,218,255],"19":[254,236,217,255],"20":[254,235,216,255],"21":[254,235,215,255],"22":[254,234,214,255],"23":[254,234,214,255],"24":[254,233,213,255],"25":[254,233,212,255],"26":[254,232,211,255],"27":[254,232,210,255],"28":[254,231,209,255],"29":[254,231,208,255],"30":[254,230,207,255],"31":[254,230,206,255],"32":[253,229,205,255],"33":[253,229,204,255],"34":[253,228,203,255],"35":[253,227,201,255],"36":[253,227,200,255],"37":[253,226,198,255],"38":[253,225,197,255],"39":[253,225,196,255],"40":[253,224,194,255],"41":[253,223,193,255],"42":[253,223,192,255],"43":[253,222,190,255],"44":[253,221,189,255],"45":[253,220,187,255],"46":[253,220,186,255],"47":[253,219,185,255],"48":[253,218,183,255],"49":[253,218,182,255],"50":[253,217,180,255],"51":[253,216,179,255],"52":[253,216,178,255],"53":[253,215,176,255],"54":[253,214,175,255],"55":[253,214,174,255],"56":[253,213,172,255],"57":[253,212,171,255],"58":[253,211,169,255],"59":[253,211,168,255],"60":[253,210,167,255],"61":[253,209,165,255],"62":[253,209,164,255],"63":[253,208,163,255],"64":[253,207,161,255],"65":[253,206,159,255],"66":[253,205,158,255],"67":[253,204,156,255],"68":[253,203,154,255],"69":[253,202,152,255],"70":[253,201,151,255],"71":[253,200,149,255],"72":[253,199,147,255],"73":[253,198,146,255],"74":[253,197,144,255],"75":[253,196,142,255],"76":[253,194,140,255],"77":[253,193,139,255],"78":[253,192,137,255],"79":[253,191,135,255],"80":[253,190,133,255],"81":[253,189,132,255],"82":[253,188,130,255],"83":[253,187,128,255],"84":[253,186,127,255],"85":[253,185,125,255],"86":[253,184,123,255],"87":[253,183,121,255],"88":[253,182,120,255],"89":[253,181,118,255],"90":[253,180,116,255],"91":[253,178,114,255],"92":[253,177,113,255],"93":[253,176,111,255],"94":[253,175,109,255],"95":[253,174,108,255],"96":[253,173,106,255],"97":[253,172,104,255],"98":[253,171,103,255],"99":[253,170,102,255],"100":[253,169,100,255],"101":[253,168,99,255],"102":[253,167,97,255],"103":[253,166,96,255],"104":[253,165,94,255],"105":[253,164,93,255],"106":[253,163,91,255],"107":[253,162,90,255],"108":[253,161,88,255],"109":[253,160,87,255],"110":[253,159,85,255],"111":[253,158,84,255],"112":[253,157,82,255],"113":[253,156,81,255],"114":[253,154,79,255],"115":[253,153,78,255],"116":[253,152,76,255],"117":[253,151,75,255],"118":[253,150,74,255],"119":[253,149,72,255],"120":[253,148,71,255],"121":[253,147,69,255],"122":[253,146,68,255],"123":[253,145,66,255],"124":[253,144,65,255],"125":[253,143,63,255],"126":[253,142,62,255],"127":[253,141,60,255],"128":[252,140,59,255],"129":[252,139,58,255],"130":[252,138,56,255],"131":[251,137,55,255],"132":[251,135,54,255],"133":[250,134,52,255],"134":[250,133,51,255],"135":[250,132,50,255],"136":[249,131,49,255],"137":[249,130,47,255],"138":[249,129,46,255],"139":[248,128,45,255],"140":[248,126,43,255],"141":[247,125,42,255],"142":[247,124,41,255],"143":[247,123,40,255],"144":[246,122,38,255],"145":[246,121,37,255],"146":[246,120,36,255],"147":[245,118,34,255],"148":[245,117,33,255],"149":[244,116,32,255],"150":[244,115,31,255],"151":[244,114,29,255],"152":[243,113,28,255],"153":[243,112,27,255],"154":[243,111,25,255],"155":[242,109,24,255],"156":[242,108,23,255],"157":[241,107,22,255],"158":[241,106,20,255],"159":[241,105,19,255],"160":[240,104,18,255],"161":[239,103,18,255],"162":[239,102,17,255],"163":[238,101,16,255],"164":[237,100,16,255],"165":[236,99,15,255],"166":[236,98,15,255],"167":[235,97,14,255],"168":[234,96,14,255],"169":[233,95,13,255],"170":[233,93,13,255],"171":[232,92,12,255],"172":[231,91,11,255],"173":[230,90,11,255],"174":[229,89,10,255],"175":[229,88,10,255],"176":[228,87,9,255],"177":[227,86,9,255],"178":[226,85,8,255],"179":[226,84,7,255],"180":[225,83,7,255],"181":[224,82,6,255],"182":[223,81,6,255],"183":[223,80,5,255],"184":[222,79,5,255],"185":[221,78,4,255],"186":[220,77,3,255],"187":[220,76,3,255],"188":[219,75,2,255],"189":[218,74,2,255],"190":[217,73,1,255],"191":[217,72,1,255],"192":[215,71,1,255],"193":[214,71,1,255],"194":[212,70,1,255],"195":[211,69,1,255],"196":[209,69,1,255],"197":[207,68,1,255],"198":[206,68,1,255],"199":[204,67,1,255],"200":[203,67,1,255],"201":[201,66,1,255],"202":[199,65,1,255],"203":[198,65,1,255],"204":[196,64,1,255],"205":[195,64,1,255],"206":[193,63,1,255],"207":[191,63,1,255],"208":[190,62,2,255],"209":[188,61,2,255],"210":[187,61,2,255],"211":[185,60,2,255],"212":[183,60,2,255],"213":[182,59,2,255],"214":[180,59,2,255],"215":[179,58,2,255],"216":[177,58,2,255],"217":[175,57,2,255],"218":[174,56,2,255],"219":[172,56,2,255],"220":[171,55,2,255],"221":[169,55,2,255],"222":[167,54,2,255],"223":[166,54,2,255],"224":[164,53,3,255],"225":[163,53,3,255],"226":[162,52,3,255],"227":[161,52,3,255],"228":[160,51,3,255],"229":[158,51,3,255],"230":[157,50,3,255],"231":[156,50,3,255],"232":[155,49,3,255],"233":[153,49,3,255],"234":[152,48,3,255],"235":[151,48,3,255],"236":[150,47,3,255],"237":[149,47,3,255],"238":[147,47,3,255],"239":[146,46,3,255],"240":[145,46,3,255],"241":[144,45,3,255],"242":[142,45,3,255],"243":[141,44,3,255],"244":[140,44,3,255],"245":[139,43,3,255],"246":[138,43,3,255],"247":[136,42,3,255],"248":[135,42,3,255],"249":[134,41,3,255],"250":[133,41,3,255],"251":[131,40,3,255],"252":[130,40,3,255],"253":[129,39,3,255],"254":[128,39,3,255],"255":[127,39,4,255]}, + pink: {"0":[30,0,0,255],"1":[34,6,6,255],"2":[39,12,12,255],"3":[44,19,19,255],"4":[49,25,25,255],"5":[53,28,28,255],"6":[56,31,31,255],"7":[60,34,34,255],"8":[63,36,36,255],"9":[66,38,38,255],"10":[69,41,41,255],"11":[72,43,43,255],"12":[74,45,45,255],"13":[77,46,46,255],"14":[79,48,48,255],"15":[82,50,50,255],"16":[84,52,52,255],"17":[87,53,53,255],"18":[89,55,55,255],"19":[91,56,56,255],"20":[93,58,58,255],"21":[95,59,59,255],"22":[97,61,61,255],"23":[99,62,62,255],"24":[101,63,63,255],"25":[103,65,65,255],"26":[105,66,66,255],"27":[107,67,67,255],"28":[109,68,68,255],"29":[110,70,70,255],"30":[112,71,71,255],"31":[114,72,72,255],"32":[116,73,73,255],"33":[117,74,74,255],"34":[119,75,75,255],"35":[121,77,77,255],"36":[122,78,78,255],"37":[124,79,79,255],"38":[125,80,80,255],"39":[127,81,81,255],"40":[128,82,82,255],"41":[130,83,83,255],"42":[131,84,84,255],"43":[133,85,85,255],"44":[134,86,86,255],"45":[136,87,87,255],"46":[137,88,88,255],"47":[139,89,89,255],"48":[140,90,90,255],"49":[141,91,91,255],"50":[143,92,92,255],"51":[144,93,93,255],"52":[146,94,94,255],"53":[147,94,94,255],"54":[148,95,95,255],"55":[150,96,96,255],"56":[151,97,97,255],"57":[152,98,98,255],"58":[153,99,99,255],"59":[155,100,100,255],"60":[156,100,100,255],"61":[157,101,101,255],"62":[158,102,102,255],"63":[160,103,103,255],"64":[161,104,104,255],"65":[162,105,105,255],"66":[163,105,105,255],"67":[165,106,106,255],"68":[166,107,107,255],"69":[167,108,108,255],"70":[168,109,109,255],"71":[169,109,109,255],"72":[170,110,110,255],"73":[172,111,111,255],"74":[173,112,112,255],"75":[174,112,112,255],"76":[175,113,113,255],"77":[176,114,114,255],"78":[177,115,115,255],"79":[178,115,115,255],"80":[179,116,116,255],"81":[180,117,117,255],"82":[182,118,118,255],"83":[183,118,118,255],"84":[184,119,119,255],"85":[185,120,120,255],"86":[186,120,120,255],"87":[187,121,121,255],"88":[188,122,122,255],"89":[189,123,123,255],"90":[190,123,123,255],"91":[191,124,124,255],"92":[192,125,125,255],"93":[193,125,125,255],"94":[194,127,126,255],"95":[194,128,127,255],"96":[194,130,127,255],"97":[195,131,128,255],"98":[195,133,129,255],"99":[196,134,129,255],"100":[196,136,130,255],"101":[197,137,131,255],"102":[197,139,131,255],"103":[197,140,132,255],"104":[198,141,132,255],"105":[198,143,133,255],"106":[199,144,134,255],"107":[199,145,134,255],"108":[200,147,135,255],"109":[200,148,136,255],"110":[200,149,136,255],"111":[201,151,137,255],"112":[201,152,137,255],"113":[202,153,138,255],"114":[202,155,139,255],"115":[203,156,139,255],"116":[203,157,140,255],"117":[203,158,141,255],"118":[204,160,141,255],"119":[204,161,142,255],"120":[205,162,142,255],"121":[205,163,143,255],"122":[205,164,144,255],"123":[206,166,144,255],"124":[206,167,145,255],"125":[207,168,145,255],"126":[207,169,146,255],"127":[208,170,146,255],"128":[208,171,147,255],"129":[208,173,148,255],"130":[209,174,148,255],"131":[209,175,149,255],"132":[210,176,149,255],"133":[210,177,150,255],"134":[210,178,150,255],"135":[211,179,151,255],"136":[211,180,152,255],"137":[212,181,152,255],"138":[212,182,153,255],"139":[212,184,153,255],"140":[213,185,154,255],"141":[213,186,154,255],"142":[214,187,155,255],"143":[214,188,155,255],"144":[214,189,156,255],"145":[215,190,157,255],"146":[215,191,157,255],"147":[216,192,158,255],"148":[216,193,158,255],"149":[216,194,159,255],"150":[217,195,159,255],"151":[217,196,160,255],"152":[217,197,160,255],"153":[218,198,161,255],"154":[218,199,161,255],"155":[219,200,162,255],"156":[219,201,162,255],"157":[219,202,163,255],"158":[220,203,163,255],"159":[220,204,164,255],"160":[221,205,164,255],"161":[221,206,165,255],"162":[221,207,165,255],"163":[222,208,166,255],"164":[222,209,166,255],"165":[222,209,167,255],"166":[223,210,167,255],"167":[223,211,168,255],"168":[224,212,168,255],"169":[224,213,169,255],"170":[224,214,170,255],"171":[225,215,170,255],"172":[225,216,170,255],"173":[226,217,171,255],"174":[226,218,171,255],"175":[226,219,172,255],"176":[227,220,172,255],"177":[227,220,173,255],"178":[227,221,173,255],"179":[228,222,174,255],"180":[228,223,174,255],"181":[229,224,175,255],"182":[229,225,175,255],"183":[229,226,176,255],"184":[230,227,176,255],"185":[230,227,177,255],"186":[230,228,177,255],"187":[231,229,178,255],"188":[231,230,178,255],"189":[231,231,179,255],"190":[232,232,179,255],"191":[232,232,180,255],"192":[233,233,182,255],"193":[233,233,183,255],"194":[233,233,185,255],"195":[234,234,186,255],"196":[234,234,187,255],"197":[234,234,189,255],"198":[235,235,190,255],"199":[235,235,191,255],"200":[235,235,193,255],"201":[236,236,194,255],"202":[236,236,195,255],"203":[237,237,196,255],"204":[237,237,198,255],"205":[237,237,199,255],"206":[238,238,200,255],"207":[238,238,201,255],"208":[238,238,203,255],"209":[239,239,204,255],"210":[239,239,205,255],"211":[239,239,206,255],"212":[240,240,208,255],"213":[240,240,209,255],"214":[240,240,210,255],"215":[241,241,211,255],"216":[241,241,212,255],"217":[242,242,214,255],"218":[242,242,215,255],"219":[242,242,216,255],"220":[243,243,217,255],"221":[243,243,218,255],"222":[243,243,219,255],"223":[244,244,221,255],"224":[244,244,222,255],"225":[244,244,223,255],"226":[245,245,224,255],"227":[245,245,225,255],"228":[245,245,226,255],"229":[246,246,227,255],"230":[246,246,228,255],"231":[246,246,230,255],"232":[247,247,231,255],"233":[247,247,232,255],"234":[247,247,233,255],"235":[248,248,234,255],"236":[248,248,235,255],"237":[248,248,236,255],"238":[249,249,237,255],"239":[249,249,238,255],"240":[249,249,239,255],"241":[250,250,240,255],"242":[250,250,241,255],"243":[250,250,242,255],"244":[251,251,243,255],"245":[251,251,244,255],"246":[251,251,245,255],"247":[252,252,246,255],"248":[252,252,247,255],"249":[252,252,248,255],"250":[253,253,249,255],"251":[253,253,251,255],"252":[253,253,252,255],"253":[254,254,253,255],"254":[254,254,254,255],"255":[255,255,255,255]}, + plasma: {"0":[12,7,134,255],"1":[16,7,135,255],"2":[19,6,137,255],"3":[21,6,138,255],"4":[24,6,139,255],"5":[27,6,140,255],"6":[29,6,141,255],"7":[31,5,142,255],"8":[33,5,143,255],"9":[35,5,144,255],"10":[37,5,145,255],"11":[39,5,146,255],"12":[41,5,147,255],"13":[43,5,148,255],"14":[45,4,148,255],"15":[47,4,149,255],"16":[49,4,150,255],"17":[51,4,151,255],"18":[52,4,152,255],"19":[54,4,152,255],"20":[56,4,153,255],"21":[58,4,154,255],"22":[59,3,154,255],"23":[61,3,155,255],"24":[63,3,156,255],"25":[64,3,156,255],"26":[66,3,157,255],"27":[68,3,158,255],"28":[69,3,158,255],"29":[71,2,159,255],"30":[73,2,159,255],"31":[74,2,160,255],"32":[76,2,161,255],"33":[78,2,161,255],"34":[79,2,162,255],"35":[81,1,162,255],"36":[82,1,163,255],"37":[84,1,163,255],"38":[86,1,163,255],"39":[87,1,164,255],"40":[89,1,164,255],"41":[90,0,165,255],"42":[92,0,165,255],"43":[94,0,165,255],"44":[95,0,166,255],"45":[97,0,166,255],"46":[98,0,166,255],"47":[100,0,167,255],"48":[101,0,167,255],"49":[103,0,167,255],"50":[104,0,167,255],"51":[106,0,167,255],"52":[108,0,168,255],"53":[109,0,168,255],"54":[111,0,168,255],"55":[112,0,168,255],"56":[114,0,168,255],"57":[115,0,168,255],"58":[117,0,168,255],"59":[118,1,168,255],"60":[120,1,168,255],"61":[121,1,168,255],"62":[123,2,168,255],"63":[124,2,167,255],"64":[126,3,167,255],"65":[127,3,167,255],"66":[129,4,167,255],"67":[130,4,167,255],"68":[132,5,166,255],"69":[133,6,166,255],"70":[134,7,166,255],"71":[136,7,165,255],"72":[137,8,165,255],"73":[139,9,164,255],"74":[140,10,164,255],"75":[142,12,164,255],"76":[143,13,163,255],"77":[144,14,163,255],"78":[146,15,162,255],"79":[147,16,161,255],"80":[149,17,161,255],"81":[150,18,160,255],"82":[151,19,160,255],"83":[153,20,159,255],"84":[154,21,158,255],"85":[155,23,158,255],"86":[157,24,157,255],"87":[158,25,156,255],"88":[159,26,155,255],"89":[160,27,155,255],"90":[162,28,154,255],"91":[163,29,153,255],"92":[164,30,152,255],"93":[165,31,151,255],"94":[167,33,151,255],"95":[168,34,150,255],"96":[169,35,149,255],"97":[170,36,148,255],"98":[172,37,147,255],"99":[173,38,146,255],"100":[174,39,145,255],"101":[175,40,144,255],"102":[176,42,143,255],"103":[177,43,143,255],"104":[178,44,142,255],"105":[180,45,141,255],"106":[181,46,140,255],"107":[182,47,139,255],"108":[183,48,138,255],"109":[184,50,137,255],"110":[185,51,136,255],"111":[186,52,135,255],"112":[187,53,134,255],"113":[188,54,133,255],"114":[189,55,132,255],"115":[190,56,131,255],"116":[191,57,130,255],"117":[192,59,129,255],"118":[193,60,128,255],"119":[194,61,128,255],"120":[195,62,127,255],"121":[196,63,126,255],"122":[197,64,125,255],"123":[198,65,124,255],"124":[199,66,123,255],"125":[200,68,122,255],"126":[201,69,121,255],"127":[202,70,120,255],"128":[203,71,119,255],"129":[204,72,118,255],"130":[205,73,117,255],"131":[206,74,117,255],"132":[207,75,116,255],"133":[208,77,115,255],"134":[209,78,114,255],"135":[209,79,113,255],"136":[210,80,112,255],"137":[211,81,111,255],"138":[212,82,110,255],"139":[213,83,109,255],"140":[214,85,109,255],"141":[215,86,108,255],"142":[215,87,107,255],"143":[216,88,106,255],"144":[217,89,105,255],"145":[218,90,104,255],"146":[219,91,103,255],"147":[220,93,102,255],"148":[220,94,102,255],"149":[221,95,101,255],"150":[222,96,100,255],"151":[223,97,99,255],"152":[223,98,98,255],"153":[224,100,97,255],"154":[225,101,96,255],"155":[226,102,96,255],"156":[227,103,95,255],"157":[227,104,94,255],"158":[228,106,93,255],"159":[229,107,92,255],"160":[229,108,91,255],"161":[230,109,90,255],"162":[231,110,90,255],"163":[232,112,89,255],"164":[232,113,88,255],"165":[233,114,87,255],"166":[234,115,86,255],"167":[234,116,85,255],"168":[235,118,84,255],"169":[236,119,84,255],"170":[236,120,83,255],"171":[237,121,82,255],"172":[237,123,81,255],"173":[238,124,80,255],"174":[239,125,79,255],"175":[239,126,78,255],"176":[240,128,77,255],"177":[240,129,77,255],"178":[241,130,76,255],"179":[242,132,75,255],"180":[242,133,74,255],"181":[243,134,73,255],"182":[243,135,72,255],"183":[244,137,71,255],"184":[244,138,71,255],"185":[245,139,70,255],"186":[245,141,69,255],"187":[246,142,68,255],"188":[246,143,67,255],"189":[246,145,66,255],"190":[247,146,65,255],"191":[247,147,65,255],"192":[248,149,64,255],"193":[248,150,63,255],"194":[248,152,62,255],"195":[249,153,61,255],"196":[249,154,60,255],"197":[250,156,59,255],"198":[250,157,58,255],"199":[250,159,58,255],"200":[250,160,57,255],"201":[251,162,56,255],"202":[251,163,55,255],"203":[251,164,54,255],"204":[252,166,53,255],"205":[252,167,53,255],"206":[252,169,52,255],"207":[252,170,51,255],"208":[252,172,50,255],"209":[252,173,49,255],"210":[253,175,49,255],"211":[253,176,48,255],"212":[253,178,47,255],"213":[253,179,46,255],"214":[253,181,45,255],"215":[253,182,45,255],"216":[253,184,44,255],"217":[253,185,43,255],"218":[253,187,43,255],"219":[253,188,42,255],"220":[253,190,41,255],"221":[253,192,41,255],"222":[253,193,40,255],"223":[253,195,40,255],"224":[253,196,39,255],"225":[253,198,38,255],"226":[252,199,38,255],"227":[252,201,38,255],"228":[252,203,37,255],"229":[252,204,37,255],"230":[252,206,37,255],"231":[251,208,36,255],"232":[251,209,36,255],"233":[251,211,36,255],"234":[250,213,36,255],"235":[250,214,36,255],"236":[250,216,36,255],"237":[249,217,36,255],"238":[249,219,36,255],"239":[248,221,36,255],"240":[248,223,36,255],"241":[247,224,36,255],"242":[247,226,37,255],"243":[246,228,37,255],"244":[246,229,37,255],"245":[245,231,38,255],"246":[245,233,38,255],"247":[244,234,38,255],"248":[243,236,38,255],"249":[243,238,38,255],"250":[242,240,38,255],"251":[242,241,38,255],"252":[241,243,38,255],"253":[240,245,37,255],"254":[240,246,35,255],"255":[239,248,33,255]}, + prgn: {"0":[64,0,75,255],"1":[66,1,77,255],"2":[68,3,79,255],"3":[70,4,81,255],"4":[72,6,83,255],"5":[74,8,85,255],"6":[76,9,88,255],"7":[78,11,90,255],"8":[80,13,92,255],"9":[83,14,94,255],"10":[85,16,96,255],"11":[87,18,99,255],"12":[89,19,101,255],"13":[91,21,103,255],"14":[93,23,105,255],"15":[95,24,107,255],"16":[97,26,110,255],"17":[100,28,112,255],"18":[102,29,114,255],"19":[104,31,116,255],"20":[106,32,118,255],"21":[108,34,121,255],"22":[110,36,123,255],"23":[112,37,125,255],"24":[114,39,127,255],"25":[116,41,129,255],"26":[118,43,131,255],"27":[120,46,133,255],"28":[121,48,134,255],"29":[122,51,136,255],"30":[124,54,138,255],"31":[125,57,139,255],"32":[126,59,141,255],"33":[128,62,142,255],"34":[129,65,144,255],"35":[131,68,145,255],"36":[132,70,147,255],"37":[133,73,149,255],"38":[135,76,150,255],"39":[136,79,152,255],"40":[137,81,153,255],"41":[139,84,155,255],"42":[140,87,156,255],"43":[142,90,158,255],"44":[143,92,160,255],"45":[144,95,161,255],"46":[146,98,163,255],"47":[147,101,164,255],"48":[148,103,166,255],"49":[150,106,167,255],"50":[151,109,169,255],"51":[153,112,171,255],"52":[154,114,172,255],"53":[156,116,173,255],"54":[157,118,175,255],"55":[159,120,176,255],"56":[161,122,178,255],"57":[162,124,179,255],"58":[164,126,180,255],"59":[165,128,182,255],"60":[167,130,183,255],"61":[169,132,185,255],"62":[170,134,186,255],"63":[172,136,187,255],"64":[173,139,189,255],"65":[175,141,190,255],"66":[177,143,192,255],"67":[178,145,193,255],"68":[180,147,195,255],"69":[181,149,196,255],"70":[183,151,197,255],"71":[185,153,199,255],"72":[186,155,200,255],"73":[188,157,202,255],"74":[189,159,203,255],"75":[191,161,204,255],"76":[193,163,206,255],"77":[194,165,207,255],"78":[196,167,208,255],"79":[197,169,209,255],"80":[199,171,210,255],"81":[200,173,211,255],"82":[201,175,212,255],"83":[203,176,213,255],"84":[204,178,214,255],"85":[206,180,215,255],"86":[207,182,216,255],"87":[209,184,217,255],"88":[210,186,218,255],"89":[212,188,219,255],"90":[213,189,220,255],"91":[215,191,221,255],"92":[216,193,222,255],"93":[217,195,223,255],"94":[219,197,224,255],"95":[220,199,225,255],"96":[222,200,226,255],"97":[223,202,227,255],"98":[225,204,228,255],"99":[226,206,229,255],"100":[228,208,230,255],"101":[229,210,231,255],"102":[231,212,232,255],"103":[231,213,232,255],"104":[232,214,233,255],"105":[232,216,233,255],"106":[233,217,234,255],"107":[234,218,234,255],"108":[234,220,235,255],"109":[235,221,236,255],"110":[236,222,236,255],"111":[236,224,237,255],"112":[237,225,237,255],"113":[237,227,238,255],"114":[238,228,239,255],"115":[239,229,239,255],"116":[239,231,240,255],"117":[240,232,240,255],"118":[241,233,241,255],"119":[241,235,242,255],"120":[242,236,242,255],"121":[242,238,243,255],"122":[243,239,243,255],"123":[244,240,244,255],"124":[244,242,244,255],"125":[245,243,245,255],"126":[246,244,246,255],"127":[246,246,246,255],"128":[246,246,246,255],"129":[245,246,244,255],"130":[244,246,243,255],"131":[242,246,242,255],"132":[241,245,240,255],"133":[240,245,239,255],"134":[239,245,237,255],"135":[238,244,236,255],"136":[237,244,235,255],"137":[235,244,233,255],"138":[234,244,232,255],"139":[233,243,230,255],"140":[232,243,229,255],"141":[231,243,227,255],"142":[229,243,226,255],"143":[228,242,225,255],"144":[227,242,223,255],"145":[226,242,222,255],"146":[225,241,220,255],"147":[224,241,219,255],"148":[222,241,218,255],"149":[221,241,216,255],"150":[220,240,215,255],"151":[219,240,213,255],"152":[218,240,212,255],"153":[217,240,211,255],"154":[215,239,209,255],"155":[213,238,207,255],"156":[211,237,205,255],"157":[209,236,203,255],"158":[207,235,201,255],"159":[205,235,199,255],"160":[203,234,197,255],"161":[201,233,195,255],"162":[199,232,193,255],"163":[197,231,191,255],"164":[195,230,189,255],"165":[193,230,187,255],"166":[191,229,185,255],"167":[189,228,183,255],"168":[187,227,181,255],"169":[185,226,179,255],"170":[183,226,177,255],"171":[181,225,175,255],"172":[179,224,173,255],"173":[177,223,171,255],"174":[175,222,169,255],"175":[173,221,167,255],"176":[171,221,165,255],"177":[169,220,163,255],"178":[167,219,161,255],"179":[164,218,158,255],"180":[161,216,156,255],"181":[158,214,153,255],"182":[155,212,151,255],"183":[152,211,148,255],"184":[149,209,146,255],"185":[146,207,143,255],"186":[143,205,141,255],"187":[140,204,139,255],"188":[137,202,136,255],"189":[134,200,134,255],"190":[131,198,131,255],"191":[128,196,129,255],"192":[125,195,126,255],"193":[122,193,124,255],"194":[119,191,121,255],"195":[116,189,119,255],"196":[113,188,116,255],"197":[110,186,114,255],"198":[107,184,111,255],"199":[104,182,109,255],"200":[101,181,106,255],"201":[98,179,104,255],"202":[95,177,101,255],"203":[92,175,99,255],"204":[90,174,97,255],"205":[87,171,95,255],"206":[85,169,93,255],"207":[82,167,92,255],"208":[80,165,90,255],"209":[77,163,88,255],"210":[75,161,87,255],"211":[72,159,85,255],"212":[70,157,83,255],"213":[67,154,82,255],"214":[65,152,80,255],"215":[62,150,78,255],"216":[60,148,77,255],"217":[57,146,75,255],"218":[55,144,73,255],"219":[52,142,72,255],"220":[50,140,70,255],"221":[48,138,69,255],"222":[45,135,67,255],"223":[43,133,65,255],"224":[40,131,64,255],"225":[38,129,62,255],"226":[35,127,60,255],"227":[33,125,59,255],"228":[30,123,57,255],"229":[28,121,55,255],"230":[26,118,54,255],"231":[25,116,53,255],"232":[24,114,52,255],"233":[23,112,51,255],"234":[22,110,50,255],"235":[21,108,48,255],"236":[20,106,47,255],"237":[19,104,46,255],"238":[18,102,45,255],"239":[16,100,44,255],"240":[15,98,43,255],"241":[14,96,42,255],"242":[13,94,41,255],"243":[12,92,40,255],"244":[11,90,39,255],"245":[10,88,37,255],"246":[9,86,36,255],"247":[8,84,35,255],"248":[7,82,34,255],"249":[6,80,33,255],"250":[5,78,32,255],"251":[4,76,31,255],"252":[3,74,30,255],"253":[2,72,29,255],"254":[1,70,28,255],"255":[0,68,27,255]}, + pubu: {"0":[255,247,251,255],"1":[254,246,250,255],"2":[253,245,250,255],"3":[253,245,250,255],"4":[252,244,249,255],"5":[252,244,249,255],"6":[251,243,249,255],"7":[250,243,249,255],"8":[250,242,248,255],"9":[249,242,248,255],"10":[249,241,248,255],"11":[248,241,247,255],"12":[247,240,247,255],"13":[247,240,247,255],"14":[246,239,247,255],"15":[246,239,246,255],"16":[245,238,246,255],"17":[244,238,246,255],"18":[244,237,245,255],"19":[243,237,245,255],"20":[243,236,245,255],"21":[242,236,245,255],"22":[241,235,244,255],"23":[241,235,244,255],"24":[240,234,244,255],"25":[240,234,243,255],"26":[239,233,243,255],"27":[238,233,243,255],"28":[238,232,243,255],"29":[237,232,242,255],"30":[237,231,242,255],"31":[236,231,242,255],"32":[235,230,241,255],"33":[235,230,241,255],"34":[234,229,241,255],"35":[233,228,240,255],"36":[232,228,240,255],"37":[231,227,240,255],"38":[230,226,239,255],"39":[229,226,239,255],"40":[228,225,238,255],"41":[227,224,238,255],"42":[227,224,238,255],"43":[226,223,237,255],"44":[225,222,237,255],"45":[224,221,237,255],"46":[223,221,236,255],"47":[222,220,236,255],"48":[221,219,235,255],"49":[220,219,235,255],"50":[220,218,235,255],"51":[219,217,234,255],"52":[218,217,234,255],"53":[217,216,234,255],"54":[216,215,233,255],"55":[215,215,233,255],"56":[214,214,232,255],"57":[213,213,232,255],"58":[213,212,232,255],"59":[212,212,231,255],"60":[211,211,231,255],"61":[210,210,231,255],"62":[209,210,230,255],"63":[208,209,230,255],"64":[207,208,229,255],"65":[206,208,229,255],"66":[205,207,229,255],"67":[203,206,228,255],"68":[202,206,228,255],"69":[201,205,228,255],"70":[199,205,227,255],"71":[198,204,227,255],"72":[197,203,227,255],"73":[195,203,226,255],"74":[194,202,226,255],"75":[193,201,226,255],"76":[191,201,225,255],"77":[190,200,225,255],"78":[189,200,225,255],"79":[187,199,224,255],"80":[186,198,224,255],"81":[185,198,224,255],"82":[183,197,223,255],"83":[182,196,223,255],"84":[181,196,223,255],"85":[180,195,222,255],"86":[178,195,222,255],"87":[177,194,221,255],"88":[176,193,221,255],"89":[174,193,221,255],"90":[173,192,220,255],"91":[172,191,220,255],"92":[170,191,220,255],"93":[169,190,219,255],"94":[168,190,219,255],"95":[166,189,219,255],"96":[165,188,218,255],"97":[163,188,218,255],"98":[162,187,218,255],"99":[160,186,217,255],"100":[159,186,217,255],"101":[157,185,216,255],"102":[156,185,216,255],"103":[154,184,216,255],"104":[152,183,215,255],"105":[151,183,215,255],"106":[149,182,215,255],"107":[148,181,214,255],"108":[146,181,214,255],"109":[145,180,213,255],"110":[143,179,213,255],"111":[141,179,213,255],"112":[140,178,212,255],"113":[138,178,212,255],"114":[137,177,212,255],"115":[135,176,211,255],"116":[134,176,211,255],"117":[132,175,210,255],"118":[130,174,210,255],"119":[129,174,210,255],"120":[127,173,209,255],"121":[126,173,209,255],"122":[124,172,209,255],"123":[123,171,208,255],"124":[121,171,208,255],"125":[119,170,207,255],"126":[118,169,207,255],"127":[116,169,207,255],"128":[115,168,206,255],"129":[113,167,206,255],"130":[111,167,205,255],"131":[109,166,205,255],"132":[107,165,204,255],"133":[105,164,204,255],"134":[103,163,203,255],"135":[101,163,203,255],"136":[99,162,203,255],"137":[97,161,202,255],"138":[95,160,202,255],"139":[93,159,201,255],"140":[91,159,201,255],"141":[89,158,200,255],"142":[87,157,200,255],"143":[85,156,199,255],"144":[83,156,199,255],"145":[81,155,198,255],"146":[80,154,198,255],"147":[78,153,197,255],"148":[76,152,197,255],"149":[74,152,196,255],"150":[72,151,196,255],"151":[70,150,195,255],"152":[68,149,195,255],"153":[66,148,195,255],"154":[64,148,194,255],"155":[62,147,194,255],"156":[60,146,193,255],"157":[58,145,193,255],"158":[56,145,192,255],"159":[54,144,192,255],"160":[53,143,191,255],"161":[51,142,191,255],"162":[49,141,190,255],"163":[48,140,190,255],"164":[46,139,189,255],"165":[45,138,189,255],"166":[43,137,188,255],"167":[42,136,188,255],"168":[40,135,187,255],"169":[39,134,187,255],"170":[37,133,186,255],"171":[36,132,186,255],"172":[34,131,185,255],"173":[33,130,185,255],"174":[31,129,184,255],"175":[29,128,184,255],"176":[28,127,183,255],"177":[26,126,183,255],"178":[25,125,182,255],"179":[23,124,182,255],"180":[22,123,181,255],"181":[20,122,181,255],"182":[19,121,180,255],"183":[17,120,180,255],"184":[16,119,179,255],"185":[14,118,179,255],"186":[13,117,178,255],"187":[11,116,178,255],"188":[9,115,177,255],"189":[8,114,177,255],"190":[6,113,176,255],"191":[5,112,176,255],"192":[4,111,175,255],"193":[4,110,174,255],"194":[4,110,172,255],"195":[4,109,171,255],"196":[4,108,170,255],"197":[4,108,169,255],"198":[4,107,168,255],"199":[4,106,167,255],"200":[4,105,166,255],"201":[4,105,165,255],"202":[4,104,164,255],"203":[4,103,163,255],"204":[4,103,162,255],"205":[4,102,160,255],"206":[4,101,159,255],"207":[4,101,158,255],"208":[4,100,157,255],"209":[4,99,156,255],"210":[4,99,155,255],"211":[4,98,154,255],"212":[4,97,153,255],"213":[4,96,152,255],"214":[4,96,151,255],"215":[4,95,149,255],"216":[4,94,148,255],"217":[4,94,147,255],"218":[4,93,146,255],"219":[4,92,145,255],"220":[4,92,144,255],"221":[4,91,143,255],"222":[4,90,142,255],"223":[4,90,141,255],"224":[3,89,139,255],"225":[3,88,137,255],"226":[3,86,136,255],"227":[3,85,134,255],"228":[3,84,132,255],"229":[3,83,131,255],"230":[3,82,129,255],"231":[3,81,127,255],"232":[3,80,126,255],"233":[3,79,124,255],"234":[3,78,122,255],"235":[3,77,121,255],"236":[3,76,119,255],"237":[3,75,117,255],"238":[3,74,116,255],"239":[3,73,114,255],"240":[2,72,112,255],"241":[2,70,111,255],"242":[2,69,109,255],"243":[2,68,107,255],"244":[2,67,106,255],"245":[2,66,104,255],"246":[2,65,102,255],"247":[2,64,101,255],"248":[2,63,99,255],"249":[2,62,97,255],"250":[2,61,96,255],"251":[2,60,94,255],"252":[2,59,92,255],"253":[2,58,91,255],"254":[2,57,89,255],"255":[2,56,88,255]}, + pubugn: {"0":[255,247,251,255],"1":[254,246,250,255],"2":[253,245,250,255],"3":[253,245,249,255],"4":[252,244,249,255],"5":[252,243,249,255],"6":[251,243,248,255],"7":[250,242,248,255],"8":[250,241,248,255],"9":[249,241,247,255],"10":[249,240,247,255],"11":[248,239,247,255],"12":[247,239,246,255],"13":[247,238,246,255],"14":[246,237,246,255],"15":[246,237,245,255],"16":[245,236,245,255],"17":[244,235,245,255],"18":[244,235,244,255],"19":[243,234,244,255],"20":[243,233,244,255],"21":[242,233,243,255],"22":[241,232,243,255],"23":[241,231,243,255],"24":[240,231,242,255],"25":[240,230,242,255],"26":[239,229,242,255],"27":[238,229,241,255],"28":[238,228,241,255],"29":[237,227,240,255],"30":[237,227,240,255],"31":[236,226,240,255],"32":[235,225,239,255],"33":[235,225,239,255],"34":[234,224,239,255],"35":[233,224,239,255],"36":[232,223,238,255],"37":[231,223,238,255],"38":[230,222,238,255],"39":[229,222,237,255],"40":[228,221,237,255],"41":[227,221,237,255],"42":[227,220,236,255],"43":[226,220,236,255],"44":[225,219,236,255],"45":[224,219,235,255],"46":[223,218,235,255],"47":[222,217,235,255],"48":[221,217,234,255],"49":[220,216,234,255],"50":[220,216,234,255],"51":[219,215,234,255],"52":[218,215,233,255],"53":[217,214,233,255],"54":[216,214,233,255],"55":[215,213,232,255],"56":[214,213,232,255],"57":[213,212,232,255],"58":[213,212,231,255],"59":[212,211,231,255],"60":[211,211,231,255],"61":[210,210,230,255],"62":[209,209,230,255],"63":[208,209,230,255],"64":[207,208,229,255],"65":[206,208,229,255],"66":[205,207,229,255],"67":[203,206,228,255],"68":[202,206,228,255],"69":[201,205,228,255],"70":[199,205,227,255],"71":[198,204,227,255],"72":[197,203,227,255],"73":[195,203,226,255],"74":[194,202,226,255],"75":[193,201,226,255],"76":[191,201,225,255],"77":[190,200,225,255],"78":[189,200,225,255],"79":[187,199,224,255],"80":[186,198,224,255],"81":[185,198,224,255],"82":[183,197,223,255],"83":[182,196,223,255],"84":[181,196,223,255],"85":[180,195,222,255],"86":[178,195,222,255],"87":[177,194,221,255],"88":[176,193,221,255],"89":[174,193,221,255],"90":[173,192,220,255],"91":[172,191,220,255],"92":[170,191,220,255],"93":[169,190,219,255],"94":[168,190,219,255],"95":[166,189,219,255],"96":[165,188,218,255],"97":[163,188,218,255],"98":[161,187,218,255],"99":[159,186,217,255],"100":[157,186,217,255],"101":[155,185,216,255],"102":[153,185,216,255],"103":[151,184,216,255],"104":[149,183,215,255],"105":[147,183,215,255],"106":[145,182,215,255],"107":[143,181,214,255],"108":[141,181,214,255],"109":[139,180,213,255],"110":[137,179,213,255],"111":[135,179,213,255],"112":[133,178,212,255],"113":[131,178,212,255],"114":[129,177,212,255],"115":[127,176,211,255],"116":[125,176,211,255],"117":[123,175,210,255],"118":[121,174,210,255],"119":[119,174,210,255],"120":[117,173,209,255],"121":[115,173,209,255],"122":[113,172,209,255],"123":[111,171,208,255],"124":[109,171,208,255],"125":[107,170,207,255],"126":[105,169,207,255],"127":[103,169,207,255],"128":[102,168,206,255],"129":[100,167,206,255],"130":[99,167,205,255],"131":[97,166,205,255],"132":[96,165,204,255],"133":[94,164,204,255],"134":[93,163,203,255],"135":[91,163,203,255],"136":[89,162,203,255],"137":[88,161,202,255],"138":[86,160,202,255],"139":[85,159,201,255],"140":[83,159,201,255],"141":[82,158,200,255],"142":[80,157,200,255],"143":[79,156,199,255],"144":[77,156,199,255],"145":[76,155,198,255],"146":[74,154,198,255],"147":[73,153,197,255],"148":[71,152,197,255],"149":[69,152,196,255],"150":[68,151,196,255],"151":[66,150,195,255],"152":[65,149,195,255],"153":[63,148,195,255],"154":[62,148,194,255],"155":[60,147,194,255],"156":[59,146,193,255],"157":[57,145,193,255],"158":[56,145,192,255],"159":[54,144,192,255],"160":[52,143,190,255],"161":[51,143,189,255],"162":[49,142,187,255],"163":[48,142,185,255],"164":[46,141,184,255],"165":[44,141,182,255],"166":[43,140,180,255],"167":[41,140,179,255],"168":[39,139,177,255],"169":[38,139,175,255],"170":[36,139,174,255],"171":[35,138,172,255],"172":[33,138,170,255],"173":[31,137,168,255],"174":[30,137,167,255],"175":[28,136,165,255],"176":[26,136,163,255],"177":[25,135,162,255],"178":[23,135,160,255],"179":[21,134,158,255],"180":[20,134,157,255],"181":[18,133,155,255],"182":[17,133,153,255],"183":[15,132,151,255],"184":[13,132,150,255],"185":[12,131,148,255],"186":[10,131,146,255],"187":[8,131,145,255],"188":[7,130,143,255],"189":[5,130,141,255],"190":[4,129,140,255],"191":[2,129,138,255],"192":[1,128,136,255],"193":[1,127,135,255],"194":[1,127,133,255],"195":[1,126,132,255],"196":[1,125,130,255],"197":[1,125,129,255],"198":[1,124,127,255],"199":[1,123,126,255],"200":[1,123,124,255],"201":[1,122,123,255],"202":[1,121,121,255],"203":[1,121,119,255],"204":[1,120,118,255],"205":[1,119,116,255],"206":[1,119,115,255],"207":[1,118,113,255],"208":[1,117,112,255],"209":[1,117,110,255],"210":[1,116,109,255],"211":[1,115,107,255],"212":[1,115,106,255],"213":[1,114,104,255],"214":[1,114,103,255],"215":[1,113,101,255],"216":[1,112,99,255],"217":[1,112,98,255],"218":[1,111,96,255],"219":[1,110,95,255],"220":[1,110,93,255],"221":[1,109,92,255],"222":[1,108,90,255],"223":[1,108,89,255],"224":[1,106,88,255],"225":[1,105,86,255],"226":[1,104,85,255],"227":[1,103,84,255],"228":[1,102,83,255],"229":[1,100,82,255],"230":[1,99,81,255],"231":[1,98,80,255],"232":[1,97,79,255],"233":[1,96,78,255],"234":[1,95,77,255],"235":[1,93,75,255],"236":[1,92,74,255],"237":[1,91,73,255],"238":[1,90,72,255],"239":[1,89,71,255],"240":[1,87,70,255],"241":[1,86,69,255],"242":[1,85,68,255],"243":[1,84,67,255],"244":[1,83,66,255],"245":[1,81,64,255],"246":[1,80,63,255],"247":[1,79,62,255],"248":[1,78,61,255],"249":[1,77,60,255],"250":[1,75,59,255],"251":[1,74,58,255],"252":[1,73,57,255],"253":[1,72,56,255],"254":[1,71,55,255],"255":[1,70,54,255]}, + purd: {"0":[247,244,249,255],"1":[246,243,248,255],"2":[245,242,248,255],"3":[245,242,248,255],"4":[244,241,247,255],"5":[244,241,247,255],"6":[243,240,247,255],"7":[243,239,246,255],"8":[242,239,246,255],"9":[242,238,246,255],"10":[241,238,245,255],"11":[241,237,245,255],"12":[240,236,245,255],"13":[240,236,244,255],"14":[239,235,244,255],"15":[239,235,244,255],"16":[238,234,243,255],"17":[238,233,243,255],"18":[237,233,243,255],"19":[237,232,243,255],"20":[236,232,242,255],"21":[236,231,242,255],"22":[235,230,242,255],"23":[235,230,241,255],"24":[234,229,241,255],"25":[234,229,241,255],"26":[233,228,240,255],"27":[233,227,240,255],"28":[232,227,240,255],"29":[232,226,239,255],"30":[231,226,239,255],"31":[231,225,239,255],"32":[230,224,238,255],"33":[230,223,238,255],"34":[229,222,237,255],"35":[229,221,236,255],"36":[228,219,236,255],"37":[227,218,235,255],"38":[227,217,234,255],"39":[226,216,234,255],"40":[226,214,233,255],"41":[225,213,232,255],"42":[224,212,232,255],"43":[224,211,231,255],"44":[223,209,231,255],"45":[223,208,230,255],"46":[222,207,229,255],"47":[221,206,229,255],"48":[221,204,228,255],"49":[220,203,227,255],"50":[220,202,227,255],"51":[219,201,226,255],"52":[219,199,225,255],"53":[218,198,225,255],"54":[217,197,224,255],"55":[217,195,223,255],"56":[216,194,223,255],"57":[216,193,222,255],"58":[215,192,221,255],"59":[214,190,221,255],"60":[214,189,220,255],"61":[213,188,219,255],"62":[213,187,219,255],"63":[212,185,218,255],"64":[211,184,217,255],"65":[211,183,217,255],"66":[211,182,216,255],"67":[210,181,216,255],"68":[210,180,215,255],"69":[210,178,214,255],"70":[209,177,214,255],"71":[209,176,213,255],"72":[209,175,213,255],"73":[208,174,212,255],"74":[208,173,211,255],"75":[208,171,211,255],"76":[207,170,210,255],"77":[207,169,210,255],"78":[207,168,209,255],"79":[206,167,208,255],"80":[206,166,208,255],"81":[206,164,207,255],"82":[205,163,207,255],"83":[205,162,206,255],"84":[205,161,205,255],"85":[204,160,205,255],"86":[204,159,204,255],"87":[203,158,204,255],"88":[203,156,203,255],"89":[203,155,202,255],"90":[202,154,202,255],"91":[202,153,201,255],"92":[202,152,201,255],"93":[201,151,200,255],"94":[201,149,199,255],"95":[201,148,199,255],"96":[201,147,198,255],"97":[201,145,198,255],"98":[202,144,197,255],"99":[203,143,196,255],"100":[204,141,195,255],"101":[204,140,195,255],"102":[205,138,194,255],"103":[206,137,193,255],"104":[206,135,192,255],"105":[207,134,192,255],"106":[208,132,191,255],"107":[208,131,190,255],"108":[209,129,190,255],"109":[210,128,189,255],"110":[210,126,188,255],"111":[211,125,187,255],"112":[212,123,187,255],"113":[212,122,186,255],"114":[213,120,185,255],"115":[214,119,185,255],"116":[215,117,184,255],"117":[215,116,183,255],"118":[216,115,182,255],"119":[217,113,182,255],"120":[217,112,181,255],"121":[218,110,180,255],"122":[219,109,179,255],"123":[219,107,179,255],"124":[220,106,178,255],"125":[221,104,177,255],"126":[221,103,177,255],"127":[222,101,176,255],"128":[223,100,175,255],"129":[223,98,174,255],"130":[223,96,173,255],"131":[223,94,171,255],"132":[224,92,170,255],"133":[224,90,169,255],"134":[224,88,168,255],"135":[224,86,167,255],"136":[225,85,165,255],"137":[225,83,164,255],"138":[225,81,163,255],"139":[225,79,162,255],"140":[226,77,161,255],"141":[226,75,159,255],"142":[226,73,158,255],"143":[226,71,157,255],"144":[227,69,156,255],"145":[227,68,155,255],"146":[227,66,153,255],"147":[227,64,152,255],"148":[228,62,151,255],"149":[228,60,150,255],"150":[228,58,149,255],"151":[228,56,147,255],"152":[229,54,146,255],"153":[229,52,145,255],"154":[229,51,144,255],"155":[229,49,143,255],"156":[230,47,142,255],"157":[230,45,140,255],"158":[230,43,139,255],"159":[230,41,138,255],"160":[230,40,136,255],"161":[229,39,135,255],"162":[228,39,133,255],"163":[228,38,132,255],"164":[227,37,130,255],"165":[226,36,128,255],"166":[225,36,127,255],"167":[225,35,125,255],"168":[224,34,123,255],"169":[223,34,122,255],"170":[222,33,120,255],"171":[221,32,119,255],"172":[221,31,117,255],"173":[220,31,115,255],"174":[219,30,114,255],"175":[218,29,112,255],"176":[217,29,110,255],"177":[217,28,109,255],"178":[216,27,107,255],"179":[215,26,105,255],"180":[214,26,104,255],"181":[214,25,102,255],"182":[213,24,101,255],"183":[212,23,99,255],"184":[211,23,97,255],"185":[210,22,96,255],"186":[210,21,94,255],"187":[209,21,92,255],"188":[208,20,91,255],"189":[207,19,89,255],"190":[206,18,88,255],"191":[206,18,86,255],"192":[204,17,85,255],"193":[203,17,84,255],"194":[201,16,84,255],"195":[199,15,83,255],"196":[197,15,83,255],"197":[196,14,82,255],"198":[194,14,81,255],"199":[192,13,81,255],"200":[191,13,80,255],"201":[189,12,80,255],"202":[187,11,79,255],"203":[186,11,78,255],"204":[184,10,78,255],"205":[182,10,77,255],"206":[181,9,77,255],"207":[179,9,76,255],"208":[177,8,76,255],"209":[175,7,75,255],"210":[174,7,74,255],"211":[172,6,74,255],"212":[170,6,73,255],"213":[169,5,73,255],"214":[167,5,72,255],"215":[165,4,71,255],"216":[164,4,71,255],"217":[162,3,70,255],"218":[160,2,70,255],"219":[158,2,69,255],"220":[157,1,68,255],"221":[155,1,68,255],"222":[153,0,67,255],"223":[152,0,67,255],"224":[150,0,66,255],"225":[149,0,64,255],"226":[147,0,63,255],"227":[146,0,62,255],"228":[144,0,61,255],"229":[142,0,60,255],"230":[141,0,59,255],"231":[139,0,58,255],"232":[138,0,56,255],"233":[136,0,55,255],"234":[135,0,54,255],"235":[133,0,53,255],"236":[132,0,52,255],"237":[130,0,51,255],"238":[129,0,50,255],"239":[127,0,49,255],"240":[126,0,47,255],"241":[124,0,46,255],"242":[122,0,45,255],"243":[121,0,44,255],"244":[119,0,43,255],"245":[118,0,42,255],"246":[116,0,41,255],"247":[115,0,40,255],"248":[113,0,38,255],"249":[112,0,37,255],"250":[110,0,36,255],"251":[109,0,35,255],"252":[107,0,34,255],"253":[106,0,33,255],"254":[104,0,32,255],"255":[103,0,31,255]}, + purples: {"0":[252,251,253,255],"1":[251,250,252,255],"2":[251,250,252,255],"3":[250,249,252,255],"4":[250,249,251,255],"5":[249,248,251,255],"6":[249,248,251,255],"7":[249,247,251,255],"8":[248,247,250,255],"9":[248,247,250,255],"10":[247,246,250,255],"11":[247,246,250,255],"12":[247,245,249,255],"13":[246,245,249,255],"14":[246,244,249,255],"15":[245,244,249,255],"16":[245,243,248,255],"17":[245,243,248,255],"18":[244,243,248,255],"19":[244,242,248,255],"20":[243,242,247,255],"21":[243,241,247,255],"22":[243,241,247,255],"23":[242,240,247,255],"24":[242,240,246,255],"25":[241,240,246,255],"26":[241,239,246,255],"27":[240,239,246,255],"28":[240,238,245,255],"29":[240,238,245,255],"30":[239,237,245,255],"31":[239,237,245,255],"32":[238,236,244,255],"33":[238,236,244,255],"34":[237,235,244,255],"35":[236,235,244,255],"36":[236,234,243,255],"37":[235,233,243,255],"38":[234,233,243,255],"39":[234,232,242,255],"40":[233,232,242,255],"41":[232,231,242,255],"42":[232,230,241,255],"43":[231,230,241,255],"44":[231,229,241,255],"45":[230,229,240,255],"46":[229,228,240,255],"47":[229,227,240,255],"48":[228,227,239,255],"49":[227,226,239,255],"50":[227,226,239,255],"51":[226,225,239,255],"52":[225,225,238,255],"53":[225,224,238,255],"54":[224,223,238,255],"55":[223,223,237,255],"56":[223,222,237,255],"57":[222,222,237,255],"58":[221,221,236,255],"59":[221,220,236,255],"60":[220,220,236,255],"61":[219,219,235,255],"62":[219,219,235,255],"63":[218,218,235,255],"64":[217,217,234,255],"65":[216,216,234,255],"66":[215,215,233,255],"67":[214,215,233,255],"68":[214,214,233,255],"69":[213,213,232,255],"70":[212,212,232,255],"71":[211,211,231,255],"72":[210,210,231,255],"73":[209,209,230,255],"74":[208,208,230,255],"75":[207,207,229,255],"76":[206,206,229,255],"77":[205,205,228,255],"78":[204,205,228,255],"79":[203,204,227,255],"80":[202,203,227,255],"81":[201,202,226,255],"82":[200,201,226,255],"83":[199,200,225,255],"84":[198,199,225,255],"85":[198,198,225,255],"86":[197,197,224,255],"87":[196,196,224,255],"88":[195,195,223,255],"89":[194,195,223,255],"90":[193,194,222,255],"91":[192,193,222,255],"92":[191,192,221,255],"93":[190,191,221,255],"94":[189,190,220,255],"95":[188,189,220,255],"96":[187,188,219,255],"97":[186,187,219,255],"98":[185,186,218,255],"99":[184,185,217,255],"100":[183,184,217,255],"101":[182,183,216,255],"102":[182,182,216,255],"103":[181,180,215,255],"104":[180,179,214,255],"105":[179,178,214,255],"106":[178,177,213,255],"107":[177,176,212,255],"108":[176,175,212,255],"109":[175,174,211,255],"110":[174,173,210,255],"111":[173,172,210,255],"112":[172,171,209,255],"113":[171,169,209,255],"114":[170,168,208,255],"115":[169,167,207,255],"116":[168,166,207,255],"117":[167,165,206,255],"118":[166,164,205,255],"119":[166,163,205,255],"120":[165,162,204,255],"121":[164,161,204,255],"122":[163,160,203,255],"123":[162,158,202,255],"124":[161,157,202,255],"125":[160,156,201,255],"126":[159,155,200,255],"127":[158,154,200,255],"128":[157,153,199,255],"129":[156,152,199,255],"130":[155,151,198,255],"131":[154,150,198,255],"132":[153,149,198,255],"133":[152,148,197,255],"134":[151,148,197,255],"135":[150,147,196,255],"136":[150,146,196,255],"137":[149,145,195,255],"138":[148,144,195,255],"139":[147,143,194,255],"140":[146,142,194,255],"141":[145,141,194,255],"142":[144,140,193,255],"143":[143,139,193,255],"144":[142,138,192,255],"145":[141,138,192,255],"146":[140,137,191,255],"147":[139,136,191,255],"148":[138,135,190,255],"149":[137,134,190,255],"150":[136,133,190,255],"151":[135,132,189,255],"152":[134,131,189,255],"153":[134,130,188,255],"154":[133,129,188,255],"155":[132,128,187,255],"156":[131,128,187,255],"157":[130,127,187,255],"158":[129,126,186,255],"159":[128,125,186,255],"160":[127,124,185,255],"161":[126,122,184,255],"162":[126,121,184,255],"163":[125,119,183,255],"164":[124,118,182,255],"165":[124,117,181,255],"166":[123,115,181,255],"167":[122,114,180,255],"168":[122,113,179,255],"169":[121,111,179,255],"170":[120,110,178,255],"171":[119,108,177,255],"172":[119,107,176,255],"173":[118,106,176,255],"174":[117,104,175,255],"175":[117,103,174,255],"176":[116,102,174,255],"177":[115,100,173,255],"178":[115,99,172,255],"179":[114,97,171,255],"180":[113,96,171,255],"181":[113,95,170,255],"182":[112,93,169,255],"183":[111,92,168,255],"184":[111,91,168,255],"185":[110,89,167,255],"186":[109,88,166,255],"187":[108,86,166,255],"188":[108,85,165,255],"189":[107,84,164,255],"190":[106,82,163,255],"191":[106,81,163,255],"192":[105,80,162,255],"193":[104,78,161,255],"194":[104,77,161,255],"195":[103,76,160,255],"196":[102,74,160,255],"197":[102,73,159,255],"198":[101,72,158,255],"199":[100,70,158,255],"200":[99,69,157,255],"201":[99,68,156,255],"202":[98,66,156,255],"203":[97,65,155,255],"204":[97,64,155,255],"205":[96,62,154,255],"206":[95,61,153,255],"207":[95,60,153,255],"208":[94,58,152,255],"209":[93,57,151,255],"210":[93,56,151,255],"211":[92,54,150,255],"212":[91,53,149,255],"213":[90,52,149,255],"214":[90,51,148,255],"215":[89,49,148,255],"216":[88,48,147,255],"217":[88,47,146,255],"218":[87,45,146,255],"219":[86,44,145,255],"220":[86,43,144,255],"221":[85,41,144,255],"222":[84,40,143,255],"223":[84,39,143,255],"224":[83,37,142,255],"225":[82,36,141,255],"226":[82,35,141,255],"227":[81,34,140,255],"228":[80,33,140,255],"229":[80,31,139,255],"230":[79,30,139,255],"231":[78,29,138,255],"232":[78,28,137,255],"233":[77,26,137,255],"234":[76,25,136,255],"235":[76,24,136,255],"236":[75,23,135,255],"237":[74,22,135,255],"238":[74,20,134,255],"239":[73,19,134,255],"240":[72,18,133,255],"241":[72,17,132,255],"242":[71,15,132,255],"243":[70,14,131,255],"244":[70,13,131,255],"245":[69,12,130,255],"246":[68,11,130,255],"247":[68,9,129,255],"248":[67,8,128,255],"249":[66,7,128,255],"250":[66,6,127,255],"251":[65,4,127,255],"252":[64,3,126,255],"253":[64,2,126,255],"254":[63,1,125,255],"255":[63,0,125,255]}, + rain: {"0":[238,237,242,255],"1":[237,236,241,255],"2":[236,235,239,255],"3":[236,234,238,255],"4":[235,233,236,255],"5":[234,231,234,255],"6":[233,230,233,255],"7":[233,229,231,255],"8":[232,228,230,255],"9":[231,227,228,255],"10":[230,226,227,255],"11":[229,225,225,255],"12":[229,224,224,255],"13":[228,223,222,255],"14":[227,222,221,255],"15":[227,221,219,255],"16":[226,220,217,255],"17":[226,219,216,255],"18":[225,218,214,255],"19":[225,216,212,255],"20":[224,215,210,255],"21":[223,214,208,255],"22":[223,213,206,255],"23":[222,212,204,255],"24":[222,211,203,255],"25":[221,210,201,255],"26":[221,209,199,255],"27":[220,208,197,255],"28":[220,207,195,255],"29":[219,206,193,255],"30":[219,205,191,255],"31":[219,204,189,255],"32":[218,203,187,255],"33":[218,201,185,255],"34":[217,200,183,255],"35":[217,199,181,255],"36":[216,198,179,255],"37":[215,197,177,255],"38":[215,196,175,255],"39":[214,195,173,255],"40":[214,194,171,255],"41":[213,194,169,255],"42":[212,193,167,255],"43":[211,192,165,255],"44":[210,191,163,255],"45":[209,190,161,255],"46":[208,189,159,255],"47":[207,189,158,255],"48":[206,188,156,255],"49":[205,187,154,255],"50":[204,186,153,255],"51":[202,186,151,255],"52":[201,185,150,255],"53":[199,185,148,255],"54":[198,184,147,255],"55":[196,183,146,255],"56":[194,183,145,255],"57":[193,182,144,255],"58":[191,182,143,255],"59":[189,181,142,255],"60":[188,181,141,255],"61":[186,180,140,255],"62":[184,180,139,255],"63":[183,179,138,255],"64":[181,178,138,255],"65":[179,178,137,255],"66":[177,177,136,255],"67":[176,177,136,255],"68":[174,176,135,255],"69":[172,176,134,255],"70":[171,175,134,255],"71":[169,175,133,255],"72":[167,174,132,255],"73":[165,173,132,255],"74":[164,173,131,255],"75":[162,172,131,255],"76":[160,172,130,255],"77":[159,171,129,255],"78":[157,171,129,255],"79":[155,170,128,255],"80":[153,169,128,255],"81":[152,169,127,255],"82":[150,168,126,255],"83":[148,168,126,255],"84":[147,167,125,255],"85":[145,167,125,255],"86":[143,166,124,255],"87":[141,165,124,255],"88":[140,165,123,255],"89":[138,164,123,255],"90":[136,164,122,255],"91":[134,163,122,255],"92":[133,163,121,255],"93":[131,162,120,255],"94":[129,161,120,255],"95":[127,161,119,255],"96":[125,160,119,255],"97":[124,160,118,255],"98":[122,159,118,255],"99":[120,159,117,255],"100":[118,158,117,255],"101":[116,158,117,255],"102":[114,157,116,255],"103":[113,156,116,255],"104":[111,156,115,255],"105":[109,155,115,255],"106":[107,155,114,255],"107":[105,154,114,255],"108":[103,154,113,255],"109":[101,153,113,255],"110":[99,152,113,255],"111":[97,152,112,255],"112":[95,151,112,255],"113":[93,151,112,255],"114":[91,150,111,255],"115":[89,150,111,255],"116":[87,149,111,255],"117":[85,148,111,255],"118":[82,148,110,255],"119":[80,147,110,255],"120":[78,147,110,255],"121":[76,146,110,255],"122":[74,145,110,255],"123":[71,145,109,255],"124":[69,144,109,255],"125":[67,144,109,255],"126":[65,143,109,255],"127":[62,142,109,255],"128":[60,142,109,255],"129":[58,141,109,255],"130":[56,140,109,255],"131":[53,140,109,255],"132":[51,139,109,255],"133":[49,138,109,255],"134":[47,138,109,255],"135":[44,137,109,255],"136":[42,136,109,255],"137":[40,135,109,255],"138":[38,135,109,255],"139":[36,134,109,255],"140":[34,133,109,255],"141":[32,132,109,255],"142":[30,131,110,255],"143":[28,131,110,255],"144":[26,130,110,255],"145":[24,129,110,255],"146":[22,128,110,255],"147":[21,127,110,255],"148":[19,126,110,255],"149":[18,126,110,255],"150":[16,125,110,255],"151":[15,124,110,255],"152":[13,123,110,255],"153":[12,122,110,255],"154":[11,121,110,255],"155":[9,120,110,255],"156":[8,120,110,255],"157":[8,119,110,255],"158":[7,118,110,255],"159":[6,117,110,255],"160":[5,116,109,255],"161":[5,115,109,255],"162":[4,114,109,255],"163":[4,113,109,255],"164":[3,112,109,255],"165":[3,111,109,255],"166":[3,111,109,255],"167":[3,110,109,255],"168":[3,109,109,255],"169":[3,108,108,255],"170":[3,107,108,255],"171":[3,106,108,255],"172":[4,105,108,255],"173":[4,104,108,255],"174":[4,103,108,255],"175":[5,102,107,255],"176":[5,101,107,255],"177":[6,101,107,255],"178":[7,100,107,255],"179":[8,99,106,255],"180":[9,98,106,255],"181":[9,97,106,255],"182":[10,96,106,255],"183":[11,95,105,255],"184":[12,94,105,255],"185":[13,93,105,255],"186":[14,92,104,255],"187":[15,91,104,255],"188":[16,90,103,255],"189":[17,89,103,255],"190":[18,88,103,255],"191":[19,87,102,255],"192":[20,86,102,255],"193":[21,85,101,255],"194":[22,84,101,255],"195":[23,84,100,255],"196":[24,83,100,255],"197":[24,82,99,255],"198":[25,81,99,255],"199":[26,80,98,255],"200":[27,79,97,255],"201":[27,78,97,255],"202":[28,77,96,255],"203":[29,76,96,255],"204":[29,75,95,255],"205":[30,74,94,255],"206":[30,73,94,255],"207":[31,72,93,255],"208":[32,71,92,255],"209":[32,70,91,255],"210":[32,69,91,255],"211":[33,68,90,255],"212":[33,67,89,255],"213":[34,66,88,255],"214":[34,65,88,255],"215":[34,64,87,255],"216":[35,63,86,255],"217":[35,62,85,255],"218":[35,62,84,255],"219":[36,61,83,255],"220":[36,60,83,255],"221":[36,59,82,255],"222":[36,58,81,255],"223":[36,57,80,255],"224":[36,56,79,255],"225":[37,55,78,255],"226":[37,54,78,255],"227":[37,53,77,255],"228":[37,52,76,255],"229":[37,51,75,255],"230":[37,50,74,255],"231":[37,49,74,255],"232":[37,48,73,255],"233":[37,47,72,255],"234":[37,47,71,255],"235":[37,46,70,255],"236":[36,45,70,255],"237":[36,44,69,255],"238":[36,43,68,255],"239":[36,42,67,255],"240":[36,41,67,255],"241":[36,40,66,255],"242":[36,39,65,255],"243":[36,38,64,255],"244":[35,37,64,255],"245":[35,36,63,255],"246":[35,35,62,255],"247":[35,34,61,255],"248":[35,33,61,255],"249":[34,32,60,255],"250":[34,31,59,255],"251":[34,30,59,255],"252":[34,29,58,255],"253":[34,28,57,255],"254":[33,27,57,255],"255":[33,26,56,255]}, + reds: {"0":[255,245,240,255],"1":[254,244,239,255],"2":[254,243,238,255],"3":[254,243,237,255],"4":[254,242,236,255],"5":[254,241,235,255],"6":[254,241,234,255],"7":[254,240,233,255],"8":[254,239,232,255],"9":[254,239,231,255],"10":[254,238,230,255],"11":[254,237,229,255],"12":[254,237,228,255],"13":[254,236,227,255],"14":[254,235,226,255],"15":[254,235,225,255],"16":[254,234,224,255],"17":[254,233,224,255],"18":[254,233,223,255],"19":[254,232,222,255],"20":[254,231,221,255],"21":[254,231,220,255],"22":[254,230,219,255],"23":[254,229,218,255],"24":[254,229,217,255],"25":[254,228,216,255],"26":[254,227,215,255],"27":[254,227,214,255],"28":[254,226,213,255],"29":[254,225,212,255],"30":[254,225,211,255],"31":[254,224,210,255],"32":[253,223,209,255],"33":[253,222,208,255],"34":[253,221,206,255],"35":[253,220,205,255],"36":[253,219,203,255],"37":[253,218,202,255],"38":[253,216,200,255],"39":[253,215,199,255],"40":[253,214,197,255],"41":[253,213,195,255],"42":[253,212,194,255],"43":[253,211,192,255],"44":[253,209,191,255],"45":[253,208,189,255],"46":[253,207,188,255],"47":[253,206,186,255],"48":[252,205,185,255],"49":[252,204,183,255],"50":[252,202,182,255],"51":[252,201,180,255],"52":[252,200,179,255],"53":[252,199,177,255],"54":[252,198,175,255],"55":[252,197,174,255],"56":[252,195,172,255],"57":[252,194,171,255],"58":[252,193,169,255],"59":[252,192,168,255],"60":[252,191,166,255],"61":[252,190,165,255],"62":[252,189,163,255],"63":[252,187,162,255],"64":[252,186,160,255],"65":[252,185,159,255],"66":[252,184,157,255],"67":[252,182,156,255],"68":[252,181,154,255],"69":[252,180,153,255],"70":[252,178,151,255],"71":[252,177,150,255],"72":[252,176,148,255],"73":[252,175,147,255],"74":[252,173,145,255],"75":[252,172,144,255],"76":[252,171,142,255],"77":[252,169,141,255],"78":[252,168,139,255],"79":[252,167,138,255],"80":[252,166,137,255],"81":[252,164,135,255],"82":[252,163,134,255],"83":[252,162,132,255],"84":[252,160,131,255],"85":[252,159,129,255],"86":[252,158,128,255],"87":[252,157,126,255],"88":[252,155,125,255],"89":[252,154,123,255],"90":[252,153,122,255],"91":[252,151,120,255],"92":[252,150,119,255],"93":[252,149,117,255],"94":[252,148,116,255],"95":[252,146,114,255],"96":[251,145,113,255],"97":[251,144,112,255],"98":[251,143,111,255],"99":[251,141,109,255],"100":[251,140,108,255],"101":[251,139,107,255],"102":[251,138,106,255],"103":[251,136,104,255],"104":[251,135,103,255],"105":[251,134,102,255],"106":[251,132,100,255],"107":[251,131,99,255],"108":[251,130,98,255],"109":[251,129,97,255],"110":[251,127,95,255],"111":[251,126,94,255],"112":[251,125,93,255],"113":[251,124,92,255],"114":[251,122,90,255],"115":[251,121,89,255],"116":[251,120,88,255],"117":[251,119,87,255],"118":[251,117,85,255],"119":[251,116,84,255],"120":[251,115,83,255],"121":[251,114,82,255],"122":[251,112,80,255],"123":[251,111,79,255],"124":[251,110,78,255],"125":[251,109,77,255],"126":[251,107,75,255],"127":[251,106,74,255],"128":[250,105,73,255],"129":[250,103,72,255],"130":[250,102,71,255],"131":[249,100,70,255],"132":[249,99,69,255],"133":[248,97,68,255],"134":[248,96,67,255],"135":[248,94,66,255],"136":[247,93,66,255],"137":[247,91,65,255],"138":[247,90,64,255],"139":[246,89,63,255],"140":[246,87,62,255],"141":[245,86,61,255],"142":[245,84,60,255],"143":[245,83,59,255],"144":[244,81,58,255],"145":[244,80,57,255],"146":[244,78,56,255],"147":[243,77,55,255],"148":[243,75,54,255],"149":[242,74,53,255],"150":[242,72,52,255],"151":[242,71,51,255],"152":[241,69,50,255],"153":[241,68,50,255],"154":[241,66,49,255],"155":[240,65,48,255],"156":[240,63,47,255],"157":[239,62,46,255],"158":[239,61,45,255],"159":[239,59,44,255],"160":[238,58,43,255],"161":[237,57,43,255],"162":[236,56,42,255],"163":[234,55,42,255],"164":[233,53,41,255],"165":[232,52,41,255],"166":[231,51,40,255],"167":[230,50,40,255],"168":[229,49,39,255],"169":[228,48,39,255],"170":[227,47,39,255],"171":[225,46,38,255],"172":[224,45,38,255],"173":[223,44,37,255],"174":[222,42,37,255],"175":[221,41,36,255],"176":[220,40,36,255],"177":[219,39,35,255],"178":[217,38,35,255],"179":[216,37,34,255],"180":[215,36,34,255],"181":[214,35,33,255],"182":[213,34,33,255],"183":[212,33,32,255],"184":[211,31,32,255],"185":[210,30,31,255],"186":[208,29,31,255],"187":[207,28,31,255],"188":[206,27,30,255],"189":[205,26,30,255],"190":[204,25,29,255],"191":[203,24,29,255],"192":[202,23,28,255],"193":[200,23,28,255],"194":[199,23,28,255],"195":[198,22,28,255],"196":[197,22,27,255],"197":[196,22,27,255],"198":[194,22,27,255],"199":[193,21,27,255],"200":[192,21,26,255],"201":[191,21,26,255],"202":[190,20,26,255],"203":[188,20,26,255],"204":[187,20,25,255],"205":[186,20,25,255],"206":[185,19,25,255],"207":[184,19,25,255],"208":[183,19,24,255],"209":[181,18,24,255],"210":[180,18,24,255],"211":[179,18,24,255],"212":[178,18,23,255],"213":[177,17,23,255],"214":[175,17,23,255],"215":[174,17,23,255],"216":[173,17,22,255],"217":[172,16,22,255],"218":[171,16,22,255],"219":[169,16,22,255],"220":[168,15,21,255],"221":[167,15,21,255],"222":[166,15,21,255],"223":[165,15,21,255],"224":[163,14,20,255],"225":[161,14,20,255],"226":[159,13,20,255],"227":[157,13,20,255],"228":[155,12,19,255],"229":[153,12,19,255],"230":[151,11,19,255],"231":[149,11,19,255],"232":[147,10,18,255],"233":[145,10,18,255],"234":[143,9,18,255],"235":[141,9,18,255],"236":[139,8,17,255],"237":[138,8,17,255],"238":[136,8,17,255],"239":[134,7,17,255],"240":[132,7,16,255],"241":[130,6,16,255],"242":[128,6,16,255],"243":[126,5,16,255],"244":[124,5,15,255],"245":[122,4,15,255],"246":[120,4,15,255],"247":[118,3,15,255],"248":[116,3,14,255],"249":[114,2,14,255],"250":[112,2,14,255],"251":[110,1,14,255],"252":[108,1,13,255],"253":[106,0,13,255],"254":[104,0,13,255],"255":[103,0,12,255]}, + rplumbo: {"0":[0,0,0,255],"1":[1,1,1,255],"2":[1,1,1,255],"3":[2,2,2,255],"4":[3,3,3,255],"5":[3,3,3,255],"6":[4,4,4,255],"7":[5,5,5,255],"8":[5,5,5,255],"9":[6,6,6,255],"10":[7,7,7,255],"11":[7,7,7,255],"12":[8,8,8,255],"13":[9,9,9,255],"14":[9,9,9,255],"15":[10,10,10,255],"16":[11,11,11,255],"17":[11,11,11,255],"18":[12,12,12,255],"19":[13,13,13,255],"20":[13,13,13,255],"21":[14,14,14,255],"22":[15,15,15,255],"23":[15,15,15,255],"24":[16,16,16,255],"25":[17,17,17,255],"26":[17,17,17,255],"27":[18,18,18,255],"28":[19,19,19,255],"29":[19,19,19,255],"30":[20,20,20,255],"31":[21,21,21,255],"32":[21,21,21,255],"33":[22,22,22,255],"34":[23,23,23,255],"35":[23,23,23,255],"36":[24,24,24,255],"37":[25,25,25,255],"38":[25,25,25,255],"39":[26,26,26,255],"40":[27,27,27,255],"41":[27,27,27,255],"42":[28,28,28,255],"43":[29,29,29,255],"44":[29,29,29,255],"45":[30,30,30,255],"46":[31,31,31,255],"47":[31,31,31,255],"48":[32,32,32,255],"49":[33,33,33,255],"50":[33,33,33,255],"51":[34,34,34,255],"52":[35,35,35,255],"53":[35,35,35,255],"54":[36,36,36,255],"55":[37,37,37,255],"56":[37,37,37,255],"57":[38,38,38,255],"58":[39,39,39,255],"59":[39,39,39,255],"60":[40,40,40,255],"61":[41,41,41,255],"62":[41,41,41,255],"63":[42,42,42,255],"64":[43,43,43,255],"65":[43,43,43,255],"66":[44,44,44,255],"67":[45,45,45,255],"68":[45,45,45,255],"69":[46,46,46,255],"70":[47,47,47,255],"71":[47,47,47,255],"72":[48,48,48,255],"73":[49,49,49,255],"74":[49,49,49,255],"75":[50,50,50,255],"76":[51,51,51,255],"77":[51,51,51,255],"78":[52,52,52,255],"79":[53,53,53,255],"80":[53,53,53,255],"81":[54,54,54,255],"82":[55,55,55,255],"83":[55,55,55,255],"84":[56,56,56,255],"85":[57,57,57,255],"86":[57,57,57,255],"87":[58,58,58,255],"88":[59,59,59,255],"89":[59,59,59,255],"90":[60,60,60,255],"91":[61,61,61,255],"92":[61,61,61,255],"93":[62,62,62,255],"94":[63,63,63,255],"95":[63,63,63,255],"96":[64,64,64,255],"97":[65,65,65,255],"98":[65,65,65,255],"99":[66,66,66,255],"100":[67,67,67,255],"101":[67,67,67,255],"102":[68,68,68,255],"103":[69,69,69,255],"104":[69,69,69,255],"105":[70,70,70,255],"106":[71,71,71,255],"107":[71,71,71,255],"108":[72,72,72,255],"109":[73,73,73,255],"110":[73,73,73,255],"111":[74,74,74,255],"112":[75,75,75,255],"113":[75,75,75,255],"114":[76,76,76,255],"115":[77,77,77,255],"116":[77,77,77,255],"117":[78,78,78,255],"118":[79,79,79,255],"119":[79,79,79,255],"120":[80,80,80,255],"121":[81,81,81,255],"122":[81,81,81,255],"123":[82,82,82,255],"124":[83,83,83,255],"125":[83,83,83,255],"126":[84,84,84,255],"127":[85,85,85,255],"128":[85,85,85,255],"129":[74,1,0,255],"130":[84,3,0,255],"131":[94,5,0,255],"132":[105,7,0,255],"133":[115,10,0,255],"134":[125,12,0,255],"135":[135,16,0,255],"136":[145,19,0,255],"137":[156,23,0,255],"138":[166,28,0,255],"139":[176,32,0,255],"140":[186,37,0,255],"141":[196,43,0,255],"142":[207,48,0,255],"143":[217,54,0,255],"144":[227,61,0,255],"145":[237,67,0,255],"146":[247,74,0,255],"147":[255,81,0,255],"148":[255,85,0,255],"149":[255,89,0,255],"150":[255,94,0,255],"151":[255,98,0,255],"152":[255,102,0,255],"153":[255,106,0,255],"154":[255,111,0,255],"155":[255,115,0,255],"156":[255,119,0,255],"157":[255,123,0,255],"158":[255,128,0,255],"159":[255,132,0,255],"160":[255,136,0,255],"161":[255,140,0,255],"162":[255,145,0,255],"163":[255,149,0,255],"164":[255,153,0,255],"165":[255,157,0,255],"166":[255,162,0,255],"167":[255,166,0,255],"168":[255,170,0,255],"169":[255,174,0,255],"170":[255,179,0,255],"171":[255,183,0,255],"172":[255,187,0,255],"173":[255,191,0,255],"174":[255,196,0,255],"175":[255,200,0,255],"176":[255,204,0,255],"177":[255,208,0,255],"178":[255,213,0,255],"179":[255,217,0,255],"180":[255,221,0,255],"181":[255,225,0,255],"182":[255,230,0,255],"183":[255,234,0,255],"184":[255,238,0,255],"185":[255,242,0,255],"186":[255,247,0,255],"187":[255,251,0,255],"188":[255,255,0,255],"189":[248,252,0,255],"190":[241,249,0,255],"191":[234,247,0,255],"192":[228,244,0,255],"193":[221,241,0,255],"194":[214,238,0,255],"195":[208,235,0,255],"196":[202,233,0,255],"197":[195,230,0,255],"198":[189,227,0,255],"199":[183,224,0,255],"200":[177,221,0,255],"201":[171,219,0,255],"202":[165,216,0,255],"203":[160,213,0,255],"204":[154,210,0,255],"205":[149,207,0,255],"206":[143,205,0,255],"207":[138,202,0,255],"208":[133,199,0,255],"209":[127,196,0,255],"210":[122,193,0,255],"211":[117,190,0,255],"212":[113,188,0,255],"213":[108,185,0,255],"214":[103,182,0,255],"215":[99,179,0,255],"216":[94,176,0,255],"217":[90,174,0,255],"218":[85,171,0,255],"219":[81,168,0,255],"220":[77,165,0,255],"221":[73,162,0,255],"222":[69,160,0,255],"223":[65,157,0,255],"224":[62,154,0,255],"225":[58,151,0,255],"226":[54,148,0,255],"227":[51,146,0,255],"228":[48,143,0,255],"229":[44,140,0,255],"230":[41,137,0,255],"231":[38,134,0,255],"232":[35,132,0,255],"233":[32,129,0,255],"234":[29,126,0,255],"235":[27,123,0,255],"236":[24,120,0,255],"237":[22,118,0,255],"238":[19,115,0,255],"239":[17,112,0,255],"240":[15,109,0,255],"241":[12,106,0,255],"242":[10,104,0,255],"243":[8,101,0,255],"244":[7,98,0,255],"245":[5,95,0,255],"246":[3,92,0,255],"247":[1,90,0,255],"248":[0,87,0,255],"249":[0,84,1,255],"250":[0,81,3,255],"251":[0,78,4,255],"252":[0,75,5,255],"253":[0,73,6,255],"254":[0,70,7,255],"255":[0,67,8,255]}, + schwarzwald: {"0":[174,239,213,255],"1":[174,239,212,255],"2":[175,240,211,255],"3":[176,242,208,255],"4":[176,242,205,255],"5":[176,242,202,255],"6":[176,242,199,255],"7":[177,242,196,255],"8":[177,242,193,255],"9":[176,243,190,255],"10":[176,244,186,255],"11":[177,245,184,255],"12":[178,246,181,255],"13":[180,246,179,255],"14":[181,246,178,255],"15":[186,247,178,255],"16":[189,247,178,255],"17":[192,247,178,255],"18":[195,247,178,255],"19":[198,248,178,255],"20":[201,248,178,255],"21":[204,249,178,255],"22":[210,250,177,255],"23":[214,250,177,255],"24":[217,250,178,255],"25":[221,250,178,255],"26":[224,251,178,255],"27":[231,252,178,255],"28":[235,252,178,255],"29":[238,252,179,255],"30":[242,252,179,255],"31":[245,252,179,255],"32":[247,252,179,255],"33":[250,252,178,255],"34":[248,249,172,255],"35":[243,247,167,255],"36":[238,244,162,255],"37":[232,242,156,255],"38":[226,240,151,255],"39":[213,235,140,255],"40":[205,231,134,255],"41":[198,228,128,255],"42":[191,225,123,255],"43":[184,222,118,255],"44":[177,219,113,255],"45":[170,216,108,255],"46":[154,211,98,255],"47":[147,208,94,255],"48":[140,205,89,255],"49":[132,202,85,255],"50":[125,199,82,255],"51":[110,194,74,255],"52":[102,191,70,255],"53":[94,188,66,255],"54":[86,185,62,255],"55":[77,182,57,255],"56":[69,179,53,255],"57":[62,176,50,255],"58":[49,171,44,255],"59":[44,168,43,255],"60":[39,165,42,255],"61":[35,163,42,255],"62":[30,160,43,255],"63":[24,154,46,255],"64":[21,151,48,255],"65":[18,148,49,255],"66":[16,145,51,255],"67":[14,142,52,255],"68":[12,140,54,255],"69":[9,137,56,255],"70":[7,132,60,255],"71":[9,131,62,255],"72":[12,130,63,255],"73":[18,130,63,255],"74":[24,130,63,255],"75":[40,132,61,255],"76":[46,134,61,255],"77":[52,136,60,255],"78":[58,138,60,255],"79":[64,140,59,255],"80":[70,141,59,255],"81":[76,142,59,255],"82":[87,146,56,255],"83":[93,147,55,255],"84":[99,148,54,255],"85":[105,149,53,255],"86":[110,150,52,255],"87":[120,154,50,255],"88":[124,155,49,255],"89":[128,156,48,255],"90":[132,158,47,255],"91":[137,160,46,255],"92":[142,161,44,255],"93":[147,162,43,255],"94":[156,164,41,255],"95":[161,165,40,255],"96":[166,166,39,255],"97":[171,168,37,255],"98":[176,170,36,255],"99":[187,173,34,255],"100":[192,175,32,255],"101":[197,176,30,255],"102":[202,176,29,255],"103":[207,177,28,255],"104":[213,178,26,255],"105":[218,179,24,255],"106":[228,180,20,255],"107":[233,181,17,255],"108":[238,182,14,255],"109":[242,182,11,255],"110":[246,182,8,255],"111":[248,176,4,255],"112":[246,171,3,255],"113":[244,166,2,255],"114":[241,160,2,255],"115":[238,155,2,255],"116":[235,149,2,255],"117":[232,144,2,255],"118":[226,132,2,255],"119":[223,127,2,255],"120":[220,122,2,255],"121":[218,116,2,255],"122":[216,111,2,255],"123":[211,102,2,255],"124":[209,97,2,255],"125":[206,92,2,255],"126":[203,88,2,255],"127":[200,84,2,255],"128":[192,74,2,255],"129":[189,70,2,255],"130":[186,66,2,255],"131":[183,62,2,255],"132":[180,58,2,255],"133":[177,54,2,255],"134":[174,49,2,255],"135":[169,42,2,255],"136":[166,39,2,255],"137":[163,36,2,255],"138":[160,33,2,255],"139":[157,30,2,255],"140":[151,23,2,255],"141":[149,21,2,255],"142":[146,18,1,255],"143":[144,16,1,255],"144":[141,14,1,255],"145":[138,11,1,255],"146":[135,8,0,255],"147":[130,5,0,255],"148":[128,5,0,255],"149":[125,4,0,255],"150":[123,6,1,255],"151":[122,8,2,255],"152":[119,13,2,255],"153":[119,15,2,255],"154":[118,16,2,255],"155":[118,17,3,255],"156":[117,18,4,255],"157":[117,19,4,255],"158":[117,20,4,255],"159":[117,21,4,255],"160":[117,21,4,255],"161":[116,22,4,255],"162":[116,23,4,255],"163":[116,24,5,255],"164":[114,26,6,255],"165":[114,28,6,255],"166":[114,29,6,255],"167":[113,30,6,255],"168":[112,31,7,255],"169":[112,32,7,255],"170":[111,33,8,255],"171":[110,35,8,255],"172":[110,35,8,255],"173":[110,36,8,255],"174":[110,37,8,255],"175":[109,38,9,255],"176":[108,40,10,255],"177":[108,40,10,255],"178":[108,40,10,255],"179":[108,41,10,255],"180":[108,42,10,255],"181":[108,43,10,255],"182":[107,44,11,255],"183":[106,44,12,255],"184":[106,45,12,255],"185":[106,46,12,255],"186":[106,47,13,255],"187":[107,48,14,255],"188":[110,52,18,255],"189":[112,54,20,255],"190":[113,57,23,255],"191":[115,59,25,255],"192":[116,62,28,255],"193":[117,64,30,255],"194":[118,66,32,255],"195":[121,70,37,255],"196":[123,72,40,255],"197":[125,74,43,255],"198":[127,76,47,255],"199":[128,79,50,255],"200":[131,85,56,255],"201":[133,87,60,255],"202":[135,90,63,255],"203":[137,93,66,255],"204":[138,96,69,255],"205":[139,98,73,255],"206":[140,101,76,255],"207":[144,106,84,255],"208":[146,108,87,255],"209":[147,111,90,255],"210":[149,113,93,255],"211":[150,116,96,255],"212":[152,122,104,255],"213":[154,126,108,255],"214":[156,129,112,255],"215":[157,132,116,255],"216":[158,135,120,255],"217":[159,138,125,255],"218":[160,141,130,255],"219":[163,147,139,255],"220":[165,151,143,255],"221":[166,154,147,255],"222":[166,157,151,255],"223":[167,160,156,255],"224":[170,167,164,255],"225":[171,169,168,255],"226":[172,172,171,255],"227":[173,173,173,255],"228":[174,174,174,255],"229":[176,176,176,255],"230":[178,178,178,255],"231":[181,181,181,255],"232":[183,183,183,255],"233":[184,184,184,255],"234":[186,186,186,255],"235":[188,188,188,255],"236":[192,192,192,255],"237":[194,194,194,255],"238":[196,196,196,255],"239":[198,198,198,255],"240":[200,200,200,255],"241":[202,202,202,255],"242":[204,204,204,255],"243":[208,206,208,255],"244":[210,208,210,255],"245":[212,210,212,255],"246":[214,212,214,255],"247":[216,214,216,255],"248":[218,216,218,255],"249":[220,218,220,255],"250":[221,219,221,255],"251":[223,221,223,255],"252":[225,223,225,255],"253":[227,225,227,255],"254":[229,227,229,255],"255":[233,231,233,255]}, + thermal: {"0":[3,35,51,255],"1":[4,35,53,255],"2":[4,36,55,255],"3":[4,37,57,255],"4":[4,38,58,255],"5":[4,38,60,255],"6":[5,39,62,255],"7":[5,40,64,255],"8":[5,40,66,255],"9":[5,41,68,255],"10":[5,42,70,255],"11":[6,42,73,255],"12":[6,43,75,255],"13":[6,43,77,255],"14":[7,44,79,255],"15":[7,44,81,255],"16":[8,45,84,255],"17":[8,46,86,255],"18":[9,46,88,255],"19":[10,47,90,255],"20":[10,47,93,255],"21":[11,48,95,255],"22":[12,48,98,255],"23":[13,48,100,255],"24":[14,49,103,255],"25":[15,49,105,255],"26":[16,50,108,255],"27":[17,50,110,255],"28":[18,50,113,255],"29":[20,50,116,255],"30":[21,51,118,255],"31":[22,51,121,255],"32":[24,51,124,255],"33":[26,51,126,255],"34":[27,51,129,255],"35":[29,51,132,255],"36":[31,51,134,255],"37":[33,51,137,255],"38":[35,51,140,255],"39":[37,51,142,255],"40":[39,51,145,255],"41":[41,51,147,255],"42":[43,51,149,255],"43":[46,51,151,255],"44":[48,51,153,255],"45":[50,50,154,255],"46":[53,50,155,255],"47":[55,51,157,255],"48":[57,51,157,255],"49":[59,51,158,255],"50":[61,51,159,255],"51":[63,51,159,255],"52":[65,52,159,255],"53":[67,52,159,255],"54":[69,53,159,255],"55":[71,53,159,255],"56":[73,54,159,255],"57":[74,54,159,255],"58":[76,55,158,255],"59":[78,55,158,255],"60":[79,56,157,255],"61":[81,57,157,255],"62":[83,57,156,255],"63":[84,58,156,255],"64":[86,59,156,255],"65":[87,59,155,255],"66":[89,60,155,255],"67":[90,61,154,255],"68":[92,61,154,255],"69":[93,62,153,255],"70":[95,63,153,255],"71":[96,63,152,255],"72":[97,64,152,255],"73":[99,65,151,255],"74":[100,66,151,255],"75":[102,66,150,255],"76":[103,67,150,255],"77":[104,67,149,255],"78":[106,68,149,255],"79":[107,69,148,255],"80":[108,69,148,255],"81":[110,70,147,255],"82":[111,71,147,255],"83":[112,71,147,255],"84":[114,72,146,255],"85":[115,73,146,255],"86":[117,73,146,255],"87":[118,74,145,255],"88":[119,74,145,255],"89":[121,75,144,255],"90":[122,76,144,255],"91":[123,76,144,255],"92":[125,77,143,255],"93":[126,77,143,255],"94":[127,78,143,255],"95":[129,78,142,255],"96":[130,79,142,255],"97":[131,80,142,255],"98":[133,80,142,255],"99":[134,81,141,255],"100":[135,81,141,255],"101":[137,82,141,255],"102":[138,82,140,255],"103":[140,83,140,255],"104":[141,83,140,255],"105":[142,84,139,255],"106":[144,84,139,255],"107":[145,85,139,255],"108":[147,85,138,255],"109":[148,86,138,255],"110":[150,86,138,255],"111":[151,87,137,255],"112":[152,87,137,255],"113":[154,88,136,255],"114":[155,88,136,255],"115":[157,89,136,255],"116":[158,89,135,255],"117":[160,90,135,255],"118":[161,90,134,255],"119":[163,91,134,255],"120":[164,91,133,255],"121":[166,92,133,255],"122":[167,92,133,255],"123":[169,93,132,255],"124":[170,93,131,255],"125":[172,93,131,255],"126":[173,94,130,255],"127":[175,94,130,255],"128":[176,95,129,255],"129":[178,95,129,255],"130":[179,96,128,255],"131":[181,96,127,255],"132":[182,97,127,255],"133":[184,97,126,255],"134":[185,97,125,255],"135":[187,98,124,255],"136":[188,98,124,255],"137":[190,99,123,255],"138":[191,99,122,255],"139":[193,100,121,255],"140":[194,100,120,255],"141":[196,101,120,255],"142":[197,101,119,255],"143":[199,102,118,255],"144":[200,102,117,255],"145":[202,103,116,255],"146":[203,103,115,255],"147":[205,104,114,255],"148":[206,104,113,255],"149":[207,105,112,255],"150":[209,105,111,255],"151":[210,106,110,255],"152":[212,107,109,255],"153":[213,107,108,255],"154":[214,108,107,255],"155":[216,108,105,255],"156":[217,109,104,255],"157":[219,110,103,255],"158":[220,110,102,255],"159":[221,111,101,255],"160":[222,112,100,255],"161":[224,112,98,255],"162":[225,113,97,255],"163":[226,114,96,255],"164":[227,115,95,255],"165":[229,116,93,255],"166":[230,116,92,255],"167":[231,117,91,255],"168":[232,118,90,255],"169":[233,119,88,255],"170":[234,120,87,255],"171":[235,121,86,255],"172":[236,122,85,255],"173":[237,123,83,255],"174":[238,124,82,255],"175":[239,125,81,255],"176":[240,126,80,255],"177":[241,127,79,255],"178":[241,128,78,255],"179":[242,130,76,255],"180":[243,131,75,255],"181":[243,132,74,255],"182":[244,133,73,255],"183":[245,135,72,255],"184":[245,136,71,255],"185":[246,137,70,255],"186":[246,139,69,255],"187":[247,140,69,255],"188":[247,141,68,255],"189":[248,143,67,255],"190":[248,144,66,255],"191":[249,146,65,255],"192":[249,147,65,255],"193":[249,148,64,255],"194":[250,150,63,255],"195":[250,151,63,255],"196":[250,153,62,255],"197":[250,154,62,255],"198":[250,156,62,255],"199":[251,157,61,255],"200":[251,159,61,255],"201":[251,161,61,255],"202":[251,162,60,255],"203":[251,164,60,255],"204":[251,165,60,255],"205":[251,167,60,255],"206":[251,168,60,255],"207":[251,170,60,255],"208":[251,172,60,255],"209":[251,173,60,255],"210":[251,175,60,255],"211":[251,176,60,255],"212":[251,178,60,255],"213":[251,180,60,255],"214":[251,181,61,255],"215":[251,183,61,255],"216":[250,184,61,255],"217":[250,186,62,255],"218":[250,188,62,255],"219":[250,189,62,255],"220":[250,191,63,255],"221":[249,193,63,255],"222":[249,194,64,255],"223":[249,196,64,255],"224":[249,198,65,255],"225":[248,199,65,255],"226":[248,201,66,255],"227":[248,203,67,255],"228":[247,204,67,255],"229":[247,206,68,255],"230":[246,208,69,255],"231":[246,209,69,255],"232":[246,211,70,255],"233":[245,213,71,255],"234":[245,214,72,255],"235":[244,216,72,255],"236":[244,218,73,255],"237":[243,219,74,255],"238":[243,221,75,255],"239":[242,223,76,255],"240":[242,224,77,255],"241":[241,226,77,255],"242":[241,228,78,255],"243":[240,229,79,255],"244":[239,231,80,255],"245":[239,233,81,255],"246":[238,234,82,255],"247":[238,236,83,255],"248":[237,238,84,255],"249":[236,240,85,255],"250":[235,241,86,255],"251":[235,243,86,255],"252":[234,245,87,255],"253":[233,246,88,255],"254":[232,248,89,255],"255":[231,250,90,255]}, + turbid: {"0":[232,245,171,255],"1":[232,244,169,255],"2":[231,243,168,255],"3":[231,242,166,255],"4":[230,241,165,255],"5":[229,239,163,255],"6":[229,238,162,255],"7":[228,237,160,255],"8":[228,236,159,255],"9":[227,235,157,255],"10":[227,234,156,255],"11":[226,232,155,255],"12":[226,231,153,255],"13":[225,230,152,255],"14":[225,229,150,255],"15":[224,228,149,255],"16":[223,227,147,255],"17":[223,226,146,255],"18":[222,224,144,255],"19":[222,223,143,255],"20":[221,222,142,255],"21":[221,221,140,255],"22":[220,220,139,255],"23":[220,219,137,255],"24":[219,218,136,255],"25":[219,216,135,255],"26":[218,215,133,255],"27":[218,214,132,255],"28":[217,213,130,255],"29":[217,212,129,255],"30":[217,211,128,255],"31":[216,210,126,255],"32":[216,208,125,255],"33":[215,207,124,255],"34":[215,206,122,255],"35":[214,205,121,255],"36":[214,204,120,255],"37":[213,203,119,255],"38":[213,202,117,255],"39":[212,201,116,255],"40":[212,199,115,255],"41":[211,198,113,255],"42":[211,197,112,255],"43":[210,196,111,255],"44":[210,195,110,255],"45":[210,194,108,255],"46":[209,193,107,255],"47":[209,192,106,255],"48":[208,191,105,255],"49":[208,189,104,255],"50":[207,188,102,255],"51":[207,187,101,255],"52":[206,186,100,255],"53":[206,185,99,255],"54":[206,184,98,255],"55":[205,183,97,255],"56":[205,182,96,255],"57":[204,181,95,255],"58":[204,180,94,255],"59":[203,178,92,255],"60":[203,177,91,255],"61":[202,176,90,255],"62":[202,175,89,255],"63":[202,174,88,255],"64":[201,173,87,255],"65":[201,172,86,255],"66":[200,171,85,255],"67":[200,170,84,255],"68":[199,169,84,255],"69":[199,168,83,255],"70":[198,167,82,255],"71":[198,165,81,255],"72":[197,164,80,255],"73":[197,163,79,255],"74":[196,162,78,255],"75":[196,161,78,255],"76":[195,160,77,255],"77":[195,159,76,255],"78":[194,158,75,255],"79":[194,157,75,255],"80":[193,156,74,255],"81":[193,155,73,255],"82":[192,154,72,255],"83":[192,153,72,255],"84":[191,152,71,255],"85":[191,151,71,255],"86":[190,150,70,255],"87":[190,149,69,255],"88":[189,148,69,255],"89":[188,147,68,255],"90":[188,146,68,255],"91":[187,145,67,255],"92":[187,144,67,255],"93":[186,143,66,255],"94":[185,142,66,255],"95":[185,141,66,255],"96":[184,140,65,255],"97":[184,139,65,255],"98":[183,138,64,255],"99":[182,137,64,255],"100":[182,136,64,255],"101":[181,135,63,255],"102":[180,134,63,255],"103":[180,133,63,255],"104":[179,132,62,255],"105":[178,131,62,255],"106":[178,130,62,255],"107":[177,129,62,255],"108":[176,129,61,255],"109":[175,128,61,255],"110":[175,127,61,255],"111":[174,126,61,255],"112":[173,125,61,255],"113":[173,124,60,255],"114":[172,123,60,255],"115":[171,122,60,255],"116":[170,121,60,255],"117":[169,121,60,255],"118":[169,120,60,255],"119":[168,119,60,255],"120":[167,118,59,255],"121":[166,117,59,255],"122":[166,116,59,255],"123":[165,116,59,255],"124":[164,115,59,255],"125":[163,114,59,255],"126":[162,113,59,255],"127":[161,112,59,255],"128":[161,111,59,255],"129":[160,111,59,255],"130":[159,110,59,255],"131":[158,109,58,255],"132":[157,108,58,255],"133":[156,108,58,255],"134":[155,107,58,255],"135":[154,106,58,255],"136":[154,105,58,255],"137":[153,105,58,255],"138":[152,104,58,255],"139":[151,103,58,255],"140":[150,102,58,255],"141":[149,102,58,255],"142":[148,101,58,255],"143":[147,100,58,255],"144":[146,99,58,255],"145":[145,99,58,255],"146":[144,98,58,255],"147":[143,97,58,255],"148":[142,97,58,255],"149":[141,96,57,255],"150":[141,95,57,255],"151":[140,94,57,255],"152":[139,94,57,255],"153":[138,93,57,255],"154":[137,92,57,255],"155":[136,92,57,255],"156":[135,91,57,255],"157":[134,90,57,255],"158":[133,90,57,255],"159":[132,89,57,255],"160":[131,88,57,255],"161":[130,88,57,255],"162":[129,87,56,255],"163":[128,86,56,255],"164":[127,86,56,255],"165":[126,85,56,255],"166":[125,85,56,255],"167":[124,84,56,255],"168":[123,83,56,255],"169":[122,83,56,255],"170":[121,82,55,255],"171":[120,81,55,255],"172":[119,81,55,255],"173":[117,80,55,255],"174":[116,80,55,255],"175":[115,79,55,255],"176":[114,78,55,255],"177":[113,78,54,255],"178":[112,77,54,255],"179":[111,76,54,255],"180":[110,76,54,255],"181":[109,75,54,255],"182":[108,75,53,255],"183":[107,74,53,255],"184":[106,73,53,255],"185":[105,73,53,255],"186":[104,72,53,255],"187":[103,72,52,255],"188":[102,71,52,255],"189":[101,71,52,255],"190":[100,70,52,255],"191":[99,69,51,255],"192":[98,69,51,255],"193":[97,68,51,255],"194":[96,68,51,255],"195":[95,67,50,255],"196":[94,66,50,255],"197":[93,66,50,255],"198":[92,65,49,255],"199":[90,65,49,255],"200":[89,64,49,255],"201":[88,63,49,255],"202":[87,63,48,255],"203":[86,62,48,255],"204":[85,62,48,255],"205":[84,61,47,255],"206":[83,60,47,255],"207":[82,60,47,255],"208":[81,59,46,255],"209":[80,59,46,255],"210":[79,58,46,255],"211":[78,58,45,255],"212":[77,57,45,255],"213":[76,56,45,255],"214":[75,56,44,255],"215":[74,55,44,255],"216":[73,55,44,255],"217":[72,54,43,255],"218":[71,53,43,255],"219":[70,53,42,255],"220":[69,52,42,255],"221":[68,52,42,255],"222":[67,51,41,255],"223":[66,50,41,255],"224":[65,50,41,255],"225":[64,49,40,255],"226":[63,49,40,255],"227":[62,48,39,255],"228":[61,47,39,255],"229":[60,47,39,255],"230":[59,46,38,255],"231":[58,45,38,255],"232":[57,45,37,255],"233":[56,44,37,255],"234":[55,44,36,255],"235":[54,43,36,255],"236":[53,42,36,255],"237":[52,42,35,255],"238":[51,41,35,255],"239":[50,40,34,255],"240":[49,40,34,255],"241":[48,39,33,255],"242":[47,39,33,255],"243":[46,38,32,255],"244":[45,37,32,255],"245":[44,37,31,255],"246":[43,36,31,255],"247":[42,35,31,255],"248":[41,35,30,255],"249":[40,34,30,255],"250":[39,33,29,255],"251":[38,33,29,255],"252":[37,32,28,255],"253":[36,31,28,255],"254":[35,31,27,255],"255":[34,30,27,255]}, + turbo: {"0":[48,18,59,255],"1":[49,21,66,255],"2":[50,24,74,255],"3":[52,27,81,255],"4":[53,30,88,255],"5":[54,33,95,255],"6":[55,35,101,255],"7":[56,38,108,255],"8":[57,41,114,255],"9":[58,44,121,255],"10":[59,47,127,255],"11":[60,50,133,255],"12":[60,53,139,255],"13":[61,55,145,255],"14":[62,58,150,255],"15":[63,61,156,255],"16":[64,64,161,255],"17":[64,67,166,255],"18":[65,69,171,255],"19":[65,72,176,255],"20":[66,75,181,255],"21":[67,78,186,255],"22":[67,80,190,255],"23":[67,83,194,255],"24":[68,86,199,255],"25":[68,88,203,255],"26":[69,91,206,255],"27":[69,94,210,255],"28":[69,96,214,255],"29":[69,99,217,255],"30":[70,102,221,255],"31":[70,104,224,255],"32":[70,107,227,255],"33":[70,109,230,255],"34":[70,112,232,255],"35":[70,115,235,255],"36":[70,117,237,255],"37":[70,120,240,255],"38":[70,122,242,255],"39":[70,125,244,255],"40":[70,127,246,255],"41":[70,130,248,255],"42":[69,132,249,255],"43":[69,135,251,255],"44":[69,137,252,255],"45":[68,140,253,255],"46":[67,142,253,255],"47":[66,145,254,255],"48":[65,147,254,255],"49":[64,150,254,255],"50":[63,152,254,255],"51":[62,155,254,255],"52":[60,157,253,255],"53":[59,160,252,255],"54":[57,162,252,255],"55":[56,165,251,255],"56":[54,168,249,255],"57":[52,170,248,255],"58":[51,172,246,255],"59":[49,175,245,255],"60":[47,177,243,255],"61":[45,180,241,255],"62":[43,182,239,255],"63":[42,185,237,255],"64":[40,187,235,255],"65":[38,189,233,255],"66":[37,192,230,255],"67":[35,194,228,255],"68":[33,196,225,255],"69":[32,198,223,255],"70":[30,201,220,255],"71":[29,203,218,255],"72":[28,205,215,255],"73":[27,207,212,255],"74":[26,209,210,255],"75":[25,211,207,255],"76":[24,213,204,255],"77":[24,215,202,255],"78":[23,217,199,255],"79":[23,218,196,255],"80":[23,220,194,255],"81":[23,222,191,255],"82":[24,224,189,255],"83":[24,225,186,255],"84":[25,227,184,255],"85":[26,228,182,255],"86":[27,229,180,255],"87":[29,231,177,255],"88":[30,232,175,255],"89":[32,233,172,255],"90":[34,235,169,255],"91":[36,236,166,255],"92":[39,237,163,255],"93":[41,238,160,255],"94":[44,239,157,255],"95":[47,240,154,255],"96":[50,241,151,255],"97":[53,243,148,255],"98":[56,244,145,255],"99":[59,244,141,255],"100":[63,245,138,255],"101":[66,246,135,255],"102":[70,247,131,255],"103":[74,248,128,255],"104":[77,249,124,255],"105":[81,249,121,255],"106":[85,250,118,255],"107":[89,251,114,255],"108":[93,251,111,255],"109":[97,252,108,255],"110":[101,252,104,255],"111":[105,253,101,255],"112":[109,253,98,255],"113":[113,253,95,255],"114":[116,254,92,255],"115":[120,254,89,255],"116":[124,254,86,255],"117":[128,254,83,255],"118":[132,254,80,255],"119":[135,254,77,255],"120":[139,254,75,255],"121":[142,254,72,255],"122":[146,254,70,255],"123":[149,254,68,255],"124":[152,254,66,255],"125":[155,253,64,255],"126":[158,253,62,255],"127":[161,252,61,255],"128":[164,252,59,255],"129":[166,251,58,255],"130":[169,251,57,255],"131":[172,250,55,255],"132":[174,249,55,255],"133":[177,248,54,255],"134":[179,248,53,255],"135":[182,247,53,255],"136":[185,245,52,255],"137":[187,244,52,255],"138":[190,243,52,255],"139":[192,242,51,255],"140":[195,241,51,255],"141":[197,239,51,255],"142":[200,238,51,255],"143":[202,237,51,255],"144":[205,235,52,255],"145":[207,234,52,255],"146":[209,232,52,255],"147":[212,231,53,255],"148":[214,229,53,255],"149":[216,227,53,255],"150":[218,226,54,255],"151":[221,224,54,255],"152":[223,222,54,255],"153":[225,220,55,255],"154":[227,218,55,255],"155":[229,216,56,255],"156":[231,215,56,255],"157":[232,213,56,255],"158":[234,211,57,255],"159":[236,209,57,255],"160":[237,207,57,255],"161":[239,205,57,255],"162":[240,203,58,255],"163":[242,200,58,255],"164":[243,198,58,255],"165":[244,196,58,255],"166":[246,194,58,255],"167":[247,192,57,255],"168":[248,190,57,255],"169":[249,188,57,255],"170":[249,186,56,255],"171":[250,183,55,255],"172":[251,181,55,255],"173":[251,179,54,255],"174":[252,176,53,255],"175":[252,174,52,255],"176":[253,171,51,255],"177":[253,169,50,255],"178":[253,166,49,255],"179":[253,163,48,255],"180":[254,161,47,255],"181":[254,158,46,255],"182":[254,155,45,255],"183":[254,152,44,255],"184":[253,149,43,255],"185":[253,146,41,255],"186":[253,143,40,255],"187":[253,140,39,255],"188":[252,137,38,255],"189":[252,134,36,255],"190":[251,131,35,255],"191":[251,128,34,255],"192":[250,125,32,255],"193":[250,122,31,255],"194":[249,119,30,255],"195":[248,116,28,255],"196":[247,113,27,255],"197":[247,110,26,255],"198":[246,107,24,255],"199":[245,104,23,255],"200":[244,101,22,255],"201":[243,99,21,255],"202":[242,96,20,255],"203":[241,93,19,255],"204":[239,90,17,255],"205":[238,88,16,255],"206":[237,85,15,255],"207":[236,82,14,255],"208":[234,80,13,255],"209":[233,77,13,255],"210":[232,75,12,255],"211":[230,73,11,255],"212":[229,70,10,255],"213":[227,68,10,255],"214":[226,66,9,255],"215":[224,64,8,255],"216":[222,62,8,255],"217":[221,60,7,255],"218":[219,58,7,255],"219":[217,56,6,255],"220":[215,54,6,255],"221":[214,52,5,255],"222":[212,50,5,255],"223":[210,48,5,255],"224":[208,47,4,255],"225":[206,45,4,255],"226":[203,43,3,255],"227":[201,41,3,255],"228":[199,40,3,255],"229":[197,38,2,255],"230":[195,36,2,255],"231":[192,35,2,255],"232":[190,33,2,255],"233":[187,31,1,255],"234":[185,30,1,255],"235":[182,28,1,255],"236":[180,27,1,255],"237":[177,25,1,255],"238":[174,24,1,255],"239":[172,22,1,255],"240":[169,21,1,255],"241":[166,20,1,255],"242":[163,18,1,255],"243":[160,17,1,255],"244":[157,16,1,255],"245":[154,14,1,255],"246":[151,13,1,255],"247":[148,12,1,255],"248":[145,11,1,255],"249":[142,10,1,255],"250":[139,9,1,255],"251":[135,8,1,255],"252":[132,7,1,255],"253":[129,6,2,255],"254":[125,5,2,255],"255":[122,4,2,255]}, + twilight: {"0":[225,216,226,255],"1":[224,217,226,255],"2":[223,217,225,255],"3":[222,217,224,255],"4":[221,217,224,255],"5":[219,216,223,255],"6":[217,216,222,255],"7":[216,215,221,255],"8":[214,214,220,255],"9":[212,214,219,255],"10":[210,213,218,255],"11":[207,212,217,255],"12":[205,210,216,255],"13":[202,209,215,255],"14":[199,208,214,255],"15":[197,207,212,255],"16":[194,205,211,255],"17":[191,204,210,255],"18":[188,202,209,255],"19":[185,201,208,255],"20":[182,199,207,255],"21":[179,198,206,255],"22":[176,196,205,255],"23":[173,195,204,255],"24":[170,193,203,255],"25":[167,192,202,255],"26":[164,190,202,255],"27":[161,188,201,255],"28":[158,187,200,255],"29":[155,185,200,255],"30":[152,183,199,255],"31":[150,181,198,255],"32":[147,180,198,255],"33":[146,179,198,255],"34":[142,176,197,255],"35":[139,174,197,255],"36":[137,172,196,255],"37":[136,171,196,255],"38":[132,169,195,255],"39":[130,167,195,255],"40":[128,165,195,255],"41":[127,164,194,255],"42":[124,161,194,255],"43":[122,159,194,255],"44":[120,157,193,255],"45":[119,156,193,255],"46":[116,154,193,255],"47":[115,152,192,255],"48":[113,150,192,255],"49":[112,149,192,255],"50":[110,146,191,255],"51":[109,144,191,255],"52":[107,142,191,255],"53":[107,141,191,255],"54":[105,137,190,255],"55":[104,135,190,255],"56":[103,133,189,255],"57":[102,132,189,255],"58":[101,129,189,255],"59":[100,127,188,255],"60":[100,125,188,255],"61":[99,124,187,255],"62":[98,120,187,255],"63":[98,118,186,255],"64":[97,116,186,255],"65":[97,114,185,255],"66":[97,113,185,255],"67":[96,109,184,255],"68":[96,107,183,255],"69":[95,105,182,255],"70":[95,103,182,255],"71":[95,100,181,255],"72":[95,98,180,255],"73":[95,96,179,255],"74":[95,94,179,255],"75":[94,91,177,255],"76":[94,89,176,255],"77":[94,86,175,255],"78":[94,84,174,255],"79":[94,81,173,255],"80":[94,79,172,255],"81":[94,77,170,255],"82":[94,75,170,255],"83":[93,72,167,255],"84":[93,69,166,255],"85":[93,67,164,255],"86":[93,64,163,255],"87":[93,62,161,255],"88":[92,60,159,255],"89":[92,57,157,255],"90":[92,56,156,255],"91":[91,52,153,255],"92":[91,50,151,255],"93":[90,48,149,255],"94":[90,45,146,255],"95":[89,43,144,255],"96":[89,41,141,255],"97":[88,39,139,255],"98":[87,37,137,255],"99":[86,34,133,255],"100":[85,33,130,255],"101":[84,31,127,255],"102":[83,29,124,255],"103":[82,27,120,255],"104":[80,26,117,255],"105":[79,25,114,255],"106":[78,24,112,255],"107":[76,22,107,255],"108":[74,21,103,255],"109":[73,21,100,255],"110":[71,20,96,255],"111":[69,19,93,255],"112":[68,18,90,255],"113":[66,18,87,255],"114":[65,18,85,255],"115":[62,17,81,255],"116":[61,17,78,255],"117":[59,17,75,255],"118":[58,16,72,255],"119":[56,16,70,255],"120":[55,16,67,255],"121":[54,16,65,255],"122":[53,16,64,255],"123":[51,17,61,255],"124":[50,17,59,255],"125":[50,17,58,255],"126":[48,18,56,255],"127":[47,19,55,255],"128":[47,19,54,255],"129":[49,18,54,255],"130":[50,18,55,255],"131":[51,17,55,255],"132":[52,17,55,255],"133":[54,17,56,255],"134":[55,17,57,255],"135":[57,17,57,255],"136":[59,17,58,255],"137":[61,17,59,255],"138":[63,17,60,255],"139":[65,17,61,255],"140":[67,18,62,255],"141":[69,18,63,255],"142":[71,18,64,255],"143":[74,19,65,255],"144":[76,19,66,255],"145":[79,20,67,255],"146":[81,20,68,255],"147":[84,21,69,255],"148":[85,21,70,255],"149":[89,22,71,255],"150":[92,22,72,255],"151":[94,23,73,255],"152":[97,24,74,255],"153":[99,24,75,255],"154":[102,25,76,255],"155":[105,26,76,255],"156":[107,26,77,255],"157":[110,27,78,255],"158":[113,28,78,255],"159":[115,29,78,255],"160":[118,30,79,255],"161":[120,31,79,255],"162":[123,32,79,255],"163":[125,33,80,255],"164":[127,34,80,255],"165":[130,36,80,255],"166":[132,37,80,255],"167":[135,39,80,255],"168":[137,40,80,255],"169":[139,42,80,255],"170":[141,44,80,255],"171":[144,45,80,255],"172":[146,47,79,255],"173":[148,49,79,255],"174":[150,50,79,255],"175":[152,52,79,255],"176":[154,54,79,255],"177":[155,56,79,255],"178":[157,58,79,255],"179":[159,60,79,255],"180":[160,61,79,255],"181":[162,64,79,255],"182":[164,66,79,255],"183":[166,68,79,255],"184":[167,70,79,255],"185":[169,73,80,255],"186":[170,75,80,255],"187":[172,77,80,255],"188":[173,79,80,255],"189":[175,81,81,255],"190":[176,84,81,255],"191":[178,86,82,255],"192":[179,88,82,255],"193":[180,90,83,255],"194":[181,93,83,255],"195":[182,95,84,255],"196":[183,96,84,255],"197":[185,100,86,255],"198":[186,102,87,255],"199":[187,104,87,255],"200":[188,107,89,255],"201":[189,109,90,255],"202":[190,112,91,255],"203":[191,114,92,255],"204":[192,116,93,255],"205":[192,119,95,255],"206":[193,121,96,255],"207":[194,124,98,255],"208":[195,126,100,255],"209":[195,129,102,255],"210":[196,131,104,255],"211":[197,134,106,255],"212":[197,135,107,255],"213":[198,139,110,255],"214":[199,141,112,255],"215":[199,143,114,255],"216":[200,146,117,255],"217":[200,148,120,255],"218":[201,151,122,255],"219":[201,153,125,255],"220":[202,156,128,255],"221":[202,158,131,255],"222":[203,161,133,255],"223":[204,163,137,255],"224":[204,165,140,255],"225":[205,168,143,255],"226":[205,170,146,255],"227":[206,172,149,255],"228":[206,174,151,255],"229":[207,177,156,255],"230":[208,179,159,255],"231":[209,182,163,255],"232":[210,184,166,255],"233":[211,186,169,255],"234":[211,188,173,255],"235":[212,190,176,255],"236":[213,192,180,255],"237":[214,194,183,255],"238":[215,196,187,255],"239":[216,198,190,255],"240":[217,200,193,255],"241":[218,202,196,255],"242":[219,204,200,255],"243":[219,206,203,255],"244":[220,206,204,255],"245":[221,209,208,255],"246":[222,210,211,255],"247":[222,211,213,255],"248":[223,213,215,255],"249":[223,214,217,255],"250":[224,214,219,255],"251":[224,215,221,255],"252":[225,216,222,255],"253":[225,216,223,255],"254":[225,216,225,255],"255":[225,216,225,255]}, + twilight_shifted: {"0":[47,19,55,255],"1":[48,18,56,255],"2":[50,17,58,255],"3":[50,17,59,255],"4":[51,17,61,255],"5":[52,16,63,255],"6":[54,16,65,255],"7":[55,16,67,255],"8":[56,16,70,255],"9":[58,16,72,255],"10":[59,17,75,255],"11":[61,17,78,255],"12":[62,17,81,255],"13":[64,17,84,255],"14":[66,18,87,255],"15":[68,18,90,255],"16":[69,19,93,255],"17":[71,20,96,255],"18":[73,21,100,255],"19":[74,21,103,255],"20":[76,22,107,255],"21":[77,23,110,255],"22":[79,25,114,255],"23":[80,26,117,255],"24":[82,27,120,255],"25":[83,29,124,255],"26":[84,31,127,255],"27":[85,33,130,255],"28":[86,34,133,255],"29":[87,36,136,255],"30":[88,39,139,255],"31":[89,41,141,255],"32":[89,43,144,255],"33":[90,44,145,255],"34":[90,48,149,255],"35":[91,50,151,255],"36":[91,52,153,255],"37":[92,53,154,255],"38":[92,57,157,255],"39":[92,60,159,255],"40":[93,62,161,255],"41":[93,63,162,255],"42":[93,67,164,255],"43":[93,69,166,255],"44":[93,72,167,255],"45":[93,73,168,255],"46":[94,77,170,255],"47":[94,79,172,255],"48":[94,81,173,255],"49":[94,83,173,255],"50":[94,86,175,255],"51":[94,89,176,255],"52":[94,91,177,255],"53":[94,92,178,255],"54":[95,96,179,255],"55":[95,98,180,255],"56":[95,100,181,255],"57":[95,101,181,255],"58":[95,105,182,255],"59":[96,107,183,255],"60":[96,109,184,255],"61":[96,110,184,255],"62":[97,114,185,255],"63":[97,116,186,255],"64":[98,118,186,255],"65":[98,120,187,255],"66":[99,122,187,255],"67":[100,125,188,255],"68":[100,127,188,255],"69":[101,129,189,255],"70":[102,131,189,255],"71":[103,133,189,255],"72":[104,135,190,255],"73":[105,137,190,255],"74":[106,138,190,255],"75":[107,142,191,255],"76":[109,144,191,255],"77":[110,146,191,255],"78":[111,148,192,255],"79":[113,150,192,255],"80":[115,152,192,255],"81":[116,154,193,255],"82":[117,154,193,255],"83":[120,157,193,255],"84":[122,159,194,255],"85":[124,161,194,255],"86":[126,163,194,255],"87":[128,165,195,255],"88":[130,167,195,255],"89":[132,169,195,255],"90":[133,170,196,255],"91":[137,172,196,255],"92":[139,174,197,255],"93":[142,176,197,255],"94":[144,178,197,255],"95":[147,180,198,255],"96":[150,181,198,255],"97":[152,183,199,255],"98":[154,184,199,255],"99":[158,187,200,255],"100":[161,188,201,255],"101":[164,190,202,255],"102":[167,192,202,255],"103":[170,193,203,255],"104":[173,195,204,255],"105":[176,196,205,255],"106":[177,197,205,255],"107":[182,199,207,255],"108":[185,201,208,255],"109":[188,202,209,255],"110":[191,204,210,255],"111":[194,205,211,255],"112":[197,207,212,255],"113":[199,208,214,255],"114":[201,209,214,255],"115":[205,210,216,255],"116":[207,212,217,255],"117":[210,213,218,255],"118":[212,214,219,255],"119":[214,214,220,255],"120":[216,215,221,255],"121":[217,216,222,255],"122":[218,216,222,255],"123":[221,217,224,255],"124":[222,217,224,255],"125":[223,217,225,255],"126":[224,217,226,255],"127":[225,216,226,255],"128":[225,216,225,255],"129":[225,216,223,255],"130":[225,216,222,255],"131":[224,215,221,255],"132":[224,215,220,255],"133":[223,214,217,255],"134":[223,213,215,255],"135":[222,211,213,255],"136":[222,210,211,255],"137":[221,209,208,255],"138":[220,207,205,255],"139":[219,206,203,255],"140":[219,204,200,255],"141":[218,202,196,255],"142":[217,200,193,255],"143":[216,198,190,255],"144":[215,196,187,255],"145":[214,194,183,255],"146":[213,192,180,255],"147":[212,190,176,255],"148":[212,189,175,255],"149":[211,186,169,255],"150":[210,184,166,255],"151":[209,182,163,255],"152":[208,179,159,255],"153":[207,177,156,255],"154":[207,175,153,255],"155":[206,172,149,255],"156":[205,170,146,255],"157":[205,168,143,255],"158":[204,165,140,255],"159":[204,163,137,255],"160":[203,161,133,255],"161":[202,158,131,255],"162":[202,156,128,255],"163":[201,153,125,255],"164":[201,152,123,255],"165":[200,148,120,255],"166":[200,146,117,255],"167":[199,143,114,255],"168":[199,141,112,255],"169":[198,139,110,255],"170":[197,136,108,255],"171":[197,134,106,255],"172":[196,131,104,255],"173":[195,129,102,255],"174":[195,126,100,255],"175":[194,124,98,255],"176":[193,121,96,255],"177":[192,119,95,255],"178":[192,116,93,255],"179":[191,114,92,255],"180":[190,113,91,255],"181":[189,109,90,255],"182":[188,107,89,255],"183":[187,104,87,255],"184":[186,102,87,255],"185":[185,100,86,255],"186":[184,97,85,255],"187":[182,95,84,255],"188":[181,93,83,255],"189":[180,90,83,255],"190":[179,88,82,255],"191":[178,86,82,255],"192":[176,84,81,255],"193":[175,81,81,255],"194":[173,79,80,255],"195":[172,77,80,255],"196":[171,76,80,255],"197":[169,73,80,255],"198":[167,70,79,255],"199":[166,68,79,255],"200":[164,66,79,255],"201":[162,64,79,255],"202":[161,62,79,255],"203":[159,60,79,255],"204":[157,58,79,255],"205":[155,56,79,255],"206":[154,54,79,255],"207":[152,52,79,255],"208":[150,50,79,255],"209":[148,49,79,255],"210":[146,47,79,255],"211":[144,45,80,255],"212":[143,44,80,255],"213":[139,42,80,255],"214":[137,40,80,255],"215":[135,39,80,255],"216":[132,37,80,255],"217":[130,36,80,255],"218":[128,35,80,255],"219":[125,33,80,255],"220":[123,32,79,255],"221":[120,31,79,255],"222":[118,30,79,255],"223":[115,29,78,255],"224":[113,28,78,255],"225":[110,27,78,255],"226":[107,26,77,255],"227":[105,26,76,255],"228":[103,25,76,255],"229":[99,24,75,255],"230":[97,24,74,255],"231":[94,23,73,255],"232":[92,22,72,255],"233":[89,22,71,255],"234":[86,21,70,255],"235":[84,21,69,255],"236":[81,20,68,255],"237":[79,20,67,255],"238":[76,19,66,255],"239":[74,19,65,255],"240":[71,18,64,255],"241":[69,18,63,255],"242":[67,18,62,255],"243":[65,17,61,255],"244":[64,17,60,255],"245":[61,17,59,255],"246":[59,17,58,255],"247":[57,17,57,255],"248":[55,17,57,255],"249":[54,17,56,255],"250":[53,17,56,255],"251":[51,17,55,255],"252":[50,18,55,255],"253":[49,18,54,255],"254":[47,19,54,255],"255":[47,20,54,255]}, + viridis: {"0":[68,1,84,255],"1":[68,2,85,255],"2":[68,3,87,255],"3":[69,5,88,255],"4":[69,6,90,255],"5":[69,8,91,255],"6":[70,9,92,255],"7":[70,11,94,255],"8":[70,12,95,255],"9":[70,14,97,255],"10":[71,15,98,255],"11":[71,17,99,255],"12":[71,18,101,255],"13":[71,20,102,255],"14":[71,21,103,255],"15":[71,22,105,255],"16":[71,24,106,255],"17":[72,25,107,255],"18":[72,26,108,255],"19":[72,28,110,255],"20":[72,29,111,255],"21":[72,30,112,255],"22":[72,32,113,255],"23":[72,33,114,255],"24":[72,34,115,255],"25":[72,35,116,255],"26":[71,37,117,255],"27":[71,38,118,255],"28":[71,39,119,255],"29":[71,40,120,255],"30":[71,42,121,255],"31":[71,43,122,255],"32":[71,44,123,255],"33":[70,45,124,255],"34":[70,47,124,255],"35":[70,48,125,255],"36":[70,49,126,255],"37":[69,50,127,255],"38":[69,52,127,255],"39":[69,53,128,255],"40":[69,54,129,255],"41":[68,55,129,255],"42":[68,57,130,255],"43":[67,58,131,255],"44":[67,59,131,255],"45":[67,60,132,255],"46":[66,61,132,255],"47":[66,62,133,255],"48":[66,64,133,255],"49":[65,65,134,255],"50":[65,66,134,255],"51":[64,67,135,255],"52":[64,68,135,255],"53":[63,69,135,255],"54":[63,71,136,255],"55":[62,72,136,255],"56":[62,73,137,255],"57":[61,74,137,255],"58":[61,75,137,255],"59":[61,76,137,255],"60":[60,77,138,255],"61":[60,78,138,255],"62":[59,80,138,255],"63":[59,81,138,255],"64":[58,82,139,255],"65":[58,83,139,255],"66":[57,84,139,255],"67":[57,85,139,255],"68":[56,86,139,255],"69":[56,87,140,255],"70":[55,88,140,255],"71":[55,89,140,255],"72":[54,90,140,255],"73":[54,91,140,255],"74":[53,92,140,255],"75":[53,93,140,255],"76":[52,94,141,255],"77":[52,95,141,255],"78":[51,96,141,255],"79":[51,97,141,255],"80":[50,98,141,255],"81":[50,99,141,255],"82":[49,100,141,255],"83":[49,101,141,255],"84":[49,102,141,255],"85":[48,103,141,255],"86":[48,104,141,255],"87":[47,105,141,255],"88":[47,106,141,255],"89":[46,107,142,255],"90":[46,108,142,255],"91":[46,109,142,255],"92":[45,110,142,255],"93":[45,111,142,255],"94":[44,112,142,255],"95":[44,113,142,255],"96":[44,114,142,255],"97":[43,115,142,255],"98":[43,116,142,255],"99":[42,117,142,255],"100":[42,118,142,255],"101":[42,119,142,255],"102":[41,120,142,255],"103":[41,121,142,255],"104":[40,122,142,255],"105":[40,122,142,255],"106":[40,123,142,255],"107":[39,124,142,255],"108":[39,125,142,255],"109":[39,126,142,255],"110":[38,127,142,255],"111":[38,128,142,255],"112":[38,129,142,255],"113":[37,130,142,255],"114":[37,131,141,255],"115":[36,132,141,255],"116":[36,133,141,255],"117":[36,134,141,255],"118":[35,135,141,255],"119":[35,136,141,255],"120":[35,137,141,255],"121":[34,137,141,255],"122":[34,138,141,255],"123":[34,139,141,255],"124":[33,140,141,255],"125":[33,141,140,255],"126":[33,142,140,255],"127":[32,143,140,255],"128":[32,144,140,255],"129":[32,145,140,255],"130":[31,146,140,255],"131":[31,147,139,255],"132":[31,148,139,255],"133":[31,149,139,255],"134":[31,150,139,255],"135":[30,151,138,255],"136":[30,152,138,255],"137":[30,153,138,255],"138":[30,153,138,255],"139":[30,154,137,255],"140":[30,155,137,255],"141":[30,156,137,255],"142":[30,157,136,255],"143":[30,158,136,255],"144":[30,159,136,255],"145":[30,160,135,255],"146":[31,161,135,255],"147":[31,162,134,255],"148":[31,163,134,255],"149":[32,164,133,255],"150":[32,165,133,255],"151":[33,166,133,255],"152":[33,167,132,255],"153":[34,167,132,255],"154":[35,168,131,255],"155":[35,169,130,255],"156":[36,170,130,255],"157":[37,171,129,255],"158":[38,172,129,255],"159":[39,173,128,255],"160":[40,174,127,255],"161":[41,175,127,255],"162":[42,176,126,255],"163":[43,177,125,255],"164":[44,177,125,255],"165":[46,178,124,255],"166":[47,179,123,255],"167":[48,180,122,255],"168":[50,181,122,255],"169":[51,182,121,255],"170":[53,183,120,255],"171":[54,184,119,255],"172":[56,185,118,255],"173":[57,185,118,255],"174":[59,186,117,255],"175":[61,187,116,255],"176":[62,188,115,255],"177":[64,189,114,255],"178":[66,190,113,255],"179":[68,190,112,255],"180":[69,191,111,255],"181":[71,192,110,255],"182":[73,193,109,255],"183":[75,194,108,255],"184":[77,194,107,255],"185":[79,195,105,255],"186":[81,196,104,255],"187":[83,197,103,255],"188":[85,198,102,255],"189":[87,198,101,255],"190":[89,199,100,255],"191":[91,200,98,255],"192":[94,201,97,255],"193":[96,201,96,255],"194":[98,202,95,255],"195":[100,203,93,255],"196":[103,204,92,255],"197":[105,204,91,255],"198":[107,205,89,255],"199":[109,206,88,255],"200":[112,206,86,255],"201":[114,207,85,255],"202":[116,208,84,255],"203":[119,208,82,255],"204":[121,209,81,255],"205":[124,210,79,255],"206":[126,210,78,255],"207":[129,211,76,255],"208":[131,211,75,255],"209":[134,212,73,255],"210":[136,213,71,255],"211":[139,213,70,255],"212":[141,214,68,255],"213":[144,214,67,255],"214":[146,215,65,255],"215":[149,215,63,255],"216":[151,216,62,255],"217":[154,216,60,255],"218":[157,217,58,255],"219":[159,217,56,255],"220":[162,218,55,255],"221":[165,218,53,255],"222":[167,219,51,255],"223":[170,219,50,255],"224":[173,220,48,255],"225":[175,220,46,255],"226":[178,221,44,255],"227":[181,221,43,255],"228":[183,221,41,255],"229":[186,222,39,255],"230":[189,222,38,255],"231":[191,223,36,255],"232":[194,223,34,255],"233":[197,223,33,255],"234":[199,224,31,255],"235":[202,224,30,255],"236":[205,224,29,255],"237":[207,225,28,255],"238":[210,225,27,255],"239":[212,225,26,255],"240":[215,226,25,255],"241":[218,226,24,255],"242":[220,226,24,255],"243":[223,227,24,255],"244":[225,227,24,255],"245":[228,227,24,255],"246":[231,228,25,255],"247":[233,228,25,255],"248":[236,228,26,255],"249":[238,229,27,255],"250":[241,229,28,255],"251":[243,229,30,255],"252":[246,230,31,255],"253":[248,230,33,255],"254":[250,230,34,255],"255":[253,231,36,255]}, + wistia: {"0":[228,255,122,255],"1":[228,254,120,255],"2":[228,254,118,255],"3":[229,253,117,255],"4":[229,253,115,255],"5":[230,253,114,255],"6":[230,252,112,255],"7":[230,252,111,255],"8":[231,252,109,255],"9":[231,251,108,255],"10":[232,251,106,255],"11":[232,251,105,255],"12":[233,250,103,255],"13":[233,250,102,255],"14":[233,249,100,255],"15":[234,249,99,255],"16":[234,249,97,255],"17":[235,248,96,255],"18":[235,248,94,255],"19":[236,248,93,255],"20":[236,247,91,255],"21":[236,247,90,255],"22":[237,247,88,255],"23":[237,246,87,255],"24":[238,246,85,255],"25":[238,245,84,255],"26":[239,245,82,255],"27":[239,245,81,255],"28":[239,244,79,255],"29":[240,244,78,255],"30":[240,244,76,255],"31":[241,243,75,255],"32":[241,243,73,255],"33":[241,243,72,255],"34":[242,242,70,255],"35":[242,242,69,255],"36":[243,242,67,255],"37":[243,241,66,255],"38":[244,241,64,255],"39":[244,240,63,255],"40":[244,240,61,255],"41":[245,240,60,255],"42":[245,239,58,255],"43":[246,239,57,255],"44":[246,239,55,255],"45":[247,238,54,255],"46":[247,238,52,255],"47":[247,238,51,255],"48":[248,237,49,255],"49":[248,237,48,255],"50":[249,236,46,255],"51":[249,236,45,255],"52":[250,236,43,255],"53":[250,235,42,255],"54":[250,235,40,255],"55":[251,235,39,255],"56":[251,234,37,255],"57":[252,234,36,255],"58":[252,234,34,255],"59":[252,233,33,255],"60":[253,233,31,255],"61":[253,232,30,255],"62":[254,232,28,255],"63":[254,232,27,255],"64":[255,231,25,255],"65":[255,231,25,255],"66":[255,230,25,255],"67":[255,229,24,255],"68":[255,229,24,255],"69":[255,228,23,255],"70":[255,227,23,255],"71":[255,227,23,255],"72":[255,226,22,255],"73":[255,225,22,255],"74":[255,225,21,255],"75":[255,224,21,255],"76":[255,223,21,255],"77":[255,223,20,255],"78":[255,222,20,255],"79":[255,221,19,255],"80":[255,221,19,255],"81":[255,220,18,255],"82":[255,219,18,255],"83":[255,219,18,255],"84":[255,218,17,255],"85":[255,217,17,255],"86":[255,216,16,255],"87":[255,216,16,255],"88":[255,215,16,255],"89":[255,214,15,255],"90":[255,214,15,255],"91":[255,213,14,255],"92":[255,212,14,255],"93":[255,212,14,255],"94":[255,211,13,255],"95":[255,210,13,255],"96":[255,210,12,255],"97":[255,209,12,255],"98":[255,208,12,255],"99":[255,208,11,255],"100":[255,207,11,255],"101":[255,206,10,255],"102":[255,206,10,255],"103":[255,205,9,255],"104":[255,204,9,255],"105":[255,204,9,255],"106":[255,203,8,255],"107":[255,202,8,255],"108":[255,202,7,255],"109":[255,201,7,255],"110":[255,200,7,255],"111":[255,200,6,255],"112":[255,199,6,255],"113":[255,198,5,255],"114":[255,198,5,255],"115":[255,197,5,255],"116":[255,196,4,255],"117":[255,196,4,255],"118":[255,195,3,255],"119":[255,194,3,255],"120":[255,194,3,255],"121":[255,193,2,255],"122":[255,192,2,255],"123":[255,192,1,255],"124":[255,191,1,255],"125":[255,190,1,255],"126":[255,190,0,255],"127":[255,189,0,255],"128":[255,188,0,255],"129":[255,188,0,255],"130":[255,187,0,255],"131":[255,187,0,255],"132":[255,186,0,255],"133":[255,186,0,255],"134":[255,186,0,255],"135":[255,185,0,255],"136":[255,185,0,255],"137":[255,184,0,255],"138":[255,184,0,255],"139":[255,183,0,255],"140":[255,183,0,255],"141":[255,182,0,255],"142":[255,182,0,255],"143":[255,181,0,255],"144":[255,181,0,255],"145":[255,181,0,255],"146":[255,180,0,255],"147":[255,180,0,255],"148":[255,179,0,255],"149":[255,179,0,255],"150":[255,178,0,255],"151":[255,178,0,255],"152":[255,177,0,255],"153":[255,177,0,255],"154":[255,176,0,255],"155":[255,176,0,255],"156":[255,176,0,255],"157":[255,175,0,255],"158":[255,175,0,255],"159":[255,174,0,255],"160":[255,174,0,255],"161":[255,173,0,255],"162":[255,173,0,255],"163":[255,172,0,255],"164":[255,172,0,255],"165":[255,171,0,255],"166":[255,171,0,255],"167":[255,171,0,255],"168":[255,170,0,255],"169":[255,170,0,255],"170":[255,169,0,255],"171":[255,169,0,255],"172":[255,168,0,255],"173":[255,168,0,255],"174":[255,167,0,255],"175":[255,167,0,255],"176":[255,166,0,255],"177":[255,166,0,255],"178":[255,166,0,255],"179":[255,165,0,255],"180":[255,165,0,255],"181":[255,164,0,255],"182":[255,164,0,255],"183":[255,163,0,255],"184":[255,163,0,255],"185":[255,162,0,255],"186":[255,162,0,255],"187":[255,161,0,255],"188":[255,161,0,255],"189":[255,161,0,255],"190":[255,160,0,255],"191":[255,160,0,255],"192":[254,159,0,255],"193":[254,159,0,255],"194":[254,158,0,255],"195":[254,158,0,255],"196":[254,157,0,255],"197":[254,157,0,255],"198":[254,156,0,255],"199":[254,155,0,255],"200":[254,155,0,255],"201":[254,154,0,255],"202":[254,154,0,255],"203":[254,153,0,255],"204":[254,153,0,255],"205":[254,152,0,255],"206":[254,152,0,255],"207":[254,151,0,255],"208":[254,151,0,255],"209":[254,150,0,255],"210":[254,150,0,255],"211":[254,149,0,255],"212":[254,149,0,255],"213":[253,148,0,255],"214":[253,148,0,255],"215":[253,147,0,255],"216":[253,147,0,255],"217":[253,146,0,255],"218":[253,146,0,255],"219":[253,145,0,255],"220":[253,145,0,255],"221":[253,144,0,255],"222":[253,144,0,255],"223":[253,143,0,255],"224":[253,143,0,255],"225":[253,142,0,255],"226":[253,142,0,255],"227":[253,141,0,255],"228":[253,140,0,255],"229":[253,140,0,255],"230":[253,139,0,255],"231":[253,139,0,255],"232":[253,138,0,255],"233":[253,138,0,255],"234":[252,137,0,255],"235":[252,137,0,255],"236":[252,136,0,255],"237":[252,136,0,255],"238":[252,135,0,255],"239":[252,135,0,255],"240":[252,134,0,255],"241":[252,134,0,255],"242":[252,133,0,255],"243":[252,133,0,255],"244":[252,132,0,255],"245":[252,132,0,255],"246":[252,131,0,255],"247":[252,131,0,255],"248":[252,130,0,255],"249":[252,130,0,255],"250":[252,129,0,255],"251":[252,129,0,255],"252":[252,128,0,255],"253":[252,128,0,255],"254":[252,127,0,255],"255":[252,127,0,255]}, + ylgn: {"0":[255,255,229,255],"1":[254,254,227,255],"2":[254,254,226,255],"3":[254,254,224,255],"4":[253,254,223,255],"5":[253,254,222,255],"6":[253,254,220,255],"7":[253,254,219,255],"8":[252,254,217,255],"9":[252,254,216,255],"10":[252,254,215,255],"11":[252,253,213,255],"12":[251,253,212,255],"13":[251,253,211,255],"14":[251,253,209,255],"15":[251,253,208,255],"16":[250,253,206,255],"17":[250,253,205,255],"18":[250,253,204,255],"19":[250,253,202,255],"20":[249,253,201,255],"21":[249,253,200,255],"22":[249,252,198,255],"23":[249,252,197,255],"24":[248,252,195,255],"25":[248,252,194,255],"26":[248,252,193,255],"27":[248,252,191,255],"28":[247,252,190,255],"29":[247,252,188,255],"30":[247,252,187,255],"31":[247,252,186,255],"32":[246,251,184,255],"33":[245,251,184,255],"34":[245,251,183,255],"35":[244,250,182,255],"36":[243,250,182,255],"37":[242,250,181,255],"38":[241,249,180,255],"39":[240,249,180,255],"40":[239,248,179,255],"41":[238,248,178,255],"42":[237,248,178,255],"43":[236,247,177,255],"44":[235,247,176,255],"45":[234,247,175,255],"46":[233,246,175,255],"47":[232,246,174,255],"48":[231,245,173,255],"49":[230,245,173,255],"50":[229,245,172,255],"51":[229,244,171,255],"52":[228,244,171,255],"53":[227,244,170,255],"54":[226,243,169,255],"55":[225,243,169,255],"56":[224,242,168,255],"57":[223,242,167,255],"58":[222,242,166,255],"59":[221,241,166,255],"60":[220,241,165,255],"61":[219,241,164,255],"62":[218,240,164,255],"63":[217,240,163,255],"64":[216,239,162,255],"65":[215,239,162,255],"66":[213,238,161,255],"67":[212,238,160,255],"68":[211,237,160,255],"69":[209,236,159,255],"70":[208,236,158,255],"71":[206,235,158,255],"72":[205,235,157,255],"73":[204,234,156,255],"74":[202,233,156,255],"75":[201,233,155,255],"76":[200,232,154,255],"77":[198,232,154,255],"78":[197,231,153,255],"79":[195,230,152,255],"80":[194,230,152,255],"81":[193,229,151,255],"82":[191,229,150,255],"83":[190,228,150,255],"84":[189,227,149,255],"85":[187,227,149,255],"86":[186,226,148,255],"87":[184,226,147,255],"88":[183,225,147,255],"89":[182,224,146,255],"90":[180,224,145,255],"91":[179,223,145,255],"92":[178,223,144,255],"93":[176,222,143,255],"94":[175,221,143,255],"95":[173,221,142,255],"96":[172,220,141,255],"97":[170,220,141,255],"98":[169,219,140,255],"99":[167,218,139,255],"100":[165,217,139,255],"101":[164,217,138,255],"102":[162,216,137,255],"103":[160,215,137,255],"104":[159,214,136,255],"105":[157,214,135,255],"106":[155,213,135,255],"107":[154,212,134,255],"108":[152,212,133,255],"109":[150,211,133,255],"110":[149,210,132,255],"111":[147,209,131,255],"112":[145,209,131,255],"113":[144,208,130,255],"114":[142,207,129,255],"115":[140,207,129,255],"116":[139,206,128,255],"117":[137,205,127,255],"118":[135,204,127,255],"119":[134,204,126,255],"120":[132,203,125,255],"121":[130,202,125,255],"122":[129,201,124,255],"123":[127,201,123,255],"124":[125,200,123,255],"125":[124,199,122,255],"126":[122,199,121,255],"127":[120,198,121,255],"128":[119,197,120,255],"129":[117,196,119,255],"130":[115,195,118,255],"131":[113,195,117,255],"132":[112,194,117,255],"133":[110,193,116,255],"134":[108,192,115,255],"135":[107,191,114,255],"136":[105,190,113,255],"137":[103,189,112,255],"138":[101,189,111,255],"139":[100,188,110,255],"140":[98,187,110,255],"141":[96,186,109,255],"142":[94,185,108,255],"143":[93,184,107,255],"144":[91,184,106,255],"145":[89,183,105,255],"146":[88,182,104,255],"147":[86,181,103,255],"148":[84,180,102,255],"149":[82,179,102,255],"150":[81,178,101,255],"151":[79,178,100,255],"152":[77,177,99,255],"153":[75,176,98,255],"154":[74,175,97,255],"155":[72,174,96,255],"156":[70,173,95,255],"157":[69,173,95,255],"158":[67,172,94,255],"159":[65,171,93,255],"160":[64,170,92,255],"161":[63,169,91,255],"162":[62,167,90,255],"163":[61,166,90,255],"164":[60,165,89,255],"165":[59,164,88,255],"166":[58,162,87,255],"167":[57,161,86,255],"168":[56,160,85,255],"169":[55,159,85,255],"170":[55,158,84,255],"171":[54,156,83,255],"172":[53,155,82,255],"173":[52,154,81,255],"174":[51,153,81,255],"175":[50,151,80,255],"176":[49,150,79,255],"177":[48,149,78,255],"178":[47,148,77,255],"179":[46,146,76,255],"180":[45,145,76,255],"181":[44,144,75,255],"182":[43,143,74,255],"183":[42,142,73,255],"184":[41,140,72,255],"185":[40,139,72,255],"186":[39,138,71,255],"187":[39,137,70,255],"188":[38,135,69,255],"189":[37,134,68,255],"190":[36,133,68,255],"191":[35,132,67,255],"192":[34,131,66,255],"193":[33,130,66,255],"194":[31,129,65,255],"195":[30,128,65,255],"196":[29,127,65,255],"197":[28,126,64,255],"198":[27,126,64,255],"199":[26,125,64,255],"200":[25,124,63,255],"201":[24,123,63,255],"202":[23,122,62,255],"203":[22,121,62,255],"204":[21,120,62,255],"205":[19,119,61,255],"206":[18,119,61,255],"207":[17,118,61,255],"208":[16,117,60,255],"209":[15,116,60,255],"210":[14,115,59,255],"211":[13,114,59,255],"212":[12,113,59,255],"213":[11,112,58,255],"214":[10,112,58,255],"215":[8,111,58,255],"216":[7,110,57,255],"217":[6,109,57,255],"218":[5,108,56,255],"219":[4,107,56,255],"220":[3,106,56,255],"221":[2,105,55,255],"222":[1,104,55,255],"223":[0,104,55,255],"224":[0,103,54,255],"225":[0,101,54,255],"226":[0,100,53,255],"227":[0,99,53,255],"228":[0,98,52,255],"229":[0,97,52,255],"230":[0,96,51,255],"231":[0,95,51,255],"232":[0,94,51,255],"233":[0,93,50,255],"234":[0,92,50,255],"235":[0,90,49,255],"236":[0,89,49,255],"237":[0,88,48,255],"238":[0,87,48,255],"239":[0,86,48,255],"240":[0,85,47,255],"241":[0,84,47,255],"242":[0,83,46,255],"243":[0,82,46,255],"244":[0,81,45,255],"245":[0,79,45,255],"246":[0,78,44,255],"247":[0,77,44,255],"248":[0,76,44,255],"249":[0,75,43,255],"250":[0,74,43,255],"251":[0,73,42,255],"252":[0,72,42,255],"253":[0,71,41,255],"254":[0,70,41,255],"255":[0,69,41,255]}, + ylgnbu: {"0":[255,255,217,255],"1":[254,254,215,255],"2":[253,254,214,255],"3":[253,254,213,255],"4":[252,254,211,255],"5":[252,253,210,255],"6":[251,253,209,255],"7":[251,253,208,255],"8":[250,253,206,255],"9":[249,253,205,255],"10":[249,252,204,255],"11":[248,252,203,255],"12":[248,252,201,255],"13":[247,252,200,255],"14":[247,251,199,255],"15":[246,251,198,255],"16":[245,251,196,255],"17":[245,251,195,255],"18":[244,251,194,255],"19":[244,250,193,255],"20":[243,250,191,255],"21":[243,250,190,255],"22":[242,250,189,255],"23":[242,249,188,255],"24":[241,249,186,255],"25":[240,249,185,255],"26":[240,249,184,255],"27":[239,249,183,255],"28":[239,248,181,255],"29":[238,248,180,255],"30":[238,248,179,255],"31":[237,248,178,255],"32":[236,247,177,255],"33":[235,247,177,255],"34":[234,247,177,255],"35":[233,246,177,255],"36":[232,246,177,255],"37":[230,245,177,255],"38":[229,245,177,255],"39":[228,244,177,255],"40":[227,244,177,255],"41":[226,243,177,255],"42":[224,243,177,255],"43":[223,242,178,255],"44":[222,242,178,255],"45":[221,241,178,255],"46":[220,241,178,255],"47":[218,240,178,255],"48":[217,240,178,255],"49":[216,239,178,255],"50":[215,239,178,255],"51":[214,239,178,255],"52":[213,238,178,255],"53":[211,238,178,255],"54":[210,237,179,255],"55":[209,237,179,255],"56":[208,236,179,255],"57":[207,236,179,255],"58":[205,235,179,255],"59":[204,235,179,255],"60":[203,234,179,255],"61":[202,234,179,255],"62":[201,233,179,255],"63":[199,233,179,255],"64":[198,232,180,255],"65":[196,231,180,255],"66":[193,231,180,255],"67":[191,230,180,255],"68":[189,229,180,255],"69":[187,228,181,255],"70":[184,227,181,255],"71":[182,226,181,255],"72":[180,225,181,255],"73":[178,224,182,255],"74":[175,223,182,255],"75":[173,223,182,255],"76":[171,222,182,255],"77":[169,221,182,255],"78":[166,220,183,255],"79":[164,219,183,255],"80":[162,218,183,255],"81":[160,217,183,255],"82":[157,216,184,255],"83":[155,216,184,255],"84":[153,215,184,255],"85":[151,214,184,255],"86":[148,213,184,255],"87":[146,212,185,255],"88":[144,211,185,255],"89":[141,210,185,255],"90":[139,209,185,255],"91":[137,209,185,255],"92":[135,208,186,255],"93":[132,207,186,255],"94":[130,206,186,255],"95":[128,205,186,255],"96":[126,204,187,255],"97":[124,204,187,255],"98":[122,203,187,255],"99":[120,202,187,255],"100":[118,201,188,255],"101":[116,201,188,255],"102":[114,200,188,255],"103":[112,199,189,255],"104":[110,198,189,255],"105":[108,198,189,255],"106":[106,197,189,255],"107":[104,196,190,255],"108":[102,196,190,255],"109":[100,195,190,255],"110":[99,194,191,255],"111":[97,193,191,255],"112":[95,193,191,255],"113":[93,192,191,255],"114":[91,191,192,255],"115":[89,191,192,255],"116":[87,190,192,255],"117":[85,189,193,255],"118":[83,188,193,255],"119":[81,188,193,255],"120":[79,187,193,255],"121":[77,186,194,255],"122":[75,185,194,255],"123":[73,185,194,255],"124":[71,184,195,255],"125":[69,183,195,255],"126":[67,183,195,255],"127":[65,182,195,255],"128":[64,181,195,255],"129":[63,180,195,255],"130":[62,179,195,255],"131":[61,177,195,255],"132":[59,176,195,255],"133":[58,175,195,255],"134":[57,174,195,255],"135":[56,173,195,255],"136":[55,172,194,255],"137":[54,170,194,255],"138":[53,169,194,255],"139":[52,168,194,255],"140":[50,167,194,255],"141":[49,166,194,255],"142":[48,165,194,255],"143":[47,164,194,255],"144":[46,162,193,255],"145":[45,161,193,255],"146":[44,160,193,255],"147":[42,159,193,255],"148":[41,158,193,255],"149":[40,157,193,255],"150":[39,155,193,255],"151":[38,154,193,255],"152":[37,153,192,255],"153":[36,152,192,255],"154":[35,151,192,255],"155":[33,150,192,255],"156":[32,148,192,255],"157":[31,147,192,255],"158":[30,146,192,255],"159":[29,145,192,255],"160":[29,144,191,255],"161":[29,142,190,255],"162":[29,140,190,255],"163":[29,139,189,255],"164":[29,137,188,255],"165":[29,136,187,255],"166":[30,134,187,255],"167":[30,132,186,255],"168":[30,131,185,255],"169":[30,129,184,255],"170":[30,128,184,255],"171":[30,126,183,255],"172":[30,124,182,255],"173":[31,123,181,255],"174":[31,121,180,255],"175":[31,120,180,255],"176":[31,118,179,255],"177":[31,116,178,255],"178":[31,115,177,255],"179":[32,113,177,255],"180":[32,112,176,255],"181":[32,110,175,255],"182":[32,108,174,255],"183":[32,107,174,255],"184":[32,105,173,255],"185":[33,104,172,255],"186":[33,102,171,255],"187":[33,100,171,255],"188":[33,99,170,255],"189":[33,97,169,255],"190":[33,96,168,255],"191":[33,94,168,255],"192":[34,93,167,255],"193":[34,91,166,255],"194":[34,90,166,255],"195":[34,89,165,255],"196":[34,87,165,255],"197":[34,86,164,255],"198":[34,85,163,255],"199":[34,83,163,255],"200":[34,82,162,255],"201":[34,81,161,255],"202":[35,79,161,255],"203":[35,78,160,255],"204":[35,77,160,255],"205":[35,75,159,255],"206":[35,74,158,255],"207":[35,73,158,255],"208":[35,71,157,255],"209":[35,70,156,255],"210":[35,69,156,255],"211":[35,67,155,255],"212":[35,66,154,255],"213":[36,65,154,255],"214":[36,64,153,255],"215":[36,62,153,255],"216":[36,61,152,255],"217":[36,60,151,255],"218":[36,58,151,255],"219":[36,57,150,255],"220":[36,56,149,255],"221":[36,54,149,255],"222":[36,53,148,255],"223":[36,52,148,255],"224":[36,51,146,255],"225":[35,50,144,255],"226":[34,49,142,255],"227":[33,49,140,255],"228":[32,48,138,255],"229":[31,47,136,255],"230":[30,47,135,255],"231":[29,46,133,255],"232":[28,45,131,255],"233":[28,44,129,255],"234":[27,44,127,255],"235":[26,43,125,255],"236":[25,42,123,255],"237":[24,41,121,255],"238":[23,41,120,255],"239":[22,40,118,255],"240":[21,39,116,255],"241":[20,39,114,255],"242":[19,38,112,255],"243":[18,37,110,255],"244":[18,36,108,255],"245":[17,36,106,255],"246":[16,35,104,255],"247":[15,34,103,255],"248":[14,34,101,255],"249":[13,33,99,255],"250":[12,32,97,255],"251":[11,31,95,255],"252":[10,31,93,255],"253":[9,30,91,255],"254":[8,29,89,255],"255":[8,29,88,255]}, + ylorbr: {"0":[255,255,229,255],"1":[255,254,227,255],"2":[255,254,226,255],"3":[255,254,225,255],"4":[255,253,223,255],"5":[255,253,222,255],"6":[255,253,221,255],"7":[255,253,219,255],"8":[255,252,218,255],"9":[255,252,217,255],"10":[255,252,216,255],"11":[255,252,214,255],"12":[255,251,213,255],"13":[255,251,212,255],"14":[255,251,210,255],"15":[255,251,209,255],"16":[255,250,208,255],"17":[255,250,207,255],"18":[255,250,205,255],"19":[255,250,204,255],"20":[255,249,203,255],"21":[255,249,201,255],"22":[255,249,200,255],"23":[255,249,199,255],"24":[255,248,198,255],"25":[255,248,196,255],"26":[255,248,195,255],"27":[255,248,194,255],"28":[255,247,192,255],"29":[255,247,191,255],"30":[255,247,190,255],"31":[255,247,189,255],"32":[254,246,187,255],"33":[254,246,186,255],"34":[254,245,185,255],"35":[254,245,183,255],"36":[254,244,182,255],"37":[254,243,181,255],"38":[254,243,179,255],"39":[254,242,178,255],"40":[254,241,177,255],"41":[254,241,175,255],"42":[254,240,174,255],"43":[254,240,172,255],"44":[254,239,171,255],"45":[254,238,170,255],"46":[254,238,168,255],"47":[254,237,167,255],"48":[254,236,166,255],"49":[254,236,164,255],"50":[254,235,163,255],"51":[254,235,162,255],"52":[254,234,160,255],"53":[254,233,159,255],"54":[254,233,158,255],"55":[254,232,156,255],"56":[254,231,155,255],"57":[254,231,154,255],"58":[254,230,152,255],"59":[254,229,151,255],"60":[254,229,150,255],"61":[254,228,148,255],"62":[254,228,147,255],"63":[254,227,146,255],"64":[254,226,144,255],"65":[254,225,142,255],"66":[254,224,140,255],"67":[254,223,138,255],"68":[254,222,136,255],"69":[254,221,134,255],"70":[254,220,132,255],"71":[254,219,129,255],"72":[254,218,127,255],"73":[254,218,125,255],"74":[254,217,123,255],"75":[254,216,121,255],"76":[254,215,119,255],"77":[254,214,117,255],"78":[254,213,115,255],"79":[254,212,113,255],"80":[254,211,111,255],"81":[254,210,109,255],"82":[254,209,107,255],"83":[254,208,105,255],"84":[254,207,103,255],"85":[254,206,101,255],"86":[254,205,98,255],"87":[254,204,96,255],"88":[254,203,94,255],"89":[254,202,92,255],"90":[254,201,90,255],"91":[254,200,88,255],"92":[254,199,86,255],"93":[254,198,84,255],"94":[254,197,82,255],"95":[254,196,80,255],"96":[254,195,78,255],"97":[254,194,77,255],"98":[254,192,76,255],"99":[254,191,74,255],"100":[254,190,73,255],"101":[254,188,72,255],"102":[254,187,71,255],"103":[254,186,70,255],"104":[254,184,69,255],"105":[254,183,67,255],"106":[254,182,66,255],"107":[254,180,65,255],"108":[254,179,64,255],"109":[254,177,63,255],"110":[254,176,61,255],"111":[254,175,60,255],"112":[254,173,59,255],"113":[254,172,58,255],"114":[254,171,57,255],"115":[254,169,55,255],"116":[254,168,54,255],"117":[254,167,53,255],"118":[254,165,52,255],"119":[254,164,51,255],"120":[254,163,49,255],"121":[254,161,48,255],"122":[254,160,47,255],"123":[254,159,46,255],"124":[254,157,45,255],"125":[254,156,43,255],"126":[254,155,42,255],"127":[254,153,41,255],"128":[253,152,40,255],"129":[253,151,40,255],"130":[252,149,39,255],"131":[252,148,38,255],"132":[251,147,38,255],"133":[250,145,37,255],"134":[250,144,36,255],"135":[249,143,36,255],"136":[249,142,35,255],"137":[248,140,34,255],"138":[248,139,34,255],"139":[247,138,33,255],"140":[246,136,32,255],"141":[246,135,32,255],"142":[245,134,31,255],"143":[245,133,30,255],"144":[244,131,30,255],"145":[244,130,29,255],"146":[243,129,28,255],"147":[242,127,28,255],"148":[242,126,27,255],"149":[241,125,26,255],"150":[241,124,26,255],"151":[240,122,25,255],"152":[240,121,24,255],"153":[239,120,24,255],"154":[239,118,23,255],"155":[238,117,22,255],"156":[237,116,22,255],"157":[237,115,21,255],"158":[236,113,20,255],"159":[236,112,20,255],"160":[235,111,19,255],"161":[234,110,19,255],"162":[233,109,18,255],"163":[232,107,17,255],"164":[231,106,17,255],"165":[230,105,16,255],"166":[229,104,16,255],"167":[228,103,15,255],"168":[227,102,15,255],"169":[226,101,14,255],"170":[225,100,14,255],"171":[224,98,13,255],"172":[223,97,12,255],"173":[222,96,12,255],"174":[221,95,11,255],"175":[220,94,11,255],"176":[219,93,10,255],"177":[218,92,10,255],"178":[217,90,9,255],"179":[216,89,8,255],"180":[215,88,8,255],"181":[214,87,7,255],"182":[213,86,7,255],"183":[212,85,6,255],"184":[211,84,6,255],"185":[210,83,5,255],"186":[209,81,4,255],"187":[208,80,4,255],"188":[207,79,3,255],"189":[206,78,3,255],"190":[205,77,2,255],"191":[204,76,2,255],"192":[202,75,2,255],"193":[201,74,2,255],"194":[199,73,2,255],"195":[198,73,2,255],"196":[196,72,2,255],"197":[194,71,2,255],"198":[193,70,2,255],"199":[191,70,2,255],"200":[190,69,2,255],"201":[188,68,2,255],"202":[186,67,2,255],"203":[185,67,2,255],"204":[183,66,2,255],"205":[182,65,2,255],"206":[180,64,2,255],"207":[178,64,2,255],"208":[177,63,3,255],"209":[175,62,3,255],"210":[174,61,3,255],"211":[172,61,3,255],"212":[170,60,3,255],"213":[169,59,3,255],"214":[167,58,3,255],"215":[166,58,3,255],"216":[164,57,3,255],"217":[162,56,3,255],"218":[161,55,3,255],"219":[159,55,3,255],"220":[158,54,3,255],"221":[156,53,3,255],"222":[154,52,3,255],"223":[153,52,3,255],"224":[151,51,4,255],"225":[150,51,4,255],"226":[148,50,4,255],"227":[146,50,4,255],"228":[145,49,4,255],"229":[143,49,4,255],"230":[142,48,4,255],"231":[140,48,4,255],"232":[138,47,4,255],"233":[137,47,4,255],"234":[135,46,4,255],"235":[134,46,4,255],"236":[132,45,4,255],"237":[130,45,4,255],"238":[129,45,4,255],"239":[127,44,4,255],"240":[126,44,5,255],"241":[124,43,5,255],"242":[122,43,5,255],"243":[121,42,5,255],"244":[119,42,5,255],"245":[118,41,5,255],"246":[116,41,5,255],"247":[114,40,5,255],"248":[113,40,5,255],"249":[111,39,5,255],"250":[110,39,5,255],"251":[108,38,5,255],"252":[106,38,5,255],"253":[105,37,5,255],"254":[103,37,5,255],"255":[102,37,5,255]}, + ylorrd: {"0":[255,255,204,255],"1":[255,254,202,255],"2":[255,253,201,255],"3":[255,253,199,255],"4":[255,252,198,255],"5":[255,252,197,255],"6":[255,251,195,255],"7":[255,251,194,255],"8":[255,250,192,255],"9":[255,249,191,255],"10":[255,249,190,255],"11":[255,248,188,255],"12":[255,248,187,255],"13":[255,247,186,255],"14":[255,247,184,255],"15":[255,246,183,255],"16":[255,245,181,255],"17":[255,245,180,255],"18":[255,244,179,255],"19":[255,244,177,255],"20":[255,243,176,255],"21":[255,243,175,255],"22":[255,242,173,255],"23":[255,242,172,255],"24":[255,241,170,255],"25":[255,240,169,255],"26":[255,240,168,255],"27":[255,239,166,255],"28":[255,239,165,255],"29":[255,238,163,255],"30":[255,238,162,255],"31":[255,237,161,255],"32":[254,236,159,255],"33":[254,236,158,255],"34":[254,235,157,255],"35":[254,235,155,255],"36":[254,234,154,255],"37":[254,233,153,255],"38":[254,233,151,255],"39":[254,232,150,255],"40":[254,231,149,255],"41":[254,231,147,255],"42":[254,230,146,255],"43":[254,230,145,255],"44":[254,229,144,255],"45":[254,228,142,255],"46":[254,228,141,255],"47":[254,227,140,255],"48":[254,226,138,255],"49":[254,226,137,255],"50":[254,225,136,255],"51":[254,225,134,255],"52":[254,224,133,255],"53":[254,223,132,255],"54":[254,223,130,255],"55":[254,222,129,255],"56":[254,221,128,255],"57":[254,221,126,255],"58":[254,220,125,255],"59":[254,219,124,255],"60":[254,219,122,255],"61":[254,218,121,255],"62":[254,218,120,255],"63":[254,217,118,255],"64":[254,216,117,255],"65":[254,215,116,255],"66":[254,214,115,255],"67":[254,213,113,255],"68":[254,211,112,255],"69":[254,210,111,255],"70":[254,209,109,255],"71":[254,208,108,255],"72":[254,206,107,255],"73":[254,205,105,255],"74":[254,204,104,255],"75":[254,203,103,255],"76":[254,202,101,255],"77":[254,200,100,255],"78":[254,199,99,255],"79":[254,198,97,255],"80":[254,197,96,255],"81":[254,195,95,255],"82":[254,194,93,255],"83":[254,193,92,255],"84":[254,192,91,255],"85":[254,191,90,255],"86":[254,189,88,255],"87":[254,188,87,255],"88":[254,187,86,255],"89":[254,186,84,255],"90":[254,184,83,255],"91":[254,183,82,255],"92":[254,182,80,255],"93":[254,181,79,255],"94":[254,179,78,255],"95":[254,178,76,255],"96":[253,177,75,255],"97":[253,176,75,255],"98":[253,175,74,255],"99":[253,174,74,255],"100":[253,172,73,255],"101":[253,171,73,255],"102":[253,170,72,255],"103":[253,169,72,255],"104":[253,168,71,255],"105":[253,167,71,255],"106":[253,165,70,255],"107":[253,164,70,255],"108":[253,163,69,255],"109":[253,162,69,255],"110":[253,161,68,255],"111":[253,160,68,255],"112":[253,158,67,255],"113":[253,157,67,255],"114":[253,156,66,255],"115":[253,155,66,255],"116":[253,154,65,255],"117":[253,153,65,255],"118":[253,152,64,255],"119":[253,150,64,255],"120":[253,149,63,255],"121":[253,148,63,255],"122":[253,147,62,255],"123":[253,146,62,255],"124":[253,145,61,255],"125":[253,143,61,255],"126":[253,142,60,255],"127":[253,141,60,255],"128":[252,140,59,255],"129":[252,138,59,255],"130":[252,136,58,255],"131":[252,134,58,255],"132":[252,132,57,255],"133":[252,130,56,255],"134":[252,128,56,255],"135":[252,126,55,255],"136":[252,124,55,255],"137":[252,122,54,255],"138":[252,120,54,255],"139":[252,118,53,255],"140":[252,116,52,255],"141":[252,114,52,255],"142":[252,112,51,255],"143":[252,110,51,255],"144":[252,108,50,255],"145":[252,106,50,255],"146":[252,104,49,255],"147":[252,102,48,255],"148":[252,100,48,255],"149":[252,98,47,255],"150":[252,96,47,255],"151":[252,94,46,255],"152":[252,92,46,255],"153":[252,90,45,255],"154":[252,88,45,255],"155":[252,86,44,255],"156":[252,84,43,255],"157":[252,82,43,255],"158":[252,80,42,255],"159":[252,78,42,255],"160":[251,76,41,255],"161":[250,75,41,255],"162":[249,73,40,255],"163":[249,72,40,255],"164":[248,70,39,255],"165":[247,68,39,255],"166":[246,67,39,255],"167":[246,65,38,255],"168":[245,63,38,255],"169":[244,62,37,255],"170":[243,60,37,255],"171":[242,59,36,255],"172":[242,57,36,255],"173":[241,55,36,255],"174":[240,54,35,255],"175":[239,52,35,255],"176":[238,50,34,255],"177":[238,49,34,255],"178":[237,47,33,255],"179":[236,45,33,255],"180":[235,44,32,255],"181":[235,42,32,255],"182":[234,41,32,255],"183":[233,39,31,255],"184":[232,37,31,255],"185":[231,36,30,255],"186":[231,34,30,255],"187":[230,32,29,255],"188":[229,31,29,255],"189":[228,29,28,255],"190":[227,28,28,255],"191":[227,26,28,255],"192":[226,25,28,255],"193":[224,24,28,255],"194":[223,23,28,255],"195":[222,22,29,255],"196":[221,22,29,255],"197":[220,21,29,255],"198":[218,20,30,255],"199":[217,19,30,255],"200":[216,18,30,255],"201":[215,18,31,255],"202":[214,17,31,255],"203":[212,16,31,255],"204":[211,15,32,255],"205":[210,14,32,255],"206":[209,13,32,255],"207":[208,13,32,255],"208":[207,12,33,255],"209":[205,11,33,255],"210":[204,10,33,255],"211":[203,9,34,255],"212":[202,9,34,255],"213":[201,8,34,255],"214":[199,7,35,255],"215":[198,6,35,255],"216":[197,5,35,255],"217":[196,4,36,255],"218":[195,4,36,255],"219":[193,3,36,255],"220":[192,2,37,255],"221":[191,1,37,255],"222":[190,0,37,255],"223":[189,0,37,255],"224":[187,0,38,255],"225":[185,0,38,255],"226":[183,0,38,255],"227":[181,0,38,255],"228":[179,0,38,255],"229":[177,0,38,255],"230":[175,0,38,255],"231":[173,0,38,255],"232":[172,0,38,255],"233":[170,0,38,255],"234":[168,0,38,255],"235":[166,0,38,255],"236":[164,0,38,255],"237":[162,0,38,255],"238":[160,0,38,255],"239":[158,0,38,255],"240":[156,0,38,255],"241":[154,0,38,255],"242":[152,0,38,255],"243":[150,0,38,255],"244":[149,0,38,255],"245":[147,0,38,255],"246":[145,0,38,255],"247":[143,0,38,255],"248":[141,0,38,255],"249":[139,0,38,255],"250":[137,0,38,255],"251":[135,0,38,255],"252":[133,0,38,255],"253":[131,0,38,255],"254":[129,0,38,255],"255":[128,0,38,255]}, + }; +export const divergingColorMaps = { +brbg: {"0":[84,48,5,255],"1":[86,49,5,255],"2":[88,50,5,255],"3":[90,51,5,255],"4":[92,53,5,255],"5":[94,54,5,255],"6":[97,55,6,255],"7":[99,57,6,255],"8":[101,58,6,255],"9":[103,59,6,255],"10":[105,60,6,255],"11":[108,62,7,255],"12":[110,63,7,255],"13":[112,64,7,255],"14":[114,66,7,255],"15":[116,67,7,255],"16":[119,68,8,255],"17":[121,69,8,255],"18":[123,71,8,255],"19":[125,72,8,255],"20":[127,73,8,255],"21":[130,75,9,255],"22":[132,76,9,255],"23":[134,77,9,255],"24":[136,79,9,255],"25":[138,80,9,255],"26":[141,81,10,255],"27":[143,83,12,255],"28":[145,85,13,255],"29":[147,87,14,255],"30":[149,89,16,255],"31":[151,91,17,255],"32":[153,93,18,255],"33":[155,95,20,255],"34":[157,97,21,255],"35":[159,98,23,255],"36":[161,100,24,255],"37":[163,102,25,255],"38":[165,104,27,255],"39":[167,106,28,255],"40":[169,108,29,255],"41":[171,110,31,255],"42":[173,112,32,255],"43":[175,113,34,255],"44":[177,115,35,255],"45":[179,117,36,255],"46":[181,119,38,255],"47":[183,121,39,255],"48":[185,123,40,255],"49":[187,125,42,255],"50":[189,127,43,255],"51":[191,129,45,255],"52":[192,131,48,255],"53":[193,134,51,255],"54":[194,136,54,255],"55":[196,139,57,255],"56":[197,141,60,255],"57":[198,144,63,255],"58":[199,146,66,255],"59":[201,149,70,255],"60":[202,151,73,255],"61":[203,154,76,255],"62":[204,157,79,255],"63":[206,159,82,255],"64":[207,162,85,255],"65":[208,164,88,255],"66":[209,167,92,255],"67":[211,169,95,255],"68":[212,172,98,255],"69":[213,174,101,255],"70":[214,177,104,255],"71":[216,179,107,255],"72":[217,182,110,255],"73":[218,185,114,255],"74":[219,187,117,255],"75":[221,190,120,255],"76":[222,192,123,255],"77":[223,194,126,255],"78":[224,196,129,255],"79":[225,197,131,255],"80":[226,199,134,255],"81":[227,200,137,255],"82":[227,202,140,255],"83":[228,203,142,255],"84":[229,205,145,255],"85":[230,206,148,255],"86":[231,208,151,255],"87":[232,209,153,255],"88":[233,211,156,255],"89":[234,212,159,255],"90":[235,214,162,255],"91":[236,215,164,255],"92":[236,217,167,255],"93":[237,218,170,255],"94":[238,220,173,255],"95":[239,221,175,255],"96":[240,223,178,255],"97":[241,224,181,255],"98":[242,226,184,255],"99":[243,227,186,255],"100":[244,229,189,255],"101":[245,230,192,255],"102":[246,232,195,255],"103":[245,232,196,255],"104":[245,233,198,255],"105":[245,233,200,255],"106":[245,234,202,255],"107":[245,234,204,255],"108":[245,235,206,255],"109":[245,235,208,255],"110":[245,236,210,255],"111":[245,236,212,255],"112":[245,237,214,255],"113":[245,237,216,255],"114":[245,238,218,255],"115":[245,238,220,255],"116":[245,239,222,255],"117":[245,239,224,255],"118":[245,240,226,255],"119":[245,240,228,255],"120":[245,241,230,255],"121":[245,241,232,255],"122":[245,242,234,255],"123":[245,242,236,255],"124":[245,243,238,255],"125":[245,243,240,255],"126":[245,244,242,255],"127":[245,244,244,255],"128":[244,244,244,255],"129":[242,244,244,255],"130":[240,243,243,255],"131":[238,243,242,255],"132":[236,243,242,255],"133":[235,242,241,255],"134":[233,242,240,255],"135":[231,241,240,255],"136":[229,241,239,255],"137":[227,240,239,255],"138":[226,240,238,255],"139":[224,240,237,255],"140":[222,239,237,255],"141":[220,239,236,255],"142":[218,238,235,255],"143":[217,238,235,255],"144":[215,237,234,255],"145":[213,237,234,255],"146":[211,237,233,255],"147":[209,236,232,255],"148":[208,236,232,255],"149":[206,235,231,255],"150":[204,235,230,255],"151":[202,234,230,255],"152":[200,234,229,255],"153":[199,234,229,255],"154":[196,232,227,255],"155":[193,231,226,255],"156":[190,230,224,255],"157":[187,229,223,255],"158":[185,228,221,255],"159":[182,227,220,255],"160":[179,226,219,255],"161":[176,224,217,255],"162":[173,223,216,255],"163":[171,222,214,255],"164":[168,221,213,255],"165":[165,220,212,255],"166":[162,219,210,255],"167":[160,218,209,255],"168":[157,216,207,255],"169":[154,215,206,255],"170":[151,214,205,255],"171":[148,213,203,255],"172":[146,212,202,255],"173":[143,211,200,255],"174":[140,210,199,255],"175":[137,208,197,255],"176":[134,207,196,255],"177":[132,206,195,255],"178":[129,205,193,255],"179":[126,203,192,255],"180":[123,201,190,255],"181":[120,199,188,255],"182":[117,197,186,255],"183":[114,195,184,255],"184":[111,193,182,255],"185":[108,191,180,255],"186":[105,189,178,255],"187":[103,187,176,255],"188":[100,184,174,255],"189":[97,182,172,255],"190":[94,180,170,255],"191":[91,178,168,255],"192":[88,176,166,255],"193":[85,174,164,255],"194":[82,172,162,255],"195":[79,170,160,255],"196":[76,167,158,255],"197":[73,165,156,255],"198":[70,163,154,255],"199":[67,161,152,255],"200":[64,159,150,255],"201":[61,157,148,255],"202":[58,155,146,255],"203":[55,153,144,255],"204":[53,151,143,255],"205":[50,149,141,255],"206":[48,147,139,255],"207":[46,145,137,255],"208":[44,143,135,255],"209":[42,141,133,255],"210":[40,139,131,255],"211":[38,137,129,255],"212":[36,135,127,255],"213":[34,133,125,255],"214":[32,131,123,255],"215":[30,129,121,255],"216":[28,127,119,255],"217":[26,126,118,255],"218":[24,124,116,255],"219":[22,122,114,255],"220":[20,120,112,255],"221":[18,118,110,255],"222":[16,116,108,255],"223":[14,114,106,255],"224":[12,112,104,255],"225":[10,110,102,255],"226":[8,108,100,255],"227":[6,106,98,255],"228":[4,104,96,255],"229":[2,102,94,255],"230":[0,101,93,255],"231":[0,99,91,255],"232":[0,97,89,255],"233":[0,96,87,255],"234":[0,94,85,255],"235":[0,92,84,255],"236":[0,91,82,255],"237":[0,89,80,255],"238":[0,88,78,255],"239":[0,86,76,255],"240":[0,84,75,255],"241":[0,83,73,255],"242":[0,81,71,255],"243":[0,79,69,255],"244":[0,78,67,255],"245":[0,76,66,255],"246":[0,74,64,255],"247":[0,73,62,255],"248":[0,71,60,255],"249":[0,69,58,255],"250":[0,68,57,255],"251":[0,66,55,255],"252":[0,64,53,255],"253":[0,63,51,255],"254":[0,61,49,255],"255":[0,60,48,255]}, +brg: {"0":[0,0,255,255],"1":[2,0,253,255],"2":[4,0,251,255],"3":[6,0,249,255],"4":[8,0,247,255],"5":[10,0,245,255],"6":[12,0,243,255],"7":[14,0,241,255],"8":[16,0,239,255],"9":[18,0,237,255],"10":[20,0,235,255],"11":[22,0,233,255],"12":[24,0,231,255],"13":[26,0,229,255],"14":[28,0,227,255],"15":[30,0,225,255],"16":[32,0,223,255],"17":[34,0,221,255],"18":[36,0,219,255],"19":[38,0,217,255],"20":[40,0,215,255],"21":[42,0,213,255],"22":[44,0,211,255],"23":[46,0,209,255],"24":[48,0,207,255],"25":[50,0,205,255],"26":[52,0,203,255],"27":[54,0,201,255],"28":[56,0,199,255],"29":[58,0,197,255],"30":[60,0,195,255],"31":[62,0,193,255],"32":[64,0,191,255],"33":[65,0,189,255],"34":[68,0,187,255],"35":[70,0,185,255],"36":[72,0,183,255],"37":[73,0,181,255],"38":[76,0,179,255],"39":[78,0,177,255],"40":[80,0,175,255],"41":[81,0,173,255],"42":[84,0,171,255],"43":[86,0,169,255],"44":[88,0,167,255],"45":[89,0,165,255],"46":[92,0,163,255],"47":[94,0,161,255],"48":[96,0,159,255],"49":[97,0,157,255],"50":[100,0,155,255],"51":[102,0,153,255],"52":[104,0,151,255],"53":[105,0,149,255],"54":[108,0,147,255],"55":[110,0,145,255],"56":[112,0,143,255],"57":[113,0,141,255],"58":[116,0,139,255],"59":[118,0,137,255],"60":[120,0,135,255],"61":[121,0,133,255],"62":[124,0,131,255],"63":[126,0,129,255],"64":[128,0,127,255],"65":[130,0,125,255],"66":[131,0,123,255],"67":[134,0,121,255],"68":[136,0,119,255],"69":[138,0,117,255],"70":[140,0,114,255],"71":[142,0,113,255],"72":[144,0,111,255],"73":[146,0,109,255],"74":[147,0,107,255],"75":[150,0,105,255],"76":[152,0,103,255],"77":[154,0,101,255],"78":[156,0,98,255],"79":[158,0,97,255],"80":[160,0,95,255],"81":[162,0,93,255],"82":[163,0,91,255],"83":[166,0,89,255],"84":[168,0,87,255],"85":[170,0,85,255],"86":[172,0,82,255],"87":[174,0,81,255],"88":[176,0,79,255],"89":[178,0,77,255],"90":[179,0,75,255],"91":[182,0,73,255],"92":[184,0,71,255],"93":[186,0,69,255],"94":[188,0,66,255],"95":[190,0,65,255],"96":[192,0,63,255],"97":[194,0,61,255],"98":[195,0,59,255],"99":[198,0,56,255],"100":[200,0,55,255],"101":[202,0,53,255],"102":[204,0,50,255],"103":[206,0,48,255],"104":[208,0,47,255],"105":[210,0,45,255],"106":[211,0,43,255],"107":[214,0,40,255],"108":[216,0,39,255],"109":[218,0,37,255],"110":[220,0,34,255],"111":[222,0,32,255],"112":[224,0,31,255],"113":[226,0,29,255],"114":[227,0,27,255],"115":[230,0,24,255],"116":[232,0,23,255],"117":[234,0,21,255],"118":[236,0,18,255],"119":[238,0,16,255],"120":[240,0,15,255],"121":[242,0,13,255],"122":[243,0,11,255],"123":[246,0,8,255],"124":[248,0,7,255],"125":[250,0,5,255],"126":[252,0,2,255],"127":[254,0,0,255],"128":[254,1,0,255],"129":[252,3,0,255],"130":[250,5,0,255],"131":[248,7,0,255],"132":[246,8,0,255],"133":[244,11,0,255],"134":[242,13,0,255],"135":[240,15,0,255],"136":[238,17,0,255],"137":[236,19,0,255],"138":[234,21,0,255],"139":[232,23,0,255],"140":[230,25,0,255],"141":[228,27,0,255],"142":[226,29,0,255],"143":[224,31,0,255],"144":[222,33,0,255],"145":[220,35,0,255],"146":[218,37,0,255],"147":[216,39,0,255],"148":[214,40,0,255],"149":[211,43,0,255],"150":[210,45,0,255],"151":[208,47,0,255],"152":[206,49,0,255],"153":[204,51,0,255],"154":[202,53,0,255],"155":[200,55,0,255],"156":[198,57,0,255],"157":[195,59,0,255],"158":[194,61,0,255],"159":[192,63,0,255],"160":[190,65,0,255],"161":[188,67,0,255],"162":[186,69,0,255],"163":[184,71,0,255],"164":[182,72,0,255],"165":[179,75,0,255],"166":[178,77,0,255],"167":[176,79,0,255],"168":[174,81,0,255],"169":[172,83,0,255],"170":[170,85,0,255],"171":[168,87,0,255],"172":[166,89,0,255],"173":[163,91,0,255],"174":[162,93,0,255],"175":[160,95,0,255],"176":[158,97,0,255],"177":[156,99,0,255],"178":[154,101,0,255],"179":[152,103,0,255],"180":[150,104,0,255],"181":[147,107,0,255],"182":[146,109,0,255],"183":[144,111,0,255],"184":[142,113,0,255],"185":[140,115,0,255],"186":[138,117,0,255],"187":[136,119,0,255],"188":[134,121,0,255],"189":[131,123,0,255],"190":[130,125,0,255],"191":[128,127,0,255],"192":[126,129,0,255],"193":[124,131,0,255],"194":[121,133,0,255],"195":[120,135,0,255],"196":[118,136,0,255],"197":[116,139,0,255],"198":[113,141,0,255],"199":[112,143,0,255],"200":[110,145,0,255],"201":[108,147,0,255],"202":[105,149,0,255],"203":[104,151,0,255],"204":[102,153,0,255],"205":[100,155,0,255],"206":[97,157,0,255],"207":[96,159,0,255],"208":[94,161,0,255],"209":[92,163,0,255],"210":[89,165,0,255],"211":[88,167,0,255],"212":[86,168,0,255],"213":[84,171,0,255],"214":[81,173,0,255],"215":[80,175,0,255],"216":[78,177,0,255],"217":[76,179,0,255],"218":[73,181,0,255],"219":[72,183,0,255],"220":[70,185,0,255],"221":[68,187,0,255],"222":[65,189,0,255],"223":[64,191,0,255],"224":[62,193,0,255],"225":[60,195,0,255],"226":[57,197,0,255],"227":[56,199,0,255],"228":[54,200,0,255],"229":[52,203,0,255],"230":[49,205,0,255],"231":[48,207,0,255],"232":[46,209,0,255],"233":[44,211,0,255],"234":[41,213,0,255],"235":[40,215,0,255],"236":[38,217,0,255],"237":[36,219,0,255],"238":[33,221,0,255],"239":[32,223,0,255],"240":[30,225,0,255],"241":[28,227,0,255],"242":[25,229,0,255],"243":[24,231,0,255],"244":[22,232,0,255],"245":[20,235,0,255],"246":[17,237,0,255],"247":[16,239,0,255],"248":[14,241,0,255],"249":[12,243,0,255],"250":[9,245,0,255],"251":[8,247,0,255],"252":[6,249,0,255],"253":[4,251,0,255],"254":[1,253,0,255],"255":[0,255,0,255]}, +bwr: {"0":[0,0,255,255],"1":[2,2,255,255],"2":[4,4,255,255],"3":[6,6,255,255],"4":[8,8,255,255],"5":[10,10,255,255],"6":[12,12,255,255],"7":[14,14,255,255],"8":[16,16,255,255],"9":[18,18,255,255],"10":[20,20,255,255],"11":[22,22,255,255],"12":[24,24,255,255],"13":[26,26,255,255],"14":[28,28,255,255],"15":[30,30,255,255],"16":[32,32,255,255],"17":[34,34,255,255],"18":[36,36,255,255],"19":[38,38,255,255],"20":[40,40,255,255],"21":[42,42,255,255],"22":[44,44,255,255],"23":[46,46,255,255],"24":[48,48,255,255],"25":[50,50,255,255],"26":[52,52,255,255],"27":[54,54,255,255],"28":[56,56,255,255],"29":[58,58,255,255],"30":[60,60,255,255],"31":[62,62,255,255],"32":[64,64,255,255],"33":[65,65,255,255],"34":[68,68,255,255],"35":[70,70,255,255],"36":[72,72,255,255],"37":[73,73,255,255],"38":[76,76,255,255],"39":[78,78,255,255],"40":[80,80,255,255],"41":[81,81,255,255],"42":[84,84,255,255],"43":[86,86,255,255],"44":[88,88,255,255],"45":[89,89,255,255],"46":[92,92,255,255],"47":[94,94,255,255],"48":[96,96,255,255],"49":[97,97,255,255],"50":[100,100,255,255],"51":[102,102,255,255],"52":[104,104,255,255],"53":[105,105,255,255],"54":[108,108,255,255],"55":[110,110,255,255],"56":[112,112,255,255],"57":[113,113,255,255],"58":[116,116,255,255],"59":[118,118,255,255],"60":[120,120,255,255],"61":[121,121,255,255],"62":[124,124,255,255],"63":[126,126,255,255],"64":[128,128,255,255],"65":[130,130,255,255],"66":[131,131,255,255],"67":[134,134,255,255],"68":[136,136,255,255],"69":[138,138,255,255],"70":[140,140,255,255],"71":[142,142,255,255],"72":[144,144,255,255],"73":[146,146,255,255],"74":[147,147,255,255],"75":[150,150,255,255],"76":[152,152,255,255],"77":[154,154,255,255],"78":[156,156,255,255],"79":[158,158,255,255],"80":[160,160,255,255],"81":[162,162,255,255],"82":[163,163,255,255],"83":[166,166,255,255],"84":[168,168,255,255],"85":[170,170,255,255],"86":[172,172,255,255],"87":[174,174,255,255],"88":[176,176,255,255],"89":[178,178,255,255],"90":[179,179,255,255],"91":[182,182,255,255],"92":[184,184,255,255],"93":[186,186,255,255],"94":[188,188,255,255],"95":[190,190,255,255],"96":[192,192,255,255],"97":[194,194,255,255],"98":[195,195,255,255],"99":[198,198,255,255],"100":[200,200,255,255],"101":[202,202,255,255],"102":[204,204,255,255],"103":[206,206,255,255],"104":[208,208,255,255],"105":[210,210,255,255],"106":[211,211,255,255],"107":[214,214,255,255],"108":[216,216,255,255],"109":[218,218,255,255],"110":[220,220,255,255],"111":[222,222,255,255],"112":[224,224,255,255],"113":[226,226,255,255],"114":[227,227,255,255],"115":[230,230,255,255],"116":[232,232,255,255],"117":[234,234,255,255],"118":[236,236,255,255],"119":[238,238,255,255],"120":[240,240,255,255],"121":[242,242,255,255],"122":[243,243,255,255],"123":[246,246,255,255],"124":[248,248,255,255],"125":[250,250,255,255],"126":[252,252,255,255],"127":[254,254,255,255],"128":[255,254,254,255],"129":[255,252,252,255],"130":[255,250,250,255],"131":[255,248,248,255],"132":[255,246,246,255],"133":[255,244,244,255],"134":[255,242,242,255],"135":[255,240,240,255],"136":[255,238,238,255],"137":[255,236,236,255],"138":[255,234,234,255],"139":[255,232,232,255],"140":[255,230,230,255],"141":[255,228,228,255],"142":[255,226,226,255],"143":[255,224,224,255],"144":[255,222,222,255],"145":[255,220,220,255],"146":[255,218,218,255],"147":[255,216,216,255],"148":[255,214,214,255],"149":[255,211,211,255],"150":[255,210,210,255],"151":[255,208,208,255],"152":[255,206,206,255],"153":[255,204,204,255],"154":[255,202,202,255],"155":[255,200,200,255],"156":[255,198,198,255],"157":[255,195,195,255],"158":[255,194,194,255],"159":[255,192,192,255],"160":[255,190,190,255],"161":[255,188,188,255],"162":[255,186,186,255],"163":[255,184,184,255],"164":[255,182,182,255],"165":[255,179,179,255],"166":[255,178,178,255],"167":[255,176,176,255],"168":[255,174,174,255],"169":[255,172,172,255],"170":[255,170,170,255],"171":[255,168,168,255],"172":[255,166,166,255],"173":[255,163,163,255],"174":[255,162,162,255],"175":[255,160,160,255],"176":[255,158,158,255],"177":[255,156,156,255],"178":[255,154,154,255],"179":[255,152,152,255],"180":[255,150,150,255],"181":[255,147,147,255],"182":[255,146,146,255],"183":[255,144,144,255],"184":[255,142,142,255],"185":[255,140,140,255],"186":[255,138,138,255],"187":[255,136,136,255],"188":[255,134,134,255],"189":[255,131,131,255],"190":[255,130,130,255],"191":[255,128,128,255],"192":[255,126,126,255],"193":[255,124,124,255],"194":[255,121,121,255],"195":[255,120,120,255],"196":[255,118,118,255],"197":[255,116,116,255],"198":[255,113,113,255],"199":[255,112,112,255],"200":[255,110,110,255],"201":[255,108,108,255],"202":[255,105,105,255],"203":[255,104,104,255],"204":[255,102,102,255],"205":[255,100,100,255],"206":[255,97,97,255],"207":[255,96,96,255],"208":[255,94,94,255],"209":[255,92,92,255],"210":[255,89,89,255],"211":[255,88,88,255],"212":[255,86,86,255],"213":[255,84,84,255],"214":[255,81,81,255],"215":[255,80,80,255],"216":[255,78,78,255],"217":[255,76,76,255],"218":[255,73,73,255],"219":[255,72,72,255],"220":[255,70,70,255],"221":[255,68,68,255],"222":[255,65,65,255],"223":[255,64,64,255],"224":[255,62,62,255],"225":[255,60,60,255],"226":[255,57,57,255],"227":[255,56,56,255],"228":[255,54,54,255],"229":[255,52,52,255],"230":[255,49,49,255],"231":[255,48,48,255],"232":[255,46,46,255],"233":[255,44,44,255],"234":[255,41,41,255],"235":[255,40,40,255],"236":[255,38,38,255],"237":[255,36,36,255],"238":[255,33,33,255],"239":[255,32,32,255],"240":[255,30,30,255],"241":[255,28,28,255],"242":[255,25,25,255],"243":[255,24,24,255],"244":[255,22,22,255],"245":[255,20,20,255],"246":[255,17,17,255],"247":[255,16,16,255],"248":[255,14,14,255],"249":[255,12,12,255],"250":[255,9,9,255],"251":[255,8,8,255],"252":[255,6,6,255],"253":[255,4,4,255],"254":[255,1,1,255],"255":[255,0,0,255]}, +coolwarm: {"0":[58,76,192,255],"1":[59,77,193,255],"2":[60,79,195,255],"3":[62,81,196,255],"4":[63,83,198,255],"5":[64,84,199,255],"6":[65,86,201,255],"7":[66,88,202,255],"8":[67,90,204,255],"9":[69,91,205,255],"10":[70,93,207,255],"11":[71,95,208,255],"12":[72,96,209,255],"13":[73,98,211,255],"14":[75,100,212,255],"15":[76,102,214,255],"16":[77,103,215,255],"17":[78,105,216,255],"18":[80,107,218,255],"19":[81,108,219,255],"20":[82,110,220,255],"21":[83,112,221,255],"22":[85,113,222,255],"23":[86,115,224,255],"24":[87,117,225,255],"25":[88,118,226,255],"26":[90,120,227,255],"27":[91,121,228,255],"28":[92,123,229,255],"29":[93,125,230,255],"30":[95,126,231,255],"31":[96,128,232,255],"32":[97,130,234,255],"33":[99,131,234,255],"34":[100,133,235,255],"35":[101,134,236,255],"36":[103,136,237,255],"37":[104,137,238,255],"38":[105,139,239,255],"39":[107,141,240,255],"40":[108,142,241,255],"41":[109,144,241,255],"42":[111,145,242,255],"43":[112,147,243,255],"44":[113,148,244,255],"45":[115,149,244,255],"46":[116,151,245,255],"47":[117,152,246,255],"48":[119,154,246,255],"49":[120,155,247,255],"50":[122,157,248,255],"51":[123,158,248,255],"52":[124,160,249,255],"53":[126,161,249,255],"54":[127,162,250,255],"55":[128,164,250,255],"56":[130,165,251,255],"57":[131,166,251,255],"58":[133,168,251,255],"59":[134,169,252,255],"60":[135,170,252,255],"61":[137,172,252,255],"62":[138,173,253,255],"63":[139,174,253,255],"64":[141,175,253,255],"65":[142,177,253,255],"66":[144,178,254,255],"67":[145,179,254,255],"68":[146,180,254,255],"69":[148,181,254,255],"70":[149,183,254,255],"71":[151,184,254,255],"72":[152,185,254,255],"73":[153,186,254,255],"74":[155,187,254,255],"75":[156,188,254,255],"76":[157,189,254,255],"77":[159,190,254,255],"78":[160,191,254,255],"79":[162,192,254,255],"80":[163,193,254,255],"81":[164,194,254,255],"82":[166,195,253,255],"83":[167,196,253,255],"84":[168,197,253,255],"85":[170,198,253,255],"86":[171,199,252,255],"87":[172,200,252,255],"88":[174,201,252,255],"89":[175,202,251,255],"90":[176,203,251,255],"91":[178,203,251,255],"92":[179,204,250,255],"93":[180,205,250,255],"94":[182,206,249,255],"95":[183,207,249,255],"96":[184,207,248,255],"97":[185,208,248,255],"98":[187,209,247,255],"99":[188,209,246,255],"100":[189,210,246,255],"101":[190,211,245,255],"102":[192,211,245,255],"103":[193,212,244,255],"104":[194,212,243,255],"105":[195,213,242,255],"106":[197,213,242,255],"107":[198,214,241,255],"108":[199,214,240,255],"109":[200,215,239,255],"110":[201,215,238,255],"111":[202,216,238,255],"112":[204,216,237,255],"113":[205,217,236,255],"114":[206,217,235,255],"115":[207,217,234,255],"116":[208,218,233,255],"117":[209,218,232,255],"118":[210,218,231,255],"119":[211,219,230,255],"120":[213,219,229,255],"121":[214,219,228,255],"122":[215,219,226,255],"123":[216,219,225,255],"124":[217,220,224,255],"125":[218,220,223,255],"126":[219,220,222,255],"127":[220,220,221,255],"128":[221,220,219,255],"129":[222,219,218,255],"130":[223,219,217,255],"131":[224,218,215,255],"132":[225,218,214,255],"133":[226,217,212,255],"134":[227,217,211,255],"135":[228,216,209,255],"136":[229,216,208,255],"137":[230,215,207,255],"138":[231,214,205,255],"139":[231,214,204,255],"140":[232,213,202,255],"141":[233,212,201,255],"142":[234,211,199,255],"143":[235,211,198,255],"144":[236,210,196,255],"145":[236,209,195,255],"146":[237,208,193,255],"147":[237,207,192,255],"148":[238,207,190,255],"149":[239,206,188,255],"150":[239,205,187,255],"151":[240,204,185,255],"152":[241,203,184,255],"153":[241,202,182,255],"154":[242,201,181,255],"155":[242,200,179,255],"156":[242,199,178,255],"157":[243,198,176,255],"158":[243,197,175,255],"159":[244,196,173,255],"160":[244,195,171,255],"161":[244,194,170,255],"162":[245,193,168,255],"163":[245,192,167,255],"164":[245,191,165,255],"165":[246,189,164,255],"166":[246,188,162,255],"167":[246,187,160,255],"168":[246,186,159,255],"169":[246,185,157,255],"170":[246,183,156,255],"171":[246,182,154,255],"172":[247,181,152,255],"173":[247,179,151,255],"174":[247,178,149,255],"175":[247,177,148,255],"176":[247,176,146,255],"177":[247,174,145,255],"178":[247,173,143,255],"179":[246,171,141,255],"180":[246,170,140,255],"181":[246,169,138,255],"182":[246,167,137,255],"183":[246,166,135,255],"184":[246,164,134,255],"185":[246,163,132,255],"186":[245,161,130,255],"187":[245,160,129,255],"188":[245,158,127,255],"189":[244,157,126,255],"190":[244,155,124,255],"191":[244,154,123,255],"192":[243,152,121,255],"193":[243,150,120,255],"194":[243,149,118,255],"195":[242,147,117,255],"196":[242,145,115,255],"197":[241,144,114,255],"198":[241,142,112,255],"199":[240,141,111,255],"200":[240,139,109,255],"201":[239,137,108,255],"202":[238,135,106,255],"203":[238,134,105,255],"204":[237,132,103,255],"205":[236,130,102,255],"206":[236,128,100,255],"207":[235,127,99,255],"208":[234,125,97,255],"209":[234,123,96,255],"210":[233,121,94,255],"211":[232,119,93,255],"212":[231,117,92,255],"213":[230,116,90,255],"214":[230,114,89,255],"215":[229,112,87,255],"216":[228,110,86,255],"217":[227,108,84,255],"218":[226,106,83,255],"219":[225,104,82,255],"220":[224,102,80,255],"221":[223,100,79,255],"222":[222,98,78,255],"223":[221,96,76,255],"224":[220,94,75,255],"225":[219,92,74,255],"226":[218,90,72,255],"227":[217,88,71,255],"228":[216,86,70,255],"229":[215,84,68,255],"230":[214,82,67,255],"231":[212,79,66,255],"232":[211,77,64,255],"233":[210,75,63,255],"234":[209,73,62,255],"235":[207,70,61,255],"236":[206,68,60,255],"237":[205,66,58,255],"238":[204,63,57,255],"239":[202,61,56,255],"240":[201,59,55,255],"241":[200,56,53,255],"242":[198,53,52,255],"243":[197,50,51,255],"244":[196,48,50,255],"245":[194,45,49,255],"246":[193,42,48,255],"247":[191,40,46,255],"248":[190,35,45,255],"249":[188,31,44,255],"250":[187,26,43,255],"251":[185,22,42,255],"252":[184,17,41,255],"253":[182,13,40,255],"254":[181,8,39,255],"255":[179,3,38,255]}, +piyg: {"0":[142,1,82,255],"1":[144,2,83,255],"2":[146,3,85,255],"3":[148,4,87,255],"4":[150,5,88,255],"5":[152,6,90,255],"6":[154,7,92,255],"7":[157,8,93,255],"8":[159,9,95,255],"9":[161,10,97,255],"10":[163,11,98,255],"11":[165,12,100,255],"12":[167,13,102,255],"13":[170,14,103,255],"14":[172,15,105,255],"15":[174,16,107,255],"16":[176,17,108,255],"17":[178,18,110,255],"18":[180,19,112,255],"19":[182,20,114,255],"20":[185,21,115,255],"21":[187,22,117,255],"22":[189,23,119,255],"23":[191,24,120,255],"24":[193,25,122,255],"25":[195,26,124,255],"26":[197,28,125,255],"27":[198,32,127,255],"28":[199,36,129,255],"29":[200,39,131,255],"30":[201,43,133,255],"31":[202,46,135,255],"32":[203,50,137,255],"33":[204,54,139,255],"34":[205,57,141,255],"35":[206,61,143,255],"36":[207,64,145,255],"37":[208,68,147,255],"38":[209,72,149,255],"39":[210,75,150,255],"40":[211,79,152,255],"41":[212,82,154,255],"42":[213,86,156,255],"43":[214,90,158,255],"44":[215,93,160,255],"45":[216,97,162,255],"46":[217,100,164,255],"47":[218,104,166,255],"48":[219,108,168,255],"49":[220,111,170,255],"50":[221,115,172,255],"51":[222,119,174,255],"52":[222,121,175,255],"53":[223,123,177,255],"54":[224,126,179,255],"55":[224,128,180,255],"56":[225,131,182,255],"57":[226,133,184,255],"58":[227,136,186,255],"59":[227,138,187,255],"60":[228,141,189,255],"61":[229,143,191,255],"62":[230,146,192,255],"63":[230,148,194,255],"64":[231,151,196,255],"65":[232,153,198,255],"66":[233,156,199,255],"67":[233,158,201,255],"68":[234,161,203,255],"69":[235,163,205,255],"70":[236,165,206,255],"71":[236,168,208,255],"72":[237,170,210,255],"73":[238,173,211,255],"74":[239,175,213,255],"75":[239,178,215,255],"76":[240,180,217,255],"77":[241,182,218,255],"78":[241,184,219,255],"79":[242,186,220,255],"80":[242,187,220,255],"81":[243,189,221,255],"82":[243,191,222,255],"83":[244,192,223,255],"84":[244,194,224,255],"85":[245,195,225,255],"86":[245,197,225,255],"87":[245,199,226,255],"88":[246,200,227,255],"89":[246,202,228,255],"90":[247,204,229,255],"91":[247,205,229,255],"92":[248,207,230,255],"93":[248,209,231,255],"94":[249,210,232,255],"95":[249,212,233,255],"96":[250,214,234,255],"97":[250,215,234,255],"98":[251,217,235,255],"99":[251,219,236,255],"100":[252,220,237,255],"101":[252,222,238,255],"102":[253,224,239,255],"103":[252,224,239,255],"104":[252,225,239,255],"105":[252,226,239,255],"106":[252,227,240,255],"107":[251,228,240,255],"108":[251,229,240,255],"109":[251,230,241,255],"110":[251,231,241,255],"111":[250,232,241,255],"112":[250,233,242,255],"113":[250,233,242,255],"114":[250,234,242,255],"115":[249,235,243,255],"116":[249,236,243,255],"117":[249,237,243,255],"118":[249,238,244,255],"119":[249,239,244,255],"120":[248,240,244,255],"121":[248,241,244,255],"122":[248,242,245,255],"123":[248,242,245,255],"124":[247,243,245,255],"125":[247,244,246,255],"126":[247,245,246,255],"127":[247,246,246,255],"128":[246,246,246,255],"129":[246,246,244,255],"130":[245,246,243,255],"131":[244,246,241,255],"132":[244,246,240,255],"133":[243,246,238,255],"134":[242,246,237,255],"135":[242,246,235,255],"136":[241,246,234,255],"137":[240,246,232,255],"138":[240,246,230,255],"139":[239,246,229,255],"140":[238,246,227,255],"141":[238,245,226,255],"142":[237,245,224,255],"143":[236,245,223,255],"144":[236,245,221,255],"145":[235,245,220,255],"146":[234,245,218,255],"147":[234,245,217,255],"148":[233,245,215,255],"149":[232,245,214,255],"150":[232,245,212,255],"151":[231,245,211,255],"152":[230,245,209,255],"153":[230,245,208,255],"154":[228,244,205,255],"155":[226,243,202,255],"156":[224,242,199,255],"157":[222,241,196,255],"158":[220,241,193,255],"159":[219,240,190,255],"160":[217,239,187,255],"161":[215,238,184,255],"162":[213,237,181,255],"163":[211,237,178,255],"164":[210,236,176,255],"165":[208,235,173,255],"166":[206,234,170,255],"167":[204,234,167,255],"168":[202,233,164,255],"169":[201,232,161,255],"170":[199,231,158,255],"171":[197,230,155,255],"172":[195,230,152,255],"173":[193,229,149,255],"174":[192,228,147,255],"175":[190,227,144,255],"176":[188,226,141,255],"177":[186,226,138,255],"178":[184,225,135,255],"179":[182,224,132,255],"180":[180,222,129,255],"181":[178,221,127,255],"182":[176,219,124,255],"183":[173,218,121,255],"184":[171,217,119,255],"185":[169,215,116,255],"186":[167,214,113,255],"187":[165,212,111,255],"188":[162,211,108,255],"189":[160,209,105,255],"190":[158,208,102,255],"191":[156,206,100,255],"192":[153,205,97,255],"193":[151,203,94,255],"194":[149,202,92,255],"195":[147,201,89,255],"196":[144,199,86,255],"197":[142,198,83,255],"198":[140,196,81,255],"199":[138,195,78,255],"200":[135,193,75,255],"201":[133,192,73,255],"202":[131,190,70,255],"203":[129,189,67,255],"204":[127,188,65,255],"205":[125,186,63,255],"206":[123,184,62,255],"207":[121,183,61,255],"208":[119,181,59,255],"209":[117,179,58,255],"210":[115,178,57,255],"211":[113,176,56,255],"212":[111,174,54,255],"213":[109,173,53,255],"214":[107,171,52,255],"215":[105,169,51,255],"216":[103,168,49,255],"217":[101,166,48,255],"218":[99,164,47,255],"219":[97,163,46,255],"220":[95,161,44,255],"221":[93,160,43,255],"222":[91,158,42,255],"223":[89,156,41,255],"224":[87,155,39,255],"225":[85,153,38,255],"226":[83,151,37,255],"227":[81,150,36,255],"228":[79,148,34,255],"229":[77,146,33,255],"230":[76,145,32,255],"231":[74,143,32,255],"232":[73,141,32,255],"233":[71,139,31,255],"234":[70,137,31,255],"235":[68,136,31,255],"236":[67,134,30,255],"237":[65,132,30,255],"238":[64,130,30,255],"239":[62,128,30,255],"240":[61,127,29,255],"241":[59,125,29,255],"242":[58,123,29,255],"243":[56,121,28,255],"244":[55,119,28,255],"245":[53,118,28,255],"246":[52,116,27,255],"247":[50,114,27,255],"248":[49,112,27,255],"249":[47,110,26,255],"250":[46,109,26,255],"251":[44,107,26,255],"252":[43,105,25,255],"253":[41,103,25,255],"254":[40,101,25,255],"255":[39,100,25,255]}, +prgn: {"0":[64,0,75,255],"1":[66,1,77,255],"2":[68,3,79,255],"3":[70,4,81,255],"4":[72,6,83,255],"5":[74,8,85,255],"6":[76,9,88,255],"7":[78,11,90,255],"8":[80,13,92,255],"9":[83,14,94,255],"10":[85,16,96,255],"11":[87,18,99,255],"12":[89,19,101,255],"13":[91,21,103,255],"14":[93,23,105,255],"15":[95,24,107,255],"16":[97,26,110,255],"17":[100,28,112,255],"18":[102,29,114,255],"19":[104,31,116,255],"20":[106,32,118,255],"21":[108,34,121,255],"22":[110,36,123,255],"23":[112,37,125,255],"24":[114,39,127,255],"25":[116,41,129,255],"26":[118,43,131,255],"27":[120,46,133,255],"28":[121,48,134,255],"29":[122,51,136,255],"30":[124,54,138,255],"31":[125,57,139,255],"32":[126,59,141,255],"33":[128,62,142,255],"34":[129,65,144,255],"35":[131,68,145,255],"36":[132,70,147,255],"37":[133,73,149,255],"38":[135,76,150,255],"39":[136,79,152,255],"40":[137,81,153,255],"41":[139,84,155,255],"42":[140,87,156,255],"43":[142,90,158,255],"44":[143,92,160,255],"45":[144,95,161,255],"46":[146,98,163,255],"47":[147,101,164,255],"48":[148,103,166,255],"49":[150,106,167,255],"50":[151,109,169,255],"51":[153,112,171,255],"52":[154,114,172,255],"53":[156,116,173,255],"54":[157,118,175,255],"55":[159,120,176,255],"56":[161,122,178,255],"57":[162,124,179,255],"58":[164,126,180,255],"59":[165,128,182,255],"60":[167,130,183,255],"61":[169,132,185,255],"62":[170,134,186,255],"63":[172,136,187,255],"64":[173,139,189,255],"65":[175,141,190,255],"66":[177,143,192,255],"67":[178,145,193,255],"68":[180,147,195,255],"69":[181,149,196,255],"70":[183,151,197,255],"71":[185,153,199,255],"72":[186,155,200,255],"73":[188,157,202,255],"74":[189,159,203,255],"75":[191,161,204,255],"76":[193,163,206,255],"77":[194,165,207,255],"78":[196,167,208,255],"79":[197,169,209,255],"80":[199,171,210,255],"81":[200,173,211,255],"82":[201,175,212,255],"83":[203,176,213,255],"84":[204,178,214,255],"85":[206,180,215,255],"86":[207,182,216,255],"87":[209,184,217,255],"88":[210,186,218,255],"89":[212,188,219,255],"90":[213,189,220,255],"91":[215,191,221,255],"92":[216,193,222,255],"93":[217,195,223,255],"94":[219,197,224,255],"95":[220,199,225,255],"96":[222,200,226,255],"97":[223,202,227,255],"98":[225,204,228,255],"99":[226,206,229,255],"100":[228,208,230,255],"101":[229,210,231,255],"102":[231,212,232,255],"103":[231,213,232,255],"104":[232,214,233,255],"105":[232,216,233,255],"106":[233,217,234,255],"107":[234,218,234,255],"108":[234,220,235,255],"109":[235,221,236,255],"110":[236,222,236,255],"111":[236,224,237,255],"112":[237,225,237,255],"113":[237,227,238,255],"114":[238,228,239,255],"115":[239,229,239,255],"116":[239,231,240,255],"117":[240,232,240,255],"118":[241,233,241,255],"119":[241,235,242,255],"120":[242,236,242,255],"121":[242,238,243,255],"122":[243,239,243,255],"123":[244,240,244,255],"124":[244,242,244,255],"125":[245,243,245,255],"126":[246,244,246,255],"127":[246,246,246,255],"128":[246,246,246,255],"129":[245,246,244,255],"130":[244,246,243,255],"131":[242,246,242,255],"132":[241,245,240,255],"133":[240,245,239,255],"134":[239,245,237,255],"135":[238,244,236,255],"136":[237,244,235,255],"137":[235,244,233,255],"138":[234,244,232,255],"139":[233,243,230,255],"140":[232,243,229,255],"141":[231,243,227,255],"142":[229,243,226,255],"143":[228,242,225,255],"144":[227,242,223,255],"145":[226,242,222,255],"146":[225,241,220,255],"147":[224,241,219,255],"148":[222,241,218,255],"149":[221,241,216,255],"150":[220,240,215,255],"151":[219,240,213,255],"152":[218,240,212,255],"153":[217,240,211,255],"154":[215,239,209,255],"155":[213,238,207,255],"156":[211,237,205,255],"157":[209,236,203,255],"158":[207,235,201,255],"159":[205,235,199,255],"160":[203,234,197,255],"161":[201,233,195,255],"162":[199,232,193,255],"163":[197,231,191,255],"164":[195,230,189,255],"165":[193,230,187,255],"166":[191,229,185,255],"167":[189,228,183,255],"168":[187,227,181,255],"169":[185,226,179,255],"170":[183,226,177,255],"171":[181,225,175,255],"172":[179,224,173,255],"173":[177,223,171,255],"174":[175,222,169,255],"175":[173,221,167,255],"176":[171,221,165,255],"177":[169,220,163,255],"178":[167,219,161,255],"179":[164,218,158,255],"180":[161,216,156,255],"181":[158,214,153,255],"182":[155,212,151,255],"183":[152,211,148,255],"184":[149,209,146,255],"185":[146,207,143,255],"186":[143,205,141,255],"187":[140,204,139,255],"188":[137,202,136,255],"189":[134,200,134,255],"190":[131,198,131,255],"191":[128,196,129,255],"192":[125,195,126,255],"193":[122,193,124,255],"194":[119,191,121,255],"195":[116,189,119,255],"196":[113,188,116,255],"197":[110,186,114,255],"198":[107,184,111,255],"199":[104,182,109,255],"200":[101,181,106,255],"201":[98,179,104,255],"202":[95,177,101,255],"203":[92,175,99,255],"204":[90,174,97,255],"205":[87,171,95,255],"206":[85,169,93,255],"207":[82,167,92,255],"208":[80,165,90,255],"209":[77,163,88,255],"210":[75,161,87,255],"211":[72,159,85,255],"212":[70,157,83,255],"213":[67,154,82,255],"214":[65,152,80,255],"215":[62,150,78,255],"216":[60,148,77,255],"217":[57,146,75,255],"218":[55,144,73,255],"219":[52,142,72,255],"220":[50,140,70,255],"221":[48,138,69,255],"222":[45,135,67,255],"223":[43,133,65,255],"224":[40,131,64,255],"225":[38,129,62,255],"226":[35,127,60,255],"227":[33,125,59,255],"228":[30,123,57,255],"229":[28,121,55,255],"230":[26,118,54,255],"231":[25,116,53,255],"232":[24,114,52,255],"233":[23,112,51,255],"234":[22,110,50,255],"235":[21,108,48,255],"236":[20,106,47,255],"237":[19,104,46,255],"238":[18,102,45,255],"239":[16,100,44,255],"240":[15,98,43,255],"241":[14,96,42,255],"242":[13,94,41,255],"243":[12,92,40,255],"244":[11,90,39,255],"245":[10,88,37,255],"246":[9,86,36,255],"247":[8,84,35,255],"248":[7,82,34,255],"249":[6,80,33,255],"250":[5,78,32,255],"251":[4,76,31,255],"252":[3,74,30,255],"253":[2,72,29,255],"254":[1,70,28,255],"255":[0,68,27,255]}, +puor: {"0":[127,59,8,255],"1":[129,60,7,255],"2":[131,61,7,255],"3":[133,62,7,255],"4":[135,63,7,255],"5":[137,64,7,255],"6":[139,65,7,255],"7":[141,66,7,255],"8":[143,68,7,255],"9":[145,69,7,255],"10":[147,70,7,255],"11":[149,71,7,255],"12":[151,72,7,255],"13":[153,73,6,255],"14":[155,74,6,255],"15":[157,76,6,255],"16":[159,77,6,255],"17":[161,78,6,255],"18":[163,79,6,255],"19":[165,80,6,255],"20":[167,81,6,255],"21":[169,82,6,255],"22":[171,84,6,255],"23":[173,85,6,255],"24":[175,86,6,255],"25":[177,87,6,255],"26":[179,88,6,255],"27":[181,90,6,255],"28":[183,92,7,255],"29":[185,93,7,255],"30":[186,95,8,255],"31":[188,97,9,255],"32":[190,98,9,255],"33":[192,100,10,255],"34":[194,101,10,255],"35":[195,103,11,255],"36":[197,105,11,255],"37":[199,106,12,255],"38":[201,108,12,255],"39":[202,110,13,255],"40":[204,111,13,255],"41":[206,113,14,255],"42":[208,115,15,255],"43":[209,116,15,255],"44":[211,118,16,255],"45":[213,120,16,255],"46":[215,121,17,255],"47":[216,123,17,255],"48":[218,125,18,255],"49":[220,126,18,255],"50":[222,128,19,255],"51":[224,130,20,255],"52":[225,132,23,255],"53":[226,134,26,255],"54":[227,136,29,255],"55":[228,138,32,255],"56":[229,140,35,255],"57":[230,142,38,255],"58":[231,144,41,255],"59":[233,146,44,255],"60":[234,149,47,255],"61":[235,151,50,255],"62":[236,153,54,255],"63":[237,155,57,255],"64":[238,157,60,255],"65":[239,159,63,255],"66":[241,161,66,255],"67":[242,163,69,255],"68":[243,165,72,255],"69":[244,168,75,255],"70":[245,170,78,255],"71":[246,172,81,255],"72":[247,174,85,255],"73":[249,176,88,255],"74":[250,178,91,255],"75":[251,180,94,255],"76":[252,182,97,255],"77":[253,184,100,255],"78":[253,186,103,255],"79":[253,187,107,255],"80":[253,189,110,255],"81":[253,191,113,255],"82":[253,192,116,255],"83":[253,194,120,255],"84":[253,195,123,255],"85":[253,197,126,255],"86":[253,198,129,255],"87":[253,200,133,255],"88":[253,202,136,255],"89":[253,203,139,255],"90":[253,205,142,255],"91":[253,206,146,255],"92":[253,208,149,255],"93":[253,209,152,255],"94":[253,211,155,255],"95":[253,213,159,255],"96":[253,214,162,255],"97":[253,216,165,255],"98":[253,217,168,255],"99":[253,219,172,255],"100":[253,220,175,255],"101":[253,222,178,255],"102":[254,224,182,255],"103":[253,224,184,255],"104":[253,225,187,255],"105":[253,226,189,255],"106":[252,227,192,255],"107":[252,228,194,255],"108":[252,229,197,255],"109":[252,230,199,255],"110":[251,231,202,255],"111":[251,232,204,255],"112":[251,233,207,255],"113":[250,233,210,255],"114":[250,234,212,255],"115":[250,235,215,255],"116":[250,236,217,255],"117":[249,237,220,255],"118":[249,238,222,255],"119":[249,239,225,255],"120":[249,240,227,255],"121":[248,241,230,255],"122":[248,242,232,255],"123":[248,242,235,255],"124":[247,243,238,255],"125":[247,244,240,255],"126":[247,245,243,255],"127":[247,246,245,255],"128":[246,246,246,255],"129":[245,245,246,255],"130":[243,244,245,255],"131":[242,243,245,255],"132":[241,241,244,255],"133":[240,240,244,255],"134":[239,239,243,255],"135":[237,238,243,255],"136":[236,237,243,255],"137":[235,236,242,255],"138":[234,235,242,255],"139":[233,233,241,255],"140":[231,232,241,255],"141":[230,231,240,255],"142":[229,230,240,255],"143":[228,229,239,255],"144":[226,228,239,255],"145":[225,227,238,255],"146":[224,225,238,255],"147":[223,224,237,255],"148":[222,223,237,255],"149":[220,222,236,255],"150":[219,221,236,255],"151":[218,220,235,255],"152":[217,219,235,255],"153":[216,218,235,255],"154":[214,216,234,255],"155":[213,214,233,255],"156":[211,212,232,255],"157":[210,210,231,255],"158":[208,208,230,255],"159":[207,206,229,255],"160":[205,205,228,255],"161":[204,203,227,255],"162":[202,201,226,255],"163":[201,199,225,255],"164":[199,197,224,255],"165":[198,195,223,255],"166":[196,194,222,255],"167":[195,192,221,255],"168":[193,190,220,255],"169":[192,188,219,255],"170":[190,186,218,255],"171":[189,184,217,255],"172":[187,182,216,255],"173":[186,181,215,255],"174":[184,179,214,255],"175":[183,177,213,255],"176":[181,175,212,255],"177":[180,173,211,255],"178":[178,171,210,255],"179":[177,169,209,255],"180":[175,167,207,255],"181":[173,165,206,255],"182":[171,163,204,255],"183":[169,161,203,255],"184":[167,158,201,255],"185":[165,156,200,255],"186":[163,154,198,255],"187":[161,152,197,255],"188":[159,150,195,255],"189":[157,147,194,255],"190":[155,145,192,255],"191":[153,143,191,255],"192":[151,141,189,255],"193":[149,139,188,255],"194":[147,136,186,255],"195":[145,134,185,255],"196":[143,132,183,255],"197":[141,130,182,255],"198":[139,128,180,255],"199":[137,125,179,255],"200":[135,123,177,255],"201":[133,121,176,255],"202":[131,119,174,255],"203":[129,117,173,255],"204":[128,115,172,255],"205":[126,112,170,255],"206":[124,109,169,255],"207":[122,106,167,255],"208":[121,103,166,255],"209":[119,100,164,255],"210":[117,97,163,255],"211":[115,94,162,255],"212":[114,91,160,255],"213":[112,88,159,255],"214":[110,85,157,255],"215":[109,82,156,255],"216":[107,79,155,255],"217":[105,76,153,255],"218":[103,73,152,255],"219":[102,70,150,255],"220":[100,67,149,255],"221":[98,64,148,255],"222":[96,61,146,255],"223":[95,58,145,255],"224":[93,55,143,255],"225":[91,52,142,255],"226":[90,49,140,255],"227":[88,46,139,255],"228":[86,43,138,255],"229":[84,40,136,255],"230":[83,38,134,255],"231":[81,36,132,255],"232":[80,35,130,255],"233":[78,33,127,255],"234":[77,32,125,255],"235":[75,30,122,255],"236":[74,29,120,255],"237":[72,27,118,255],"238":[71,26,115,255],"239":[69,24,113,255],"240":[67,22,110,255],"241":[66,21,108,255],"242":[64,19,106,255],"243":[63,18,103,255],"244":[61,16,101,255],"245":[60,15,98,255],"246":[58,13,96,255],"247":[57,12,94,255],"248":[55,10,91,255],"249":[54,9,89,255],"250":[52,7,86,255],"251":[51,6,84,255],"252":[49,4,82,255],"253":[48,3,79,255],"254":[46,1,77,255],"255":[45,0,75,255]}, +rdbu: {"0":[103,0,31,255],"1":[105,0,31,255],"2":[108,1,31,255],"3":[111,2,32,255],"4":[114,3,32,255],"5":[117,4,33,255],"6":[120,5,33,255],"7":[123,6,34,255],"8":[126,7,34,255],"9":[129,8,35,255],"10":[132,9,35,255],"11":[135,10,36,255],"12":[138,11,36,255],"13":[141,12,37,255],"14":[144,13,37,255],"15":[147,14,38,255],"16":[150,15,38,255],"17":[153,16,39,255],"18":[155,16,39,255],"19":[158,17,39,255],"20":[161,18,40,255],"21":[164,19,40,255],"22":[167,20,41,255],"23":[170,21,41,255],"24":[173,22,42,255],"25":[176,23,42,255],"26":[178,25,43,255],"27":[180,28,45,255],"28":[181,31,46,255],"29":[182,33,47,255],"30":[184,36,49,255],"31":[185,39,50,255],"32":[187,42,51,255],"33":[188,45,52,255],"34":[190,48,54,255],"35":[191,50,55,255],"36":[192,53,56,255],"37":[194,56,58,255],"38":[195,59,59,255],"39":[197,62,60,255],"40":[198,64,62,255],"41":[199,67,63,255],"42":[201,70,65,255],"43":[202,73,66,255],"44":[204,76,67,255],"45":[205,79,68,255],"46":[206,81,70,255],"47":[208,84,71,255],"48":[209,87,73,255],"49":[211,90,74,255],"50":[212,93,75,255],"51":[214,96,77,255],"52":[215,98,79,255],"53":[216,101,81,255],"54":[217,104,83,255],"55":[218,106,85,255],"56":[219,109,87,255],"57":[221,112,89,255],"58":[222,114,91,255],"59":[223,117,93,255],"60":[224,120,95,255],"61":[225,123,97,255],"62":[226,125,99,255],"63":[228,128,101,255],"64":[229,131,104,255],"65":[230,133,106,255],"66":[231,136,108,255],"67":[232,139,110,255],"68":[234,141,112,255],"69":[235,144,114,255],"70":[236,147,116,255],"71":[237,150,118,255],"72":[238,152,120,255],"73":[239,155,122,255],"74":[241,158,124,255],"75":[242,160,126,255],"76":[243,163,128,255],"77":[244,166,131,255],"78":[244,168,134,255],"79":[244,170,136,255],"80":[245,172,139,255],"81":[245,174,142,255],"82":[245,176,144,255],"83":[246,178,147,255],"84":[246,180,150,255],"85":[247,182,152,255],"86":[247,185,155,255],"87":[247,187,158,255],"88":[248,189,161,255],"89":[248,191,163,255],"90":[248,193,166,255],"91":[249,195,169,255],"92":[249,197,171,255],"93":[249,199,174,255],"94":[250,202,177,255],"95":[250,204,180,255],"96":[250,206,182,255],"97":[251,208,185,255],"98":[251,210,188,255],"99":[251,212,190,255],"100":[252,214,193,255],"101":[252,216,196,255],"102":[253,219,199,255],"103":[252,220,200,255],"104":[252,221,202,255],"105":[252,222,204,255],"106":[252,223,206,255],"107":[251,224,208,255],"108":[251,225,210,255],"109":[251,226,212,255],"110":[251,227,214,255],"111":[250,228,215,255],"112":[250,229,217,255],"113":[250,231,219,255],"114":[250,232,221,255],"115":[249,233,223,255],"116":[249,234,225,255],"117":[249,235,227,255],"118":[249,236,229,255],"119":[249,237,231,255],"120":[248,238,232,255],"121":[248,239,234,255],"122":[248,240,236,255],"123":[248,242,238,255],"124":[247,243,240,255],"125":[247,244,242,255],"126":[247,245,244,255],"127":[247,246,246,255],"128":[246,246,246,255],"129":[244,245,246,255],"130":[243,245,246,255],"131":[241,244,246,255],"132":[240,243,245,255],"133":[238,243,245,255],"134":[237,242,245,255],"135":[235,241,244,255],"136":[234,241,244,255],"137":[232,240,244,255],"138":[231,239,244,255],"139":[229,238,243,255],"140":[228,238,243,255],"141":[226,237,243,255],"142":[225,236,243,255],"143":[223,236,242,255],"144":[222,235,242,255],"145":[220,234,242,255],"146":[219,233,241,255],"147":[217,233,241,255],"148":[216,232,241,255],"149":[214,231,241,255],"150":[213,231,240,255],"151":[211,230,240,255],"152":[210,229,240,255],"153":[209,229,240,255],"154":[206,227,239,255],"155":[204,226,238,255],"156":[201,225,237,255],"157":[199,223,237,255],"158":[196,222,236,255],"159":[194,221,235,255],"160":[191,220,235,255],"161":[189,218,234,255],"162":[186,217,233,255],"163":[184,216,232,255],"164":[181,215,232,255],"165":[179,213,231,255],"166":[176,212,230,255],"167":[174,211,230,255],"168":[171,210,229,255],"169":[169,208,228,255],"170":[167,207,228,255],"171":[164,206,227,255],"172":[162,205,226,255],"173":[159,203,225,255],"174":[157,202,225,255],"175":[154,201,224,255],"176":[152,200,223,255],"177":[149,198,223,255],"178":[147,197,222,255],"179":[144,196,221,255],"180":[141,194,220,255],"181":[138,192,219,255],"182":[135,190,218,255],"183":[132,188,217,255],"184":[128,186,216,255],"185":[125,184,215,255],"186":[122,182,214,255],"187":[119,180,213,255],"188":[116,178,211,255],"189":[113,176,210,255],"190":[110,174,209,255],"191":[107,172,208,255],"192":[104,170,207,255],"193":[101,168,206,255],"194":[97,166,205,255],"195":[94,164,204,255],"196":[91,162,203,255],"197":[88,160,202,255],"198":[85,158,201,255],"199":[82,156,200,255],"200":[79,154,199,255],"201":[76,152,198,255],"202":[73,150,197,255],"203":[70,148,196,255],"204":[67,147,195,255],"205":[65,145,194,255],"206":[64,143,193,255],"207":[63,141,192,255],"208":[61,139,191,255],"209":[60,138,190,255],"210":[59,136,189,255],"211":[57,134,188,255],"212":[56,132,187,255],"213":[55,131,186,255],"214":[53,129,185,255],"215":[52,127,185,255],"216":[51,125,184,255],"217":[49,124,183,255],"218":[48,122,182,255],"219":[47,120,181,255],"220":[45,118,180,255],"221":[44,117,179,255],"222":[43,115,178,255],"223":[41,113,177,255],"224":[40,111,176,255],"225":[39,109,176,255],"226":[37,108,175,255],"227":[36,106,174,255],"228":[35,104,173,255],"229":[33,102,172,255],"230":[32,100,170,255],"231":[31,98,167,255],"232":[30,96,164,255],"233":[29,94,161,255],"234":[28,92,158,255],"235":[26,90,155,255],"236":[25,88,152,255],"237":[24,86,149,255],"238":[23,84,147,255],"239":[22,81,144,255],"240":[21,79,141,255],"241":[20,77,138,255],"242":[19,75,135,255],"243":[18,73,132,255],"244":[17,71,129,255],"245":[15,69,126,255],"246":[14,67,123,255],"247":[13,64,120,255],"248":[12,62,117,255],"249":[11,60,114,255],"250":[10,58,111,255],"251":[9,56,108,255],"252":[8,54,105,255],"253":[7,52,102,255],"254":[6,50,99,255],"255":[5,48,97,255]}, +rdgy: {"0":[103,0,31,255],"1":[105,0,31,255],"2":[108,1,31,255],"3":[111,2,32,255],"4":[114,3,32,255],"5":[117,4,33,255],"6":[120,5,33,255],"7":[123,6,34,255],"8":[126,7,34,255],"9":[129,8,35,255],"10":[132,9,35,255],"11":[135,10,36,255],"12":[138,11,36,255],"13":[141,12,37,255],"14":[144,13,37,255],"15":[147,14,38,255],"16":[150,15,38,255],"17":[153,16,39,255],"18":[155,16,39,255],"19":[158,17,39,255],"20":[161,18,40,255],"21":[164,19,40,255],"22":[167,20,41,255],"23":[170,21,41,255],"24":[173,22,42,255],"25":[176,23,42,255],"26":[178,25,43,255],"27":[180,28,45,255],"28":[181,31,46,255],"29":[182,33,47,255],"30":[184,36,49,255],"31":[185,39,50,255],"32":[187,42,51,255],"33":[188,45,52,255],"34":[190,48,54,255],"35":[191,50,55,255],"36":[192,53,56,255],"37":[194,56,58,255],"38":[195,59,59,255],"39":[197,62,60,255],"40":[198,64,62,255],"41":[199,67,63,255],"42":[201,70,65,255],"43":[202,73,66,255],"44":[204,76,67,255],"45":[205,79,68,255],"46":[206,81,70,255],"47":[208,84,71,255],"48":[209,87,73,255],"49":[211,90,74,255],"50":[212,93,75,255],"51":[214,96,77,255],"52":[215,98,79,255],"53":[216,101,81,255],"54":[217,104,83,255],"55":[218,106,85,255],"56":[219,109,87,255],"57":[221,112,89,255],"58":[222,114,91,255],"59":[223,117,93,255],"60":[224,120,95,255],"61":[225,123,97,255],"62":[226,125,99,255],"63":[228,128,101,255],"64":[229,131,104,255],"65":[230,133,106,255],"66":[231,136,108,255],"67":[232,139,110,255],"68":[234,141,112,255],"69":[235,144,114,255],"70":[236,147,116,255],"71":[237,150,118,255],"72":[238,152,120,255],"73":[239,155,122,255],"74":[241,158,124,255],"75":[242,160,126,255],"76":[243,163,128,255],"77":[244,166,131,255],"78":[244,168,134,255],"79":[244,170,136,255],"80":[245,172,139,255],"81":[245,174,142,255],"82":[245,176,144,255],"83":[246,178,147,255],"84":[246,180,150,255],"85":[247,182,152,255],"86":[247,185,155,255],"87":[247,187,158,255],"88":[248,189,161,255],"89":[248,191,163,255],"90":[248,193,166,255],"91":[249,195,169,255],"92":[249,197,171,255],"93":[249,199,174,255],"94":[250,202,177,255],"95":[250,204,180,255],"96":[250,206,182,255],"97":[251,208,185,255],"98":[251,210,188,255],"99":[251,212,190,255],"100":[252,214,193,255],"101":[252,216,196,255],"102":[253,219,199,255],"103":[253,220,201,255],"104":[253,221,203,255],"105":[253,223,205,255],"106":[253,224,207,255],"107":[253,226,209,255],"108":[253,227,212,255],"109":[253,228,214,255],"110":[253,230,216,255],"111":[253,231,218,255],"112":[253,233,220,255],"113":[253,234,223,255],"114":[253,235,225,255],"115":[254,237,227,255],"116":[254,238,229,255],"117":[254,240,231,255],"118":[254,241,234,255],"119":[254,243,236,255],"120":[254,244,238,255],"121":[254,245,240,255],"122":[254,247,242,255],"123":[254,248,245,255],"124":[254,250,247,255],"125":[254,251,249,255],"126":[254,252,251,255],"127":[254,254,253,255],"128":[254,254,254,255],"129":[253,253,253,255],"130":[251,251,251,255],"131":[250,250,250,255],"132":[249,249,249,255],"133":[248,248,248,255],"134":[247,247,247,255],"135":[245,245,245,255],"136":[244,244,244,255],"137":[243,243,243,255],"138":[242,242,242,255],"139":[241,241,241,255],"140":[239,239,239,255],"141":[238,238,238,255],"142":[237,237,237,255],"143":[236,236,236,255],"144":[234,234,234,255],"145":[233,233,233,255],"146":[232,232,232,255],"147":[231,231,231,255],"148":[230,230,230,255],"149":[228,228,228,255],"150":[227,227,227,255],"151":[226,226,226,255],"152":[225,225,225,255],"153":[224,224,224,255],"154":[222,222,222,255],"155":[221,221,221,255],"156":[219,219,219,255],"157":[218,218,218,255],"158":[216,216,216,255],"159":[215,215,215,255],"160":[213,213,213,255],"161":[212,212,212,255],"162":[210,210,210,255],"163":[209,209,209,255],"164":[207,207,207,255],"165":[206,206,206,255],"166":[204,204,204,255],"167":[203,203,203,255],"168":[201,201,201,255],"169":[200,200,200,255],"170":[198,198,198,255],"171":[197,197,197,255],"172":[195,195,195,255],"173":[194,194,194,255],"174":[192,192,192,255],"175":[191,191,191,255],"176":[189,189,189,255],"177":[188,188,188,255],"178":[186,186,186,255],"179":[185,185,185,255],"180":[183,183,183,255],"181":[181,181,181,255],"182":[179,179,179,255],"183":[177,177,177,255],"184":[175,175,175,255],"185":[173,173,173,255],"186":[171,171,171,255],"187":[169,169,169,255],"188":[167,167,167,255],"189":[165,165,165,255],"190":[163,163,163,255],"191":[161,161,161,255],"192":[159,159,159,255],"193":[157,157,157,255],"194":[155,155,155,255],"195":[153,153,153,255],"196":[151,151,151,255],"197":[149,149,149,255],"198":[147,147,147,255],"199":[145,145,145,255],"200":[143,143,143,255],"201":[141,141,141,255],"202":[139,139,139,255],"203":[137,137,137,255],"204":[135,135,135,255],"205":[132,132,132,255],"206":[130,130,130,255],"207":[128,128,128,255],"208":[125,125,125,255],"209":[123,123,123,255],"210":[121,121,121,255],"211":[119,119,119,255],"212":[116,116,116,255],"213":[114,114,114,255],"214":[112,112,112,255],"215":[109,109,109,255],"216":[107,107,107,255],"217":[105,105,105,255],"218":[103,103,103,255],"219":[100,100,100,255],"220":[98,98,98,255],"221":[96,96,96,255],"222":[94,94,94,255],"223":[91,91,91,255],"224":[89,89,89,255],"225":[87,87,87,255],"226":[84,84,84,255],"227":[82,82,82,255],"228":[80,80,80,255],"229":[78,78,78,255],"230":[76,76,76,255],"231":[73,73,73,255],"232":[72,72,72,255],"233":[69,69,69,255],"234":[68,68,68,255],"235":[65,65,65,255],"236":[64,64,64,255],"237":[61,61,61,255],"238":[60,60,60,255],"239":[57,57,57,255],"240":[56,56,56,255],"241":[53,53,53,255],"242":[52,52,52,255],"243":[49,49,49,255],"244":[48,48,48,255],"245":[46,46,46,255],"246":[44,44,44,255],"247":[42,42,42,255],"248":[40,40,40,255],"249":[38,38,38,255],"250":[36,36,36,255],"251":[34,34,34,255],"252":[32,32,32,255],"253":[30,30,30,255],"254":[28,28,28,255],"255":[26,26,26,255]}, +rdpu: {"0":[255,247,243,255],"1":[254,246,242,255],"2":[254,245,241,255],"3":[254,244,240,255],"4":[254,244,240,255],"5":[254,243,239,255],"6":[254,242,238,255],"7":[254,241,238,255],"8":[254,241,237,255],"9":[254,240,236,255],"10":[254,239,236,255],"11":[254,239,235,255],"12":[254,238,234,255],"13":[254,237,234,255],"14":[254,236,233,255],"15":[254,236,232,255],"16":[253,235,231,255],"17":[253,234,231,255],"18":[253,234,230,255],"19":[253,233,229,255],"20":[253,232,229,255],"21":[253,231,228,255],"22":[253,231,227,255],"23":[253,230,227,255],"24":[253,229,226,255],"25":[253,228,225,255],"26":[253,228,225,255],"27":[253,227,224,255],"28":[253,226,223,255],"29":[253,226,222,255],"30":[253,225,222,255],"31":[253,224,221,255],"32":[252,223,220,255],"33":[252,223,219,255],"34":[252,222,219,255],"35":[252,221,218,255],"36":[252,220,217,255],"37":[252,219,216,255],"38":[252,218,215,255],"39":[252,217,214,255],"40":[252,217,213,255],"41":[252,216,212,255],"42":[252,215,211,255],"43":[252,214,210,255],"44":[252,213,209,255],"45":[252,212,209,255],"46":[252,212,208,255],"47":[252,211,207,255],"48":[252,210,206,255],"49":[252,209,205,255],"50":[252,208,204,255],"51":[252,207,203,255],"52":[252,206,202,255],"53":[252,206,201,255],"54":[252,205,200,255],"55":[252,204,199,255],"56":[252,203,199,255],"57":[252,202,198,255],"58":[252,201,197,255],"59":[252,201,196,255],"60":[252,200,195,255],"61":[252,199,194,255],"62":[252,198,193,255],"63":[252,197,192,255],"64":[251,196,191,255],"65":[251,195,191,255],"66":[251,194,191,255],"67":[251,193,190,255],"68":[251,191,190,255],"69":[251,190,190,255],"70":[251,189,189,255],"71":[251,188,189,255],"72":[251,187,189,255],"73":[251,185,188,255],"74":[251,184,188,255],"75":[251,183,188,255],"76":[251,182,187,255],"77":[251,181,187,255],"78":[251,180,187,255],"79":[251,178,186,255],"80":[250,177,186,255],"81":[250,176,186,255],"82":[250,175,185,255],"83":[250,174,185,255],"84":[250,172,185,255],"85":[250,171,184,255],"86":[250,170,184,255],"87":[250,169,183,255],"88":[250,168,183,255],"89":[250,166,183,255],"90":[250,165,182,255],"91":[250,164,182,255],"92":[250,163,182,255],"93":[250,162,181,255],"94":[250,160,181,255],"95":[250,159,181,255],"96":[249,158,180,255],"97":[249,156,180,255],"98":[249,154,179,255],"99":[249,153,178,255],"100":[249,151,178,255],"101":[249,149,177,255],"102":[249,148,177,255],"103":[249,146,176,255],"104":[249,144,175,255],"105":[249,142,175,255],"106":[249,141,174,255],"107":[248,139,173,255],"108":[248,137,173,255],"109":[248,135,172,255],"110":[248,134,171,255],"111":[248,132,171,255],"112":[248,130,170,255],"113":[248,129,170,255],"114":[248,127,169,255],"115":[248,125,168,255],"116":[248,123,168,255],"117":[247,122,167,255],"118":[247,120,166,255],"119":[247,118,166,255],"120":[247,116,165,255],"121":[247,115,165,255],"122":[247,113,164,255],"123":[247,111,163,255],"124":[247,110,163,255],"125":[247,108,162,255],"126":[247,106,161,255],"127":[247,104,161,255],"128":[246,103,160,255],"129":[245,101,160,255],"130":[244,99,160,255],"131":[244,98,159,255],"132":[243,96,159,255],"133":[242,95,159,255],"134":[241,93,158,255],"135":[240,91,158,255],"136":[240,90,158,255],"137":[239,88,158,255],"138":[238,86,157,255],"139":[237,85,157,255],"140":[236,83,157,255],"141":[235,81,156,255],"142":[235,80,156,255],"143":[234,78,156,255],"144":[233,77,155,255],"145":[232,75,155,255],"146":[231,73,155,255],"147":[231,72,154,255],"148":[230,70,154,255],"149":[229,68,154,255],"150":[228,67,153,255],"151":[227,65,153,255],"152":[227,64,153,255],"153":[226,62,153,255],"154":[225,60,152,255],"155":[224,59,152,255],"156":[223,57,152,255],"157":[222,55,151,255],"158":[222,54,151,255],"159":[221,52,151,255],"160":[220,51,150,255],"161":[218,49,149,255],"162":[217,47,148,255],"163":[215,46,148,255],"164":[214,44,147,255],"165":[212,42,146,255],"166":[211,41,145,255],"167":[209,39,145,255],"168":[208,38,144,255],"169":[206,36,143,255],"170":[205,35,142,255],"171":[203,33,141,255],"172":[202,31,141,255],"173":[200,30,140,255],"174":[199,28,139,255],"175":[197,27,138,255],"176":[196,25,137,255],"177":[195,23,137,255],"178":[193,22,136,255],"179":[192,20,135,255],"180":[190,19,134,255],"181":[189,17,134,255],"182":[187,15,133,255],"183":[186,14,132,255],"184":[184,12,131,255],"185":[183,10,130,255],"186":[181,9,130,255],"187":[180,7,129,255],"188":[178,6,128,255],"189":[177,4,127,255],"190":[175,2,126,255],"191":[174,1,126,255],"192":[172,1,125,255],"193":[171,1,125,255],"194":[169,1,125,255],"195":[167,1,125,255],"196":[166,1,124,255],"197":[164,1,124,255],"198":[162,1,124,255],"199":[161,1,124,255],"200":[159,1,124,255],"201":[158,1,123,255],"202":[156,1,123,255],"203":[154,1,123,255],"204":[153,1,123,255],"205":[151,1,122,255],"206":[149,1,122,255],"207":[148,1,122,255],"208":[146,1,122,255],"209":[145,1,122,255],"210":[143,1,121,255],"211":[141,1,121,255],"212":[140,1,121,255],"213":[138,1,121,255],"214":[136,1,121,255],"215":[135,1,120,255],"216":[133,1,120,255],"217":[131,1,120,255],"218":[130,1,120,255],"219":[128,1,119,255],"220":[127,1,119,255],"221":[125,1,119,255],"222":[123,1,119,255],"223":[122,1,119,255],"224":[120,0,118,255],"225":[119,0,118,255],"226":[117,0,117,255],"227":[116,0,117,255],"228":[114,0,117,255],"229":[112,0,116,255],"230":[111,0,116,255],"231":[109,0,115,255],"232":[108,0,115,255],"233":[106,0,114,255],"234":[105,0,114,255],"235":[103,0,114,255],"236":[102,0,113,255],"237":[100,0,113,255],"238":[99,0,112,255],"239":[97,0,112,255],"240":[96,0,112,255],"241":[94,0,111,255],"242":[92,0,111,255],"243":[91,0,110,255],"244":[89,0,110,255],"245":[88,0,110,255],"246":[86,0,109,255],"247":[85,0,109,255],"248":[83,0,108,255],"249":[82,0,108,255],"250":[80,0,108,255],"251":[79,0,107,255],"252":[77,0,107,255],"253":[76,0,106,255],"254":[74,0,106,255],"255":[73,0,106,255]}, +rdylbu: {"0":[165,0,38,255],"1":[166,1,38,255],"2":[168,3,38,255],"3":[170,5,38,255],"4":[172,7,38,255],"5":[174,9,38,255],"6":[176,11,38,255],"7":[178,13,38,255],"8":[180,15,38,255],"9":[182,16,38,255],"10":[184,18,38,255],"11":[186,20,38,255],"12":[188,22,38,255],"13":[190,24,38,255],"14":[192,26,38,255],"15":[194,28,38,255],"16":[196,30,38,255],"17":[198,32,38,255],"18":[200,33,38,255],"19":[202,35,38,255],"20":[204,37,38,255],"21":[206,39,38,255],"22":[208,41,38,255],"23":[210,43,38,255],"24":[212,45,38,255],"25":[214,47,38,255],"26":[215,49,39,255],"27":[216,51,40,255],"28":[217,53,41,255],"29":[218,56,42,255],"30":[220,58,43,255],"31":[221,61,45,255],"32":[222,63,46,255],"33":[223,65,47,255],"34":[224,68,48,255],"35":[225,70,49,255],"36":[226,73,50,255],"37":[228,75,51,255],"38":[229,77,52,255],"39":[230,80,53,255],"40":[231,82,54,255],"41":[232,85,56,255],"42":[233,87,57,255],"43":[234,89,58,255],"44":[236,92,59,255],"45":[237,94,60,255],"46":[238,97,61,255],"47":[239,99,62,255],"48":[240,101,63,255],"49":[241,104,64,255],"50":[242,106,65,255],"51":[244,109,67,255],"52":[244,111,68,255],"53":[244,114,69,255],"54":[245,116,70,255],"55":[245,119,71,255],"56":[245,121,72,255],"57":[246,124,74,255],"58":[246,126,75,255],"59":[246,129,76,255],"60":[247,131,77,255],"61":[247,134,78,255],"62":[247,137,79,255],"63":[248,139,81,255],"64":[248,142,82,255],"65":[248,144,83,255],"66":[249,147,84,255],"67":[249,149,85,255],"68":[250,152,86,255],"69":[250,154,88,255],"70":[250,157,89,255],"71":[251,159,90,255],"72":[251,162,91,255],"73":[251,165,92,255],"74":[252,167,94,255],"75":[252,170,95,255],"76":[252,172,96,255],"77":[253,174,97,255],"78":[253,176,99,255],"79":[253,178,101,255],"80":[253,180,103,255],"81":[253,182,105,255],"82":[253,184,107,255],"83":[253,186,108,255],"84":[253,188,110,255],"85":[253,190,112,255],"86":[253,192,114,255],"87":[253,194,116,255],"88":[253,196,118,255],"89":[253,198,120,255],"90":[253,200,121,255],"91":[253,202,123,255],"92":[253,204,125,255],"93":[253,206,127,255],"94":[253,208,129,255],"95":[253,210,131,255],"96":[253,212,132,255],"97":[253,214,134,255],"98":[253,216,136,255],"99":[253,218,138,255],"100":[253,220,140,255],"101":[253,222,142,255],"102":[254,224,144,255],"103":[254,225,145,255],"104":[254,226,147,255],"105":[254,227,149,255],"106":[254,228,151,255],"107":[254,230,153,255],"108":[254,231,155,255],"109":[254,232,156,255],"110":[254,233,158,255],"111":[254,234,160,255],"112":[254,236,162,255],"113":[254,237,164,255],"114":[254,238,166,255],"115":[254,239,167,255],"116":[254,241,169,255],"117":[254,242,171,255],"118":[254,243,173,255],"119":[254,244,175,255],"120":[254,245,177,255],"121":[254,247,179,255],"122":[254,248,180,255],"123":[254,249,182,255],"124":[254,250,184,255],"125":[254,251,186,255],"126":[254,253,188,255],"127":[254,254,190,255],"128":[254,254,192,255],"129":[253,254,194,255],"130":[251,253,196,255],"131":[250,253,198,255],"132":[249,252,201,255],"133":[248,252,203,255],"134":[247,251,205,255],"135":[245,251,207,255],"136":[244,251,210,255],"137":[243,250,212,255],"138":[242,250,214,255],"139":[241,249,216,255],"140":[239,249,218,255],"141":[238,248,221,255],"142":[237,248,223,255],"143":[236,247,225,255],"144":[234,247,227,255],"145":[233,246,230,255],"146":[232,246,232,255],"147":[231,245,234,255],"148":[230,245,236,255],"149":[228,244,239,255],"150":[227,244,241,255],"151":[226,243,243,255],"152":[225,243,245,255],"153":[224,243,247,255],"154":[221,241,247,255],"155":[219,240,246,255],"156":[217,239,246,255],"157":[215,238,245,255],"158":[213,237,245,255],"159":[211,236,244,255],"160":[209,235,243,255],"161":[207,234,243,255],"162":[205,233,242,255],"163":[203,232,242,255],"164":[201,231,241,255],"165":[199,230,240,255],"166":[196,229,240,255],"167":[194,228,239,255],"168":[192,227,239,255],"169":[190,226,238,255],"170":[188,225,238,255],"171":[186,224,237,255],"172":[184,223,236,255],"173":[182,222,236,255],"174":[180,221,235,255],"175":[178,220,235,255],"176":[176,219,234,255],"177":[174,218,233,255],"178":[172,217,233,255],"179":[169,216,232,255],"180":[167,214,231,255],"181":[165,212,230,255],"182":[163,210,229,255],"183":[161,209,228,255],"184":[159,207,227,255],"185":[156,205,226,255],"186":[154,204,225,255],"187":[152,202,225,255],"188":[150,200,224,255],"189":[148,198,223,255],"190":[146,197,222,255],"191":[144,195,221,255],"192":[141,193,220,255],"193":[139,191,219,255],"194":[137,190,218,255],"195":[135,188,217,255],"196":[133,186,216,255],"197":[131,185,215,255],"198":[128,183,214,255],"199":[126,181,213,255],"200":[124,179,212,255],"201":[122,178,211,255],"202":[120,176,210,255],"203":[118,174,209,255],"204":[116,173,209,255],"205":[114,170,207,255],"206":[112,168,206,255],"207":[110,166,205,255],"208":[108,164,204,255],"209":[106,162,203,255],"210":[104,159,202,255],"211":[103,157,201,255],"212":[101,155,199,255],"213":[99,153,198,255],"214":[97,151,197,255],"215":[95,148,196,255],"216":[93,146,195,255],"217":[92,144,194,255],"218":[90,142,193,255],"219":[88,140,191,255],"220":[86,137,190,255],"221":[84,135,189,255],"222":[82,133,188,255],"223":[80,131,187,255],"224":[79,129,186,255],"225":[77,126,185,255],"226":[75,124,183,255],"227":[73,122,182,255],"228":[71,120,181,255],"229":[69,118,180,255],"230":[68,115,179,255],"231":[67,113,178,255],"232":[67,110,176,255],"233":[66,108,175,255],"234":[65,105,174,255],"235":[64,103,173,255],"236":[63,100,172,255],"237":[63,98,170,255],"238":[62,96,169,255],"239":[61,93,168,255],"240":[60,91,167,255],"241":[59,88,166,255],"242":[59,86,164,255],"243":[58,83,163,255],"244":[57,81,162,255],"245":[56,78,161,255],"246":[56,76,159,255],"247":[55,73,158,255],"248":[54,71,157,255],"249":[53,68,156,255],"250":[52,66,155,255],"251":[52,63,153,255],"252":[51,61,152,255],"253":[50,58,151,255],"254":[49,56,150,255],"255":[49,54,149,255]}, +rdylgn: {"0":[165,0,38,255],"1":[166,1,38,255],"2":[168,3,38,255],"3":[170,5,38,255],"4":[172,7,38,255],"5":[174,9,38,255],"6":[176,11,38,255],"7":[178,13,38,255],"8":[180,15,38,255],"9":[182,16,38,255],"10":[184,18,38,255],"11":[186,20,38,255],"12":[188,22,38,255],"13":[190,24,38,255],"14":[192,26,38,255],"15":[194,28,38,255],"16":[196,30,38,255],"17":[198,32,38,255],"18":[200,33,38,255],"19":[202,35,38,255],"20":[204,37,38,255],"21":[206,39,38,255],"22":[208,41,38,255],"23":[210,43,38,255],"24":[212,45,38,255],"25":[214,47,38,255],"26":[215,49,39,255],"27":[216,51,40,255],"28":[217,53,41,255],"29":[218,56,42,255],"30":[220,58,43,255],"31":[221,61,45,255],"32":[222,63,46,255],"33":[223,65,47,255],"34":[224,68,48,255],"35":[225,70,49,255],"36":[226,73,50,255],"37":[228,75,51,255],"38":[229,77,52,255],"39":[230,80,53,255],"40":[231,82,54,255],"41":[232,85,56,255],"42":[233,87,57,255],"43":[234,89,58,255],"44":[236,92,59,255],"45":[237,94,60,255],"46":[238,97,61,255],"47":[239,99,62,255],"48":[240,101,63,255],"49":[241,104,64,255],"50":[242,106,65,255],"51":[244,109,67,255],"52":[244,111,68,255],"53":[244,114,69,255],"54":[245,116,70,255],"55":[245,119,71,255],"56":[245,121,72,255],"57":[246,124,74,255],"58":[246,126,75,255],"59":[246,129,76,255],"60":[247,131,77,255],"61":[247,134,78,255],"62":[247,137,79,255],"63":[248,139,81,255],"64":[248,142,82,255],"65":[248,144,83,255],"66":[249,147,84,255],"67":[249,149,85,255],"68":[250,152,86,255],"69":[250,154,88,255],"70":[250,157,89,255],"71":[251,159,90,255],"72":[251,162,91,255],"73":[251,165,92,255],"74":[252,167,94,255],"75":[252,170,95,255],"76":[252,172,96,255],"77":[253,174,97,255],"78":[253,176,99,255],"79":[253,178,101,255],"80":[253,180,102,255],"81":[253,182,104,255],"82":[253,184,106,255],"83":[253,186,107,255],"84":[253,188,109,255],"85":[253,190,110,255],"86":[253,192,112,255],"87":[253,194,114,255],"88":[253,196,115,255],"89":[253,198,117,255],"90":[253,200,119,255],"91":[253,202,120,255],"92":[253,204,122,255],"93":[253,206,124,255],"94":[253,208,125,255],"95":[253,210,127,255],"96":[253,212,129,255],"97":[253,214,130,255],"98":[253,216,132,255],"99":[253,218,134,255],"100":[253,220,135,255],"101":[253,222,137,255],"102":[254,224,139,255],"103":[254,225,141,255],"104":[254,226,143,255],"105":[254,227,145,255],"106":[254,228,147,255],"107":[254,230,149,255],"108":[254,231,151,255],"109":[254,232,153,255],"110":[254,233,155,255],"111":[254,234,157,255],"112":[254,236,159,255],"113":[254,237,161,255],"114":[254,238,163,255],"115":[254,239,165,255],"116":[254,241,167,255],"117":[254,242,169,255],"118":[254,243,171,255],"119":[254,244,173,255],"120":[254,245,175,255],"121":[254,247,177,255],"122":[254,248,179,255],"123":[254,249,181,255],"124":[254,250,183,255],"125":[254,251,185,255],"126":[254,253,187,255],"127":[254,254,189,255],"128":[254,254,189,255],"129":[252,254,187,255],"130":[251,253,185,255],"131":[249,252,183,255],"132":[248,252,181,255],"133":[246,251,179,255],"134":[245,250,177,255],"135":[243,250,175,255],"136":[242,249,173,255],"137":[240,249,171,255],"138":[239,248,169,255],"139":[237,247,167,255],"140":[236,247,165,255],"141":[234,246,163,255],"142":[233,245,161,255],"143":[231,245,159,255],"144":[230,244,157,255],"145":[228,244,155,255],"146":[227,243,153,255],"147":[225,242,151,255],"148":[224,242,149,255],"149":[222,241,147,255],"150":[221,240,145,255],"151":[219,240,143,255],"152":[218,239,141,255],"153":[217,239,139,255],"154":[215,238,137,255],"155":[213,237,136,255],"156":[211,236,135,255],"157":[209,235,133,255],"158":[207,234,132,255],"159":[205,233,131,255],"160":[203,232,129,255],"161":[201,232,128,255],"162":[199,231,127,255],"163":[197,230,126,255],"164":[195,229,124,255],"165":[193,228,123,255],"166":[191,227,122,255],"167":[189,226,120,255],"168":[187,226,119,255],"169":[185,225,118,255],"170":[183,224,117,255],"171":[181,223,115,255],"172":[179,222,114,255],"173":[177,221,113,255],"174":[175,220,111,255],"175":[173,220,110,255],"176":[171,219,109,255],"177":[169,218,107,255],"178":[167,217,106,255],"179":[164,216,105,255],"180":[162,215,105,255],"181":[159,214,105,255],"182":[157,213,105,255],"183":[154,212,104,255],"184":[152,210,104,255],"185":[149,209,104,255],"186":[147,208,103,255],"187":[144,207,103,255],"188":[142,206,103,255],"189":[139,205,103,255],"190":[137,204,102,255],"191":[134,203,102,255],"192":[132,202,102,255],"193":[129,201,102,255],"194":[127,199,101,255],"195":[124,198,101,255],"196":[122,197,101,255],"197":[119,196,100,255],"198":[117,195,100,255],"199":[114,194,100,255],"200":[112,193,100,255],"201":[109,192,99,255],"202":[107,191,99,255],"203":[104,190,99,255],"204":[102,189,99,255],"205":[99,187,98,255],"206":[96,186,97,255],"207":[93,184,96,255],"208":[90,183,96,255],"209":[87,181,95,255],"210":[84,180,94,255],"211":[81,178,93,255],"212":[78,177,93,255],"213":[75,175,92,255],"214":[72,174,91,255],"215":[69,173,90,255],"216":[66,171,90,255],"217":[63,170,89,255],"218":[60,168,88,255],"219":[57,167,87,255],"220":[54,165,87,255],"221":[51,164,86,255],"222":[48,162,85,255],"223":[45,161,84,255],"224":[42,159,84,255],"225":[39,158,83,255],"226":[36,157,82,255],"227":[33,155,81,255],"228":[30,154,81,255],"229":[27,152,80,255],"230":[25,151,79,255],"231":[24,149,78,255],"232":[23,147,77,255],"233":[22,145,76,255],"234":[21,143,75,255],"235":[20,141,74,255],"236":[19,139,73,255],"237":[18,137,72,255],"238":[17,136,71,255],"239":[16,134,70,255],"240":[15,132,69,255],"241":[14,130,68,255],"242":[13,128,67,255],"243":[12,126,66,255],"244":[11,124,65,255],"245":[10,122,64,255],"246":[9,120,63,255],"247":[8,119,62,255],"248":[7,117,61,255],"249":[6,115,60,255],"250":[5,113,59,255],"251":[4,111,58,255],"252":[3,109,57,255],"253":[2,107,56,255],"254":[1,105,55,255],"255":[0,104,55,255]}, +seismic: {"0":[0,0,76,255],"1":[0,0,79,255],"2":[0,0,82,255],"3":[0,0,84,255],"4":[0,0,87,255],"5":[0,0,90,255],"6":[0,0,93,255],"7":[0,0,96,255],"8":[0,0,98,255],"9":[0,0,101,255],"10":[0,0,104,255],"11":[0,0,107,255],"12":[0,0,110,255],"13":[0,0,112,255],"14":[0,0,115,255],"15":[0,0,118,255],"16":[0,0,121,255],"17":[0,0,124,255],"18":[0,0,126,255],"19":[0,0,129,255],"20":[0,0,132,255],"21":[0,0,135,255],"22":[0,0,138,255],"23":[0,0,140,255],"24":[0,0,143,255],"25":[0,0,146,255],"26":[0,0,149,255],"27":[0,0,152,255],"28":[0,0,154,255],"29":[0,0,157,255],"30":[0,0,160,255],"31":[0,0,163,255],"32":[0,0,166,255],"33":[0,0,168,255],"34":[0,0,171,255],"35":[0,0,174,255],"36":[0,0,177,255],"37":[0,0,180,255],"38":[0,0,182,255],"39":[0,0,185,255],"40":[0,0,188,255],"41":[0,0,191,255],"42":[0,0,194,255],"43":[0,0,196,255],"44":[0,0,199,255],"45":[0,0,202,255],"46":[0,0,205,255],"47":[0,0,208,255],"48":[0,0,210,255],"49":[0,0,213,255],"50":[0,0,216,255],"51":[0,0,219,255],"52":[0,0,222,255],"53":[0,0,224,255],"54":[0,0,227,255],"55":[0,0,230,255],"56":[0,0,233,255],"57":[0,0,236,255],"58":[0,0,238,255],"59":[0,0,241,255],"60":[0,0,244,255],"61":[0,0,247,255],"62":[0,0,250,255],"63":[0,0,252,255],"64":[1,1,255,255],"65":[5,5,255,255],"66":[8,8,255,255],"67":[13,13,255,255],"68":[17,17,255,255],"69":[21,21,255,255],"70":[25,25,255,255],"71":[29,29,255,255],"72":[33,33,255,255],"73":[37,37,255,255],"74":[40,40,255,255],"75":[45,45,255,255],"76":[49,49,255,255],"77":[53,53,255,255],"78":[57,57,255,255],"79":[61,61,255,255],"80":[65,65,255,255],"81":[69,69,255,255],"82":[72,72,255,255],"83":[77,77,255,255],"84":[81,81,255,255],"85":[85,85,255,255],"86":[89,89,255,255],"87":[93,93,255,255],"88":[97,97,255,255],"89":[101,101,255,255],"90":[104,104,255,255],"91":[109,109,255,255],"92":[113,113,255,255],"93":[117,117,255,255],"94":[121,121,255,255],"95":[125,125,255,255],"96":[129,129,255,255],"97":[133,133,255,255],"98":[136,136,255,255],"99":[141,141,255,255],"100":[145,145,255,255],"101":[149,149,255,255],"102":[153,153,255,255],"103":[157,157,255,255],"104":[161,161,255,255],"105":[165,165,255,255],"106":[168,168,255,255],"107":[173,173,255,255],"108":[177,177,255,255],"109":[181,181,255,255],"110":[185,185,255,255],"111":[189,189,255,255],"112":[193,193,255,255],"113":[197,197,255,255],"114":[200,200,255,255],"115":[205,205,255,255],"116":[209,209,255,255],"117":[213,213,255,255],"118":[217,217,255,255],"119":[221,221,255,255],"120":[225,225,255,255],"121":[229,229,255,255],"122":[232,232,255,255],"123":[237,237,255,255],"124":[241,241,255,255],"125":[245,245,255,255],"126":[249,249,255,255],"127":[253,253,255,255],"128":[255,253,253,255],"129":[255,249,249,255],"130":[255,245,245,255],"131":[255,241,241,255],"132":[255,237,237,255],"133":[255,233,233,255],"134":[255,229,229,255],"135":[255,225,225,255],"136":[255,221,221,255],"137":[255,217,217,255],"138":[255,213,213,255],"139":[255,209,209,255],"140":[255,205,205,255],"141":[255,201,201,255],"142":[255,197,197,255],"143":[255,193,193,255],"144":[255,189,189,255],"145":[255,185,185,255],"146":[255,180,180,255],"147":[255,177,177,255],"148":[255,173,173,255],"149":[255,169,169,255],"150":[255,164,164,255],"151":[255,161,161,255],"152":[255,157,157,255],"153":[255,153,153,255],"154":[255,148,148,255],"155":[255,145,145,255],"156":[255,141,141,255],"157":[255,137,137,255],"158":[255,132,132,255],"159":[255,129,129,255],"160":[255,125,125,255],"161":[255,121,121,255],"162":[255,117,117,255],"163":[255,113,113,255],"164":[255,109,109,255],"165":[255,105,105,255],"166":[255,101,101,255],"167":[255,97,97,255],"168":[255,93,93,255],"169":[255,89,89,255],"170":[255,85,85,255],"171":[255,81,81,255],"172":[255,77,77,255],"173":[255,73,73,255],"174":[255,69,69,255],"175":[255,65,65,255],"176":[255,61,61,255],"177":[255,56,56,255],"178":[255,53,53,255],"179":[255,48,48,255],"180":[255,45,45,255],"181":[255,40,40,255],"182":[255,37,37,255],"183":[255,32,32,255],"184":[255,29,29,255],"185":[255,24,24,255],"186":[255,21,21,255],"187":[255,16,16,255],"188":[255,13,13,255],"189":[255,8,8,255],"190":[255,5,5,255],"191":[255,0,0,255],"192":[253,0,0,255],"193":[251,0,0,255],"194":[249,0,0,255],"195":[247,0,0,255],"196":[245,0,0,255],"197":[243,0,0,255],"198":[241,0,0,255],"199":[239,0,0,255],"200":[237,0,0,255],"201":[235,0,0,255],"202":[233,0,0,255],"203":[231,0,0,255],"204":[229,0,0,255],"205":[227,0,0,255],"206":[225,0,0,255],"207":[223,0,0,255],"208":[221,0,0,255],"209":[219,0,0,255],"210":[217,0,0,255],"211":[215,0,0,255],"212":[213,0,0,255],"213":[211,0,0,255],"214":[209,0,0,255],"215":[207,0,0,255],"216":[205,0,0,255],"217":[203,0,0,255],"218":[201,0,0,255],"219":[199,0,0,255],"220":[197,0,0,255],"221":[195,0,0,255],"222":[193,0,0,255],"223":[191,0,0,255],"224":[189,0,0,255],"225":[187,0,0,255],"226":[185,0,0,255],"227":[183,0,0,255],"228":[181,0,0,255],"229":[179,0,0,255],"230":[177,0,0,255],"231":[175,0,0,255],"232":[173,0,0,255],"233":[171,0,0,255],"234":[169,0,0,255],"235":[167,0,0,255],"236":[165,0,0,255],"237":[163,0,0,255],"238":[161,0,0,255],"239":[159,0,0,255],"240":[157,0,0,255],"241":[155,0,0,255],"242":[153,0,0,255],"243":[151,0,0,255],"244":[149,0,0,255],"245":[147,0,0,255],"246":[145,0,0,255],"247":[143,0,0,255],"248":[141,0,0,255],"249":[139,0,0,255],"250":[137,0,0,255],"251":[135,0,0,255],"252":[133,0,0,255],"253":[131,0,0,255],"254":[129,0,0,255],"255":[127,0,0,255]}, +}; +export const restColorMaps = { +accent: {"0":[127,201,127,255],"1":[127,201,127,255],"2":[127,201,127,255],"3":[127,201,127,255],"4":[127,201,127,255],"5":[127,201,127,255],"6":[127,201,127,255],"7":[127,201,127,255],"8":[127,201,127,255],"9":[127,201,127,255],"10":[127,201,127,255],"11":[127,201,127,255],"12":[127,201,127,255],"13":[127,201,127,255],"14":[127,201,127,255],"15":[127,201,127,255],"16":[127,201,127,255],"17":[127,201,127,255],"18":[127,201,127,255],"19":[127,201,127,255],"20":[127,201,127,255],"21":[127,201,127,255],"22":[127,201,127,255],"23":[127,201,127,255],"24":[127,201,127,255],"25":[127,201,127,255],"26":[127,201,127,255],"27":[127,201,127,255],"28":[127,201,127,255],"29":[127,201,127,255],"30":[127,201,127,255],"31":[127,201,127,255],"32":[190,174,212,255],"33":[190,174,212,255],"34":[190,174,212,255],"35":[190,174,212,255],"36":[190,174,212,255],"37":[190,174,212,255],"38":[190,174,212,255],"39":[190,174,212,255],"40":[190,174,212,255],"41":[190,174,212,255],"42":[190,174,212,255],"43":[190,174,212,255],"44":[190,174,212,255],"45":[190,174,212,255],"46":[190,174,212,255],"47":[190,174,212,255],"48":[190,174,212,255],"49":[190,174,212,255],"50":[190,174,212,255],"51":[190,174,212,255],"52":[190,174,212,255],"53":[190,174,212,255],"54":[190,174,212,255],"55":[190,174,212,255],"56":[190,174,212,255],"57":[190,174,212,255],"58":[190,174,212,255],"59":[190,174,212,255],"60":[190,174,212,255],"61":[190,174,212,255],"62":[190,174,212,255],"63":[190,174,212,255],"64":[253,192,134,255],"65":[253,192,134,255],"66":[253,192,134,255],"67":[253,192,134,255],"68":[253,192,134,255],"69":[253,192,134,255],"70":[253,192,134,255],"71":[253,192,134,255],"72":[253,192,134,255],"73":[253,192,134,255],"74":[253,192,134,255],"75":[253,192,134,255],"76":[253,192,134,255],"77":[253,192,134,255],"78":[253,192,134,255],"79":[253,192,134,255],"80":[253,192,134,255],"81":[253,192,134,255],"82":[253,192,134,255],"83":[253,192,134,255],"84":[253,192,134,255],"85":[253,192,134,255],"86":[253,192,134,255],"87":[253,192,134,255],"88":[253,192,134,255],"89":[253,192,134,255],"90":[253,192,134,255],"91":[253,192,134,255],"92":[253,192,134,255],"93":[253,192,134,255],"94":[253,192,134,255],"95":[253,192,134,255],"96":[255,255,153,255],"97":[255,255,153,255],"98":[255,255,153,255],"99":[255,255,153,255],"100":[255,255,153,255],"101":[255,255,153,255],"102":[255,255,153,255],"103":[255,255,153,255],"104":[255,255,153,255],"105":[255,255,153,255],"106":[255,255,153,255],"107":[255,255,153,255],"108":[255,255,153,255],"109":[255,255,153,255],"110":[255,255,153,255],"111":[255,255,153,255],"112":[255,255,153,255],"113":[255,255,153,255],"114":[255,255,153,255],"115":[255,255,153,255],"116":[255,255,153,255],"117":[255,255,153,255],"118":[255,255,153,255],"119":[255,255,153,255],"120":[255,255,153,255],"121":[255,255,153,255],"122":[255,255,153,255],"123":[255,255,153,255],"124":[255,255,153,255],"125":[255,255,153,255],"126":[255,255,153,255],"127":[255,255,153,255],"128":[56,108,176,255],"129":[56,108,176,255],"130":[56,108,176,255],"131":[56,108,176,255],"132":[56,108,176,255],"133":[56,108,176,255],"134":[56,108,176,255],"135":[56,108,176,255],"136":[56,108,176,255],"137":[56,108,176,255],"138":[56,108,176,255],"139":[56,108,176,255],"140":[56,108,176,255],"141":[56,108,176,255],"142":[56,108,176,255],"143":[56,108,176,255],"144":[56,108,176,255],"145":[56,108,176,255],"146":[56,108,176,255],"147":[56,108,176,255],"148":[56,108,176,255],"149":[56,108,176,255],"150":[56,108,176,255],"151":[56,108,176,255],"152":[56,108,176,255],"153":[56,108,176,255],"154":[56,108,176,255],"155":[56,108,176,255],"156":[56,108,176,255],"157":[56,108,176,255],"158":[56,108,176,255],"159":[56,108,176,255],"160":[240,2,127,255],"161":[240,2,127,255],"162":[240,2,127,255],"163":[240,2,127,255],"164":[240,2,127,255],"165":[240,2,127,255],"166":[240,2,127,255],"167":[240,2,127,255],"168":[240,2,127,255],"169":[240,2,127,255],"170":[240,2,127,255],"171":[240,2,127,255],"172":[240,2,127,255],"173":[240,2,127,255],"174":[240,2,127,255],"175":[240,2,127,255],"176":[240,2,127,255],"177":[240,2,127,255],"178":[240,2,127,255],"179":[240,2,127,255],"180":[240,2,127,255],"181":[240,2,127,255],"182":[240,2,127,255],"183":[240,2,127,255],"184":[240,2,127,255],"185":[240,2,127,255],"186":[240,2,127,255],"187":[240,2,127,255],"188":[240,2,127,255],"189":[240,2,127,255],"190":[240,2,127,255],"191":[240,2,127,255],"192":[191,91,22,255],"193":[191,91,22,255],"194":[191,91,22,255],"195":[191,91,22,255],"196":[191,91,22,255],"197":[191,91,22,255],"198":[191,91,22,255],"199":[191,91,22,255],"200":[191,91,22,255],"201":[191,91,22,255],"202":[191,91,22,255],"203":[191,91,22,255],"204":[191,91,22,255],"205":[191,91,22,255],"206":[191,91,22,255],"207":[191,91,22,255],"208":[191,91,22,255],"209":[191,91,22,255],"210":[191,91,22,255],"211":[191,91,22,255],"212":[191,91,22,255],"213":[191,91,22,255],"214":[191,91,22,255],"215":[191,91,22,255],"216":[191,91,22,255],"217":[191,91,22,255],"218":[191,91,22,255],"219":[191,91,22,255],"220":[191,91,22,255],"221":[191,91,22,255],"222":[191,91,22,255],"223":[191,91,22,255],"224":[102,102,102,255],"225":[102,102,102,255],"226":[102,102,102,255],"227":[102,102,102,255],"228":[102,102,102,255],"229":[102,102,102,255],"230":[102,102,102,255],"231":[102,102,102,255],"232":[102,102,102,255],"233":[102,102,102,255],"234":[102,102,102,255],"235":[102,102,102,255],"236":[102,102,102,255],"237":[102,102,102,255],"238":[102,102,102,255],"239":[102,102,102,255],"240":[102,102,102,255],"241":[102,102,102,255],"242":[102,102,102,255],"243":[102,102,102,255],"244":[102,102,102,255],"245":[102,102,102,255],"246":[102,102,102,255],"247":[102,102,102,255],"248":[102,102,102,255],"249":[102,102,102,255],"250":[102,102,102,255],"251":[102,102,102,255],"252":[102,102,102,255],"253":[102,102,102,255],"254":[102,102,102,255],"255":[102,102,102,255]}, +amp: {"0":[241,236,236,255],"1":[240,235,234,255],"2":[240,234,233,255],"3":[239,233,232,255],"4":[238,232,230,255],"5":[238,231,229,255],"6":[237,229,227,255],"7":[237,228,226,255],"8":[236,227,225,255],"9":[236,226,223,255],"10":[235,225,222,255],"11":[235,223,220,255],"12":[234,222,219,255],"13":[234,221,218,255],"14":[233,220,216,255],"15":[233,219,215,255],"16":[233,217,213,255],"17":[232,216,212,255],"18":[232,215,211,255],"19":[231,214,209,255],"20":[231,213,208,255],"21":[230,212,206,255],"22":[230,210,205,255],"23":[230,209,203,255],"24":[229,208,202,255],"25":[229,207,200,255],"26":[228,206,199,255],"27":[228,205,198,255],"28":[228,203,196,255],"29":[227,202,195,255],"30":[227,201,193,255],"31":[226,200,192,255],"32":[226,199,190,255],"33":[226,198,189,255],"34":[225,196,188,255],"35":[225,195,186,255],"36":[224,194,185,255],"37":[224,193,183,255],"38":[224,192,182,255],"39":[223,191,180,255],"40":[223,189,179,255],"41":[223,188,177,255],"42":[222,187,176,255],"43":[222,186,174,255],"44":[222,185,173,255],"45":[221,184,172,255],"46":[221,182,170,255],"47":[220,181,169,255],"48":[220,180,167,255],"49":[220,179,166,255],"50":[219,178,164,255],"51":[219,177,163,255],"52":[219,176,161,255],"53":[218,174,160,255],"54":[218,173,159,255],"55":[218,172,157,255],"56":[217,171,156,255],"57":[217,170,154,255],"58":[217,169,153,255],"59":[216,168,151,255],"60":[216,166,150,255],"61":[216,165,148,255],"62":[215,164,147,255],"63":[215,163,146,255],"64":[215,162,144,255],"65":[214,161,143,255],"66":[214,160,141,255],"67":[214,158,140,255],"68":[213,157,138,255],"69":[213,156,137,255],"70":[213,155,136,255],"71":[212,154,134,255],"72":[212,153,133,255],"73":[212,152,131,255],"74":[211,151,130,255],"75":[211,149,128,255],"76":[211,148,127,255],"77":[210,147,126,255],"78":[210,146,124,255],"79":[209,145,123,255],"80":[209,144,121,255],"81":[209,143,120,255],"82":[208,141,119,255],"83":[208,140,117,255],"84":[208,139,116,255],"85":[207,138,114,255],"86":[207,137,113,255],"87":[207,136,112,255],"88":[206,135,110,255],"89":[206,133,109,255],"90":[206,132,107,255],"91":[205,131,106,255],"92":[205,130,105,255],"93":[205,129,103,255],"94":[204,128,102,255],"95":[204,127,100,255],"96":[204,125,99,255],"97":[203,124,98,255],"98":[203,123,96,255],"99":[202,122,95,255],"100":[202,121,94,255],"101":[202,120,92,255],"102":[201,119,91,255],"103":[201,117,90,255],"104":[201,116,88,255],"105":[200,115,87,255],"106":[200,114,86,255],"107":[200,113,84,255],"108":[199,112,83,255],"109":[199,110,82,255],"110":[198,109,80,255],"111":[198,108,79,255],"112":[198,107,78,255],"113":[197,106,77,255],"114":[197,105,75,255],"115":[196,103,74,255],"116":[196,102,73,255],"117":[196,101,71,255],"118":[195,100,70,255],"119":[195,99,69,255],"120":[194,97,68,255],"121":[194,96,67,255],"122":[194,95,65,255],"123":[193,94,64,255],"124":[193,93,63,255],"125":[192,91,62,255],"126":[192,90,61,255],"127":[192,89,59,255],"128":[191,88,58,255],"129":[191,86,57,255],"130":[190,85,56,255],"131":[190,84,55,255],"132":[189,83,54,255],"133":[189,81,53,255],"134":[188,80,52,255],"135":[188,79,51,255],"136":[188,78,50,255],"137":[187,76,49,255],"138":[187,75,48,255],"139":[186,74,47,255],"140":[186,73,46,255],"141":[185,71,45,255],"142":[185,70,44,255],"143":[184,69,44,255],"144":[184,67,43,255],"145":[183,66,42,255],"146":[183,65,41,255],"147":[182,63,41,255],"148":[181,62,40,255],"149":[181,61,40,255],"150":[180,59,39,255],"151":[180,58,38,255],"152":[179,57,38,255],"153":[179,55,38,255],"154":[178,54,37,255],"155":[177,53,37,255],"156":[177,51,37,255],"157":[176,50,36,255],"158":[175,49,36,255],"159":[175,47,36,255],"160":[174,46,36,255],"161":[173,45,36,255],"162":[172,44,36,255],"163":[172,42,36,255],"164":[171,41,36,255],"165":[170,40,36,255],"166":[169,39,36,255],"167":[168,37,36,255],"168":[167,36,36,255],"169":[167,35,36,255],"170":[166,34,36,255],"171":[165,33,36,255],"172":[164,32,36,255],"173":[163,31,37,255],"174":[162,30,37,255],"175":[161,28,37,255],"176":[160,27,37,255],"177":[159,26,37,255],"178":[158,25,38,255],"179":[157,24,38,255],"180":[156,24,38,255],"181":[155,23,38,255],"182":[154,22,38,255],"183":[152,21,39,255],"184":[151,20,39,255],"185":[150,19,39,255],"186":[149,19,39,255],"187":[148,18,40,255],"188":[147,17,40,255],"189":[145,17,40,255],"190":[144,16,40,255],"191":[143,16,40,255],"192":[142,16,40,255],"193":[141,15,40,255],"194":[139,15,41,255],"195":[138,14,41,255],"196":[137,14,41,255],"197":[135,14,41,255],"198":[134,14,41,255],"199":[133,14,41,255],"200":[132,14,41,255],"201":[130,14,41,255],"202":[129,14,41,255],"203":[128,13,41,255],"204":[126,13,41,255],"205":[125,13,41,255],"206":[124,14,40,255],"207":[122,14,40,255],"208":[121,14,40,255],"209":[120,14,40,255],"210":[118,14,40,255],"211":[117,14,39,255],"212":[116,14,39,255],"213":[114,14,39,255],"214":[113,14,39,255],"215":[112,14,38,255],"216":[110,14,38,255],"217":[109,14,38,255],"218":[108,14,37,255],"219":[106,14,37,255],"220":[105,14,37,255],"221":[104,14,36,255],"222":[102,14,36,255],"223":[101,14,35,255],"224":[100,14,35,255],"225":[98,14,34,255],"226":[97,14,34,255],"227":[96,14,33,255],"228":[94,14,33,255],"229":[93,14,33,255],"230":[92,14,32,255],"231":[90,14,32,255],"232":[89,13,31,255],"233":[88,13,30,255],"234":[86,13,30,255],"235":[85,13,29,255],"236":[84,13,29,255],"237":[83,13,28,255],"238":[81,13,28,255],"239":[80,12,27,255],"240":[79,12,27,255],"241":[77,12,26,255],"242":[76,12,25,255],"243":[75,12,25,255],"244":[74,11,24,255],"245":[72,11,24,255],"246":[71,11,23,255],"247":[70,11,22,255],"248":[69,10,22,255],"249":[67,10,21,255],"250":[66,10,20,255],"251":[65,10,20,255],"252":[63,9,19,255],"253":[62,9,19,255],"254":[61,9,18,255],"255":[60,9,17,255]}, +cfastie: {"0":[255,255,255,255],"1":[250,250,250,255],"2":[246,246,246,255],"3":[242,242,242,255],"4":[238,238,238,255],"5":[233,233,233,255],"6":[229,229,229,255],"7":[225,225,225,255],"8":[221,221,221,255],"9":[216,216,216,255],"10":[212,212,212,255],"11":[208,208,208,255],"12":[204,204,204,255],"13":[200,200,200,255],"14":[195,195,195,255],"15":[191,191,191,255],"16":[187,187,187,255],"17":[183,183,183,255],"18":[178,178,178,255],"19":[174,174,174,255],"20":[170,170,170,255],"21":[166,166,166,255],"22":[161,161,161,255],"23":[157,157,157,255],"24":[153,153,153,255],"25":[149,149,149,255],"26":[145,145,145,255],"27":[140,140,140,255],"28":[136,136,136,255],"29":[132,132,132,255],"30":[128,128,128,255],"31":[123,123,123,255],"32":[119,119,119,255],"33":[115,115,115,255],"34":[111,111,111,255],"35":[106,106,106,255],"36":[102,102,102,255],"37":[98,98,98,255],"38":[94,94,94,255],"39":[90,90,90,255],"40":[85,85,85,255],"41":[81,81,81,255],"42":[77,77,77,255],"43":[73,73,73,255],"44":[68,68,68,255],"45":[64,64,64,255],"46":[60,60,60,255],"47":[56,56,56,255],"48":[52,52,52,255],"49":[56,56,56,255],"50":[60,60,60,255],"51":[64,64,64,255],"52":[68,68,68,255],"53":[73,73,73,255],"54":[77,77,77,255],"55":[81,81,81,255],"56":[85,85,85,255],"57":[90,90,90,255],"58":[94,94,94,255],"59":[98,98,98,255],"60":[102,102,102,255],"61":[106,106,106,255],"62":[111,111,111,255],"63":[115,115,115,255],"64":[119,119,119,255],"65":[123,123,123,255],"66":[128,128,128,255],"67":[132,132,132,255],"68":[136,136,136,255],"69":[140,140,140,255],"70":[145,145,145,255],"71":[149,149,149,255],"72":[153,153,153,255],"73":[157,157,157,255],"74":[161,161,161,255],"75":[166,166,166,255],"76":[170,170,170,255],"77":[174,174,174,255],"78":[178,178,178,255],"79":[183,183,183,255],"80":[187,187,187,255],"81":[191,191,191,255],"82":[195,195,195,255],"83":[200,200,200,255],"84":[204,204,204,255],"85":[208,208,208,255],"86":[212,212,212,255],"87":[216,216,216,255],"88":[221,221,221,255],"89":[225,225,225,255],"90":[229,229,229,255],"91":[233,233,233,255],"92":[238,238,238,255],"93":[242,242,242,255],"94":[246,246,246,255],"95":[250,250,250,255],"96":[255,255,255,255],"97":[250,250,250,255],"98":[245,245,245,255],"99":[240,240,240,255],"100":[235,235,235,255],"101":[230,230,230,255],"102":[225,225,225,255],"103":[220,220,220,255],"104":[215,215,215,255],"105":[210,210,210,255],"106":[205,205,205,255],"107":[200,200,200,255],"108":[195,195,195,255],"109":[190,190,190,255],"110":[185,185,185,255],"111":[180,180,180,255],"112":[175,175,175,255],"113":[170,170,170,255],"114":[165,165,165,255],"115":[160,160,160,255],"116":[155,155,155,255],"117":[151,151,151,255],"118":[146,146,146,255],"119":[141,141,141,255],"120":[136,136,136,255],"121":[131,131,131,255],"122":[126,126,126,255],"123":[121,121,121,255],"124":[116,116,116,255],"125":[111,111,111,255],"126":[106,106,106,255],"127":[101,101,101,255],"128":[96,96,96,255],"129":[91,91,91,255],"130":[86,86,86,255],"131":[81,81,81,255],"132":[76,76,76,255],"133":[71,71,71,255],"134":[66,66,66,255],"135":[61,61,61,255],"136":[56,56,56,255],"137":[66,66,80,255],"138":[77,77,105,255],"139":[87,87,130,255],"140":[98,98,155,255],"141":[108,108,180,255],"142":[119,119,205,255],"143":[129,129,230,255],"144":[140,140,255,255],"145":[131,147,239,255],"146":[122,154,223,255],"147":[113,161,207,255],"148":[105,168,191,255],"149":[96,175,175,255],"150":[87,183,159,255],"151":[78,190,143,255],"152":[70,197,127,255],"153":[61,204,111,255],"154":[52,211,95,255],"155":[43,219,79,255],"156":[35,226,63,255],"157":[26,233,47,255],"158":[17,240,31,255],"159":[8,247,15,255],"160":[1,255,1,255],"161":[7,255,1,255],"162":[15,255,1,255],"163":[23,255,1,255],"164":[31,255,1,255],"165":[39,255,1,255],"166":[47,255,1,255],"167":[55,255,1,255],"168":[63,255,1,255],"169":[71,255,1,255],"170":[79,255,1,255],"171":[87,255,1,255],"172":[95,255,1,255],"173":[103,255,1,255],"174":[111,255,1,255],"175":[119,255,1,255],"176":[127,255,1,255],"177":[135,255,1,255],"178":[143,255,1,255],"179":[151,255,1,255],"180":[159,255,1,255],"181":[167,255,1,255],"182":[175,255,1,255],"183":[183,255,1,255],"184":[191,255,1,255],"185":[199,255,1,255],"186":[207,255,1,255],"187":[215,255,1,255],"188":[223,255,1,255],"189":[231,255,1,255],"190":[239,255,1,255],"191":[247,255,1,255],"192":[255,255,1,255],"193":[255,249,1,255],"194":[255,244,1,255],"195":[255,239,1,255],"196":[255,233,1,255],"197":[255,228,1,255],"198":[255,223,1,255],"199":[255,217,1,255],"200":[255,212,1,255],"201":[255,207,1,255],"202":[255,201,1,255],"203":[255,196,1,255],"204":[255,191,1,255],"205":[255,185,1,255],"206":[255,180,1,255],"207":[255,175,1,255],"208":[255,170,1,255],"209":[255,164,1,255],"210":[255,159,1,255],"211":[255,154,1,255],"212":[255,148,1,255],"213":[255,143,1,255],"214":[255,138,1,255],"215":[255,132,1,255],"216":[255,127,1,255],"217":[255,122,1,255],"218":[255,116,1,255],"219":[255,111,1,255],"220":[255,106,1,255],"221":[255,100,1,255],"222":[255,95,1,255],"223":[255,90,1,255],"224":[255,85,1,255],"225":[255,79,1,255],"226":[255,74,1,255],"227":[255,69,1,255],"228":[255,63,1,255],"229":[255,58,1,255],"230":[255,53,1,255],"231":[255,47,1,255],"232":[255,42,1,255],"233":[255,37,1,255],"234":[255,31,1,255],"235":[255,26,1,255],"236":[255,21,1,255],"237":[255,15,1,255],"238":[255,10,1,255],"239":[255,5,1,255],"240":[255,1,1,255],"241":[255,1,15,255],"242":[255,1,31,255],"243":[255,1,47,255],"244":[255,1,63,255],"245":[255,1,79,255],"246":[255,1,95,255],"247":[255,1,111,255],"248":[255,1,127,255],"249":[255,1,143,255],"250":[255,1,159,255],"251":[255,1,175,255],"252":[255,1,191,255],"253":[255,1,207,255],"254":[255,1,223,255],"255":[255,1,239,255]}, +curl: {"0":[20,29,67,255],"1":[21,31,68,255],"2":[21,33,69,255],"3":[22,35,70,255],"4":[22,37,71,255],"5":[23,39,72,255],"6":[23,41,74,255],"7":[24,43,75,255],"8":[24,45,76,255],"9":[24,47,77,255],"10":[25,48,78,255],"11":[25,50,79,255],"12":[25,52,80,255],"13":[26,54,82,255],"14":[26,56,83,255],"15":[26,58,84,255],"16":[27,60,85,255],"17":[27,61,86,255],"18":[27,63,87,255],"19":[27,65,89,255],"20":[27,67,90,255],"21":[27,69,91,255],"22":[28,71,92,255],"23":[28,72,93,255],"24":[28,74,94,255],"25":[28,76,96,255],"26":[28,78,97,255],"27":[27,80,98,255],"28":[27,82,99,255],"29":[27,83,100,255],"30":[27,85,101,255],"31":[27,87,102,255],"32":[26,89,103,255],"33":[26,91,105,255],"34":[26,93,106,255],"35":[25,95,107,255],"36":[25,96,108,255],"37":[24,98,109,255],"38":[23,100,110,255],"39":[23,102,111,255],"40":[22,104,112,255],"41":[21,106,113,255],"42":[21,108,114,255],"43":[20,110,115,255],"44":[19,112,115,255],"45":[18,113,116,255],"46":[18,115,117,255],"47":[17,117,118,255],"48":[17,119,119,255],"49":[16,121,119,255],"50":[16,123,120,255],"51":[16,125,121,255],"52":[17,127,122,255],"53":[17,128,122,255],"54":[18,130,123,255],"55":[20,132,123,255],"56":[21,134,124,255],"57":[23,136,124,255],"58":[26,138,125,255],"59":[28,139,125,255],"60":[31,141,126,255],"61":[34,143,126,255],"62":[37,145,126,255],"63":[41,146,127,255],"64":[44,148,127,255],"65":[48,150,127,255],"66":[52,151,128,255],"67":[56,153,128,255],"68":[60,154,129,255],"69":[63,156,129,255],"70":[68,157,130,255],"71":[72,159,130,255],"72":[76,160,131,255],"73":[80,162,131,255],"74":[84,163,132,255],"75":[88,165,133,255],"76":[92,166,133,255],"77":[95,168,134,255],"78":[99,169,135,255],"79":[103,170,136,255],"80":[107,172,137,255],"81":[111,173,138,255],"82":[115,174,140,255],"83":[118,176,141,255],"84":[122,177,142,255],"85":[126,178,143,255],"86":[129,180,145,255],"87":[133,181,146,255],"88":[136,183,148,255],"89":[140,184,150,255],"90":[143,185,151,255],"91":[146,187,153,255],"92":[150,188,155,255],"93":[153,189,156,255],"94":[156,191,158,255],"95":[160,192,160,255],"96":[163,194,162,255],"97":[166,195,164,255],"98":[169,196,166,255],"99":[173,198,169,255],"100":[176,199,171,255],"101":[179,201,173,255],"102":[182,202,175,255],"103":[185,204,177,255],"104":[188,205,180,255],"105":[191,207,182,255],"106":[194,208,185,255],"107":[197,210,187,255],"108":[200,212,190,255],"109":[203,213,192,255],"110":[206,215,195,255],"111":[209,216,197,255],"112":[212,218,200,255],"113":[214,220,203,255],"114":[217,221,205,255],"115":[220,223,208,255],"116":[223,225,211,255],"117":[226,226,214,255],"118":[229,228,216,255],"119":[231,230,219,255],"120":[234,232,222,255],"121":[237,233,225,255],"122":[240,235,228,255],"123":[243,237,231,255],"124":[245,239,234,255],"125":[248,241,237,255],"126":[251,243,240,255],"127":[253,245,243,255],"128":[253,245,243,255],"129":[251,242,240,255],"130":[250,240,237,255],"131":[249,237,233,255],"132":[248,235,230,255],"133":[247,233,227,255],"134":[246,230,223,255],"135":[245,228,220,255],"136":[244,225,216,255],"137":[243,223,213,255],"138":[242,220,210,255],"139":[241,218,206,255],"140":[240,215,203,255],"141":[239,213,200,255],"142":[238,210,196,255],"143":[237,208,193,255],"144":[236,205,190,255],"145":[236,203,187,255],"146":[235,200,183,255],"147":[234,198,180,255],"148":[233,195,177,255],"149":[233,193,174,255],"150":[232,191,171,255],"151":[231,188,168,255],"152":[231,186,165,255],"153":[230,183,162,255],"154":[229,181,159,255],"155":[229,178,156,255],"156":[228,176,153,255],"157":[227,173,150,255],"158":[227,171,147,255],"159":[226,168,145,255],"160":[225,166,142,255],"161":[225,163,139,255],"162":[224,160,137,255],"163":[223,158,134,255],"164":[223,155,132,255],"165":[222,153,130,255],"166":[221,150,127,255],"167":[221,148,125,255],"168":[220,145,123,255],"169":[219,143,121,255],"170":[219,140,119,255],"171":[218,138,117,255],"172":[217,135,115,255],"173":[216,133,113,255],"174":[215,130,112,255],"175":[215,128,110,255],"176":[214,125,109,255],"177":[213,123,107,255],"178":[212,120,106,255],"179":[211,118,105,255],"180":[210,115,104,255],"181":[209,113,103,255],"182":[208,111,102,255],"183":[206,108,101,255],"184":[205,106,100,255],"185":[204,104,100,255],"186":[203,101,99,255],"187":[201,99,98,255],"188":[200,97,98,255],"189":[199,94,97,255],"190":[197,92,97,255],"191":[196,90,97,255],"192":[194,88,96,255],"193":[193,86,96,255],"194":[191,83,96,255],"195":[189,81,96,255],"196":[188,79,96,255],"197":[186,77,96,255],"198":[184,75,96,255],"199":[183,73,95,255],"200":[181,71,95,255],"201":[179,69,95,255],"202":[177,67,95,255],"203":[176,65,95,255],"204":[174,63,95,255],"205":[172,61,96,255],"206":[170,60,96,255],"207":[168,58,96,255],"208":[166,56,96,255],"209":[164,54,96,255],"210":[162,52,96,255],"211":[160,51,96,255],"212":[158,49,96,255],"213":[156,47,96,255],"214":[154,45,96,255],"215":[151,44,96,255],"216":[149,42,96,255],"217":[147,41,96,255],"218":[145,39,96,255],"219":[143,38,96,255],"220":[140,36,96,255],"221":[138,35,96,255],"222":[136,33,96,255],"223":[133,32,95,255],"224":[131,31,95,255],"225":[129,30,95,255],"226":[126,28,95,255],"227":[124,27,94,255],"228":[121,26,94,255],"229":[119,25,93,255],"230":[116,25,93,255],"231":[114,24,92,255],"232":[111,23,91,255],"233":[109,22,90,255],"234":[106,22,89,255],"235":[103,21,88,255],"236":[101,21,87,255],"237":[98,20,86,255],"238":[95,20,85,255],"239":[93,20,83,255],"240":[90,19,82,255],"241":[87,19,80,255],"242":[85,19,79,255],"243":[82,18,77,255],"244":[79,18,75,255],"245":[77,18,74,255],"246":[74,17,72,255],"247":[72,17,70,255],"248":[69,16,68,255],"249":[66,16,66,255],"250":[64,16,64,255],"251":[61,15,61,255],"252":[59,14,59,255],"253":[56,14,57,255],"254":[54,13,55,255],"255":[51,13,53,255]}, +dark2: {"0":[27,158,119,255],"1":[27,158,119,255],"2":[27,158,119,255],"3":[27,158,119,255],"4":[27,158,119,255],"5":[27,158,119,255],"6":[27,158,119,255],"7":[27,158,119,255],"8":[27,158,119,255],"9":[27,158,119,255],"10":[27,158,119,255],"11":[27,158,119,255],"12":[27,158,119,255],"13":[27,158,119,255],"14":[27,158,119,255],"15":[27,158,119,255],"16":[27,158,119,255],"17":[27,158,119,255],"18":[27,158,119,255],"19":[27,158,119,255],"20":[27,158,119,255],"21":[27,158,119,255],"22":[27,158,119,255],"23":[27,158,119,255],"24":[27,158,119,255],"25":[27,158,119,255],"26":[27,158,119,255],"27":[27,158,119,255],"28":[27,158,119,255],"29":[27,158,119,255],"30":[27,158,119,255],"31":[27,158,119,255],"32":[217,95,2,255],"33":[217,95,2,255],"34":[217,95,2,255],"35":[217,95,2,255],"36":[217,95,2,255],"37":[217,95,2,255],"38":[217,95,2,255],"39":[217,95,2,255],"40":[217,95,2,255],"41":[217,95,2,255],"42":[217,95,2,255],"43":[217,95,2,255],"44":[217,95,2,255],"45":[217,95,2,255],"46":[217,95,2,255],"47":[217,95,2,255],"48":[217,95,2,255],"49":[217,95,2,255],"50":[217,95,2,255],"51":[217,95,2,255],"52":[217,95,2,255],"53":[217,95,2,255],"54":[217,95,2,255],"55":[217,95,2,255],"56":[217,95,2,255],"57":[217,95,2,255],"58":[217,95,2,255],"59":[217,95,2,255],"60":[217,95,2,255],"61":[217,95,2,255],"62":[217,95,2,255],"63":[217,95,2,255],"64":[117,112,179,255],"65":[117,112,179,255],"66":[117,112,179,255],"67":[117,112,179,255],"68":[117,112,179,255],"69":[117,112,179,255],"70":[117,112,179,255],"71":[117,112,179,255],"72":[117,112,179,255],"73":[117,112,179,255],"74":[117,112,179,255],"75":[117,112,179,255],"76":[117,112,179,255],"77":[117,112,179,255],"78":[117,112,179,255],"79":[117,112,179,255],"80":[117,112,179,255],"81":[117,112,179,255],"82":[117,112,179,255],"83":[117,112,179,255],"84":[117,112,179,255],"85":[117,112,179,255],"86":[117,112,179,255],"87":[117,112,179,255],"88":[117,112,179,255],"89":[117,112,179,255],"90":[117,112,179,255],"91":[117,112,179,255],"92":[117,112,179,255],"93":[117,112,179,255],"94":[117,112,179,255],"95":[117,112,179,255],"96":[231,41,138,255],"97":[231,41,138,255],"98":[231,41,138,255],"99":[231,41,138,255],"100":[231,41,138,255],"101":[231,41,138,255],"102":[231,41,138,255],"103":[231,41,138,255],"104":[231,41,138,255],"105":[231,41,138,255],"106":[231,41,138,255],"107":[231,41,138,255],"108":[231,41,138,255],"109":[231,41,138,255],"110":[231,41,138,255],"111":[231,41,138,255],"112":[231,41,138,255],"113":[231,41,138,255],"114":[231,41,138,255],"115":[231,41,138,255],"116":[231,41,138,255],"117":[231,41,138,255],"118":[231,41,138,255],"119":[231,41,138,255],"120":[231,41,138,255],"121":[231,41,138,255],"122":[231,41,138,255],"123":[231,41,138,255],"124":[231,41,138,255],"125":[231,41,138,255],"126":[231,41,138,255],"127":[231,41,138,255],"128":[102,166,30,255],"129":[102,166,30,255],"130":[102,166,30,255],"131":[102,166,30,255],"132":[102,166,30,255],"133":[102,166,30,255],"134":[102,166,30,255],"135":[102,166,30,255],"136":[102,166,30,255],"137":[102,166,30,255],"138":[102,166,30,255],"139":[102,166,30,255],"140":[102,166,30,255],"141":[102,166,30,255],"142":[102,166,30,255],"143":[102,166,30,255],"144":[102,166,30,255],"145":[102,166,30,255],"146":[102,166,30,255],"147":[102,166,30,255],"148":[102,166,30,255],"149":[102,166,30,255],"150":[102,166,30,255],"151":[102,166,30,255],"152":[102,166,30,255],"153":[102,166,30,255],"154":[102,166,30,255],"155":[102,166,30,255],"156":[102,166,30,255],"157":[102,166,30,255],"158":[102,166,30,255],"159":[102,166,30,255],"160":[230,171,2,255],"161":[230,171,2,255],"162":[230,171,2,255],"163":[230,171,2,255],"164":[230,171,2,255],"165":[230,171,2,255],"166":[230,171,2,255],"167":[230,171,2,255],"168":[230,171,2,255],"169":[230,171,2,255],"170":[230,171,2,255],"171":[230,171,2,255],"172":[230,171,2,255],"173":[230,171,2,255],"174":[230,171,2,255],"175":[230,171,2,255],"176":[230,171,2,255],"177":[230,171,2,255],"178":[230,171,2,255],"179":[230,171,2,255],"180":[230,171,2,255],"181":[230,171,2,255],"182":[230,171,2,255],"183":[230,171,2,255],"184":[230,171,2,255],"185":[230,171,2,255],"186":[230,171,2,255],"187":[230,171,2,255],"188":[230,171,2,255],"189":[230,171,2,255],"190":[230,171,2,255],"191":[230,171,2,255],"192":[166,118,29,255],"193":[166,118,29,255],"194":[166,118,29,255],"195":[166,118,29,255],"196":[166,118,29,255],"197":[166,118,29,255],"198":[166,118,29,255],"199":[166,118,29,255],"200":[166,118,29,255],"201":[166,118,29,255],"202":[166,118,29,255],"203":[166,118,29,255],"204":[166,118,29,255],"205":[166,118,29,255],"206":[166,118,29,255],"207":[166,118,29,255],"208":[166,118,29,255],"209":[166,118,29,255],"210":[166,118,29,255],"211":[166,118,29,255],"212":[166,118,29,255],"213":[166,118,29,255],"214":[166,118,29,255],"215":[166,118,29,255],"216":[166,118,29,255],"217":[166,118,29,255],"218":[166,118,29,255],"219":[166,118,29,255],"220":[166,118,29,255],"221":[166,118,29,255],"222":[166,118,29,255],"223":[166,118,29,255],"224":[102,102,102,255],"225":[102,102,102,255],"226":[102,102,102,255],"227":[102,102,102,255],"228":[102,102,102,255],"229":[102,102,102,255],"230":[102,102,102,255],"231":[102,102,102,255],"232":[102,102,102,255],"233":[102,102,102,255],"234":[102,102,102,255],"235":[102,102,102,255],"236":[102,102,102,255],"237":[102,102,102,255],"238":[102,102,102,255],"239":[102,102,102,255],"240":[102,102,102,255],"241":[102,102,102,255],"242":[102,102,102,255],"243":[102,102,102,255],"244":[102,102,102,255],"245":[102,102,102,255],"246":[102,102,102,255],"247":[102,102,102,255],"248":[102,102,102,255],"249":[102,102,102,255],"250":[102,102,102,255],"251":[102,102,102,255],"252":[102,102,102,255],"253":[102,102,102,255],"254":[102,102,102,255],"255":[102,102,102,255]}, +deep: {"0":[253,253,204,255],"1":[251,252,202,255],"2":[249,252,201,255],"3":[247,251,200,255],"4":[245,250,199,255],"5":[243,249,198,255],"6":[241,248,196,255],"7":[239,248,195,255],"8":[237,247,194,255],"9":[235,246,193,255],"10":[232,245,192,255],"11":[230,245,191,255],"12":[228,244,190,255],"13":[226,243,189,255],"14":[224,242,188,255],"15":[222,242,187,255],"16":[220,241,186,255],"17":[218,240,185,255],"18":[216,240,184,255],"19":[214,239,183,255],"20":[212,238,182,255],"21":[210,237,181,255],"22":[208,237,180,255],"23":[206,236,179,255],"24":[204,235,178,255],"25":[201,235,177,255],"26":[199,234,176,255],"27":[197,233,176,255],"28":[195,232,175,255],"29":[193,232,174,255],"30":[191,231,173,255],"31":[189,230,173,255],"32":[187,230,172,255],"33":[184,229,171,255],"34":[182,228,170,255],"35":[180,227,170,255],"36":[178,227,169,255],"37":[176,226,169,255],"38":[174,225,168,255],"39":[171,225,168,255],"40":[169,224,167,255],"41":[167,223,167,255],"42":[165,222,166,255],"43":[163,222,166,255],"44":[160,221,165,255],"45":[158,220,165,255],"46":[156,219,165,255],"47":[154,219,164,255],"48":[152,218,164,255],"49":[149,217,164,255],"50":[147,216,163,255],"51":[145,216,163,255],"52":[143,215,163,255],"53":[141,214,163,255],"54":[139,213,163,255],"55":[137,213,163,255],"56":[135,212,163,255],"57":[133,211,163,255],"58":[131,210,162,255],"59":[129,209,162,255],"60":[127,209,162,255],"61":[125,208,162,255],"62":[123,207,162,255],"63":[121,206,162,255],"64":[119,205,162,255],"65":[118,204,163,255],"66":[116,203,163,255],"67":[114,202,163,255],"68":[113,202,163,255],"69":[111,201,163,255],"70":[110,200,163,255],"71":[108,199,163,255],"72":[107,198,163,255],"73":[105,197,163,255],"74":[104,196,163,255],"75":[103,195,163,255],"76":[102,194,163,255],"77":[100,193,163,255],"78":[99,192,163,255],"79":[98,191,163,255],"80":[97,190,163,255],"81":[96,189,163,255],"82":[95,188,163,255],"83":[94,187,163,255],"84":[93,186,163,255],"85":[92,185,163,255],"86":[92,184,163,255],"87":[91,183,163,255],"88":[90,182,163,255],"89":[89,181,163,255],"90":[88,180,163,255],"91":[88,179,163,255],"92":[87,178,163,255],"93":[86,177,163,255],"94":[86,176,163,255],"95":[85,175,163,255],"96":[85,174,163,255],"97":[84,173,163,255],"98":[83,172,163,255],"99":[83,171,163,255],"100":[82,170,163,255],"101":[82,169,162,255],"102":[81,168,162,255],"103":[81,167,162,255],"104":[81,166,162,255],"105":[80,165,162,255],"106":[80,164,162,255],"107":[79,163,162,255],"108":[79,162,161,255],"109":[78,161,161,255],"110":[78,160,161,255],"111":[78,159,161,255],"112":[77,158,161,255],"113":[77,156,160,255],"114":[76,155,160,255],"115":[76,154,160,255],"116":[76,153,160,255],"117":[75,152,160,255],"118":[75,151,159,255],"119":[75,150,159,255],"120":[74,149,159,255],"121":[74,148,159,255],"122":[74,147,159,255],"123":[73,146,158,255],"124":[73,145,158,255],"125":[73,144,158,255],"126":[72,143,158,255],"127":[72,142,157,255],"128":[72,141,157,255],"129":[71,140,157,255],"130":[71,139,157,255],"131":[71,138,157,255],"132":[70,137,156,255],"133":[70,136,156,255],"134":[70,135,156,255],"135":[69,134,156,255],"136":[69,133,155,255],"137":[69,132,155,255],"138":[68,131,155,255],"139":[68,130,155,255],"140":[68,129,154,255],"141":[67,129,154,255],"142":[67,128,154,255],"143":[67,127,154,255],"144":[66,126,154,255],"145":[66,125,153,255],"146":[66,124,153,255],"147":[66,123,153,255],"148":[65,122,153,255],"149":[65,121,153,255],"150":[65,120,152,255],"151":[64,119,152,255],"152":[64,118,152,255],"153":[64,117,152,255],"154":[64,116,151,255],"155":[63,115,151,255],"156":[63,114,151,255],"157":[63,113,151,255],"158":[63,112,151,255],"159":[63,111,150,255],"160":[62,110,150,255],"161":[62,109,150,255],"162":[62,108,150,255],"163":[62,107,150,255],"164":[62,106,149,255],"165":[62,105,149,255],"166":[62,103,149,255],"167":[61,102,149,255],"168":[61,101,149,255],"169":[61,100,148,255],"170":[61,99,148,255],"171":[61,98,148,255],"172":[61,97,148,255],"173":[61,96,147,255],"174":[61,95,147,255],"175":[61,94,147,255],"176":[61,93,147,255],"177":[61,92,146,255],"178":[61,91,146,255],"179":[61,90,146,255],"180":[61,89,145,255],"181":[62,88,145,255],"182":[62,87,145,255],"183":[62,85,144,255],"184":[62,84,144,255],"185":[62,83,143,255],"186":[62,82,143,255],"187":[63,81,142,255],"188":[63,80,142,255],"189":[63,79,141,255],"190":[63,78,140,255],"191":[64,77,139,255],"192":[64,76,138,255],"193":[64,75,137,255],"194":[64,74,136,255],"195":[64,72,135,255],"196":[65,71,134,255],"197":[65,70,133,255],"198":[65,69,132,255],"199":[65,69,130,255],"200":[65,68,129,255],"201":[65,67,127,255],"202":[65,66,126,255],"203":[65,65,124,255],"204":[65,64,123,255],"205":[65,63,121,255],"206":[65,62,120,255],"207":[64,61,118,255],"208":[64,61,116,255],"209":[64,60,115,255],"210":[64,59,113,255],"211":[63,58,111,255],"212":[63,57,110,255],"213":[63,57,108,255],"214":[62,56,106,255],"215":[62,55,105,255],"216":[62,54,103,255],"217":[61,54,101,255],"218":[61,53,99,255],"219":[61,52,98,255],"220":[60,51,96,255],"221":[60,51,95,255],"222":[59,50,93,255],"223":[59,49,91,255],"224":[58,48,90,255],"225":[58,48,88,255],"226":[57,47,86,255],"227":[57,46,85,255],"228":[56,46,83,255],"229":[56,45,82,255],"230":[55,44,80,255],"231":[54,43,78,255],"232":[54,43,77,255],"233":[53,42,75,255],"234":[53,41,74,255],"235":[52,41,72,255],"236":[52,40,71,255],"237":[51,39,69,255],"238":[50,38,68,255],"239":[50,38,66,255],"240":[49,37,65,255],"241":[49,36,63,255],"242":[48,35,62,255],"243":[47,35,60,255],"244":[47,34,59,255],"245":[46,33,57,255],"246":[45,32,56,255],"247":[45,32,55,255],"248":[44,31,53,255],"249":[43,30,52,255],"250":[43,29,50,255],"251":[42,29,49,255],"252":[41,28,48,255],"253":[41,27,46,255],"254":[40,26,45,255],"255":[39,26,44,255]}, +delta: {"0":[16,31,63,255],"1":[18,32,66,255],"2":[19,34,69,255],"3":[20,35,73,255],"4":[22,37,76,255],"5":[23,38,79,255],"6":[24,39,82,255],"7":[25,41,86,255],"8":[27,42,89,255],"9":[28,43,92,255],"10":[29,45,96,255],"11":[30,46,99,255],"12":[31,47,103,255],"13":[32,48,107,255],"14":[33,50,110,255],"15":[34,51,114,255],"16":[35,52,118,255],"17":[36,53,122,255],"18":[37,55,125,255],"19":[37,56,129,255],"20":[38,57,133,255],"21":[38,59,137,255],"22":[38,60,141,255],"23":[38,62,144,255],"24":[37,64,148,255],"25":[35,66,150,255],"26":[34,68,152,255],"27":[33,70,153,255],"28":[31,72,154,255],"29":[30,75,155,255],"30":[29,77,155,255],"31":[29,79,156,255],"32":[28,81,156,255],"33":[27,83,157,255],"34":[27,86,157,255],"35":[26,88,157,255],"36":[26,90,157,255],"37":[26,92,158,255],"38":[26,94,158,255],"39":[26,96,158,255],"40":[27,98,159,255],"41":[27,100,159,255],"42":[27,102,159,255],"43":[28,104,160,255],"44":[28,106,160,255],"45":[29,108,160,255],"46":[30,110,161,255],"47":[31,112,161,255],"48":[31,114,161,255],"49":[32,116,162,255],"50":[33,118,162,255],"51":[34,120,163,255],"52":[35,121,163,255],"53":[36,123,164,255],"54":[38,125,164,255],"55":[39,127,165,255],"56":[40,129,165,255],"57":[41,131,165,255],"58":[42,133,166,255],"59":[44,135,166,255],"60":[45,137,167,255],"61":[47,139,167,255],"62":[48,141,168,255],"63":[49,142,168,255],"64":[51,144,169,255],"65":[53,146,169,255],"66":[54,148,170,255],"67":[56,150,170,255],"68":[58,152,171,255],"69":[60,154,171,255],"70":[62,156,172,255],"71":[64,157,172,255],"72":[66,159,173,255],"73":[68,161,173,255],"74":[71,163,174,255],"75":[73,165,174,255],"76":[76,167,174,255],"77":[79,168,175,255],"78":[82,170,175,255],"79":[86,172,176,255],"80":[89,173,176,255],"81":[93,175,176,255],"82":[96,177,177,255],"83":[100,178,177,255],"84":[104,180,178,255],"85":[108,181,179,255],"86":[112,183,179,255],"87":[116,184,180,255],"88":[120,185,181,255],"89":[124,187,182,255],"90":[128,188,183,255],"91":[132,190,184,255],"92":[136,191,185,255],"93":[140,193,186,255],"94":[143,194,187,255],"95":[147,196,188,255],"96":[151,197,190,255],"97":[154,198,191,255],"98":[158,200,192,255],"99":[162,201,193,255],"100":[165,203,195,255],"101":[169,204,196,255],"102":[172,206,197,255],"103":[175,208,199,255],"104":[179,209,200,255],"105":[182,211,202,255],"106":[185,212,203,255],"107":[189,214,204,255],"108":[192,215,206,255],"109":[195,217,207,255],"110":[199,219,209,255],"111":[202,220,210,255],"112":[205,222,212,255],"113":[208,224,213,255],"114":[211,226,215,255],"115":[214,227,216,255],"116":[217,229,218,255],"117":[221,231,219,255],"118":[224,233,220,255],"119":[227,235,222,255],"120":[230,237,223,255],"121":[233,238,224,255],"122":[236,240,225,255],"123":[239,242,226,255],"124":[243,244,227,255],"125":[246,246,228,255],"126":[249,248,229,255],"127":[253,250,229,255],"128":[254,252,203,255],"129":[253,249,199,255],"130":[251,247,195,255],"131":[250,244,191,255],"132":[249,242,187,255],"133":[247,240,182,255],"134":[246,237,178,255],"135":[245,235,174,255],"136":[243,233,169,255],"137":[242,230,165,255],"138":[241,228,161,255],"139":[239,226,156,255],"140":[238,223,152,255],"141":[236,221,148,255],"142":[235,219,143,255],"143":[234,217,139,255],"144":[232,215,135,255],"145":[230,213,130,255],"146":[229,210,126,255],"147":[227,208,122,255],"148":[226,206,117,255],"149":[224,204,113,255],"150":[222,202,109,255],"151":[220,201,104,255],"152":[218,199,100,255],"153":[216,197,96,255],"154":[214,195,91,255],"155":[212,193,87,255],"156":[210,192,83,255],"157":[207,190,79,255],"158":[205,188,75,255],"159":[203,187,71,255],"160":[200,185,67,255],"161":[197,184,63,255],"162":[195,182,59,255],"163":[192,181,56,255],"164":[189,179,52,255],"165":[186,178,48,255],"166":[183,177,45,255],"167":[180,175,42,255],"168":[177,174,39,255],"169":[174,173,35,255],"170":[170,172,32,255],"171":[167,170,29,255],"172":[164,169,27,255],"173":[160,168,24,255],"174":[157,167,21,255],"175":[154,166,19,255],"176":[150,164,16,255],"177":[147,163,14,255],"178":[143,162,12,255],"179":[140,161,10,255],"180":[136,160,8,255],"181":[133,158,7,255],"182":[129,157,6,255],"183":[126,156,5,255],"184":[122,155,5,255],"185":[119,153,5,255],"186":[115,152,5,255],"187":[112,151,6,255],"188":[108,150,7,255],"189":[104,149,8,255],"190":[101,147,9,255],"191":[97,146,11,255],"192":[93,145,12,255],"193":[90,143,14,255],"194":[86,142,15,255],"195":[82,141,17,255],"196":[79,139,19,255],"197":[75,138,20,255],"198":[71,137,22,255],"199":[68,135,23,255],"200":[64,134,25,255],"201":[61,132,26,255],"202":[57,131,28,255],"203":[54,129,29,255],"204":[50,128,30,255],"205":[47,126,32,255],"206":[43,125,33,255],"207":[40,123,34,255],"208":[37,122,35,255],"209":[34,120,36,255],"210":[31,118,37,255],"211":[28,117,38,255],"212":[25,115,39,255],"213":[23,113,40,255],"214":[20,112,40,255],"215":[18,110,41,255],"216":[16,108,42,255],"217":[14,106,42,255],"218":[13,105,43,255],"219":[12,103,43,255],"220":[11,101,44,255],"221":[10,99,44,255],"222":[10,97,44,255],"223":[11,95,44,255],"224":[11,94,44,255],"225":[12,92,44,255],"226":[12,90,44,255],"227":[13,88,44,255],"228":[14,86,44,255],"229":[15,84,44,255],"230":[16,82,43,255],"231":[17,80,43,255],"232":[18,78,43,255],"233":[19,76,42,255],"234":[20,75,42,255],"235":[20,73,41,255],"236":[21,71,40,255],"237":[22,69,40,255],"238":[22,67,39,255],"239":[23,65,38,255],"240":[23,63,37,255],"241":[24,61,36,255],"242":[24,59,35,255],"243":[24,57,34,255],"244":[25,55,33,255],"245":[25,53,32,255],"246":[25,52,31,255],"247":[25,50,30,255],"248":[25,48,28,255],"249":[25,46,27,255],"250":[24,44,26,255],"251":[24,42,24,255],"252":[24,40,23,255],"253":[23,38,21,255],"254":[23,36,20,255],"255":[23,35,18,255]}, +dense: {"0":[230,240,240,255],"1":[228,239,239,255],"2":[226,239,239,255],"3":[224,238,238,255],"4":[223,237,238,255],"5":[221,236,237,255],"6":[219,235,236,255],"7":[218,235,236,255],"8":[216,234,235,255],"9":[214,233,235,255],"10":[212,232,234,255],"11":[211,231,234,255],"12":[209,230,233,255],"13":[207,230,233,255],"14":[206,229,232,255],"15":[204,228,232,255],"16":[202,227,231,255],"17":[201,226,231,255],"18":[199,225,231,255],"19":[197,225,230,255],"20":[196,224,230,255],"21":[194,223,230,255],"22":[192,222,229,255],"23":[191,221,229,255],"24":[189,220,229,255],"25":[187,220,228,255],"26":[186,219,228,255],"27":[184,218,228,255],"28":[183,217,228,255],"29":[181,216,228,255],"30":[179,215,227,255],"31":[178,215,227,255],"32":[176,214,227,255],"33":[175,213,227,255],"34":[173,212,227,255],"35":[172,211,227,255],"36":[170,210,226,255],"37":[169,209,226,255],"38":[167,209,226,255],"39":[166,208,226,255],"40":[164,207,226,255],"41":[163,206,226,255],"42":[161,205,226,255],"43":[160,204,226,255],"44":[159,203,226,255],"45":[157,202,226,255],"46":[156,201,226,255],"47":[154,201,226,255],"48":[153,200,226,255],"49":[152,199,226,255],"50":[150,198,226,255],"51":[149,197,226,255],"52":[148,196,226,255],"53":[146,195,226,255],"54":[145,194,226,255],"55":[144,193,226,255],"56":[143,192,226,255],"57":[141,191,226,255],"58":[140,190,226,255],"59":[139,190,226,255],"60":[138,189,226,255],"61":[137,188,226,255],"62":[136,187,226,255],"63":[135,186,226,255],"64":[134,185,226,255],"65":[133,184,226,255],"66":[132,183,227,255],"67":[131,182,227,255],"68":[130,181,227,255],"69":[129,180,227,255],"70":[128,179,227,255],"71":[127,178,227,255],"72":[126,177,227,255],"73":[125,176,227,255],"74":[124,175,227,255],"75":[124,174,227,255],"76":[123,173,227,255],"77":[122,172,228,255],"78":[122,171,228,255],"79":[121,170,228,255],"80":[120,169,228,255],"81":[120,167,228,255],"82":[119,166,228,255],"83":[119,165,228,255],"84":[118,164,228,255],"85":[118,163,228,255],"86":[117,162,228,255],"87":[117,161,228,255],"88":[117,160,228,255],"89":[116,159,228,255],"90":[116,158,228,255],"91":[116,156,228,255],"92":[116,155,228,255],"93":[115,154,228,255],"94":[115,153,228,255],"95":[115,152,228,255],"96":[115,151,228,255],"97":[115,150,227,255],"98":[115,148,227,255],"99":[115,147,227,255],"100":[115,146,227,255],"101":[115,145,227,255],"102":[115,144,227,255],"103":[115,143,226,255],"104":[115,141,226,255],"105":[115,140,226,255],"106":[115,139,225,255],"107":[115,138,225,255],"108":[115,137,225,255],"109":[116,135,224,255],"110":[116,134,224,255],"111":[116,133,223,255],"112":[116,132,223,255],"113":[116,131,223,255],"114":[116,129,222,255],"115":[117,128,221,255],"116":[117,127,221,255],"117":[117,126,220,255],"118":[117,125,220,255],"119":[117,123,219,255],"120":[118,122,218,255],"121":[118,121,218,255],"122":[118,120,217,255],"123":[118,119,216,255],"124":[118,117,216,255],"125":[118,116,215,255],"126":[119,115,214,255],"127":[119,114,213,255],"128":[119,113,213,255],"129":[119,111,212,255],"130":[119,110,211,255],"131":[119,109,210,255],"132":[120,108,209,255],"133":[120,107,208,255],"134":[120,105,207,255],"135":[120,104,206,255],"136":[120,103,205,255],"137":[120,102,204,255],"138":[120,101,203,255],"139":[120,100,202,255],"140":[120,99,201,255],"141":[121,97,200,255],"142":[121,96,199,255],"143":[121,95,198,255],"144":[121,94,197,255],"145":[121,93,196,255],"146":[121,92,195,255],"147":[121,91,194,255],"148":[121,89,192,255],"149":[121,88,191,255],"150":[121,87,190,255],"151":[121,86,189,255],"152":[121,85,188,255],"153":[120,84,186,255],"154":[120,83,185,255],"155":[120,82,184,255],"156":[120,81,183,255],"157":[120,80,181,255],"158":[120,79,180,255],"159":[120,77,179,255],"160":[120,76,178,255],"161":[120,75,176,255],"162":[119,74,175,255],"163":[119,73,174,255],"164":[119,72,172,255],"165":[119,71,171,255],"166":[119,70,170,255],"167":[119,69,168,255],"168":[118,68,167,255],"169":[118,67,165,255],"170":[118,66,164,255],"171":[118,65,163,255],"172":[117,64,161,255],"173":[117,63,160,255],"174":[117,62,158,255],"175":[116,61,157,255],"176":[116,60,155,255],"177":[116,59,154,255],"178":[116,58,153,255],"179":[115,57,151,255],"180":[115,56,150,255],"181":[115,55,148,255],"182":[114,54,147,255],"183":[114,53,145,255],"184":[113,52,144,255],"185":[113,51,142,255],"186":[113,50,141,255],"187":[112,49,139,255],"188":[112,49,138,255],"189":[111,48,136,255],"190":[111,47,134,255],"191":[110,46,133,255],"192":[110,45,131,255],"193":[109,44,130,255],"194":[109,43,128,255],"195":[108,42,127,255],"196":[108,42,125,255],"197":[107,41,123,255],"198":[107,40,122,255],"199":[106,39,120,255],"200":[106,38,119,255],"201":[105,37,117,255],"202":[105,37,115,255],"203":[104,36,114,255],"204":[103,35,112,255],"205":[103,34,110,255],"206":[102,34,109,255],"207":[101,33,107,255],"208":[101,32,106,255],"209":[100,31,104,255],"210":[99,31,102,255],"211":[99,30,101,255],"212":[98,29,99,255],"213":[97,29,97,255],"214":[96,28,96,255],"215":[96,28,94,255],"216":[95,27,92,255],"217":[94,26,91,255],"218":[93,26,89,255],"219":[92,25,87,255],"220":[92,25,86,255],"221":[91,24,84,255],"222":[90,24,82,255],"223":[89,23,81,255],"224":[88,23,79,255],"225":[87,22,77,255],"226":[86,22,76,255],"227":[85,22,74,255],"228":[84,21,73,255],"229":[83,21,71,255],"230":[82,20,69,255],"231":[81,20,68,255],"232":[80,20,66,255],"233":[79,19,65,255],"234":[78,19,63,255],"235":[77,19,62,255],"236":[76,19,60,255],"237":[75,18,59,255],"238":[74,18,57,255],"239":[73,18,56,255],"240":[72,18,55,255],"241":[71,17,53,255],"242":[69,17,52,255],"243":[68,17,50,255],"244":[67,17,49,255],"245":[66,16,48,255],"246":[65,16,47,255],"247":[64,16,45,255],"248":[62,16,44,255],"249":[61,15,43,255],"250":[60,15,42,255],"251":[59,15,40,255],"252":[57,15,39,255],"253":[56,14,38,255],"254":[55,14,37,255],"255":[54,14,36,255]}, +diff: {"0":[7,34,63,255],"1":[8,36,65,255],"2":[9,38,67,255],"3":[10,40,69,255],"4":[11,41,71,255],"5":[12,43,73,255],"6":[13,45,75,255],"7":[14,46,77,255],"8":[14,48,78,255],"9":[15,50,80,255],"10":[16,52,82,255],"11":[17,53,84,255],"12":[18,55,86,255],"13":[18,57,88,255],"14":[19,58,90,255],"15":[20,60,91,255],"16":[21,62,93,255],"17":[22,63,95,255],"18":[22,65,97,255],"19":[23,67,98,255],"20":[24,69,100,255],"21":[25,70,101,255],"22":[27,72,102,255],"23":[29,74,103,255],"24":[31,75,104,255],"25":[33,77,106,255],"26":[35,78,107,255],"27":[37,80,108,255],"28":[40,81,109,255],"29":[42,83,110,255],"30":[44,84,111,255],"31":[47,86,112,255],"32":[49,87,113,255],"33":[51,89,114,255],"34":[53,90,115,255],"35":[55,92,116,255],"36":[58,93,117,255],"37":[60,95,118,255],"38":[62,96,120,255],"39":[64,98,121,255],"40":[66,99,122,255],"41":[68,101,123,255],"42":[70,102,124,255],"43":[72,104,125,255],"44":[75,105,126,255],"45":[77,107,128,255],"46":[79,108,129,255],"47":[81,110,130,255],"48":[83,111,131,255],"49":[85,113,132,255],"50":[87,114,133,255],"51":[89,116,135,255],"52":[91,118,136,255],"53":[93,119,137,255],"54":[95,121,138,255],"55":[97,122,139,255],"56":[99,124,141,255],"57":[101,125,142,255],"58":[103,127,143,255],"59":[106,128,144,255],"60":[108,130,146,255],"61":[110,131,147,255],"62":[112,133,148,255],"63":[114,135,150,255],"64":[116,136,151,255],"65":[118,138,152,255],"66":[120,139,153,255],"67":[122,141,155,255],"68":[124,143,156,255],"69":[126,144,157,255],"70":[128,146,159,255],"71":[130,147,160,255],"72":[132,149,161,255],"73":[135,151,163,255],"74":[137,152,164,255],"75":[139,154,166,255],"76":[141,156,167,255],"77":[143,157,168,255],"78":[145,159,170,255],"79":[147,161,171,255],"80":[149,162,173,255],"81":[151,164,174,255],"82":[154,166,175,255],"83":[156,167,177,255],"84":[158,169,178,255],"85":[160,171,180,255],"86":[162,173,181,255],"87":[164,174,183,255],"88":[166,176,184,255],"89":[169,178,186,255],"90":[171,180,187,255],"91":[173,181,189,255],"92":[175,183,190,255],"93":[177,185,192,255],"94":[180,187,194,255],"95":[182,189,195,255],"96":[184,191,197,255],"97":[186,192,198,255],"98":[189,194,200,255],"99":[191,196,202,255],"100":[193,198,203,255],"101":[195,200,205,255],"102":[198,202,206,255],"103":[200,204,208,255],"104":[202,206,210,255],"105":[205,208,211,255],"106":[207,209,213,255],"107":[209,211,215,255],"108":[212,213,217,255],"109":[214,215,218,255],"110":[216,217,220,255],"111":[219,219,222,255],"112":[221,221,224,255],"113":[223,223,225,255],"114":[225,225,227,255],"115":[228,227,229,255],"116":[230,229,230,255],"117":[232,231,232,255],"118":[234,232,233,255],"119":[236,234,235,255],"120":[238,235,236,255],"121":[239,237,237,255],"122":[241,238,238,255],"123":[242,239,239,255],"124":[243,240,239,255],"125":[244,240,240,255],"126":[245,241,240,255],"127":[245,241,240,255],"128":[245,241,239,255],"129":[245,240,239,255],"130":[244,240,238,255],"131":[244,239,236,255],"132":[243,238,235,255],"133":[241,236,233,255],"134":[240,235,231,255],"135":[239,233,229,255],"136":[237,232,227,255],"137":[235,230,224,255],"138":[234,228,222,255],"139":[232,226,220,255],"140":[230,224,217,255],"141":[228,222,215,255],"142":[226,220,212,255],"143":[224,218,209,255],"144":[222,216,207,255],"145":[221,214,204,255],"146":[219,212,202,255],"147":[217,210,199,255],"148":[215,208,196,255],"149":[213,206,194,255],"150":[211,204,191,255],"151":[209,202,189,255],"152":[207,200,186,255],"153":[205,198,184,255],"154":[204,196,181,255],"155":[202,194,178,255],"156":[200,192,176,255],"157":[198,190,173,255],"158":[196,188,171,255],"159":[195,186,168,255],"160":[193,185,166,255],"161":[191,183,163,255],"162":[189,181,161,255],"163":[187,179,158,255],"164":[186,177,156,255],"165":[184,175,154,255],"166":[182,173,151,255],"167":[181,171,149,255],"168":[179,170,146,255],"169":[177,168,144,255],"170":[176,166,142,255],"171":[174,164,139,255],"172":[172,162,137,255],"173":[171,161,134,255],"174":[169,159,132,255],"175":[167,157,130,255],"176":[166,155,127,255],"177":[164,153,125,255],"178":[162,152,123,255],"179":[161,150,120,255],"180":[159,148,118,255],"181":[158,146,116,255],"182":[156,145,113,255],"183":[154,143,111,255],"184":[153,141,109,255],"185":[151,140,107,255],"186":[150,138,104,255],"187":[148,136,102,255],"188":[146,134,100,255],"189":[145,133,98,255],"190":[143,131,95,255],"191":[142,129,93,255],"192":[140,128,91,255],"193":[139,126,89,255],"194":[137,124,86,255],"195":[136,123,84,255],"196":[134,121,82,255],"197":[132,120,80,255],"198":[131,118,78,255],"199":[129,116,75,255],"200":[128,115,73,255],"201":[126,113,71,255],"202":[125,111,69,255],"203":[123,110,67,255],"204":[122,108,65,255],"205":[120,107,63,255],"206":[119,105,60,255],"207":[117,103,58,255],"208":[115,102,56,255],"209":[114,100,54,255],"210":[112,99,52,255],"211":[111,97,50,255],"212":[109,96,48,255],"213":[107,94,46,255],"214":[106,93,44,255],"215":[104,91,42,255],"216":[102,90,40,255],"217":[100,88,39,255],"218":[98,87,37,255],"219":[96,86,36,255],"220":[94,84,35,255],"221":[92,83,34,255],"222":[90,82,33,255],"223":[88,80,33,255],"224":[86,79,32,255],"225":[84,77,31,255],"226":[82,76,30,255],"227":[80,75,30,255],"228":[78,73,29,255],"229":[76,72,28,255],"230":[75,70,27,255],"231":[73,69,27,255],"232":[71,68,26,255],"233":[69,66,25,255],"234":[67,65,24,255],"235":[65,63,24,255],"236":[63,62,23,255],"237":[61,60,22,255],"238":[59,59,21,255],"239":[58,58,20,255],"240":[56,56,20,255],"241":[54,55,19,255],"242":[52,53,18,255],"243":[50,52,17,255],"244":[48,50,16,255],"245":[46,49,15,255],"246":[44,47,14,255],"247":[43,46,14,255],"248":[41,44,13,255],"249":[39,43,12,255],"250":[37,41,11,255],"251":[35,40,10,255],"252":[33,38,9,255],"253":[31,37,8,255],"254":[30,35,7,255],"255":[28,34,6,255]}, +flag: {"0":[255,0,0,255],"1":[255,96,53,255],"2":[255,178,125,255],"3":[255,234,198,255],"4":[255,254,255,255],"5":[204,237,255,255],"6":[132,185,255,255],"7":[60,105,255,255],"8":[0,9,255,255],"9":[0,0,207,255],"10":[0,0,136,255],"11":[0,0,63,255],"12":[0,0,0,255],"13":[43,0,0,255],"14":[115,0,0,255],"15":[188,0,0,255],"16":[252,0,0,255],"17":[255,78,40,255],"18":[255,164,111,255],"19":[255,226,184,255],"20":[255,253,249,255],"21":[217,243,255,255],"22":[146,197,255,255],"23":[73,122,255,255],"24":[8,28,255,255],"25":[0,0,220,255],"26":[0,0,150,255],"27":[0,0,76,255],"28":[0,0,10,255],"29":[31,0,0,255],"30":[101,0,0,255],"31":[174,0,0,255],"32":[241,0,0,255],"33":[255,60,28,255],"34":[255,149,97,255],"35":[255,216,171,255],"36":[255,251,238,255],"37":[229,248,255,255],"38":[160,209,255,255],"39":[87,138,255,255],"40":[19,46,255,255],"41":[0,0,232,255],"42":[0,0,164,255],"43":[0,0,90,255],"44":[0,0,22,255],"45":[19,0,0,255],"46":[87,0,0,255],"47":[160,0,0,255],"48":[229,0,0,255],"49":[255,42,16,255],"50":[255,134,83,255],"51":[255,206,157,255],"52":[255,247,226,255],"53":[241,252,255,255],"54":[174,219,255,255],"55":[101,153,255,255],"56":[31,65,255,255],"57":[0,0,244,255],"58":[0,0,178,255],"59":[0,0,104,255],"60":[0,0,34,255],"61":[8,0,0,255],"62":[73,0,0,255],"63":[146,0,0,255],"64":[217,0,0,255],"65":[255,23,5,255],"66":[255,117,70,255],"67":[255,194,143,255],"68":[255,242,214,255],"69":[252,254,255,255],"70":[188,228,255,255],"71":[115,168,255,255],"72":[43,83,255,255],"73":[0,0,255,255],"74":[0,0,191,255],"75":[0,0,118,255],"76":[0,0,47,255],"77":[0,0,0,255],"78":[60,0,0,255],"79":[132,0,0,255],"80":[204,0,0,255],"81":[255,4,0,255],"82":[255,100,56,255],"83":[255,181,129,255],"84":[255,236,201,255],"85":[255,255,255,255],"86":[201,236,255,255],"87":[129,181,255,255],"88":[56,100,255,255],"89":[0,4,255,255],"90":[0,0,204,255],"91":[0,0,132,255],"92":[0,0,60,255],"93":[0,0,0,255],"94":[47,0,0,255],"95":[118,0,0,255],"96":[191,0,0,255],"97":[255,0,0,255],"98":[255,83,43,255],"99":[255,168,115,255],"100":[255,228,188,255],"101":[255,254,252,255],"102":[214,242,255,255],"103":[143,194,255,255],"104":[70,117,255,255],"105":[5,23,255,255],"106":[0,0,217,255],"107":[0,0,146,255],"108":[0,0,73,255],"109":[0,0,8,255],"110":[34,0,0,255],"111":[104,0,0,255],"112":[178,0,0,255],"113":[244,0,0,255],"114":[255,65,31,255],"115":[255,153,101,255],"116":[255,219,174,255],"117":[255,252,241,255],"118":[226,247,255,255],"119":[157,206,255,255],"120":[83,134,255,255],"121":[16,42,255,255],"122":[0,0,229,255],"123":[0,0,160,255],"124":[0,0,87,255],"125":[0,0,19,255],"126":[22,0,0,255],"127":[90,0,0,255],"128":[164,0,0,255],"129":[232,0,0,255],"130":[255,46,19,255],"131":[255,138,87,255],"132":[255,209,160,255],"133":[255,248,229,255],"134":[238,251,255,255],"135":[171,216,255,255],"136":[97,149,255,255],"137":[28,60,255,255],"138":[0,0,241,255],"139":[0,0,174,255],"140":[0,0,101,255],"141":[0,0,31,255],"142":[10,0,0,255],"143":[76,0,0,255],"144":[150,0,0,255],"145":[220,0,0,255],"146":[255,28,8,255],"147":[255,122,73,255],"148":[255,197,146,255],"149":[255,243,217,255],"150":[249,253,255,255],"151":[184,226,255,255],"152":[111,164,255,255],"153":[40,78,255,255],"154":[0,0,252,255],"155":[0,0,188,255],"156":[0,0,115,255],"157":[0,0,43,255],"158":[0,0,0,255],"159":[63,0,0,255],"160":[136,0,0,255],"161":[207,0,0,255],"162":[255,9,0,255],"163":[255,105,60,255],"164":[255,185,132,255],"165":[255,237,204,255],"166":[255,254,255,255],"167":[198,234,255,255],"168":[125,178,255,255],"169":[53,96,255,255],"170":[0,0,255,255],"171":[0,0,201,255],"172":[0,0,129,255],"173":[0,0,56,255],"174":[0,0,0,255],"175":[50,0,0,255],"176":[122,0,0,255],"177":[194,0,0,255],"178":[255,0,0,255],"179":[255,87,47,255],"180":[255,171,118,255],"181":[255,230,191,255],"182":[255,254,255,255],"183":[211,241,255,255],"184":[139,191,255,255],"185":[66,113,255,255],"186":[2,18,255,255],"187":[0,0,214,255],"188":[0,0,143,255],"189":[0,0,70,255],"190":[0,0,5,255],"191":[37,0,0,255],"192":[108,0,0,255],"193":[181,0,0,255],"194":[246,0,0,255],"195":[255,69,34,255],"196":[255,157,104,255],"197":[255,221,178,255],"198":[255,252,244,255],"199":[223,246,255,255],"200":[153,203,255,255],"201":[80,130,255,255],"202":[13,37,255,255],"203":[0,0,226,255],"204":[0,0,157,255],"205":[0,0,83,255],"206":[0,0,16,255],"207":[25,0,0,255],"208":[94,0,0,255],"209":[167,0,0,255],"210":[235,0,0,255],"211":[255,51,22,255],"212":[255,142,90,255],"213":[255,211,164,255],"214":[255,249,232,255],"215":[235,250,255,255],"216":[167,214,255,255],"217":[94,146,255,255],"218":[25,56,255,255],"219":[0,0,238,255],"220":[0,0,171,255],"221":[0,0,97,255],"222":[0,0,28,255],"223":[13,0,0,255],"224":[80,0,0,255],"225":[153,0,0,255],"226":[223,0,0,255],"227":[255,32,10,255],"228":[255,126,76,255],"229":[255,200,150,255],"230":[255,245,220,255],"231":[246,253,255,255],"232":[181,223,255,255],"233":[108,161,255,255],"234":[37,74,255,255],"235":[0,0,249,255],"236":[0,0,184,255],"237":[0,0,111,255],"238":[0,0,40,255],"239":[2,0,0,255],"240":[66,0,0,255],"241":[139,0,0,255],"242":[211,0,0,255],"243":[255,14,0,255],"244":[255,109,63,255],"245":[255,188,136,255],"246":[255,239,207,255],"247":[255,254,255,255],"248":[194,232,255,255],"249":[122,175,255,255],"250":[50,92,255,255],"251":[0,0,255,255],"252":[0,0,198,255],"253":[0,0,125,255],"254":[0,0,53,255],"255":[0,0,0,255]}, +gist_earth: {"0":[0,0,0,255],"1":[0,0,43,255],"2":[1,0,56,255],"3":[1,0,67,255],"4":[2,0,78,255],"5":[3,0,88,255],"6":[3,0,99,255],"7":[4,0,110,255],"8":[5,2,115,255],"9":[5,4,116,255],"10":[6,6,116,255],"11":[7,9,116,255],"12":[7,11,116,255],"13":[8,13,116,255],"14":[9,16,117,255],"15":[9,18,117,255],"16":[10,20,117,255],"17":[11,22,117,255],"18":[11,25,117,255],"19":[12,27,117,255],"20":[13,29,118,255],"21":[13,32,118,255],"22":[14,34,118,255],"23":[15,36,118,255],"24":[15,39,118,255],"25":[16,41,119,255],"26":[17,43,119,255],"27":[17,45,119,255],"28":[18,48,119,255],"29":[19,50,119,255],"30":[19,52,119,255],"31":[20,54,120,255],"32":[21,56,120,255],"33":[21,58,120,255],"34":[22,60,120,255],"35":[23,62,120,255],"36":[23,64,121,255],"37":[24,66,121,255],"38":[25,69,121,255],"39":[25,71,121,255],"40":[26,73,121,255],"41":[27,75,121,255],"42":[27,77,122,255],"43":[28,79,122,255],"44":[29,81,122,255],"45":[29,83,122,255],"46":[30,84,122,255],"47":[31,86,123,255],"48":[31,88,123,255],"49":[32,90,123,255],"50":[33,92,123,255],"51":[33,94,123,255],"52":[34,96,123,255],"53":[35,97,124,255],"54":[35,99,124,255],"55":[36,101,124,255],"56":[37,102,124,255],"57":[37,104,124,255],"58":[38,105,125,255],"59":[39,107,125,255],"60":[39,109,125,255],"61":[40,110,125,255],"62":[41,112,125,255],"63":[41,113,125,255],"64":[42,115,126,255],"65":[43,116,126,255],"66":[43,118,126,255],"67":[44,120,126,255],"68":[45,121,126,255],"69":[45,123,127,255],"70":[46,124,127,255],"71":[47,126,127,255],"72":[47,127,127,255],"73":[48,128,126,255],"74":[48,129,125,255],"75":[49,129,123,255],"76":[49,130,122,255],"77":[50,130,121,255],"78":[50,131,120,255],"79":[51,132,119,255],"80":[51,132,117,255],"81":[52,133,116,255],"82":[52,133,115,255],"83":[53,134,114,255],"84":[53,134,112,255],"85":[54,135,111,255],"86":[54,136,110,255],"87":[55,136,109,255],"88":[55,137,108,255],"89":[56,137,106,255],"90":[56,138,105,255],"91":[56,138,104,255],"92":[57,139,103,255],"93":[57,140,101,255],"94":[58,140,100,255],"95":[58,141,99,255],"96":[59,141,98,255],"97":[59,142,97,255],"98":[60,142,95,255],"99":[60,143,94,255],"100":[61,144,93,255],"101":[61,144,92,255],"102":[62,145,90,255],"103":[62,145,89,255],"104":[63,146,88,255],"105":[63,147,87,255],"106":[64,147,85,255],"107":[64,148,84,255],"108":[64,148,83,255],"109":[65,149,82,255],"110":[65,149,81,255],"111":[66,150,79,255],"112":[66,151,78,255],"113":[67,151,77,255],"114":[67,152,76,255],"115":[68,152,74,255],"116":[68,153,73,255],"117":[69,153,72,255],"118":[71,154,71,255],"119":[73,155,70,255],"120":[75,155,70,255],"121":[78,156,71,255],"122":[80,156,71,255],"123":[82,157,72,255],"124":[84,157,72,255],"125":[87,158,73,255],"126":[89,159,74,255],"127":[91,159,74,255],"128":[93,160,75,255],"129":[95,160,75,255],"130":[98,161,76,255],"131":[100,161,77,255],"132":[102,162,77,255],"133":[104,163,78,255],"134":[107,163,78,255],"135":[109,163,79,255],"136":[111,164,79,255],"137":[113,164,80,255],"138":[115,165,81,255],"139":[118,165,81,255],"140":[120,166,82,255],"141":[121,166,82,255],"142":[123,167,82,255],"143":[125,167,82,255],"144":[126,167,83,255],"145":[128,168,83,255],"146":[130,168,83,255],"147":[131,169,84,255],"148":[133,169,84,255],"149":[135,170,84,255],"150":[136,170,85,255],"151":[138,171,85,255],"152":[140,171,85,255],"153":[141,171,86,255],"154":[143,172,86,255],"155":[145,172,86,255],"156":[146,173,87,255],"157":[148,173,87,255],"158":[150,174,87,255],"159":[151,174,88,255],"160":[153,174,88,255],"161":[154,175,88,255],"162":[156,175,88,255],"163":[158,176,89,255],"164":[159,176,89,255],"165":[161,177,89,255],"166":[163,177,90,255],"167":[164,178,90,255],"168":[166,178,90,255],"169":[168,178,91,255],"170":[169,179,91,255],"171":[171,179,91,255],"172":[173,180,92,255],"173":[174,180,92,255],"174":[176,181,92,255],"175":[178,181,93,255],"176":[179,181,93,255],"177":[181,182,93,255],"178":[182,182,94,255],"179":[183,181,94,255],"180":[183,181,94,255],"181":[184,180,95,255],"182":[184,179,95,255],"183":[185,178,95,255],"184":[185,177,95,255],"185":[185,176,96,255],"186":[186,175,96,255],"187":[186,175,96,255],"188":[187,174,97,255],"189":[187,173,97,255],"190":[188,172,97,255],"191":[188,171,98,255],"192":[188,170,98,255],"193":[189,169,98,255],"194":[189,169,99,255],"195":[190,168,99,255],"196":[190,167,99,255],"197":[190,166,100,255],"198":[191,165,100,255],"199":[191,164,100,255],"200":[192,163,101,255],"201":[192,163,103,255],"202":[193,163,105,255],"203":[194,163,108,255],"204":[195,164,110,255],"205":[197,164,113,255],"206":[198,165,115,255],"207":[199,166,118,255],"208":[200,166,120,255],"209":[201,167,123,255],"210":[202,168,125,255],"211":[203,169,127,255],"212":[204,170,130,255],"213":[206,171,132,255],"214":[207,172,135,255],"215":[208,173,137,255],"216":[209,173,140,255],"217":[210,174,142,255],"218":[211,175,145,255],"219":[212,176,147,255],"220":[213,177,150,255],"221":[214,178,152,255],"222":[216,179,154,255],"223":[217,181,157,255],"224":[218,182,159,255],"225":[219,183,162,255],"226":[220,185,164,255],"227":[221,186,167,255],"228":[222,188,169,255],"229":[223,189,172,255],"230":[225,191,175,255],"231":[226,193,178,255],"232":[227,195,181,255],"233":[228,197,184,255],"234":[229,199,187,255],"235":[230,201,190,255],"236":[231,203,193,255],"237":[232,205,196,255],"238":[233,207,199,255],"239":[235,209,202,255],"240":[236,211,205,255],"241":[237,213,208,255],"242":[238,215,211,255],"243":[239,217,214,255],"244":[240,220,217,255],"245":[241,222,220,255],"246":[242,224,223,255],"247":[244,227,226,255],"248":[245,230,229,255],"249":[246,233,232,255],"250":[247,236,235,255],"251":[248,239,238,255],"252":[249,242,241,255],"253":[250,245,244,255],"254":[251,248,247,255],"255":[253,250,250,255]}, +gist_gray: {"0":[0,0,0,255],"1":[1,1,1,255],"2":[2,2,2,255],"3":[3,3,3,255],"4":[4,4,4,255],"5":[5,5,5,255],"6":[6,6,6,255],"7":[7,7,7,255],"8":[8,8,8,255],"9":[9,9,9,255],"10":[10,10,10,255],"11":[11,11,11,255],"12":[12,12,12,255],"13":[13,13,13,255],"14":[14,14,14,255],"15":[15,15,15,255],"16":[16,16,16,255],"17":[17,17,17,255],"18":[18,18,18,255],"19":[19,19,19,255],"20":[20,20,20,255],"21":[21,21,21,255],"22":[22,22,22,255],"23":[23,23,23,255],"24":[24,24,24,255],"25":[25,25,25,255],"26":[26,26,26,255],"27":[27,27,27,255],"28":[28,28,28,255],"29":[29,29,29,255],"30":[30,30,30,255],"31":[31,31,31,255],"32":[32,32,32,255],"33":[32,32,32,255],"34":[34,34,34,255],"35":[35,35,35,255],"36":[36,36,36,255],"37":[36,36,36,255],"38":[38,38,38,255],"39":[39,39,39,255],"40":[40,40,40,255],"41":[40,40,40,255],"42":[42,42,42,255],"43":[43,43,43,255],"44":[44,44,44,255],"45":[44,44,44,255],"46":[46,46,46,255],"47":[47,47,47,255],"48":[48,48,48,255],"49":[48,48,48,255],"50":[50,50,50,255],"51":[51,51,51,255],"52":[52,52,52,255],"53":[52,52,52,255],"54":[54,54,54,255],"55":[55,55,55,255],"56":[56,56,56,255],"57":[56,56,56,255],"58":[58,58,58,255],"59":[59,59,59,255],"60":[60,60,60,255],"61":[60,60,60,255],"62":[62,62,62,255],"63":[63,63,63,255],"64":[64,64,64,255],"65":[65,65,65,255],"66":[65,65,65,255],"67":[67,67,67,255],"68":[68,68,68,255],"69":[69,69,69,255],"70":[70,70,70,255],"71":[71,71,71,255],"72":[72,72,72,255],"73":[73,73,73,255],"74":[73,73,73,255],"75":[75,75,75,255],"76":[76,76,76,255],"77":[77,77,77,255],"78":[78,78,78,255],"79":[79,79,79,255],"80":[80,80,80,255],"81":[81,81,81,255],"82":[81,81,81,255],"83":[83,83,83,255],"84":[84,84,84,255],"85":[85,85,85,255],"86":[86,86,86,255],"87":[87,87,87,255],"88":[88,88,88,255],"89":[89,89,89,255],"90":[89,89,89,255],"91":[91,91,91,255],"92":[92,92,92,255],"93":[93,93,93,255],"94":[94,94,94,255],"95":[95,95,95,255],"96":[96,96,96,255],"97":[97,97,97,255],"98":[97,97,97,255],"99":[99,99,99,255],"100":[100,100,100,255],"101":[101,101,101,255],"102":[102,102,102,255],"103":[103,103,103,255],"104":[104,104,104,255],"105":[105,105,105,255],"106":[105,105,105,255],"107":[107,107,107,255],"108":[108,108,108,255],"109":[109,109,109,255],"110":[110,110,110,255],"111":[111,111,111,255],"112":[112,112,112,255],"113":[113,113,113,255],"114":[113,113,113,255],"115":[115,115,115,255],"116":[116,116,116,255],"117":[117,117,117,255],"118":[118,118,118,255],"119":[119,119,119,255],"120":[120,120,120,255],"121":[121,121,121,255],"122":[121,121,121,255],"123":[123,123,123,255],"124":[124,124,124,255],"125":[125,125,125,255],"126":[126,126,126,255],"127":[127,127,127,255],"128":[128,128,128,255],"129":[129,129,129,255],"130":[130,130,130,255],"131":[131,131,131,255],"132":[131,131,131,255],"133":[133,133,133,255],"134":[134,134,134,255],"135":[135,135,135,255],"136":[136,136,136,255],"137":[137,137,137,255],"138":[138,138,138,255],"139":[139,139,139,255],"140":[140,140,140,255],"141":[141,141,141,255],"142":[142,142,142,255],"143":[143,143,143,255],"144":[144,144,144,255],"145":[145,145,145,255],"146":[146,146,146,255],"147":[147,147,147,255],"148":[147,147,147,255],"149":[149,149,149,255],"150":[150,150,150,255],"151":[151,151,151,255],"152":[152,152,152,255],"153":[153,153,153,255],"154":[154,154,154,255],"155":[155,155,155,255],"156":[156,156,156,255],"157":[157,157,157,255],"158":[158,158,158,255],"159":[159,159,159,255],"160":[160,160,160,255],"161":[161,161,161,255],"162":[162,162,162,255],"163":[163,163,163,255],"164":[163,163,163,255],"165":[165,165,165,255],"166":[166,166,166,255],"167":[167,167,167,255],"168":[168,168,168,255],"169":[169,169,169,255],"170":[170,170,170,255],"171":[171,171,171,255],"172":[172,172,172,255],"173":[173,173,173,255],"174":[174,174,174,255],"175":[175,175,175,255],"176":[176,176,176,255],"177":[177,177,177,255],"178":[178,178,178,255],"179":[179,179,179,255],"180":[179,179,179,255],"181":[181,181,181,255],"182":[182,182,182,255],"183":[183,183,183,255],"184":[184,184,184,255],"185":[185,185,185,255],"186":[186,186,186,255],"187":[187,187,187,255],"188":[188,188,188,255],"189":[189,189,189,255],"190":[190,190,190,255],"191":[191,191,191,255],"192":[192,192,192,255],"193":[193,193,193,255],"194":[194,194,194,255],"195":[195,195,195,255],"196":[195,195,195,255],"197":[197,197,197,255],"198":[198,198,198,255],"199":[199,199,199,255],"200":[200,200,200,255],"201":[201,201,201,255],"202":[202,202,202,255],"203":[203,203,203,255],"204":[204,204,204,255],"205":[205,205,205,255],"206":[206,206,206,255],"207":[207,207,207,255],"208":[208,208,208,255],"209":[209,209,209,255],"210":[210,210,210,255],"211":[211,211,211,255],"212":[211,211,211,255],"213":[213,213,213,255],"214":[214,214,214,255],"215":[215,215,215,255],"216":[216,216,216,255],"217":[217,217,217,255],"218":[218,218,218,255],"219":[219,219,219,255],"220":[220,220,220,255],"221":[221,221,221,255],"222":[222,222,222,255],"223":[223,223,223,255],"224":[224,224,224,255],"225":[225,225,225,255],"226":[226,226,226,255],"227":[227,227,227,255],"228":[227,227,227,255],"229":[229,229,229,255],"230":[230,230,230,255],"231":[231,231,231,255],"232":[232,232,232,255],"233":[233,233,233,255],"234":[234,234,234,255],"235":[235,235,235,255],"236":[236,236,236,255],"237":[237,237,237,255],"238":[238,238,238,255],"239":[239,239,239,255],"240":[240,240,240,255],"241":[241,241,241,255],"242":[242,242,242,255],"243":[243,243,243,255],"244":[243,243,243,255],"245":[245,245,245,255],"246":[246,246,246,255],"247":[247,247,247,255],"248":[248,248,248,255],"249":[249,249,249,255],"250":[250,250,250,255],"251":[251,251,251,255],"252":[252,252,252,255],"253":[253,253,253,255],"254":[254,254,254,255],"255":[255,255,255,255]}, +gist_heat: {"0":[0,0,0,255],"1":[1,0,0,255],"2":[3,0,0,255],"3":[4,0,0,255],"4":[6,0,0,255],"5":[7,0,0,255],"6":[9,0,0,255],"7":[10,0,0,255],"8":[12,0,0,255],"9":[13,0,0,255],"10":[15,0,0,255],"11":[16,0,0,255],"12":[18,0,0,255],"13":[19,0,0,255],"14":[21,0,0,255],"15":[22,0,0,255],"16":[24,0,0,255],"17":[25,0,0,255],"18":[27,0,0,255],"19":[28,0,0,255],"20":[30,0,0,255],"21":[31,0,0,255],"22":[32,0,0,255],"23":[34,0,0,255],"24":[36,0,0,255],"25":[37,0,0,255],"26":[39,0,0,255],"27":[40,0,0,255],"28":[42,0,0,255],"29":[43,0,0,255],"30":[44,0,0,255],"31":[46,0,0,255],"32":[48,0,0,255],"33":[49,0,0,255],"34":[51,0,0,255],"35":[52,0,0,255],"36":[54,0,0,255],"37":[55,0,0,255],"38":[56,0,0,255],"39":[58,0,0,255],"40":[60,0,0,255],"41":[61,0,0,255],"42":[63,0,0,255],"43":[64,0,0,255],"44":[65,0,0,255],"45":[67,0,0,255],"46":[69,0,0,255],"47":[70,0,0,255],"48":[72,0,0,255],"49":[73,0,0,255],"50":[75,0,0,255],"51":[76,0,0,255],"52":[78,0,0,255],"53":[79,0,0,255],"54":[81,0,0,255],"55":[82,0,0,255],"56":[84,0,0,255],"57":[85,0,0,255],"58":[87,0,0,255],"59":[88,0,0,255],"60":[89,0,0,255],"61":[91,0,0,255],"62":[93,0,0,255],"63":[94,0,0,255],"64":[96,0,0,255],"65":[97,0,0,255],"66":[98,0,0,255],"67":[100,0,0,255],"68":[102,0,0,255],"69":[103,0,0,255],"70":[105,0,0,255],"71":[106,0,0,255],"72":[108,0,0,255],"73":[109,0,0,255],"74":[110,0,0,255],"75":[112,0,0,255],"76":[113,0,0,255],"77":[115,0,0,255],"78":[117,0,0,255],"79":[118,0,0,255],"80":[120,0,0,255],"81":[121,0,0,255],"82":[122,0,0,255],"83":[124,0,0,255],"84":[126,0,0,255],"85":[127,0,0,255],"86":[129,0,0,255],"87":[130,0,0,255],"88":[131,0,0,255],"89":[133,0,0,255],"90":[134,0,0,255],"91":[136,0,0,255],"92":[138,0,0,255],"93":[139,0,0,255],"94":[141,0,0,255],"95":[142,0,0,255],"96":[144,0,0,255],"97":[145,0,0,255],"98":[147,0,0,255],"99":[148,0,0,255],"100":[150,0,0,255],"101":[151,0,0,255],"102":[153,0,0,255],"103":[154,0,0,255],"104":[156,0,0,255],"105":[157,0,0,255],"106":[159,0,0,255],"107":[160,0,0,255],"108":[162,0,0,255],"109":[163,0,0,255],"110":[165,0,0,255],"111":[166,0,0,255],"112":[168,0,0,255],"113":[169,0,0,255],"114":[171,0,0,255],"115":[172,0,0,255],"116":[174,0,0,255],"117":[175,0,0,255],"118":[177,0,0,255],"119":[178,0,0,255],"120":[179,0,0,255],"121":[181,0,0,255],"122":[182,0,0,255],"123":[184,0,0,255],"124":[186,0,0,255],"125":[187,0,0,255],"126":[189,0,0,255],"127":[190,0,0,255],"128":[192,0,0,255],"129":[193,2,0,255],"130":[195,4,0,255],"131":[196,6,0,255],"132":[197,8,0,255],"133":[199,11,0,255],"134":[201,13,0,255],"135":[202,15,0,255],"136":[204,16,0,255],"137":[205,18,0,255],"138":[207,20,0,255],"139":[208,22,0,255],"140":[210,25,0,255],"141":[211,27,0,255],"142":[213,29,0,255],"143":[214,31,0,255],"144":[216,32,0,255],"145":[217,34,0,255],"146":[219,36,0,255],"147":[220,38,0,255],"148":[221,40,0,255],"149":[223,43,0,255],"150":[225,45,0,255],"151":[226,47,0,255],"152":[227,48,0,255],"153":[229,50,0,255],"154":[230,52,0,255],"155":[232,54,0,255],"156":[234,57,0,255],"157":[235,59,0,255],"158":[237,61,0,255],"159":[238,63,0,255],"160":[240,65,0,255],"161":[241,66,0,255],"162":[243,68,0,255],"163":[244,70,0,255],"164":[245,72,0,255],"165":[247,75,0,255],"166":[249,77,0,255],"167":[250,79,0,255],"168":[252,81,0,255],"169":[253,82,0,255],"170":[255,84,0,255],"171":[255,86,0,255],"172":[255,89,0,255],"173":[255,91,0,255],"174":[255,93,0,255],"175":[255,95,0,255],"176":[255,97,0,255],"177":[255,98,0,255],"178":[255,100,0,255],"179":[255,102,0,255],"180":[255,104,0,255],"181":[255,107,0,255],"182":[255,109,0,255],"183":[255,111,0,255],"184":[255,113,0,255],"185":[255,114,0,255],"186":[255,116,0,255],"187":[255,118,0,255],"188":[255,121,0,255],"189":[255,123,0,255],"190":[255,125,0,255],"191":[255,127,0,255],"192":[255,129,2,255],"193":[255,131,6,255],"194":[255,132,10,255],"195":[255,134,14,255],"196":[255,136,18,255],"197":[255,139,23,255],"198":[255,141,27,255],"199":[255,143,31,255],"200":[255,145,34,255],"201":[255,147,38,255],"202":[255,148,42,255],"203":[255,150,46,255],"204":[255,153,51,255],"205":[255,155,55,255],"206":[255,157,59,255],"207":[255,159,63,255],"208":[255,161,66,255],"209":[255,163,70,255],"210":[255,164,74,255],"211":[255,166,78,255],"212":[255,168,82,255],"213":[255,171,87,255],"214":[255,173,91,255],"215":[255,175,95,255],"216":[255,177,98,255],"217":[255,179,102,255],"218":[255,180,106,255],"219":[255,182,110,255],"220":[255,185,115,255],"221":[255,187,119,255],"222":[255,189,123,255],"223":[255,191,127,255],"224":[255,193,131,255],"225":[255,195,134,255],"226":[255,196,138,255],"227":[255,198,142,255],"228":[255,200,146,255],"229":[255,203,151,255],"230":[255,205,155,255],"231":[255,207,159,255],"232":[255,209,163,255],"233":[255,211,166,255],"234":[255,212,170,255],"235":[255,214,174,255],"236":[255,217,179,255],"237":[255,219,183,255],"238":[255,221,187,255],"239":[255,223,191,255],"240":[255,225,195,255],"241":[255,227,198,255],"242":[255,228,202,255],"243":[255,230,206,255],"244":[255,232,210,255],"245":[255,235,215,255],"246":[255,237,219,255],"247":[255,239,223,255],"248":[255,241,227,255],"249":[255,243,230,255],"250":[255,244,234,255],"251":[255,246,238,255],"252":[255,249,243,255],"253":[255,251,247,255],"254":[255,253,251,255],"255":[255,255,255,255]}, +gist_ncar: {"0":[0,0,128,255],"1":[0,7,118,255],"2":[0,14,109,255],"3":[0,21,99,255],"4":[0,29,90,255],"5":[0,36,80,255],"6":[0,43,71,255],"7":[0,51,62,255],"8":[0,58,52,255],"9":[0,65,43,255],"10":[0,72,33,255],"11":[0,80,24,255],"12":[0,87,15,255],"13":[0,94,5,255],"14":[0,88,22,255],"15":[0,81,38,255],"16":[0,74,55,255],"17":[0,67,72,255],"18":[0,61,88,255],"19":[0,54,105,255],"20":[0,47,121,255],"21":[0,40,138,255],"22":[0,33,155,255],"23":[0,27,171,255],"24":[0,20,188,255],"25":[0,13,205,255],"26":[0,6,221,255],"27":[0,0,238,255],"28":[0,14,255,255],"29":[0,28,255,255],"30":[0,42,255,255],"31":[0,56,255,255],"32":[0,70,255,255],"33":[0,84,255,255],"34":[0,98,255,255],"35":[0,112,255,255],"36":[0,127,255,255],"37":[0,141,255,255],"38":[0,155,255,255],"39":[0,169,255,255],"40":[0,183,255,255],"41":[0,192,255,255],"42":[0,197,255,255],"43":[0,202,255,255],"44":[0,206,255,255],"45":[0,210,255,255],"46":[0,215,255,255],"47":[0,219,255,255],"48":[0,224,255,255],"49":[0,228,255,255],"50":[0,232,255,255],"51":[0,237,255,255],"52":[0,241,254,255],"53":[0,246,248,255],"54":[0,250,241,255],"55":[0,254,235,255],"56":[0,254,228,255],"57":[0,254,222,255],"58":[0,253,215,255],"59":[0,253,209,255],"60":[0,252,202,255],"61":[0,252,195,255],"62":[0,251,189,255],"63":[0,251,182,255],"64":[0,250,176,255],"65":[0,250,169,255],"66":[0,250,163,255],"67":[0,250,156,255],"68":[0,250,146,255],"69":[0,250,135,255],"70":[0,250,125,255],"71":[0,250,114,255],"72":[0,251,104,255],"73":[0,251,93,255],"74":[0,252,83,255],"75":[0,252,73,255],"76":[0,252,62,255],"77":[0,253,52,255],"78":[0,253,41,255],"79":[0,254,31,255],"80":[6,254,20,255],"81":[12,254,10,255],"82":[19,251,0,255],"83":[25,247,0,255],"84":[31,243,0,255],"85":[38,239,0,255],"86":[44,236,0,255],"87":[50,232,0,255],"88":[57,228,0,255],"89":[63,224,0,255],"90":[70,221,0,255],"91":[76,217,0,255],"92":[82,213,0,255],"93":[89,209,0,255],"94":[95,206,0,255],"95":[101,209,0,255],"96":[103,212,0,255],"97":[105,215,0,255],"98":[107,219,0,255],"99":[109,222,0,255],"100":[111,225,0,255],"101":[113,228,0,255],"102":[115,232,0,255],"103":[117,235,0,255],"104":[119,238,0,255],"105":[121,241,0,255],"106":[123,245,0,255],"107":[125,248,3,255],"108":[127,251,7,255],"109":[132,254,11,255],"110":[136,255,15,255],"111":[141,255,19,255],"112":[145,255,23,255],"113":[150,255,27,255],"114":[154,255,31,255],"115":[159,255,35,255],"116":[164,255,39,255],"117":[168,255,43,255],"118":[173,255,47,255],"119":[177,255,51,255],"120":[182,255,55,255],"121":[186,255,59,255],"122":[191,255,55,255],"123":[195,255,51,255],"124":[200,255,47,255],"125":[204,255,43,255],"126":[209,255,39,255],"127":[214,255,35,255],"128":[218,255,31,255],"129":[223,255,27,255],"130":[227,255,23,255],"131":[232,255,19,255],"132":[236,255,15,255],"133":[241,255,11,255],"134":[245,252,7,255],"135":[250,250,3,255],"136":[255,247,0,255],"137":[255,245,0,255],"138":[255,242,0,255],"139":[255,240,0,255],"140":[255,237,0,255],"141":[255,235,0,255],"142":[255,232,0,255],"143":[255,230,0,255],"144":[255,227,0,255],"145":[255,225,0,255],"146":[255,222,0,255],"147":[255,220,0,255],"148":[255,218,0,255],"149":[255,215,1,255],"150":[255,213,2,255],"151":[255,210,3,255],"152":[255,208,4,255],"153":[255,205,5,255],"154":[255,203,6,255],"155":[255,200,7,255],"156":[255,198,8,255],"157":[255,195,9,255],"158":[255,193,10,255],"159":[255,190,11,255],"160":[255,188,12,255],"161":[255,185,13,255],"162":[255,177,13,255],"163":[255,169,12,255],"164":[255,161,11,255],"165":[255,153,10,255],"166":[255,145,9,255],"167":[255,136,8,255],"168":[255,128,7,255],"169":[255,120,6,255],"170":[255,112,5,255],"171":[255,104,4,255],"172":[255,95,3,255],"173":[255,87,2,255],"174":[255,79,1,255],"175":[255,71,0,255],"176":[255,66,0,255],"177":[255,61,0,255],"178":[255,57,0,255],"179":[255,52,0,255],"180":[255,47,0,255],"181":[255,42,0,255],"182":[255,38,0,255],"183":[255,33,0,255],"184":[255,28,0,255],"185":[255,23,0,255],"186":[255,19,0,255],"187":[255,14,0,255],"188":[255,9,0,255],"189":[255,4,17,255],"190":[255,0,35,255],"191":[255,0,53,255],"192":[255,0,70,255],"193":[255,0,88,255],"194":[255,0,106,255],"195":[255,0,123,255],"196":[255,0,141,255],"197":[255,0,159,255],"198":[255,0,177,255],"199":[255,0,194,255],"200":[255,0,212,255],"201":[255,0,230,255],"202":[255,0,248,255],"203":[248,3,251,255],"204":[241,6,255,255],"205":[234,10,255,255],"206":[227,13,255,255],"207":[220,17,255,255],"208":[213,20,255,255],"209":[206,24,255,255],"210":[199,27,255,255],"211":[193,30,255,255],"212":[186,34,255,255],"213":[179,37,255,255],"214":[172,41,255,255],"215":[165,44,254,255],"216":[158,50,253,255],"217":[164,56,252,255],"218":[170,62,251,255],"219":[176,68,250,255],"220":[182,74,248,255],"221":[188,80,247,255],"222":[194,86,246,255],"223":[199,92,245,255],"224":[205,97,244,255],"225":[211,103,242,255],"226":[217,109,241,255],"227":[223,115,240,255],"228":[229,121,239,255],"229":[235,127,238,255],"230":[236,132,238,255],"231":[236,136,239,255],"232":[237,141,240,255],"233":[238,146,240,255],"234":[239,150,241,255],"235":[239,155,241,255],"236":[240,159,242,255],"237":[241,164,243,255],"238":[241,169,243,255],"239":[242,173,244,255],"240":[243,178,244,255],"241":[244,183,245,255],"242":[244,187,246,255],"243":[245,192,246,255],"244":[246,197,247,255],"245":[246,201,247,255],"246":[247,206,248,255],"247":[248,210,249,255],"248":[249,215,249,255],"249":[249,220,250,255],"250":[250,224,250,255],"251":[251,229,251,255],"252":[251,234,252,255],"253":[252,238,252,255],"254":[253,243,253,255],"255":[254,247,254,255]}, +gist_rainbow: {"0":[255,0,40,255],"1":[255,0,35,255],"2":[255,0,30,255],"3":[255,0,24,255],"4":[255,0,19,255],"5":[255,0,14,255],"6":[255,0,8,255],"7":[255,0,3,255],"8":[255,1,0,255],"9":[255,7,0,255],"10":[255,12,0,255],"11":[255,18,0,255],"12":[255,23,0,255],"13":[255,28,0,255],"14":[255,34,0,255],"15":[255,39,0,255],"16":[255,45,0,255],"17":[255,50,0,255],"18":[255,55,0,255],"19":[255,61,0,255],"20":[255,66,0,255],"21":[255,72,0,255],"22":[255,77,0,255],"23":[255,82,0,255],"24":[255,88,0,255],"25":[255,93,0,255],"26":[255,99,0,255],"27":[255,104,0,255],"28":[255,110,0,255],"29":[255,115,0,255],"30":[255,120,0,255],"31":[255,126,0,255],"32":[255,131,0,255],"33":[255,137,0,255],"34":[255,142,0,255],"35":[255,147,0,255],"36":[255,153,0,255],"37":[255,158,0,255],"38":[255,164,0,255],"39":[255,169,0,255],"40":[255,174,0,255],"41":[255,180,0,255],"42":[255,185,0,255],"43":[255,191,0,255],"44":[255,196,0,255],"45":[255,201,0,255],"46":[255,207,0,255],"47":[255,212,0,255],"48":[255,218,0,255],"49":[255,223,0,255],"50":[255,228,0,255],"51":[255,234,0,255],"52":[255,239,0,255],"53":[255,245,0,255],"54":[255,250,0,255],"55":[254,255,0,255],"56":[248,255,0,255],"57":[243,255,0,255],"58":[237,255,0,255],"59":[232,255,0,255],"60":[227,255,0,255],"61":[221,255,0,255],"62":[216,255,0,255],"63":[210,255,0,255],"64":[205,255,0,255],"65":[199,255,0,255],"66":[194,255,0,255],"67":[189,255,0,255],"68":[183,255,0,255],"69":[178,255,0,255],"70":[172,255,0,255],"71":[167,255,0,255],"72":[162,255,0,255],"73":[156,255,0,255],"74":[151,255,0,255],"75":[145,255,0,255],"76":[140,255,0,255],"77":[135,255,0,255],"78":[129,255,0,255],"79":[124,255,0,255],"80":[118,255,0,255],"81":[113,255,0,255],"82":[108,255,0,255],"83":[102,255,0,255],"84":[97,255,0,255],"85":[91,255,0,255],"86":[86,255,0,255],"87":[81,255,0,255],"88":[75,255,0,255],"89":[70,255,0,255],"90":[64,255,0,255],"91":[59,255,0,255],"92":[54,255,0,255],"93":[48,255,0,255],"94":[43,255,0,255],"95":[37,255,0,255],"96":[32,255,0,255],"97":[27,255,0,255],"98":[21,255,0,255],"99":[16,255,0,255],"100":[10,255,0,255],"101":[5,255,0,255],"102":[0,255,0,255],"103":[0,255,5,255],"104":[0,255,10,255],"105":[0,255,16,255],"106":[0,255,21,255],"107":[0,255,26,255],"108":[0,255,32,255],"109":[0,255,37,255],"110":[0,255,43,255],"111":[0,255,48,255],"112":[0,255,53,255],"113":[0,255,59,255],"114":[0,255,64,255],"115":[0,255,69,255],"116":[0,255,75,255],"117":[0,255,80,255],"118":[0,255,86,255],"119":[0,255,91,255],"120":[0,255,96,255],"121":[0,255,102,255],"122":[0,255,107,255],"123":[0,255,112,255],"124":[0,255,118,255],"125":[0,255,123,255],"126":[0,255,129,255],"127":[0,255,134,255],"128":[0,255,139,255],"129":[0,255,145,255],"130":[0,255,150,255],"131":[0,255,155,255],"132":[0,255,161,255],"133":[0,255,166,255],"134":[0,255,172,255],"135":[0,255,177,255],"136":[0,255,182,255],"137":[0,255,188,255],"138":[0,255,193,255],"139":[0,255,198,255],"140":[0,255,204,255],"141":[0,255,209,255],"142":[0,255,215,255],"143":[0,255,220,255],"144":[0,255,225,255],"145":[0,255,231,255],"146":[0,255,236,255],"147":[0,255,241,255],"148":[0,255,247,255],"149":[0,255,252,255],"150":[0,251,255,255],"151":[0,246,255,255],"152":[0,241,255,255],"153":[0,235,255,255],"154":[0,230,255,255],"155":[0,224,255,255],"156":[0,219,255,255],"157":[0,213,255,255],"158":[0,208,255,255],"159":[0,202,255,255],"160":[0,197,255,255],"161":[0,192,255,255],"162":[0,186,255,255],"163":[0,181,255,255],"164":[0,175,255,255],"165":[0,170,255,255],"166":[0,164,255,255],"167":[0,159,255,255],"168":[0,154,255,255],"169":[0,148,255,255],"170":[0,143,255,255],"171":[0,137,255,255],"172":[0,132,255,255],"173":[0,126,255,255],"174":[0,121,255,255],"175":[0,116,255,255],"176":[0,110,255,255],"177":[0,105,255,255],"178":[0,99,255,255],"179":[0,94,255,255],"180":[0,88,255,255],"181":[0,83,255,255],"182":[0,77,255,255],"183":[0,72,255,255],"184":[0,67,255,255],"185":[0,61,255,255],"186":[0,56,255,255],"187":[0,50,255,255],"188":[0,45,255,255],"189":[0,39,255,255],"190":[0,34,255,255],"191":[0,29,255,255],"192":[0,23,255,255],"193":[0,18,255,255],"194":[0,12,255,255],"195":[0,7,255,255],"196":[0,1,255,255],"197":[3,0,255,255],"198":[8,0,255,255],"199":[14,0,255,255],"200":[19,0,255,255],"201":[25,0,255,255],"202":[30,0,255,255],"203":[36,0,255,255],"204":[41,0,255,255],"205":[47,0,255,255],"206":[52,0,255,255],"207":[57,0,255,255],"208":[63,0,255,255],"209":[68,0,255,255],"210":[74,0,255,255],"211":[79,0,255,255],"212":[85,0,255,255],"213":[90,0,255,255],"214":[95,0,255,255],"215":[101,0,255,255],"216":[106,0,255,255],"217":[112,0,255,255],"218":[117,0,255,255],"219":[123,0,255,255],"220":[128,0,255,255],"221":[133,0,255,255],"222":[139,0,255,255],"223":[144,0,255,255],"224":[150,0,255,255],"225":[155,0,255,255],"226":[161,0,255,255],"227":[166,0,255,255],"228":[172,0,255,255],"229":[177,0,255,255],"230":[182,0,255,255],"231":[188,0,255,255],"232":[193,0,255,255],"233":[199,0,255,255],"234":[204,0,255,255],"235":[210,0,255,255],"236":[215,0,255,255],"237":[220,0,255,255],"238":[226,0,255,255],"239":[231,0,255,255],"240":[237,0,255,255],"241":[242,0,255,255],"242":[248,0,255,255],"243":[253,0,255,255],"244":[255,0,251,255],"245":[255,0,245,255],"246":[255,0,240,255],"247":[255,0,234,255],"248":[255,0,229,255],"249":[255,0,223,255],"250":[255,0,218,255],"251":[255,0,212,255],"252":[255,0,207,255],"253":[255,0,202,255],"254":[255,0,196,255],"255":[255,0,191,255]}, +gist_stern: {"0":[0,0,0,255],"1":[18,1,2,255],"2":[36,2,4,255],"3":[54,3,6,255],"4":[73,4,8,255],"5":[91,5,10,255],"6":[109,6,12,255],"7":[127,7,14,255],"8":[146,8,16,255],"9":[164,9,18,255],"10":[182,10,20,255],"11":[201,11,22,255],"12":[219,12,24,255],"13":[237,13,26,255],"14":[254,14,28,255],"15":[249,15,30,255],"16":[244,16,32,255],"17":[239,17,34,255],"18":[234,18,36,255],"19":[229,19,38,255],"20":[224,20,40,255],"21":[219,21,42,255],"22":[214,22,44,255],"23":[209,23,46,255],"24":[204,24,48,255],"25":[199,25,50,255],"26":[194,26,52,255],"27":[189,27,54,255],"28":[184,28,56,255],"29":[180,29,58,255],"30":[175,30,60,255],"31":[170,31,62,255],"32":[165,32,64,255],"33":[160,32,65,255],"34":[155,34,68,255],"35":[150,35,70,255],"36":[145,36,72,255],"37":[140,36,73,255],"38":[135,38,76,255],"39":[130,39,78,255],"40":[125,40,80,255],"41":[120,40,81,255],"42":[115,42,84,255],"43":[110,43,86,255],"44":[105,44,88,255],"45":[100,44,89,255],"46":[95,46,92,255],"47":[90,47,94,255],"48":[85,48,96,255],"49":[80,48,97,255],"50":[75,50,100,255],"51":[70,51,102,255],"52":[65,52,104,255],"53":[60,52,105,255],"54":[55,54,108,255],"55":[50,55,110,255],"56":[45,56,112,255],"57":[40,56,113,255],"58":[35,58,116,255],"59":[30,59,118,255],"60":[25,60,120,255],"61":[20,60,121,255],"62":[15,62,124,255],"63":[10,63,126,255],"64":[64,64,128,255],"65":[65,65,130,255],"66":[65,65,131,255],"67":[67,67,134,255],"68":[68,68,136,255],"69":[69,69,138,255],"70":[70,70,140,255],"71":[71,71,142,255],"72":[72,72,144,255],"73":[73,73,146,255],"74":[73,73,147,255],"75":[75,75,150,255],"76":[76,76,152,255],"77":[77,77,154,255],"78":[78,78,156,255],"79":[79,79,158,255],"80":[80,80,160,255],"81":[81,81,162,255],"82":[81,81,163,255],"83":[83,83,166,255],"84":[84,84,168,255],"85":[85,85,170,255],"86":[86,86,172,255],"87":[87,87,174,255],"88":[88,88,176,255],"89":[89,89,178,255],"90":[89,89,179,255],"91":[91,91,182,255],"92":[92,92,184,255],"93":[93,93,186,255],"94":[94,94,188,255],"95":[95,95,190,255],"96":[96,96,192,255],"97":[97,97,194,255],"98":[97,97,195,255],"99":[99,99,198,255],"100":[100,100,200,255],"101":[101,101,202,255],"102":[102,102,204,255],"103":[103,103,206,255],"104":[104,104,208,255],"105":[105,105,210,255],"106":[105,105,211,255],"107":[107,107,214,255],"108":[108,108,216,255],"109":[109,109,218,255],"110":[110,110,220,255],"111":[111,111,222,255],"112":[112,112,224,255],"113":[113,113,226,255],"114":[113,113,227,255],"115":[115,115,230,255],"116":[116,116,232,255],"117":[117,117,234,255],"118":[118,118,236,255],"119":[119,119,238,255],"120":[120,120,240,255],"121":[121,121,242,255],"122":[121,121,243,255],"123":[123,123,246,255],"124":[124,124,248,255],"125":[125,125,250,255],"126":[126,126,252,255],"127":[127,127,254,255],"128":[128,128,252,255],"129":[129,129,248,255],"130":[130,130,244,255],"131":[131,131,240,255],"132":[131,131,235,255],"133":[132,133,231,255],"134":[134,134,227,255],"135":[135,135,223,255],"136":[136,136,218,255],"137":[137,137,214,255],"138":[138,138,210,255],"139":[139,139,206,255],"140":[140,140,201,255],"141":[141,141,197,255],"142":[142,142,193,255],"143":[143,143,189,255],"144":[144,144,184,255],"145":[145,145,180,255],"146":[146,146,176,255],"147":[147,147,172,255],"148":[147,147,167,255],"149":[149,149,163,255],"150":[150,150,159,255],"151":[151,151,154,255],"152":[152,152,150,255],"153":[153,153,146,255],"154":[154,154,142,255],"155":[155,155,137,255],"156":[156,156,133,255],"157":[157,157,129,255],"158":[158,158,125,255],"159":[159,159,120,255],"160":[160,160,116,255],"161":[161,161,112,255],"162":[162,162,108,255],"163":[163,163,103,255],"164":[163,163,99,255],"165":[165,165,95,255],"166":[166,166,91,255],"167":[167,167,86,255],"168":[168,168,82,255],"169":[169,169,78,255],"170":[170,170,74,255],"171":[171,171,69,255],"172":[172,172,65,255],"173":[173,173,61,255],"174":[174,174,57,255],"175":[175,175,52,255],"176":[176,176,48,255],"177":[177,177,44,255],"178":[178,178,40,255],"179":[179,179,35,255],"180":[179,179,31,255],"181":[181,181,27,255],"182":[182,182,23,255],"183":[183,183,18,255],"184":[184,184,14,255],"185":[185,185,10,255],"186":[186,186,6,255],"187":[187,187,1,255],"188":[188,188,2,255],"189":[189,189,5,255],"190":[190,190,9,255],"191":[191,191,13,255],"192":[192,192,17,255],"193":[193,193,21,255],"194":[194,194,24,255],"195":[195,195,28,255],"196":[195,195,32,255],"197":[196,197,36,255],"198":[197,198,39,255],"199":[199,199,43,255],"200":[200,200,47,255],"201":[201,201,51,255],"202":[202,202,55,255],"203":[203,203,58,255],"204":[203,204,62,255],"205":[205,205,66,255],"206":[206,206,70,255],"207":[207,207,73,255],"208":[208,208,77,255],"209":[209,209,81,255],"210":[210,210,85,255],"211":[211,211,88,255],"212":[211,211,92,255],"213":[213,213,96,255],"214":[214,214,100,255],"215":[215,215,104,255],"216":[216,216,107,255],"217":[217,217,111,255],"218":[218,218,115,255],"219":[219,219,119,255],"220":[220,220,122,255],"221":[221,221,126,255],"222":[222,222,130,255],"223":[223,223,134,255],"224":[224,224,138,255],"225":[225,225,141,255],"226":[226,226,145,255],"227":[227,227,149,255],"228":[227,227,153,255],"229":[229,229,156,255],"230":[230,230,160,255],"231":[231,231,164,255],"232":[232,232,168,255],"233":[233,233,171,255],"234":[234,234,175,255],"235":[235,235,179,255],"236":[236,236,183,255],"237":[237,237,187,255],"238":[238,238,190,255],"239":[239,239,194,255],"240":[240,240,198,255],"241":[241,241,202,255],"242":[242,242,205,255],"243":[243,243,209,255],"244":[243,243,213,255],"245":[244,245,217,255],"246":[245,246,221,255],"247":[247,247,224,255],"248":[248,248,228,255],"249":[249,249,232,255],"250":[250,250,236,255],"251":[251,251,239,255],"252":[251,252,243,255],"253":[253,253,247,255],"254":[254,254,251,255],"255":[255,255,255,255]}, +gist_yarg: {"0":[255,255,255,255],"1":[254,254,254,255],"2":[253,253,253,255],"3":[252,252,252,255],"4":[251,251,251,255],"5":[250,250,250,255],"6":[249,249,249,255],"7":[248,248,248,255],"8":[247,247,247,255],"9":[246,246,246,255],"10":[245,245,245,255],"11":[244,244,244,255],"12":[243,243,243,255],"13":[242,242,242,255],"14":[241,241,241,255],"15":[240,240,240,255],"16":[239,239,239,255],"17":[238,238,238,255],"18":[237,237,237,255],"19":[236,236,236,255],"20":[235,235,235,255],"21":[234,234,234,255],"22":[233,233,233,255],"23":[232,232,232,255],"24":[231,231,231,255],"25":[230,230,230,255],"26":[229,229,229,255],"27":[228,228,228,255],"28":[227,227,227,255],"29":[226,226,226,255],"30":[225,225,225,255],"31":[224,224,224,255],"32":[223,223,223,255],"33":[222,222,222,255],"34":[221,221,221,255],"35":[220,220,220,255],"36":[219,219,219,255],"37":[218,218,218,255],"38":[217,217,217,255],"39":[216,216,216,255],"40":[215,215,215,255],"41":[214,214,214,255],"42":[213,213,213,255],"43":[211,211,211,255],"44":[211,211,211,255],"45":[210,210,210,255],"46":[209,209,209,255],"47":[208,208,208,255],"48":[207,207,207,255],"49":[206,206,206,255],"50":[205,205,205,255],"51":[204,204,204,255],"52":[203,203,203,255],"53":[202,202,202,255],"54":[201,201,201,255],"55":[200,200,200,255],"56":[199,199,199,255],"57":[198,198,198,255],"58":[197,197,197,255],"59":[195,195,195,255],"60":[195,195,195,255],"61":[194,194,194,255],"62":[193,193,193,255],"63":[192,192,192,255],"64":[191,191,191,255],"65":[190,190,190,255],"66":[189,189,189,255],"67":[188,188,188,255],"68":[187,187,187,255],"69":[186,186,186,255],"70":[185,185,185,255],"71":[184,184,184,255],"72":[183,183,183,255],"73":[182,182,182,255],"74":[181,181,181,255],"75":[179,179,179,255],"76":[179,179,179,255],"77":[178,178,178,255],"78":[177,177,177,255],"79":[176,176,176,255],"80":[175,175,175,255],"81":[174,174,174,255],"82":[173,173,173,255],"83":[172,172,172,255],"84":[171,171,171,255],"85":[170,170,170,255],"86":[169,169,169,255],"87":[168,168,168,255],"88":[167,167,167,255],"89":[166,166,166,255],"90":[165,165,165,255],"91":[163,163,163,255],"92":[163,163,163,255],"93":[162,162,162,255],"94":[161,161,161,255],"95":[160,160,160,255],"96":[159,159,159,255],"97":[158,158,158,255],"98":[157,157,157,255],"99":[156,156,156,255],"100":[155,155,155,255],"101":[154,154,154,255],"102":[153,153,153,255],"103":[152,152,152,255],"104":[151,151,151,255],"105":[150,150,150,255],"106":[149,149,149,255],"107":[147,147,147,255],"108":[147,147,147,255],"109":[146,146,146,255],"110":[145,145,145,255],"111":[144,144,144,255],"112":[143,143,143,255],"113":[142,142,142,255],"114":[141,141,141,255],"115":[140,140,140,255],"116":[139,139,139,255],"117":[138,138,138,255],"118":[137,137,137,255],"119":[136,136,136,255],"120":[135,135,135,255],"121":[134,134,134,255],"122":[133,133,133,255],"123":[131,131,131,255],"124":[131,131,131,255],"125":[130,130,130,255],"126":[129,129,129,255],"127":[128,128,128,255],"128":[127,127,127,255],"129":[126,126,126,255],"130":[125,125,125,255],"131":[124,124,124,255],"132":[123,123,123,255],"133":[121,121,121,255],"134":[121,121,121,255],"135":[120,120,120,255],"136":[119,119,119,255],"137":[118,118,118,255],"138":[117,117,117,255],"139":[116,116,116,255],"140":[114,114,114,255],"141":[113,113,113,255],"142":[113,113,113,255],"143":[112,112,112,255],"144":[111,111,111,255],"145":[110,110,110,255],"146":[109,109,109,255],"147":[108,108,108,255],"148":[107,107,107,255],"149":[105,105,105,255],"150":[105,105,105,255],"151":[104,104,104,255],"152":[103,103,103,255],"153":[102,102,102,255],"154":[101,101,101,255],"155":[100,100,100,255],"156":[98,98,98,255],"157":[97,97,97,255],"158":[97,97,97,255],"159":[96,96,96,255],"160":[95,95,95,255],"161":[94,94,94,255],"162":[93,93,93,255],"163":[92,92,92,255],"164":[91,91,91,255],"165":[89,89,89,255],"166":[89,89,89,255],"167":[88,88,88,255],"168":[87,87,87,255],"169":[86,86,86,255],"170":[85,85,85,255],"171":[84,84,84,255],"172":[82,82,82,255],"173":[81,81,81,255],"174":[81,81,81,255],"175":[80,80,80,255],"176":[79,79,79,255],"177":[78,78,78,255],"178":[77,77,77,255],"179":[76,76,76,255],"180":[75,75,75,255],"181":[73,73,73,255],"182":[73,73,73,255],"183":[72,72,72,255],"184":[71,71,71,255],"185":[70,70,70,255],"186":[69,69,69,255],"187":[68,68,68,255],"188":[66,66,66,255],"189":[65,65,65,255],"190":[65,65,65,255],"191":[64,64,64,255],"192":[63,63,63,255],"193":[62,62,62,255],"194":[61,61,61,255],"195":[60,60,60,255],"196":[59,59,59,255],"197":[57,57,57,255],"198":[56,56,56,255],"199":[56,56,56,255],"200":[55,55,55,255],"201":[54,54,54,255],"202":[53,53,53,255],"203":[52,52,52,255],"204":[50,50,50,255],"205":[49,49,49,255],"206":[48,48,48,255],"207":[48,48,48,255],"208":[47,47,47,255],"209":[46,46,46,255],"210":[45,45,45,255],"211":[44,44,44,255],"212":[43,43,43,255],"213":[41,41,41,255],"214":[40,40,40,255],"215":[40,40,40,255],"216":[39,39,39,255],"217":[38,38,38,255],"218":[37,37,37,255],"219":[36,36,36,255],"220":[34,34,34,255],"221":[33,33,33,255],"222":[32,32,32,255],"223":[32,32,32,255],"224":[31,31,31,255],"225":[30,30,30,255],"226":[29,29,29,255],"227":[28,28,28,255],"228":[27,27,27,255],"229":[25,25,25,255],"230":[24,24,24,255],"231":[24,24,24,255],"232":[23,23,23,255],"233":[22,22,22,255],"234":[21,21,21,255],"235":[20,20,20,255],"236":[18,18,18,255],"237":[17,17,17,255],"238":[16,16,16,255],"239":[16,16,16,255],"240":[15,15,15,255],"241":[14,14,14,255],"242":[13,13,13,255],"243":[12,12,12,255],"244":[11,11,11,255],"245":[9,9,9,255],"246":[8,8,8,255],"247":[8,8,8,255],"248":[7,7,7,255],"249":[6,6,6,255],"250":[5,5,5,255],"251":[4,4,4,255],"252":[2,2,2,255],"253":[1,1,1,255],"254":[0,0,0,255],"255":[0,0,0,255]}, +gnuplot: {"0":[0,0,0,255],"1":[15,0,6,255],"2":[22,0,12,255],"3":[27,0,18,255],"4":[31,0,25,255],"5":[35,0,31,255],"6":[39,0,37,255],"7":[42,0,43,255],"8":[45,0,49,255],"9":[47,0,56,255],"10":[50,0,62,255],"11":[52,0,68,255],"12":[55,0,74,255],"13":[57,0,80,255],"14":[59,0,86,255],"15":[61,0,92,255],"16":[63,0,97,255],"17":[65,0,103,255],"18":[67,0,109,255],"19":[69,0,115,255],"20":[71,0,120,255],"21":[73,0,126,255],"22":[74,0,131,255],"23":[76,0,136,255],"24":[78,0,142,255],"25":[79,0,147,255],"26":[81,0,152,255],"27":[82,0,157,255],"28":[84,0,162,255],"29":[85,0,167,255],"30":[87,0,171,255],"31":[88,0,176,255],"32":[90,0,180,255],"33":[91,0,185,255],"34":[93,0,189,255],"35":[94,0,193,255],"36":[95,0,197,255],"37":[97,0,201,255],"38":[98,0,205,255],"39":[99,0,209,255],"40":[100,0,212,255],"41":[102,1,215,255],"42":[103,1,219,255],"43":[104,1,222,255],"44":[105,1,225,255],"45":[107,1,228,255],"46":[108,1,230,255],"47":[109,1,233,255],"48":[110,1,236,255],"49":[111,1,238,255],"50":[112,1,240,255],"51":[114,2,242,255],"52":[115,2,244,255],"53":[116,2,246,255],"54":[117,2,247,255],"55":[118,2,249,255],"56":[119,2,250,255],"57":[120,2,251,255],"58":[121,3,252,255],"59":[122,3,253,255],"60":[123,3,253,255],"61":[124,3,254,255],"62":[125,3,254,255],"63":[126,3,254,255],"64":[127,4,254,255],"65":[128,4,254,255],"66":[129,4,254,255],"67":[130,4,254,255],"68":[131,4,253,255],"69":[132,5,252,255],"70":[133,5,251,255],"71":[134,5,250,255],"72":[135,5,249,255],"73":[136,5,248,255],"74":[137,6,246,255],"75":[138,6,245,255],"76":[139,6,243,255],"77":[140,7,241,255],"78":[141,7,239,255],"79":[141,7,237,255],"80":[142,7,234,255],"81":[143,8,232,255],"82":[144,8,229,255],"83":[145,8,226,255],"84":[146,9,223,255],"85":[147,9,220,255],"86":[148,9,217,255],"87":[148,10,214,255],"88":[149,10,210,255],"89":[150,10,207,255],"90":[151,11,203,255],"91":[152,11,199,255],"92":[153,11,195,255],"93":[153,12,191,255],"94":[154,12,187,255],"95":[155,13,183,255],"96":[156,13,178,255],"97":[157,14,174,255],"98":[158,14,169,255],"99":[158,14,164,255],"100":[159,15,159,255],"101":[160,15,154,255],"102":[161,16,149,255],"103":[162,16,144,255],"104":[162,17,139,255],"105":[163,17,134,255],"106":[164,18,128,255],"107":[165,18,123,255],"108":[165,19,117,255],"109":[166,19,112,255],"110":[167,20,106,255],"111":[168,21,100,255],"112":[168,21,95,255],"113":[169,22,89,255],"114":[170,22,83,255],"115":[171,23,77,255],"116":[171,24,71,255],"117":[172,24,65,255],"118":[173,25,59,255],"119":[174,25,53,255],"120":[174,26,46,255],"121":[175,27,40,255],"122":[176,27,34,255],"123":[177,28,28,255],"124":[177,29,21,255],"125":[178,30,15,255],"126":[179,30,9,255],"127":[179,31,3,255],"128":[180,32,0,255],"129":[181,33,0,255],"130":[182,33,0,255],"131":[182,34,0,255],"132":[183,35,0,255],"133":[184,36,0,255],"134":[184,37,0,255],"135":[185,37,0,255],"136":[186,38,0,255],"137":[186,39,0,255],"138":[187,40,0,255],"139":[188,41,0,255],"140":[188,42,0,255],"141":[189,43,0,255],"142":[190,44,0,255],"143":[190,44,0,255],"144":[191,45,0,255],"145":[192,46,0,255],"146":[192,47,0,255],"147":[193,48,0,255],"148":[194,49,0,255],"149":[194,50,0,255],"150":[195,51,0,255],"151":[196,52,0,255],"152":[196,54,0,255],"153":[197,55,0,255],"154":[198,56,0,255],"155":[198,57,0,255],"156":[199,58,0,255],"157":[200,59,0,255],"158":[200,60,0,255],"159":[201,61,0,255],"160":[201,62,0,255],"161":[202,64,0,255],"162":[203,65,0,255],"163":[203,66,0,255],"164":[204,67,0,255],"165":[205,69,0,255],"166":[205,70,0,255],"167":[206,71,0,255],"168":[206,72,0,255],"169":[207,74,0,255],"170":[208,75,0,255],"171":[208,76,0,255],"172":[209,78,0,255],"173":[210,79,0,255],"174":[210,81,0,255],"175":[211,82,0,255],"176":[211,83,0,255],"177":[212,85,0,255],"178":[213,86,0,255],"179":[213,88,0,255],"180":[214,89,0,255],"181":[214,91,0,255],"182":[215,92,0,255],"183":[216,94,0,255],"184":[216,95,0,255],"185":[217,97,0,255],"186":[217,98,0,255],"187":[218,100,0,255],"188":[218,102,0,255],"189":[219,103,0,255],"190":[220,105,0,255],"191":[220,107,0,255],"192":[221,108,0,255],"193":[221,110,0,255],"194":[222,112,0,255],"195":[222,114,0,255],"196":[223,115,0,255],"197":[224,117,0,255],"198":[224,119,0,255],"199":[225,121,0,255],"200":[225,123,0,255],"201":[226,124,0,255],"202":[226,126,0,255],"203":[227,128,0,255],"204":[228,130,0,255],"205":[228,132,0,255],"206":[229,134,0,255],"207":[229,136,0,255],"208":[230,138,0,255],"209":[230,140,0,255],"210":[231,142,0,255],"211":[231,144,0,255],"212":[232,146,0,255],"213":[233,148,0,255],"214":[233,150,0,255],"215":[234,152,0,255],"216":[234,154,0,255],"217":[235,157,0,255],"218":[235,159,0,255],"219":[236,161,0,255],"220":[236,163,0,255],"221":[237,165,0,255],"222":[237,168,0,255],"223":[238,170,0,255],"224":[238,172,0,255],"225":[239,175,0,255],"226":[240,177,0,255],"227":[240,179,0,255],"228":[241,182,0,255],"229":[241,184,0,255],"230":[242,187,0,255],"231":[242,189,0,255],"232":[243,192,0,255],"233":[243,194,0,255],"234":[244,197,0,255],"235":[244,199,0,255],"236":[245,202,0,255],"237":[245,204,0,255],"238":[246,207,0,255],"239":[246,209,0,255],"240":[247,212,0,255],"241":[247,215,0,255],"242":[248,217,0,255],"243":[248,220,0,255],"244":[249,223,0,255],"245":[249,226,0,255],"246":[250,228,0,255],"247":[250,231,0,255],"248":[251,234,0,255],"249":[251,237,0,255],"250":[252,240,0,255],"251":[252,243,0,255],"252":[253,246,0,255],"253":[253,249,0,255],"254":[254,252,0,255],"255":[255,255,0,255]}, +gnuplot2: {"0":[0,0,0,255],"1":[0,0,4,255],"2":[0,0,8,255],"3":[0,0,12,255],"4":[0,0,16,255],"5":[0,0,20,255],"6":[0,0,24,255],"7":[0,0,28,255],"8":[0,0,32,255],"9":[0,0,36,255],"10":[0,0,40,255],"11":[0,0,44,255],"12":[0,0,48,255],"13":[0,0,52,255],"14":[0,0,56,255],"15":[0,0,60,255],"16":[0,0,64,255],"17":[0,0,68,255],"18":[0,0,72,255],"19":[0,0,76,255],"20":[0,0,80,255],"21":[0,0,84,255],"22":[0,0,88,255],"23":[0,0,92,255],"24":[0,0,96,255],"25":[0,0,100,255],"26":[0,0,104,255],"27":[0,0,108,255],"28":[0,0,112,255],"29":[0,0,116,255],"30":[0,0,120,255],"31":[0,0,124,255],"32":[0,0,128,255],"33":[0,0,131,255],"34":[0,0,136,255],"35":[0,0,140,255],"36":[0,0,144,255],"37":[0,0,147,255],"38":[0,0,152,255],"39":[0,0,156,255],"40":[0,0,160,255],"41":[0,0,163,255],"42":[0,0,168,255],"43":[0,0,172,255],"44":[0,0,176,255],"45":[0,0,179,255],"46":[0,0,184,255],"47":[0,0,188,255],"48":[0,0,192,255],"49":[0,0,195,255],"50":[0,0,200,255],"51":[0,0,204,255],"52":[0,0,208,255],"53":[0,0,211,255],"54":[0,0,216,255],"55":[0,0,220,255],"56":[0,0,224,255],"57":[0,0,227,255],"58":[0,0,232,255],"59":[0,0,236,255],"60":[0,0,240,255],"61":[0,0,243,255],"62":[0,0,248,255],"63":[0,0,252,255],"64":[0,0,255,255],"65":[3,0,255,255],"66":[7,0,255,255],"67":[10,0,255,255],"68":[13,0,255,255],"69":[16,0,255,255],"70":[19,0,255,255],"71":[22,0,255,255],"72":[25,0,255,255],"73":[28,0,255,255],"74":[32,0,255,255],"75":[35,0,255,255],"76":[38,0,255,255],"77":[41,0,255,255],"78":[44,0,255,255],"79":[47,0,255,255],"80":[50,0,255,255],"81":[53,0,255,255],"82":[57,0,255,255],"83":[60,0,255,255],"84":[63,0,255,255],"85":[66,0,255,255],"86":[69,0,255,255],"87":[72,0,255,255],"88":[75,0,255,255],"89":[78,0,255,255],"90":[82,0,255,255],"91":[85,0,255,255],"92":[88,0,255,255],"93":[91,0,255,255],"94":[94,0,255,255],"95":[97,0,255,255],"96":[100,0,255,255],"97":[103,0,255,255],"98":[107,0,255,255],"99":[110,0,255,255],"100":[113,0,255,255],"101":[116,0,255,255],"102":[119,0,255,255],"103":[122,0,255,255],"104":[125,0,255,255],"105":[128,0,255,255],"106":[132,0,255,255],"107":[135,0,255,255],"108":[138,1,253,255],"109":[141,3,251,255],"110":[144,5,249,255],"111":[147,7,247,255],"112":[150,9,245,255],"113":[153,11,243,255],"114":[157,13,241,255],"115":[160,15,239,255],"116":[163,17,237,255],"117":[166,19,235,255],"118":[169,21,233,255],"119":[172,23,231,255],"120":[175,25,229,255],"121":[178,27,227,255],"122":[182,29,225,255],"123":[185,31,223,255],"124":[188,33,221,255],"125":[191,35,219,255],"126":[194,37,217,255],"127":[197,39,215,255],"128":[200,41,213,255],"129":[203,43,211,255],"130":[207,45,209,255],"131":[210,47,207,255],"132":[213,49,205,255],"133":[216,51,203,255],"134":[219,53,201,255],"135":[222,55,199,255],"136":[225,57,197,255],"137":[228,59,195,255],"138":[232,61,193,255],"139":[235,63,191,255],"140":[238,65,189,255],"141":[241,67,187,255],"142":[244,69,185,255],"143":[247,71,183,255],"144":[250,73,181,255],"145":[253,75,179,255],"146":[255,77,177,255],"147":[255,79,175,255],"148":[255,81,173,255],"149":[255,83,171,255],"150":[255,85,169,255],"151":[255,87,167,255],"152":[255,89,165,255],"153":[255,91,163,255],"154":[255,93,161,255],"155":[255,95,159,255],"156":[255,97,157,255],"157":[255,99,155,255],"158":[255,101,153,255],"159":[255,103,151,255],"160":[255,105,149,255],"161":[255,107,147,255],"162":[255,109,145,255],"163":[255,111,143,255],"164":[255,113,141,255],"165":[255,115,139,255],"166":[255,117,137,255],"167":[255,119,135,255],"168":[255,121,133,255],"169":[255,123,131,255],"170":[255,125,129,255],"171":[255,127,127,255],"172":[255,129,125,255],"173":[255,131,123,255],"174":[255,133,121,255],"175":[255,135,119,255],"176":[255,137,117,255],"177":[255,139,115,255],"178":[255,141,113,255],"179":[255,143,111,255],"180":[255,145,109,255],"181":[255,147,107,255],"182":[255,149,105,255],"183":[255,151,103,255],"184":[255,153,101,255],"185":[255,155,99,255],"186":[255,157,97,255],"187":[255,159,95,255],"188":[255,161,93,255],"189":[255,163,91,255],"190":[255,165,89,255],"191":[255,167,87,255],"192":[255,169,85,255],"193":[255,171,83,255],"194":[255,173,81,255],"195":[255,175,79,255],"196":[255,177,77,255],"197":[255,179,75,255],"198":[255,181,73,255],"199":[255,183,71,255],"200":[255,185,69,255],"201":[255,187,67,255],"202":[255,189,65,255],"203":[255,191,63,255],"204":[255,193,61,255],"205":[255,195,59,255],"206":[255,197,57,255],"207":[255,199,55,255],"208":[255,201,53,255],"209":[255,203,51,255],"210":[255,205,49,255],"211":[255,207,47,255],"212":[255,209,45,255],"213":[255,211,43,255],"214":[255,213,41,255],"215":[255,215,39,255],"216":[255,217,37,255],"217":[255,219,35,255],"218":[255,221,33,255],"219":[255,223,31,255],"220":[255,225,29,255],"221":[255,227,27,255],"222":[255,229,25,255],"223":[255,231,23,255],"224":[255,233,21,255],"225":[255,235,19,255],"226":[255,237,17,255],"227":[255,239,15,255],"228":[255,241,13,255],"229":[255,243,11,255],"230":[255,245,9,255],"231":[255,247,7,255],"232":[255,249,5,255],"233":[255,251,3,255],"234":[255,253,1,255],"235":[255,255,4,255],"236":[255,255,17,255],"237":[255,255,29,255],"238":[255,255,42,255],"239":[255,255,54,255],"240":[255,255,67,255],"241":[255,255,79,255],"242":[255,255,92,255],"243":[255,255,104,255],"244":[255,255,117,255],"245":[255,255,130,255],"246":[255,255,142,255],"247":[255,255,154,255],"248":[255,255,167,255],"249":[255,255,179,255],"250":[255,255,192,255],"251":[255,255,204,255],"252":[255,255,217,255],"253":[255,255,230,255],"254":[255,255,242,255],"255":[255,255,255,255]}, +hsv: {"0":[255,0,0,255],"1":[255,5,0,255],"2":[255,11,0,255],"3":[255,17,0,255],"4":[255,23,0,255],"5":[255,29,0,255],"6":[255,35,0,255],"7":[255,41,0,255],"8":[255,47,0,255],"9":[255,53,0,255],"10":[255,59,0,255],"11":[255,64,0,255],"12":[255,70,0,255],"13":[255,76,0,255],"14":[255,82,0,255],"15":[255,88,0,255],"16":[255,94,0,255],"17":[255,100,0,255],"18":[255,106,0,255],"19":[255,112,0,255],"20":[255,118,0,255],"21":[255,124,0,255],"22":[255,129,0,255],"23":[255,135,0,255],"24":[255,141,0,255],"25":[255,147,0,255],"26":[255,153,0,255],"27":[255,159,0,255],"28":[255,165,0,255],"29":[255,171,0,255],"30":[255,177,0,255],"31":[255,183,0,255],"32":[255,189,0,255],"33":[255,194,0,255],"34":[255,200,0,255],"35":[255,206,0,255],"36":[255,212,0,255],"37":[255,218,0,255],"38":[255,224,0,255],"39":[255,230,0,255],"40":[255,236,0,255],"41":[253,241,0,255],"42":[251,245,0,255],"43":[250,249,0,255],"44":[248,252,0,255],"45":[244,255,0,255],"46":[238,255,0,255],"47":[232,255,0,255],"48":[226,255,0,255],"49":[220,255,0,255],"50":[214,255,0,255],"51":[208,255,0,255],"52":[202,255,0,255],"53":[196,255,0,255],"54":[191,255,0,255],"55":[185,255,0,255],"56":[179,255,0,255],"57":[173,255,0,255],"58":[167,255,0,255],"59":[161,255,0,255],"60":[155,255,0,255],"61":[149,255,0,255],"62":[143,255,0,255],"63":[137,255,0,255],"64":[131,255,0,255],"65":[126,255,0,255],"66":[120,255,0,255],"67":[114,255,0,255],"68":[108,255,0,255],"69":[102,255,0,255],"70":[96,255,0,255],"71":[90,255,0,255],"72":[84,255,0,255],"73":[78,255,0,255],"74":[72,255,0,255],"75":[67,255,0,255],"76":[61,255,0,255],"77":[55,255,0,255],"78":[49,255,0,255],"79":[43,255,0,255],"80":[37,255,0,255],"81":[31,255,0,255],"82":[25,255,0,255],"83":[19,255,0,255],"84":[13,255,0,255],"85":[7,255,0,255],"86":[5,255,3,255],"87":[4,255,7,255],"88":[2,255,11,255],"89":[0,255,15,255],"90":[0,255,21,255],"91":[0,255,27,255],"92":[0,255,33,255],"93":[0,255,39,255],"94":[0,255,45,255],"95":[0,255,51,255],"96":[0,255,57,255],"97":[0,255,62,255],"98":[0,255,68,255],"99":[0,255,74,255],"100":[0,255,80,255],"101":[0,255,86,255],"102":[0,255,92,255],"103":[0,255,98,255],"104":[0,255,104,255],"105":[0,255,110,255],"106":[0,255,116,255],"107":[0,255,121,255],"108":[0,255,127,255],"109":[0,255,133,255],"110":[0,255,139,255],"111":[0,255,145,255],"112":[0,255,151,255],"113":[0,255,157,255],"114":[0,255,163,255],"115":[0,255,169,255],"116":[0,255,175,255],"117":[0,255,181,255],"118":[0,255,186,255],"119":[0,255,192,255],"120":[0,255,198,255],"121":[0,255,204,255],"122":[0,255,210,255],"123":[0,255,216,255],"124":[0,255,222,255],"125":[0,255,228,255],"126":[0,255,234,255],"127":[0,255,240,255],"128":[0,255,245,255],"129":[0,255,251,255],"130":[0,252,255,255],"131":[0,246,255,255],"132":[0,240,255,255],"133":[0,234,255,255],"134":[0,228,255,255],"135":[0,222,255,255],"136":[0,216,255,255],"137":[0,210,255,255],"138":[0,204,255,255],"139":[0,199,255,255],"140":[0,193,255,255],"141":[0,187,255,255],"142":[0,181,255,255],"143":[0,175,255,255],"144":[0,169,255,255],"145":[0,163,255,255],"146":[0,157,255,255],"147":[0,151,255,255],"148":[0,145,255,255],"149":[0,139,255,255],"150":[0,134,255,255],"151":[0,128,255,255],"152":[0,122,255,255],"153":[0,116,255,255],"154":[0,110,255,255],"155":[0,104,255,255],"156":[0,98,255,255],"157":[0,92,255,255],"158":[0,86,255,255],"159":[0,80,255,255],"160":[0,75,255,255],"161":[0,69,255,255],"162":[0,63,255,255],"163":[0,57,255,255],"164":[0,51,255,255],"165":[0,45,255,255],"166":[0,39,255,255],"167":[0,33,255,255],"168":[0,27,255,255],"169":[0,21,255,255],"170":[0,15,255,255],"171":[1,12,255,255],"172":[3,8,255,255],"173":[5,4,255,255],"174":[7,0,255,255],"175":[13,0,255,255],"176":[19,0,255,255],"177":[25,0,255,255],"178":[31,0,255,255],"179":[37,0,255,255],"180":[43,0,255,255],"181":[49,0,255,255],"182":[54,0,255,255],"183":[60,0,255,255],"184":[66,0,255,255],"185":[72,0,255,255],"186":[78,0,255,255],"187":[84,0,255,255],"188":[90,0,255,255],"189":[96,0,255,255],"190":[102,0,255,255],"191":[108,0,255,255],"192":[113,0,255,255],"193":[119,0,255,255],"194":[125,0,255,255],"195":[131,0,255,255],"196":[137,0,255,255],"197":[143,0,255,255],"198":[149,0,255,255],"199":[155,0,255,255],"200":[161,0,255,255],"201":[167,0,255,255],"202":[173,0,255,255],"203":[178,0,255,255],"204":[184,0,255,255],"205":[190,0,255,255],"206":[196,0,255,255],"207":[202,0,255,255],"208":[208,0,255,255],"209":[214,0,255,255],"210":[220,0,255,255],"211":[226,0,255,255],"212":[232,0,255,255],"213":[238,0,255,255],"214":[243,0,255,255],"215":[247,0,253,255],"216":[249,0,249,255],"217":[251,0,245,255],"218":[253,0,241,255],"219":[255,0,236,255],"220":[255,0,230,255],"221":[255,0,224,255],"222":[255,0,218,255],"223":[255,0,212,255],"224":[255,0,207,255],"225":[255,0,201,255],"226":[255,0,195,255],"227":[255,0,189,255],"228":[255,0,183,255],"229":[255,0,177,255],"230":[255,0,171,255],"231":[255,0,165,255],"232":[255,0,159,255],"233":[255,0,153,255],"234":[255,0,147,255],"235":[255,0,142,255],"236":[255,0,136,255],"237":[255,0,130,255],"238":[255,0,124,255],"239":[255,0,118,255],"240":[255,0,112,255],"241":[255,0,106,255],"242":[255,0,100,255],"243":[255,0,94,255],"244":[255,0,88,255],"245":[255,0,82,255],"246":[255,0,77,255],"247":[255,0,71,255],"248":[255,0,65,255],"249":[255,0,59,255],"250":[255,0,53,255],"251":[255,0,47,255],"252":[255,0,41,255],"253":[255,0,35,255],"254":[255,0,29,255],"255":[255,0,23,255]}, +ice: {"0":[3,5,18,255],"1":[4,6,19,255],"2":[5,7,21,255],"3":[6,8,22,255],"4":[6,8,24,255],"5":[7,9,25,255],"6":[8,10,27,255],"7":[9,11,28,255],"8":[10,12,30,255],"9":[11,13,31,255],"10":[12,14,32,255],"11":[13,15,34,255],"12":[14,16,35,255],"13":[15,16,37,255],"14":[16,17,38,255],"15":[17,18,40,255],"16":[18,19,41,255],"17":[19,20,42,255],"18":[20,21,44,255],"19":[21,21,45,255],"20":[22,22,47,255],"21":[23,23,48,255],"22":[24,24,50,255],"23":[25,25,51,255],"24":[26,25,53,255],"25":[27,26,54,255],"26":[27,27,56,255],"27":[28,28,57,255],"28":[29,29,59,255],"29":[30,29,60,255],"30":[31,30,62,255],"31":[32,31,63,255],"32":[33,32,65,255],"33":[34,32,66,255],"34":[34,33,68,255],"35":[35,34,69,255],"36":[36,35,71,255],"37":[37,35,72,255],"38":[38,36,74,255],"39":[39,37,75,255],"40":[39,38,77,255],"41":[40,38,79,255],"42":[41,39,80,255],"43":[42,40,82,255],"44":[42,41,83,255],"45":[43,41,85,255],"46":[44,42,87,255],"47":[45,43,88,255],"48":[45,44,90,255],"49":[46,45,91,255],"50":[47,45,93,255],"51":[48,46,95,255],"52":[48,47,96,255],"53":[49,48,98,255],"54":[50,48,100,255],"55":[50,49,101,255],"56":[51,50,103,255],"57":[52,51,105,255],"58":[52,51,106,255],"59":[53,52,108,255],"60":[53,53,110,255],"61":[54,54,111,255],"62":[55,55,113,255],"63":[55,55,115,255],"64":[56,56,116,255],"65":[56,57,118,255],"66":[57,58,120,255],"67":[57,59,121,255],"68":[58,59,123,255],"69":[58,60,125,255],"70":[58,61,126,255],"71":[59,62,128,255],"72":[59,63,130,255],"73":[60,64,131,255],"74":[60,65,133,255],"75":[60,65,134,255],"76":[60,66,136,255],"77":[61,67,138,255],"78":[61,68,139,255],"79":[61,69,141,255],"80":[61,70,142,255],"81":[62,71,144,255],"82":[62,72,145,255],"83":[62,73,147,255],"84":[62,74,148,255],"85":[62,75,150,255],"86":[62,76,151,255],"87":[62,77,152,255],"88":[62,78,154,255],"89":[62,79,155,255],"90":[62,80,156,255],"91":[62,81,157,255],"92":[62,82,159,255],"93":[62,83,160,255],"94":[62,84,161,255],"95":[62,85,162,255],"96":[62,87,163,255],"97":[62,88,164,255],"98":[62,89,165,255],"99":[62,90,166,255],"100":[62,91,167,255],"101":[62,92,168,255],"102":[62,93,168,255],"103":[62,94,169,255],"104":[62,96,170,255],"105":[62,97,171,255],"106":[62,98,172,255],"107":[62,99,172,255],"108":[62,100,173,255],"109":[62,101,174,255],"110":[62,102,174,255],"111":[62,103,175,255],"112":[62,105,175,255],"113":[62,106,176,255],"114":[62,107,177,255],"115":[62,108,177,255],"116":[62,109,178,255],"117":[62,110,178,255],"118":[63,111,179,255],"119":[63,112,179,255],"120":[63,114,180,255],"121":[63,115,180,255],"122":[64,116,180,255],"123":[64,117,181,255],"124":[64,118,181,255],"125":[65,119,182,255],"126":[65,120,182,255],"127":[65,121,183,255],"128":[66,122,183,255],"129":[66,123,183,255],"130":[67,125,184,255],"131":[67,126,184,255],"132":[68,127,185,255],"133":[68,128,185,255],"134":[69,129,185,255],"135":[69,130,186,255],"136":[70,131,186,255],"137":[70,132,186,255],"138":[71,133,187,255],"139":[72,134,187,255],"140":[72,135,188,255],"141":[73,136,188,255],"142":[74,137,188,255],"143":[74,139,189,255],"144":[75,140,189,255],"145":[76,141,189,255],"146":[76,142,190,255],"147":[77,143,190,255],"148":[78,144,190,255],"149":[79,145,191,255],"150":[79,146,191,255],"151":[80,147,192,255],"152":[81,148,192,255],"153":[82,149,192,255],"154":[82,150,193,255],"155":[83,151,193,255],"156":[84,152,193,255],"157":[85,153,194,255],"158":[86,154,194,255],"159":[87,156,195,255],"160":[88,157,195,255],"161":[88,158,195,255],"162":[89,159,196,255],"163":[90,160,196,255],"164":[91,161,197,255],"165":[92,162,197,255],"166":[93,163,197,255],"167":[94,164,198,255],"168":[95,165,198,255],"169":[96,166,199,255],"170":[97,167,199,255],"171":[98,168,199,255],"172":[99,169,200,255],"173":[100,170,200,255],"174":[101,171,201,255],"175":[102,172,201,255],"176":[103,174,201,255],"177":[104,175,202,255],"178":[105,176,202,255],"179":[106,177,203,255],"180":[107,178,203,255],"181":[109,179,203,255],"182":[110,180,204,255],"183":[111,181,204,255],"184":[112,182,205,255],"185":[113,183,205,255],"186":[114,184,205,255],"187":[116,185,206,255],"188":[117,186,206,255],"189":[118,187,207,255],"190":[119,188,207,255],"191":[121,189,208,255],"192":[122,190,208,255],"193":[123,191,208,255],"194":[125,192,209,255],"195":[126,193,209,255],"196":[128,194,210,255],"197":[129,195,210,255],"198":[131,196,211,255],"199":[132,198,211,255],"200":[134,199,211,255],"201":[135,200,212,255],"202":[137,201,212,255],"203":[138,202,213,255],"204":[140,203,213,255],"205":[142,203,214,255],"206":[143,204,214,255],"207":[145,205,215,255],"208":[147,206,215,255],"209":[149,207,216,255],"210":[150,208,216,255],"211":[152,209,217,255],"212":[154,210,217,255],"213":[156,211,218,255],"214":[158,212,219,255],"215":[160,213,219,255],"216":[161,214,220,255],"217":[163,215,220,255],"218":[165,216,221,255],"219":[167,217,222,255],"220":[169,218,222,255],"221":[171,219,223,255],"222":[173,220,224,255],"223":[175,221,225,255],"224":[176,221,225,255],"225":[178,222,226,255],"226":[180,223,227,255],"227":[182,224,228,255],"228":[184,225,228,255],"229":[186,226,229,255],"230":[188,227,230,255],"231":[190,228,231,255],"232":[192,229,232,255],"233":[193,230,233,255],"234":[195,231,234,255],"235":[197,232,234,255],"236":[199,233,235,255],"237":[201,234,236,255],"238":[203,235,237,255],"239":[205,236,238,255],"240":[207,237,239,255],"241":[208,238,240,255],"242":[210,239,241,255],"243":[212,240,242,255],"244":[214,241,243,255],"245":[216,242,244,255],"246":[218,243,245,255],"247":[219,244,245,255],"248":[221,245,246,255],"249":[223,246,247,255],"250":[225,247,248,255],"251":[227,248,249,255],"252":[228,249,250,255],"253":[230,250,251,255],"254":[232,251,252,255],"255":[234,252,253,255]}, +orrd: {"0":[255,247,236,255],"1":[254,246,234,255],"2":[254,246,233,255],"3":[254,245,232,255],"4":[254,245,231,255],"5":[254,244,230,255],"6":[254,244,229,255],"7":[254,243,228,255],"8":[254,243,226,255],"9":[254,242,225,255],"10":[254,242,224,255],"11":[254,241,223,255],"12":[254,241,222,255],"13":[254,240,221,255],"14":[254,240,220,255],"15":[254,239,219,255],"16":[254,239,217,255],"17":[254,239,216,255],"18":[254,238,215,255],"19":[254,238,214,255],"20":[254,237,213,255],"21":[254,237,212,255],"22":[254,236,211,255],"23":[254,236,210,255],"24":[254,235,208,255],"25":[254,235,207,255],"26":[254,234,206,255],"27":[254,234,205,255],"28":[254,233,204,255],"29":[254,233,203,255],"30":[254,232,202,255],"31":[254,232,200,255],"32":[253,231,199,255],"33":[253,231,198,255],"34":[253,230,197,255],"35":[253,230,195,255],"36":[253,229,194,255],"37":[253,228,193,255],"38":[253,228,191,255],"39":[253,227,190,255],"40":[253,226,189,255],"41":[253,226,187,255],"42":[253,225,186,255],"43":[253,225,185,255],"44":[253,224,184,255],"45":[253,223,182,255],"46":[253,223,181,255],"47":[253,222,180,255],"48":[253,221,178,255],"49":[253,221,177,255],"50":[253,220,176,255],"51":[253,220,174,255],"52":[253,219,173,255],"53":[253,218,172,255],"54":[253,218,170,255],"55":[253,217,169,255],"56":[253,216,168,255],"57":[253,216,166,255],"58":[253,215,165,255],"59":[253,214,164,255],"60":[253,214,162,255],"61":[253,213,161,255],"62":[253,213,160,255],"63":[253,212,158,255],"64":[253,211,157,255],"65":[253,211,156,255],"66":[253,210,156,255],"67":[253,209,155,255],"68":[253,208,154,255],"69":[253,207,153,255],"70":[253,207,152,255],"71":[253,206,152,255],"72":[253,205,151,255],"73":[253,204,150,255],"74":[253,203,149,255],"75":[253,203,148,255],"76":[253,202,148,255],"77":[253,201,147,255],"78":[253,200,146,255],"79":[253,200,145,255],"80":[253,199,144,255],"81":[253,198,143,255],"82":[253,197,143,255],"83":[253,196,142,255],"84":[253,196,141,255],"85":[253,195,140,255],"86":[253,194,139,255],"87":[253,193,139,255],"88":[253,192,138,255],"89":[253,192,137,255],"90":[253,191,136,255],"91":[253,190,135,255],"92":[253,189,134,255],"93":[253,189,134,255],"94":[253,188,133,255],"95":[253,187,132,255],"96":[252,186,131,255],"97":[252,185,130,255],"98":[252,183,128,255],"99":[252,182,127,255],"100":[252,180,126,255],"101":[252,179,124,255],"102":[252,177,123,255],"103":[252,176,122,255],"104":[252,174,120,255],"105":[252,173,119,255],"106":[252,172,118,255],"107":[252,170,116,255],"108":[252,169,115,255],"109":[252,167,113,255],"110":[252,166,112,255],"111":[252,164,111,255],"112":[252,163,109,255],"113":[252,161,108,255],"114":[252,160,107,255],"115":[252,159,105,255],"116":[252,157,104,255],"117":[252,156,103,255],"118":[252,154,101,255],"119":[252,153,100,255],"120":[252,151,99,255],"121":[252,150,97,255],"122":[252,148,96,255],"123":[252,147,95,255],"124":[252,146,93,255],"125":[252,144,92,255],"126":[252,143,91,255],"127":[252,141,89,255],"128":[251,140,88,255],"129":[251,139,88,255],"130":[250,137,87,255],"131":[250,136,87,255],"132":[250,135,86,255],"133":[249,134,86,255],"134":[249,132,85,255],"135":[248,131,85,255],"136":[248,130,84,255],"137":[248,129,83,255],"138":[247,127,83,255],"139":[247,126,82,255],"140":[246,125,82,255],"141":[246,124,81,255],"142":[246,122,81,255],"143":[245,121,80,255],"144":[245,120,80,255],"145":[244,119,79,255],"146":[244,117,79,255],"147":[244,116,78,255],"148":[243,115,78,255],"149":[243,114,77,255],"150":[242,112,77,255],"151":[242,111,76,255],"152":[242,110,75,255],"153":[241,109,75,255],"154":[241,107,74,255],"155":[240,106,74,255],"156":[240,105,73,255],"157":[239,103,73,255],"158":[239,102,72,255],"159":[239,101,72,255],"160":[238,99,71,255],"161":[237,98,69,255],"162":[237,96,68,255],"163":[236,94,67,255],"164":[235,93,66,255],"165":[234,91,64,255],"166":[234,89,63,255],"167":[233,88,62,255],"168":[232,86,60,255],"169":[231,84,59,255],"170":[231,83,58,255],"171":[230,81,57,255],"172":[229,80,55,255],"173":[228,78,54,255],"174":[227,76,53,255],"175":[227,75,51,255],"176":[226,73,50,255],"177":[225,71,49,255],"178":[224,70,48,255],"179":[224,68,46,255],"180":[223,66,45,255],"181":[222,65,44,255],"182":[221,63,42,255],"183":[221,61,41,255],"184":[220,60,40,255],"185":[219,58,39,255],"186":[218,56,37,255],"187":[218,55,36,255],"188":[217,53,35,255],"189":[216,51,33,255],"190":[215,50,32,255],"191":[215,48,31,255],"192":[214,46,30,255],"193":[213,45,29,255],"194":[211,43,28,255],"195":[210,42,27,255],"196":[209,40,26,255],"197":[208,39,25,255],"198":[207,37,24,255],"199":[206,36,23,255],"200":[205,34,22,255],"201":[203,33,21,255],"202":[202,31,20,255],"203":[201,30,19,255],"204":[200,28,18,255],"205":[199,27,17,255],"206":[198,25,16,255],"207":[197,24,15,255],"208":[196,22,14,255],"209":[194,21,13,255],"210":[193,19,12,255],"211":[192,18,11,255],"212":[191,16,10,255],"213":[190,15,9,255],"214":[189,13,8,255],"215":[188,12,7,255],"216":[187,10,6,255],"217":[185,9,5,255],"218":[184,7,4,255],"219":[183,6,4,255],"220":[182,4,3,255],"221":[181,3,2,255],"222":[180,1,1,255],"223":[179,0,0,255],"224":[177,0,0,255],"225":[175,0,0,255],"226":[174,0,0,255],"227":[172,0,0,255],"228":[171,0,0,255],"229":[169,0,0,255],"230":[167,0,0,255],"231":[166,0,0,255],"232":[164,0,0,255],"233":[162,0,0,255],"234":[161,0,0,255],"235":[159,0,0,255],"236":[157,0,0,255],"237":[156,0,0,255],"238":[154,0,0,255],"239":[153,0,0,255],"240":[151,0,0,255],"241":[149,0,0,255],"242":[148,0,0,255],"243":[146,0,0,255],"244":[144,0,0,255],"245":[143,0,0,255],"246":[141,0,0,255],"247":[140,0,0,255],"248":[138,0,0,255],"249":[136,0,0,255],"250":[135,0,0,255],"251":[133,0,0,255],"252":[131,0,0,255],"253":[130,0,0,255],"254":[128,0,0,255],"255":[127,0,0,255]}, +oxy: {"0":[63,5,5,255],"1":[65,5,5,255],"2":[66,5,5,255],"3":[67,5,5,255],"4":[70,6,6,255],"5":[71,6,6,255],"6":[73,6,7,255],"7":[74,6,7,255],"8":[77,6,8,255],"9":[78,6,8,255],"10":[79,6,9,255],"11":[81,6,9,255],"12":[83,7,10,255],"13":[85,7,10,255],"14":[86,7,10,255],"15":[88,7,11,255],"16":[90,7,11,255],"17":[92,7,12,255],"18":[93,7,12,255],"19":[94,7,12,255],"20":[97,7,13,255],"21":[98,6,13,255],"22":[100,6,13,255],"23":[101,6,13,255],"24":[104,6,14,255],"25":[105,6,14,255],"26":[107,6,14,255],"27":[108,6,14,255],"28":[111,5,15,255],"29":[112,5,15,255],"30":[114,5,15,255],"31":[115,5,15,255],"32":[118,5,15,255],"33":[119,5,14,255],"34":[120,4,14,255],"35":[122,4,14,255],"36":[124,5,14,255],"37":[126,5,13,255],"38":[127,5,13,255],"39":[128,6,13,255],"40":[131,7,12,255],"41":[132,8,11,255],"42":[133,10,11,255],"43":[134,11,10,255],"44":[136,14,9,255],"45":[137,15,9,255],"46":[138,17,9,255],"47":[139,18,8,255],"48":[140,21,8,255],"49":[141,22,7,255],"50":[142,24,7,255],"51":[79,79,78,255],"52":[80,79,79,255],"53":[81,80,80,255],"54":[81,81,81,255],"55":[83,82,82,255],"56":[84,83,83,255],"57":[84,84,83,255],"58":[85,85,84,255],"59":[87,86,86,255],"60":[87,87,86,255],"61":[88,88,87,255],"62":[89,88,88,255],"63":[90,90,89,255],"64":[91,91,90,255],"65":[92,91,91,255],"66":[93,92,92,255],"67":[94,94,93,255],"68":[95,94,94,255],"69":[96,95,95,255],"70":[96,96,95,255],"71":[98,97,97,255],"72":[99,98,98,255],"73":[99,99,98,255],"74":[100,100,99,255],"75":[102,101,101,255],"76":[102,102,101,255],"77":[103,103,102,255],"78":[104,103,103,255],"79":[105,105,104,255],"80":[106,106,105,255],"81":[107,106,106,255],"82":[108,107,107,255],"83":[109,109,108,255],"84":[110,110,109,255],"85":[111,110,110,255],"86":[112,111,111,255],"87":[113,113,112,255],"88":[114,113,113,255],"89":[115,114,114,255],"90":[115,115,114,255],"91":[117,117,116,255],"92":[118,117,117,255],"93":[119,118,118,255],"94":[119,119,118,255],"95":[121,120,120,255],"96":[122,121,121,255],"97":[123,122,121,255],"98":[123,123,122,255],"99":[125,124,124,255],"100":[126,125,125,255],"101":[126,126,125,255],"102":[128,128,127,255],"103":[129,128,128,255],"104":[130,129,129,255],"105":[130,130,129,255],"106":[132,132,131,255],"107":[133,132,132,255],"108":[134,133,133,255],"109":[134,134,133,255],"110":[136,136,135,255],"111":[137,136,136,255],"112":[138,137,137,255],"113":[139,138,137,255],"114":[140,140,139,255],"115":[141,141,140,255],"116":[142,141,141,255],"117":[143,142,142,255],"118":[144,144,143,255],"119":[145,145,144,255],"120":[146,146,145,255],"121":[147,146,146,255],"122":[148,148,147,255],"123":[149,149,148,255],"124":[150,150,149,255],"125":[151,151,150,255],"126":[153,152,151,255],"127":[153,153,152,255],"128":[154,154,153,255],"129":[155,155,154,255],"130":[157,156,156,255],"131":[158,157,157,255],"132":[159,158,157,255],"133":[159,159,158,255],"134":[161,161,160,255],"135":[162,162,161,255],"136":[163,163,162,255],"137":[164,163,163,255],"138":[165,165,164,255],"139":[166,166,165,255],"140":[167,167,166,255],"141":[168,168,167,255],"142":[170,170,169,255],"143":[171,170,170,255],"144":[172,171,170,255],"145":[173,172,171,255],"146":[174,174,173,255],"147":[175,175,174,255],"148":[176,176,175,255],"149":[177,177,176,255],"150":[179,178,178,255],"151":[180,179,178,255],"152":[181,180,179,255],"153":[182,182,181,255],"154":[183,183,182,255],"155":[184,184,183,255],"156":[185,185,184,255],"157":[187,187,186,255],"158":[188,188,187,255],"159":[189,189,188,255],"160":[190,189,188,255],"161":[192,191,190,255],"162":[193,192,191,255],"163":[194,193,192,255],"164":[194,194,193,255],"165":[196,196,195,255],"166":[197,197,196,255],"167":[198,198,197,255],"168":[199,199,198,255],"169":[201,201,200,255],"170":[202,202,201,255],"171":[203,203,202,255],"172":[204,204,203,255],"173":[206,206,205,255],"174":[207,207,206,255],"175":[208,208,206,255],"176":[209,209,207,255],"177":[211,211,209,255],"178":[212,212,210,255],"179":[213,213,211,255],"180":[214,214,212,255],"181":[216,216,214,255],"182":[217,217,215,255],"183":[218,218,216,255],"184":[219,219,217,255],"185":[221,221,219,255],"186":[222,222,220,255],"187":[223,223,221,255],"188":[224,224,222,255],"189":[226,226,224,255],"190":[227,227,226,255],"191":[228,228,227,255],"192":[229,229,228,255],"193":[231,231,230,255],"194":[232,232,231,255],"195":[233,233,232,255],"196":[234,234,233,255],"197":[236,236,235,255],"198":[237,237,236,255],"199":[239,238,237,255],"200":[240,239,238,255],"201":[242,242,240,255],"202":[243,243,241,255],"203":[244,244,242,255],"204":[247,254,104,255],"205":[246,253,102,255],"206":[244,252,100,255],"207":[243,251,97,255],"208":[241,249,92,255],"209":[239,248,90,255],"210":[238,247,87,255],"211":[237,246,84,255],"212":[235,244,78,255],"213":[235,243,75,255],"214":[234,242,72,255],"215":[234,240,69,255],"216":[234,238,64,255],"217":[233,236,62,255],"218":[233,235,60,255],"219":[233,233,58,255],"220":[233,231,56,255],"221":[233,229,54,255],"222":[233,228,53,255],"223":[233,226,52,255],"224":[232,224,50,255],"225":[232,222,49,255],"226":[232,221,48,255],"227":[232,220,47,255],"228":[231,217,45,255],"229":[231,215,44,255],"230":[231,214,44,255],"231":[230,213,43,255],"232":[230,210,41,255],"233":[230,209,41,255],"234":[229,207,40,255],"235":[229,206,39,255],"236":[228,204,38,255],"237":[228,202,37,255],"238":[228,201,37,255],"239":[227,200,36,255],"240":[227,197,35,255],"241":[226,196,34,255],"242":[226,194,34,255],"243":[226,193,33,255],"244":[225,191,32,255],"245":[225,189,31,255],"246":[224,188,31,255],"247":[224,187,30,255],"248":[223,184,29,255],"249":[223,183,29,255],"250":[222,182,28,255],"251":[222,181,28,255],"252":[221,178,26,255],"253":[221,177,26,255],"254":[220,176,25,255],"255":[220,174,25,255]}, +paired: {"0":[166,206,227,255],"1":[166,206,227,255],"2":[166,206,227,255],"3":[166,206,227,255],"4":[166,206,227,255],"5":[166,206,227,255],"6":[166,206,227,255],"7":[166,206,227,255],"8":[166,206,227,255],"9":[166,206,227,255],"10":[166,206,227,255],"11":[166,206,227,255],"12":[166,206,227,255],"13":[166,206,227,255],"14":[166,206,227,255],"15":[166,206,227,255],"16":[166,206,227,255],"17":[166,206,227,255],"18":[166,206,227,255],"19":[166,206,227,255],"20":[166,206,227,255],"21":[166,206,227,255],"22":[31,120,180,255],"23":[31,120,180,255],"24":[31,120,180,255],"25":[31,120,180,255],"26":[31,120,180,255],"27":[31,120,180,255],"28":[31,120,180,255],"29":[31,120,180,255],"30":[31,120,180,255],"31":[31,120,180,255],"32":[31,120,180,255],"33":[31,120,180,255],"34":[31,120,180,255],"35":[31,120,180,255],"36":[31,120,180,255],"37":[31,120,180,255],"38":[31,120,180,255],"39":[31,120,180,255],"40":[31,120,180,255],"41":[31,120,180,255],"42":[31,120,180,255],"43":[178,223,138,255],"44":[178,223,138,255],"45":[178,223,138,255],"46":[178,223,138,255],"47":[178,223,138,255],"48":[178,223,138,255],"49":[178,223,138,255],"50":[178,223,138,255],"51":[178,223,138,255],"52":[178,223,138,255],"53":[178,223,138,255],"54":[178,223,138,255],"55":[178,223,138,255],"56":[178,223,138,255],"57":[178,223,138,255],"58":[178,223,138,255],"59":[178,223,138,255],"60":[178,223,138,255],"61":[178,223,138,255],"62":[178,223,138,255],"63":[178,223,138,255],"64":[51,160,44,255],"65":[51,160,44,255],"66":[51,160,44,255],"67":[51,160,44,255],"68":[51,160,44,255],"69":[51,160,44,255],"70":[51,160,44,255],"71":[51,160,44,255],"72":[51,160,44,255],"73":[51,160,44,255],"74":[51,160,44,255],"75":[51,160,44,255],"76":[51,160,44,255],"77":[51,160,44,255],"78":[51,160,44,255],"79":[51,160,44,255],"80":[51,160,44,255],"81":[51,160,44,255],"82":[51,160,44,255],"83":[51,160,44,255],"84":[51,160,44,255],"85":[251,154,153,255],"86":[251,154,153,255],"87":[251,154,153,255],"88":[251,154,153,255],"89":[251,154,153,255],"90":[251,154,153,255],"91":[251,154,153,255],"92":[251,154,153,255],"93":[251,154,153,255],"94":[251,154,153,255],"95":[251,154,153,255],"96":[251,154,153,255],"97":[251,154,153,255],"98":[251,154,153,255],"99":[251,154,153,255],"100":[251,154,153,255],"101":[251,154,153,255],"102":[251,154,153,255],"103":[251,154,153,255],"104":[251,154,153,255],"105":[251,154,153,255],"106":[251,154,153,255],"107":[227,26,28,255],"108":[227,26,28,255],"109":[227,26,28,255],"110":[227,26,28,255],"111":[227,26,28,255],"112":[227,26,28,255],"113":[227,26,28,255],"114":[227,26,28,255],"115":[227,26,28,255],"116":[227,26,28,255],"117":[227,26,28,255],"118":[227,26,28,255],"119":[227,26,28,255],"120":[227,26,28,255],"121":[227,26,28,255],"122":[227,26,28,255],"123":[227,26,28,255],"124":[227,26,28,255],"125":[227,26,28,255],"126":[227,26,28,255],"127":[227,26,28,255],"128":[253,191,111,255],"129":[253,191,111,255],"130":[253,191,111,255],"131":[253,191,111,255],"132":[253,191,111,255],"133":[253,191,111,255],"134":[253,191,111,255],"135":[253,191,111,255],"136":[253,191,111,255],"137":[253,191,111,255],"138":[253,191,111,255],"139":[253,191,111,255],"140":[253,191,111,255],"141":[253,191,111,255],"142":[253,191,111,255],"143":[253,191,111,255],"144":[253,191,111,255],"145":[253,191,111,255],"146":[253,191,111,255],"147":[253,191,111,255],"148":[253,191,111,255],"149":[255,127,0,255],"150":[255,127,0,255],"151":[255,127,0,255],"152":[255,127,0,255],"153":[255,127,0,255],"154":[255,127,0,255],"155":[255,127,0,255],"156":[255,127,0,255],"157":[255,127,0,255],"158":[255,127,0,255],"159":[255,127,0,255],"160":[255,127,0,255],"161":[255,127,0,255],"162":[255,127,0,255],"163":[255,127,0,255],"164":[255,127,0,255],"165":[255,127,0,255],"166":[255,127,0,255],"167":[255,127,0,255],"168":[255,127,0,255],"169":[255,127,0,255],"170":[202,178,214,255],"171":[202,178,214,255],"172":[202,178,214,255],"173":[202,178,214,255],"174":[202,178,214,255],"175":[202,178,214,255],"176":[202,178,214,255],"177":[202,178,214,255],"178":[202,178,214,255],"179":[202,178,214,255],"180":[202,178,214,255],"181":[202,178,214,255],"182":[202,178,214,255],"183":[202,178,214,255],"184":[202,178,214,255],"185":[202,178,214,255],"186":[202,178,214,255],"187":[202,178,214,255],"188":[202,178,214,255],"189":[202,178,214,255],"190":[202,178,214,255],"191":[202,178,214,255],"192":[106,61,154,255],"193":[106,61,154,255],"194":[106,61,154,255],"195":[106,61,154,255],"196":[106,61,154,255],"197":[106,61,154,255],"198":[106,61,154,255],"199":[106,61,154,255],"200":[106,61,154,255],"201":[106,61,154,255],"202":[106,61,154,255],"203":[106,61,154,255],"204":[106,61,154,255],"205":[106,61,154,255],"206":[106,61,154,255],"207":[106,61,154,255],"208":[106,61,154,255],"209":[106,61,154,255],"210":[106,61,154,255],"211":[106,61,154,255],"212":[106,61,154,255],"213":[255,255,153,255],"214":[255,255,153,255],"215":[255,255,153,255],"216":[255,255,153,255],"217":[255,255,153,255],"218":[255,255,153,255],"219":[255,255,153,255],"220":[255,255,153,255],"221":[255,255,153,255],"222":[255,255,153,255],"223":[255,255,153,255],"224":[255,255,153,255],"225":[255,255,153,255],"226":[255,255,153,255],"227":[255,255,153,255],"228":[255,255,153,255],"229":[255,255,153,255],"230":[255,255,153,255],"231":[255,255,153,255],"232":[255,255,153,255],"233":[255,255,153,255],"234":[177,89,40,255],"235":[177,89,40,255],"236":[177,89,40,255],"237":[177,89,40,255],"238":[177,89,40,255],"239":[177,89,40,255],"240":[177,89,40,255],"241":[177,89,40,255],"242":[177,89,40,255],"243":[177,89,40,255],"244":[177,89,40,255],"245":[177,89,40,255],"246":[177,89,40,255],"247":[177,89,40,255],"248":[177,89,40,255],"249":[177,89,40,255],"250":[177,89,40,255],"251":[177,89,40,255],"252":[177,89,40,255],"253":[177,89,40,255],"254":[177,89,40,255],"255":[177,89,40,255]}, +pastel1: {"0":[251,180,174,255],"1":[251,180,174,255],"2":[251,180,174,255],"3":[251,180,174,255],"4":[251,180,174,255],"5":[251,180,174,255],"6":[251,180,174,255],"7":[251,180,174,255],"8":[251,180,174,255],"9":[251,180,174,255],"10":[251,180,174,255],"11":[251,180,174,255],"12":[251,180,174,255],"13":[251,180,174,255],"14":[251,180,174,255],"15":[251,180,174,255],"16":[251,180,174,255],"17":[251,180,174,255],"18":[251,180,174,255],"19":[251,180,174,255],"20":[251,180,174,255],"21":[251,180,174,255],"22":[251,180,174,255],"23":[251,180,174,255],"24":[251,180,174,255],"25":[251,180,174,255],"26":[251,180,174,255],"27":[251,180,174,255],"28":[251,180,174,255],"29":[179,205,227,255],"30":[179,205,227,255],"31":[179,205,227,255],"32":[179,205,227,255],"33":[179,205,227,255],"34":[179,205,227,255],"35":[179,205,227,255],"36":[179,205,227,255],"37":[179,205,227,255],"38":[179,205,227,255],"39":[179,205,227,255],"40":[179,205,227,255],"41":[179,205,227,255],"42":[179,205,227,255],"43":[179,205,227,255],"44":[179,205,227,255],"45":[179,205,227,255],"46":[179,205,227,255],"47":[179,205,227,255],"48":[179,205,227,255],"49":[179,205,227,255],"50":[179,205,227,255],"51":[179,205,227,255],"52":[179,205,227,255],"53":[179,205,227,255],"54":[179,205,227,255],"55":[179,205,227,255],"56":[179,205,227,255],"57":[204,235,197,255],"58":[204,235,197,255],"59":[204,235,197,255],"60":[204,235,197,255],"61":[204,235,197,255],"62":[204,235,197,255],"63":[204,235,197,255],"64":[204,235,197,255],"65":[204,235,197,255],"66":[204,235,197,255],"67":[204,235,197,255],"68":[204,235,197,255],"69":[204,235,197,255],"70":[204,235,197,255],"71":[204,235,197,255],"72":[204,235,197,255],"73":[204,235,197,255],"74":[204,235,197,255],"75":[204,235,197,255],"76":[204,235,197,255],"77":[204,235,197,255],"78":[204,235,197,255],"79":[204,235,197,255],"80":[204,235,197,255],"81":[204,235,197,255],"82":[204,235,197,255],"83":[204,235,197,255],"84":[204,235,197,255],"85":[222,203,228,255],"86":[222,203,228,255],"87":[222,203,228,255],"88":[222,203,228,255],"89":[222,203,228,255],"90":[222,203,228,255],"91":[222,203,228,255],"92":[222,203,228,255],"93":[222,203,228,255],"94":[222,203,228,255],"95":[222,203,228,255],"96":[222,203,228,255],"97":[222,203,228,255],"98":[222,203,228,255],"99":[222,203,228,255],"100":[222,203,228,255],"101":[222,203,228,255],"102":[222,203,228,255],"103":[222,203,228,255],"104":[222,203,228,255],"105":[222,203,228,255],"106":[222,203,228,255],"107":[222,203,228,255],"108":[222,203,228,255],"109":[222,203,228,255],"110":[222,203,228,255],"111":[222,203,228,255],"112":[222,203,228,255],"113":[222,203,228,255],"114":[254,217,166,255],"115":[254,217,166,255],"116":[254,217,166,255],"117":[254,217,166,255],"118":[254,217,166,255],"119":[254,217,166,255],"120":[254,217,166,255],"121":[254,217,166,255],"122":[254,217,166,255],"123":[254,217,166,255],"124":[254,217,166,255],"125":[254,217,166,255],"126":[254,217,166,255],"127":[254,217,166,255],"128":[254,217,166,255],"129":[254,217,166,255],"130":[254,217,166,255],"131":[254,217,166,255],"132":[254,217,166,255],"133":[254,217,166,255],"134":[254,217,166,255],"135":[254,217,166,255],"136":[254,217,166,255],"137":[254,217,166,255],"138":[254,217,166,255],"139":[254,217,166,255],"140":[254,217,166,255],"141":[254,217,166,255],"142":[255,255,204,255],"143":[255,255,204,255],"144":[255,255,204,255],"145":[255,255,204,255],"146":[255,255,204,255],"147":[255,255,204,255],"148":[255,255,204,255],"149":[255,255,204,255],"150":[255,255,204,255],"151":[255,255,204,255],"152":[255,255,204,255],"153":[255,255,204,255],"154":[255,255,204,255],"155":[255,255,204,255],"156":[255,255,204,255],"157":[255,255,204,255],"158":[255,255,204,255],"159":[255,255,204,255],"160":[255,255,204,255],"161":[255,255,204,255],"162":[255,255,204,255],"163":[255,255,204,255],"164":[255,255,204,255],"165":[255,255,204,255],"166":[255,255,204,255],"167":[255,255,204,255],"168":[255,255,204,255],"169":[255,255,204,255],"170":[229,216,189,255],"171":[229,216,189,255],"172":[229,216,189,255],"173":[229,216,189,255],"174":[229,216,189,255],"175":[229,216,189,255],"176":[229,216,189,255],"177":[229,216,189,255],"178":[229,216,189,255],"179":[229,216,189,255],"180":[229,216,189,255],"181":[229,216,189,255],"182":[229,216,189,255],"183":[229,216,189,255],"184":[229,216,189,255],"185":[229,216,189,255],"186":[229,216,189,255],"187":[229,216,189,255],"188":[229,216,189,255],"189":[229,216,189,255],"190":[229,216,189,255],"191":[229,216,189,255],"192":[229,216,189,255],"193":[229,216,189,255],"194":[229,216,189,255],"195":[229,216,189,255],"196":[229,216,189,255],"197":[229,216,189,255],"198":[229,216,189,255],"199":[253,218,236,255],"200":[253,218,236,255],"201":[253,218,236,255],"202":[253,218,236,255],"203":[253,218,236,255],"204":[253,218,236,255],"205":[253,218,236,255],"206":[253,218,236,255],"207":[253,218,236,255],"208":[253,218,236,255],"209":[253,218,236,255],"210":[253,218,236,255],"211":[253,218,236,255],"212":[253,218,236,255],"213":[253,218,236,255],"214":[253,218,236,255],"215":[253,218,236,255],"216":[253,218,236,255],"217":[253,218,236,255],"218":[253,218,236,255],"219":[253,218,236,255],"220":[253,218,236,255],"221":[253,218,236,255],"222":[253,218,236,255],"223":[253,218,236,255],"224":[253,218,236,255],"225":[253,218,236,255],"226":[253,218,236,255],"227":[242,242,242,255],"228":[242,242,242,255],"229":[242,242,242,255],"230":[242,242,242,255],"231":[242,242,242,255],"232":[242,242,242,255],"233":[242,242,242,255],"234":[242,242,242,255],"235":[242,242,242,255],"236":[242,242,242,255],"237":[242,242,242,255],"238":[242,242,242,255],"239":[242,242,242,255],"240":[242,242,242,255],"241":[242,242,242,255],"242":[242,242,242,255],"243":[242,242,242,255],"244":[242,242,242,255],"245":[242,242,242,255],"246":[242,242,242,255],"247":[242,242,242,255],"248":[242,242,242,255],"249":[242,242,242,255],"250":[242,242,242,255],"251":[242,242,242,255],"252":[242,242,242,255],"253":[242,242,242,255],"254":[242,242,242,255],"255":[242,242,242,255]}, +pastel2: {"0":[179,226,205,255],"1":[179,226,205,255],"2":[179,226,205,255],"3":[179,226,205,255],"4":[179,226,205,255],"5":[179,226,205,255],"6":[179,226,205,255],"7":[179,226,205,255],"8":[179,226,205,255],"9":[179,226,205,255],"10":[179,226,205,255],"11":[179,226,205,255],"12":[179,226,205,255],"13":[179,226,205,255],"14":[179,226,205,255],"15":[179,226,205,255],"16":[179,226,205,255],"17":[179,226,205,255],"18":[179,226,205,255],"19":[179,226,205,255],"20":[179,226,205,255],"21":[179,226,205,255],"22":[179,226,205,255],"23":[179,226,205,255],"24":[179,226,205,255],"25":[179,226,205,255],"26":[179,226,205,255],"27":[179,226,205,255],"28":[179,226,205,255],"29":[179,226,205,255],"30":[179,226,205,255],"31":[179,226,205,255],"32":[253,205,172,255],"33":[253,205,172,255],"34":[253,205,172,255],"35":[253,205,172,255],"36":[253,205,172,255],"37":[253,205,172,255],"38":[253,205,172,255],"39":[253,205,172,255],"40":[253,205,172,255],"41":[253,205,172,255],"42":[253,205,172,255],"43":[253,205,172,255],"44":[253,205,172,255],"45":[253,205,172,255],"46":[253,205,172,255],"47":[253,205,172,255],"48":[253,205,172,255],"49":[253,205,172,255],"50":[253,205,172,255],"51":[253,205,172,255],"52":[253,205,172,255],"53":[253,205,172,255],"54":[253,205,172,255],"55":[253,205,172,255],"56":[253,205,172,255],"57":[253,205,172,255],"58":[253,205,172,255],"59":[253,205,172,255],"60":[253,205,172,255],"61":[253,205,172,255],"62":[253,205,172,255],"63":[253,205,172,255],"64":[203,213,232,255],"65":[203,213,232,255],"66":[203,213,232,255],"67":[203,213,232,255],"68":[203,213,232,255],"69":[203,213,232,255],"70":[203,213,232,255],"71":[203,213,232,255],"72":[203,213,232,255],"73":[203,213,232,255],"74":[203,213,232,255],"75":[203,213,232,255],"76":[203,213,232,255],"77":[203,213,232,255],"78":[203,213,232,255],"79":[203,213,232,255],"80":[203,213,232,255],"81":[203,213,232,255],"82":[203,213,232,255],"83":[203,213,232,255],"84":[203,213,232,255],"85":[203,213,232,255],"86":[203,213,232,255],"87":[203,213,232,255],"88":[203,213,232,255],"89":[203,213,232,255],"90":[203,213,232,255],"91":[203,213,232,255],"92":[203,213,232,255],"93":[203,213,232,255],"94":[203,213,232,255],"95":[203,213,232,255],"96":[244,202,228,255],"97":[244,202,228,255],"98":[244,202,228,255],"99":[244,202,228,255],"100":[244,202,228,255],"101":[244,202,228,255],"102":[244,202,228,255],"103":[244,202,228,255],"104":[244,202,228,255],"105":[244,202,228,255],"106":[244,202,228,255],"107":[244,202,228,255],"108":[244,202,228,255],"109":[244,202,228,255],"110":[244,202,228,255],"111":[244,202,228,255],"112":[244,202,228,255],"113":[244,202,228,255],"114":[244,202,228,255],"115":[244,202,228,255],"116":[244,202,228,255],"117":[244,202,228,255],"118":[244,202,228,255],"119":[244,202,228,255],"120":[244,202,228,255],"121":[244,202,228,255],"122":[244,202,228,255],"123":[244,202,228,255],"124":[244,202,228,255],"125":[244,202,228,255],"126":[244,202,228,255],"127":[244,202,228,255],"128":[230,245,201,255],"129":[230,245,201,255],"130":[230,245,201,255],"131":[230,245,201,255],"132":[230,245,201,255],"133":[230,245,201,255],"134":[230,245,201,255],"135":[230,245,201,255],"136":[230,245,201,255],"137":[230,245,201,255],"138":[230,245,201,255],"139":[230,245,201,255],"140":[230,245,201,255],"141":[230,245,201,255],"142":[230,245,201,255],"143":[230,245,201,255],"144":[230,245,201,255],"145":[230,245,201,255],"146":[230,245,201,255],"147":[230,245,201,255],"148":[230,245,201,255],"149":[230,245,201,255],"150":[230,245,201,255],"151":[230,245,201,255],"152":[230,245,201,255],"153":[230,245,201,255],"154":[230,245,201,255],"155":[230,245,201,255],"156":[230,245,201,255],"157":[230,245,201,255],"158":[230,245,201,255],"159":[230,245,201,255],"160":[255,242,174,255],"161":[255,242,174,255],"162":[255,242,174,255],"163":[255,242,174,255],"164":[255,242,174,255],"165":[255,242,174,255],"166":[255,242,174,255],"167":[255,242,174,255],"168":[255,242,174,255],"169":[255,242,174,255],"170":[255,242,174,255],"171":[255,242,174,255],"172":[255,242,174,255],"173":[255,242,174,255],"174":[255,242,174,255],"175":[255,242,174,255],"176":[255,242,174,255],"177":[255,242,174,255],"178":[255,242,174,255],"179":[255,242,174,255],"180":[255,242,174,255],"181":[255,242,174,255],"182":[255,242,174,255],"183":[255,242,174,255],"184":[255,242,174,255],"185":[255,242,174,255],"186":[255,242,174,255],"187":[255,242,174,255],"188":[255,242,174,255],"189":[255,242,174,255],"190":[255,242,174,255],"191":[255,242,174,255],"192":[241,226,204,255],"193":[241,226,204,255],"194":[241,226,204,255],"195":[241,226,204,255],"196":[241,226,204,255],"197":[241,226,204,255],"198":[241,226,204,255],"199":[241,226,204,255],"200":[241,226,204,255],"201":[241,226,204,255],"202":[241,226,204,255],"203":[241,226,204,255],"204":[241,226,204,255],"205":[241,226,204,255],"206":[241,226,204,255],"207":[241,226,204,255],"208":[241,226,204,255],"209":[241,226,204,255],"210":[241,226,204,255],"211":[241,226,204,255],"212":[241,226,204,255],"213":[241,226,204,255],"214":[241,226,204,255],"215":[241,226,204,255],"216":[241,226,204,255],"217":[241,226,204,255],"218":[241,226,204,255],"219":[241,226,204,255],"220":[241,226,204,255],"221":[241,226,204,255],"222":[241,226,204,255],"223":[241,226,204,255],"224":[204,204,204,255],"225":[204,204,204,255],"226":[204,204,204,255],"227":[204,204,204,255],"228":[204,204,204,255],"229":[204,204,204,255],"230":[204,204,204,255],"231":[204,204,204,255],"232":[204,204,204,255],"233":[204,204,204,255],"234":[204,204,204,255],"235":[204,204,204,255],"236":[204,204,204,255],"237":[204,204,204,255],"238":[204,204,204,255],"239":[204,204,204,255],"240":[204,204,204,255],"241":[204,204,204,255],"242":[204,204,204,255],"243":[204,204,204,255],"244":[204,204,204,255],"245":[204,204,204,255],"246":[204,204,204,255],"247":[204,204,204,255],"248":[204,204,204,255],"249":[204,204,204,255],"250":[204,204,204,255],"251":[204,204,204,255],"252":[204,204,204,255],"253":[204,204,204,255],"254":[204,204,204,255],"255":[204,204,204,255]}, +phase: {"0":[167,119,12,255],"1":[169,118,14,255],"2":[170,117,16,255],"3":[172,116,18,255],"4":[173,116,20,255],"5":[175,115,22,255],"6":[176,114,23,255],"7":[178,113,25,255],"8":[179,112,27,255],"9":[180,111,28,255],"10":[182,110,30,255],"11":[183,109,31,255],"12":[184,108,33,255],"13":[186,106,35,255],"14":[187,105,36,255],"15":[188,104,38,255],"16":[189,103,39,255],"17":[190,102,41,255],"18":[192,101,43,255],"19":[193,100,44,255],"20":[194,99,46,255],"21":[195,98,47,255],"22":[196,97,49,255],"23":[197,96,51,255],"24":[198,95,52,255],"25":[199,93,54,255],"26":[200,92,56,255],"27":[201,91,58,255],"28":[202,90,59,255],"29":[203,89,61,255],"30":[204,88,63,255],"31":[205,86,65,255],"32":[206,85,67,255],"33":[207,84,68,255],"34":[208,83,70,255],"35":[209,81,72,255],"36":[210,80,74,255],"37":[211,79,76,255],"38":[211,78,78,255],"39":[212,76,80,255],"40":[213,75,83,255],"41":[214,74,85,255],"42":[214,72,87,255],"43":[215,71,89,255],"44":[216,69,91,255],"45":[216,68,94,255],"46":[217,67,96,255],"47":[218,65,99,255],"48":[218,64,101,255],"49":[219,62,104,255],"50":[219,61,106,255],"51":[220,59,109,255],"52":[220,58,112,255],"53":[220,57,114,255],"54":[221,55,117,255],"55":[221,54,120,255],"56":[221,52,123,255],"57":[222,51,126,255],"58":[222,49,129,255],"59":[222,48,132,255],"60":[222,47,135,255],"61":[222,45,138,255],"62":[222,44,141,255],"63":[222,43,144,255],"64":[222,42,147,255],"65":[222,41,150,255],"66":[222,40,153,255],"67":[221,39,156,255],"68":[221,38,160,255],"69":[221,38,163,255],"70":[220,37,166,255],"71":[220,37,169,255],"72":[219,37,172,255],"73":[219,37,175,255],"74":[218,37,178,255],"75":[217,37,181,255],"76":[216,38,184,255],"77":[216,38,187,255],"78":[215,39,190,255],"79":[214,40,193,255],"80":[213,41,195,255],"81":[212,42,198,255],"82":[211,43,201,255],"83":[210,44,203,255],"84":[209,45,206,255],"85":[207,47,208,255],"86":[206,48,210,255],"87":[205,50,212,255],"88":[204,51,215,255],"89":[202,53,217,255],"90":[201,54,219,255],"91":[199,56,220,255],"92":[198,58,222,255],"93":[196,59,224,255],"94":[195,61,226,255],"95":[193,63,227,255],"96":[192,65,229,255],"97":[190,66,230,255],"98":[188,68,232,255],"99":[187,70,233,255],"100":[185,71,234,255],"101":[183,73,235,255],"102":[181,75,236,255],"103":[180,77,237,255],"104":[178,78,238,255],"105":[176,80,239,255],"106":[174,82,240,255],"107":[172,83,240,255],"108":[170,85,241,255],"109":[168,86,242,255],"110":[166,88,242,255],"111":[164,90,242,255],"112":[162,91,243,255],"113":[160,93,243,255],"114":[158,94,243,255],"115":[156,96,243,255],"116":[153,97,244,255],"117":[151,99,244,255],"118":[149,100,244,255],"119":[147,102,243,255],"120":[144,103,243,255],"121":[142,105,243,255],"122":[140,106,243,255],"123":[137,107,242,255],"124":[135,109,242,255],"125":[132,110,242,255],"126":[130,112,241,255],"127":[127,113,240,255],"128":[125,114,240,255],"129":[122,115,239,255],"130":[120,117,238,255],"131":[117,118,237,255],"132":[115,119,236,255],"133":[112,120,235,255],"134":[109,122,234,255],"135":[106,123,233,255],"136":[104,124,232,255],"137":[101,125,230,255],"138":[98,126,229,255],"139":[95,127,228,255],"140":[93,128,226,255],"141":[90,129,225,255],"142":[87,130,223,255],"143":[84,131,221,255],"144":[82,132,220,255],"145":[79,133,218,255],"146":[76,134,216,255],"147":[73,135,214,255],"148":[71,136,212,255],"149":[68,137,210,255],"150":[66,137,208,255],"151":[63,138,206,255],"152":[61,139,204,255],"153":[58,139,202,255],"154":[56,140,200,255],"155":[53,141,198,255],"156":[51,141,196,255],"157":[49,142,194,255],"158":[47,142,192,255],"159":[45,143,190,255],"160":[43,143,188,255],"161":[42,144,185,255],"162":[40,144,183,255],"163":[38,144,181,255],"164":[37,145,179,255],"165":[35,145,177,255],"166":[34,146,175,255],"167":[33,146,173,255],"168":[32,146,171,255],"169":[31,147,169,255],"170":[30,147,167,255],"171":[29,147,165,255],"172":[28,147,163,255],"173":[27,148,161,255],"174":[26,148,159,255],"175":[25,148,157,255],"176":[24,148,156,255],"177":[23,149,154,255],"178":[22,149,152,255],"179":[22,149,150,255],"180":[21,149,148,255],"181":[20,150,146,255],"182":[19,150,144,255],"183":[18,150,142,255],"184":[17,150,140,255],"185":[16,151,138,255],"186":[15,151,136,255],"187":[15,151,134,255],"188":[14,151,132,255],"189":[13,151,130,255],"190":[12,152,128,255],"191":[12,152,125,255],"192":[11,152,123,255],"193":[11,152,121,255],"194":[11,152,119,255],"195":[11,153,116,255],"196":[11,153,114,255],"197":[12,153,112,255],"198":[13,153,109,255],"199":[15,153,107,255],"200":[16,153,104,255],"201":[18,153,102,255],"202":[20,153,99,255],"203":[22,153,96,255],"204":[25,154,93,255],"205":[27,154,91,255],"206":[30,154,88,255],"207":[33,154,85,255],"208":[36,153,82,255],"209":[39,153,79,255],"210":[42,153,76,255],"211":[45,153,73,255],"212":[49,153,70,255],"213":[52,153,66,255],"214":[56,152,63,255],"215":[59,152,60,255],"216":[63,152,56,255],"217":[67,151,53,255],"218":[71,151,50,255],"219":[74,150,46,255],"220":[78,150,43,255],"221":[82,149,40,255],"222":[86,149,37,255],"223":[90,148,34,255],"224":[93,147,32,255],"225":[97,146,29,255],"226":[100,146,27,255],"227":[104,145,25,255],"228":[107,144,23,255],"229":[110,143,21,255],"230":[113,142,19,255],"231":[116,141,18,255],"232":[119,141,17,255],"233":[121,140,16,255],"234":[124,139,15,255],"235":[127,138,15,255],"236":[129,137,14,255],"237":[131,136,14,255],"238":[134,135,13,255],"239":[136,135,13,255],"240":[138,134,13,255],"241":[140,133,13,255],"242":[142,132,13,255],"243":[145,131,13,255],"244":[147,130,13,255],"245":[149,129,13,255],"246":[151,128,13,255],"247":[152,127,13,255],"248":[154,126,13,255],"249":[156,125,13,255],"250":[158,124,13,255],"251":[160,123,13,255],"252":[162,122,13,255],"253":[164,121,13,255],"254":[166,120,12,255],"255":[167,119,12,255]}, +prism: {"0":[255,0,0,255],"1":[255,0,0,255],"2":[255,33,0,255],"3":[255,81,0,255],"4":[255,130,0,255],"5":[255,176,0,255],"6":[255,215,0,255],"7":[255,246,0,255],"8":[226,255,0,255],"9":[178,255,0,255],"10":[129,255,0,255],"11":[83,254,0,255],"12":[42,226,0,255],"13":[10,188,57,255],"14":[0,144,125,255],"15":[0,96,185,255],"16":[0,47,232,255],"17":[0,0,255,255],"18":[25,0,255,255],"19":[61,0,255,255],"20":[105,0,254,255],"21":[153,0,215,255],"22":[202,0,162,255],"23":[249,0,99,255],"24":[255,0,28,255],"25":[255,0,0,255],"26":[255,14,0,255],"27":[255,61,0,255],"28":[255,111,0,255],"29":[255,158,0,255],"30":[255,200,0,255],"31":[255,235,0,255],"32":[245,255,0,255],"33":[197,255,0,255],"34":[148,255,0,255],"35":[101,255,0,255],"36":[58,238,0,255],"37":[22,204,28,255],"38":[0,163,98,255],"39":[0,116,162,255],"40":[0,67,215,255],"41":[0,19,253,255],"42":[13,0,255,255],"43":[46,0,255,255],"44":[87,0,255,255],"45":[133,0,232,255],"46":[182,0,185,255],"47":[231,0,125,255],"48":[255,0,57,255],"49":[255,0,0,255],"50":[255,0,0,255],"51":[255,42,0,255],"52":[255,91,0,255],"53":[255,139,0,255],"54":[255,184,0,255],"55":[255,222,0,255],"56":[255,251,0,255],"57":[217,255,0,255],"58":[168,255,0,255],"59":[119,255,0,255],"60":[74,249,0,255],"61":[35,219,0,255],"62":[5,180,71,255],"63":[0,135,137,255],"64":[0,86,195,255],"65":[0,38,240,255],"66":[3,0,255,255],"67":[32,0,255,255],"68":[70,0,255,255],"69":[114,0,247,255],"70":[163,0,206,255],"71":[212,0,150,255],"72":[255,0,85,255],"73":[255,0,14,255],"74":[255,0,0,255],"75":[255,23,0,255],"76":[255,71,0,255],"77":[255,120,0,255],"78":[255,167,0,255],"79":[255,208,0,255],"80":[255,241,0,255],"81":[236,255,0,255],"82":[188,255,0,255],"83":[139,255,0,255],"84":[92,255,0,255],"85":[50,232,0,255],"86":[16,197,42,255],"87":[0,154,111,255],"88":[0,106,173,255],"89":[0,57,224,255],"90":[0,10,255,255],"91":[19,0,255,255],"92":[53,0,255,255],"93":[96,0,255,255],"94":[143,0,224,255],"95":[192,0,174,255],"96":[240,0,112,255],"97":[255,0,43,255],"98":[255,0,0,255],"99":[255,4,0,255],"100":[255,51,0,255],"101":[255,100,0,255],"102":[255,148,0,255],"103":[255,192,0,255],"104":[255,229,0,255],"105":[254,255,0,255],"106":[207,255,0,255],"107":[158,255,0,255],"108":[110,255,0,255],"109":[66,244,0,255],"110":[29,212,13,255],"111":[1,172,84,255],"112":[0,126,150,255],"113":[0,77,205,255],"114":[0,28,247,255],"115":[7,0,255,255],"116":[38,0,255,255],"117":[78,0,255,255],"118":[124,0,240,255],"119":[172,0,196,255],"120":[221,0,138,255],"121":[255,0,72,255],"122":[255,0,0,255],"123":[255,0,0,255],"124":[255,32,0,255],"125":[255,81,0,255],"126":[255,129,0,255],"127":[255,175,0,255],"128":[255,215,0,255],"129":[255,246,0,255],"130":[227,255,0,255],"131":[178,255,0,255],"132":[129,255,0,255],"133":[83,254,0,255],"134":[43,226,0,255],"135":[11,189,56,255],"136":[0,145,124,255],"137":[0,96,184,255],"138":[0,47,232,255],"139":[0,1,255,255],"140":[25,0,255,255],"141":[61,0,255,255],"142":[105,0,254,255],"143":[153,0,215,255],"144":[202,0,163,255],"145":[249,0,99,255],"146":[255,0,29,255],"147":[255,0,0,255],"148":[255,13,0,255],"149":[255,61,0,255],"150":[255,110,0,255],"151":[255,157,0,255],"152":[255,200,0,255],"153":[255,235,0,255],"154":[245,255,0,255],"155":[198,255,0,255],"156":[149,255,0,255],"157":[101,255,0,255],"158":[58,238,0,255],"159":[22,205,27,255],"160":[0,163,98,255],"161":[0,116,161,255],"162":[0,67,214,255],"163":[0,19,253,255],"164":[13,0,255,255],"165":[45,0,255,255],"166":[86,0,255,255],"167":[133,0,233,255],"168":[182,0,185,255],"169":[230,0,126,255],"170":[255,0,58,255],"171":[255,0,0,255],"172":[255,0,0,255],"173":[255,41,0,255],"174":[255,90,0,255],"175":[255,139,0,255],"176":[255,184,0,255],"177":[255,222,0,255],"178":[255,251,0,255],"179":[217,255,0,255],"180":[169,255,0,255],"181":[120,255,0,255],"182":[75,249,0,255],"183":[36,219,0,255],"184":[5,181,70,255],"185":[0,135,137,255],"186":[0,87,195,255],"187":[0,38,239,255],"188":[2,0,255,255],"189":[31,0,255,255],"190":[69,0,255,255],"191":[114,0,248,255],"192":[162,0,206,255],"193":[211,0,151,255],"194":[255,0,86,255],"195":[255,0,15,255],"196":[255,0,0,255],"197":[255,22,0,255],"198":[255,71,0,255],"199":[255,120,0,255],"200":[255,166,0,255],"201":[255,207,0,255],"202":[255,240,0,255],"203":[236,255,0,255],"204":[188,255,0,255],"205":[139,255,0,255],"206":[92,255,0,255],"207":[50,233,0,255],"208":[16,197,42,255],"209":[0,154,111,255],"210":[0,107,173,255],"211":[0,57,223,255],"212":[0,10,255,255],"213":[18,0,255,255],"214":[53,0,255,255],"215":[95,0,255,255],"216":[143,0,225,255],"217":[192,0,175,255],"218":[239,0,113,255],"219":[255,0,44,255],"220":[255,0,0,255],"221":[255,4,0,255],"222":[255,51,0,255],"223":[255,100,0,255],"224":[255,148,0,255],"225":[255,192,0,255],"226":[255,228,0,255],"227":[254,255,0,255],"228":[208,255,0,255],"229":[159,255,0,255],"230":[111,255,0,255],"231":[66,244,0,255],"232":[29,212,13,255],"233":[1,172,84,255],"234":[0,126,149,255],"235":[0,77,204,255],"236":[0,29,246,255],"237":[7,0,255,255],"238":[38,0,255,255],"239":[77,0,255,255],"240":[123,0,241,255],"241":[172,0,196,255],"242":[221,0,139,255],"243":[255,0,72,255],"244":[255,0,1,255],"245":[255,0,0,255],"246":[255,32,0,255],"247":[255,80,0,255],"248":[255,129,0,255],"249":[255,175,0,255],"250":[255,215,0,255],"251":[255,246,0,255],"252":[227,255,0,255],"253":[179,255,0,255],"254":[130,255,0,255],"255":[84,254,0,255]}, +rainbow: {"0":[127,0,255,255],"1":[125,3,254,255],"2":[123,6,254,255],"3":[121,9,254,255],"4":[119,12,254,255],"5":[117,15,254,255],"6":[115,18,254,255],"7":[113,21,254,255],"8":[111,25,254,255],"9":[109,28,254,255],"10":[107,31,254,255],"11":[105,34,254,255],"12":[103,37,254,255],"13":[101,40,254,255],"14":[99,43,254,255],"15":[97,46,253,255],"16":[95,49,253,255],"17":[93,53,253,255],"18":[91,56,253,255],"19":[89,59,253,255],"20":[87,62,253,255],"21":[85,65,252,255],"22":[83,68,252,255],"23":[81,71,252,255],"24":[79,74,252,255],"25":[77,77,251,255],"26":[75,80,251,255],"27":[73,83,251,255],"28":[71,86,251,255],"29":[69,89,250,255],"30":[67,92,250,255],"31":[65,95,250,255],"32":[63,97,250,255],"33":[61,100,249,255],"34":[59,103,249,255],"35":[57,106,249,255],"36":[55,109,248,255],"37":[53,112,248,255],"38":[51,115,248,255],"39":[49,117,247,255],"40":[47,120,247,255],"41":[45,123,246,255],"42":[43,126,246,255],"43":[41,128,246,255],"44":[39,131,245,255],"45":[37,134,245,255],"46":[35,136,244,255],"47":[33,139,244,255],"48":[31,142,243,255],"49":[29,144,243,255],"50":[27,147,243,255],"51":[25,149,242,255],"52":[23,152,242,255],"53":[21,154,241,255],"54":[19,157,241,255],"55":[17,159,240,255],"56":[15,162,239,255],"57":[13,164,239,255],"58":[11,167,238,255],"59":[9,169,238,255],"60":[7,171,237,255],"61":[5,174,237,255],"62":[3,176,236,255],"63":[1,178,236,255],"64":[0,180,235,255],"65":[2,183,234,255],"66":[4,185,234,255],"67":[6,187,233,255],"68":[8,189,232,255],"69":[10,191,232,255],"70":[12,193,231,255],"71":[14,195,230,255],"72":[16,197,230,255],"73":[18,199,229,255],"74":[20,201,228,255],"75":[22,203,228,255],"76":[24,205,227,255],"77":[26,207,226,255],"78":[28,209,226,255],"79":[30,210,225,255],"80":[32,212,224,255],"81":[34,214,223,255],"82":[36,215,223,255],"83":[38,217,222,255],"84":[40,219,221,255],"85":[42,220,220,255],"86":[44,222,220,255],"87":[46,223,219,255],"88":[48,225,218,255],"89":[50,226,217,255],"90":[52,228,216,255],"91":[54,229,215,255],"92":[56,230,215,255],"93":[58,232,214,255],"94":[60,233,213,255],"95":[62,234,212,255],"96":[64,236,211,255],"97":[66,237,210,255],"98":[68,238,209,255],"99":[70,239,209,255],"100":[72,240,208,255],"101":[74,241,207,255],"102":[76,242,206,255],"103":[78,243,205,255],"104":[80,244,204,255],"105":[82,245,203,255],"106":[84,246,202,255],"107":[86,246,201,255],"108":[88,247,200,255],"109":[90,248,199,255],"110":[92,249,198,255],"111":[94,249,197,255],"112":[96,250,196,255],"113":[98,250,195,255],"114":[100,251,194,255],"115":[102,251,193,255],"116":[104,252,192,255],"117":[106,252,191,255],"118":[108,253,190,255],"119":[110,253,189,255],"120":[112,253,188,255],"121":[114,254,187,255],"122":[116,254,186,255],"123":[118,254,185,255],"124":[120,254,184,255],"125":[122,254,183,255],"126":[124,254,181,255],"127":[126,254,180,255],"128":[128,254,179,255],"129":[130,254,178,255],"130":[132,254,177,255],"131":[134,254,176,255],"132":[136,254,175,255],"133":[138,254,174,255],"134":[140,254,172,255],"135":[142,253,171,255],"136":[144,253,170,255],"137":[146,253,169,255],"138":[148,252,168,255],"139":[150,252,167,255],"140":[152,251,165,255],"141":[154,251,164,255],"142":[156,250,163,255],"143":[158,250,162,255],"144":[160,249,161,255],"145":[162,249,159,255],"146":[164,248,158,255],"147":[166,247,157,255],"148":[168,246,156,255],"149":[170,246,154,255],"150":[172,245,153,255],"151":[174,244,152,255],"152":[176,243,151,255],"153":[178,242,149,255],"154":[180,241,148,255],"155":[182,240,147,255],"156":[184,239,146,255],"157":[186,238,144,255],"158":[188,237,143,255],"159":[190,236,142,255],"160":[192,234,140,255],"161":[194,233,139,255],"162":[196,232,138,255],"163":[198,230,136,255],"164":[200,229,135,255],"165":[202,228,134,255],"166":[204,226,132,255],"167":[206,225,131,255],"168":[208,223,130,255],"169":[210,222,128,255],"170":[212,220,127,255],"171":[214,219,126,255],"172":[216,217,124,255],"173":[218,215,123,255],"174":[220,214,122,255],"175":[222,212,120,255],"176":[224,210,119,255],"177":[226,209,117,255],"178":[228,207,116,255],"179":[230,205,115,255],"180":[232,203,113,255],"181":[234,201,112,255],"182":[236,199,110,255],"183":[238,197,109,255],"184":[240,195,108,255],"185":[242,193,106,255],"186":[244,191,105,255],"187":[246,189,103,255],"188":[248,187,102,255],"189":[250,185,100,255],"190":[252,183,99,255],"191":[254,180,97,255],"192":[255,178,96,255],"193":[255,176,95,255],"194":[255,174,93,255],"195":[255,171,92,255],"196":[255,169,90,255],"197":[255,167,89,255],"198":[255,164,87,255],"199":[255,162,86,255],"200":[255,159,84,255],"201":[255,157,83,255],"202":[255,154,81,255],"203":[255,152,80,255],"204":[255,149,78,255],"205":[255,147,77,255],"206":[255,144,75,255],"207":[255,142,74,255],"208":[255,139,72,255],"209":[255,136,71,255],"210":[255,134,69,255],"211":[255,131,68,255],"212":[255,128,66,255],"213":[255,126,65,255],"214":[255,123,63,255],"215":[255,120,62,255],"216":[255,117,60,255],"217":[255,115,59,255],"218":[255,112,57,255],"219":[255,109,56,255],"220":[255,106,54,255],"221":[255,103,53,255],"222":[255,100,51,255],"223":[255,97,49,255],"224":[255,95,48,255],"225":[255,92,46,255],"226":[255,89,45,255],"227":[255,86,43,255],"228":[255,83,42,255],"229":[255,80,40,255],"230":[255,77,39,255],"231":[255,74,37,255],"232":[255,71,36,255],"233":[255,68,34,255],"234":[255,65,32,255],"235":[255,62,31,255],"236":[255,59,29,255],"237":[255,56,28,255],"238":[255,53,26,255],"239":[255,49,25,255],"240":[255,46,23,255],"241":[255,43,21,255],"242":[255,40,20,255],"243":[255,37,18,255],"244":[255,34,17,255],"245":[255,31,15,255],"246":[255,28,14,255],"247":[255,25,12,255],"248":[255,21,10,255],"249":[255,18,9,255],"250":[255,15,7,255],"251":[255,12,6,255],"252":[255,9,4,255],"253":[255,6,3,255],"254":[255,3,1,255],"255":[255,0,0,255]}, +set1: {"0":[228,26,28,255],"1":[228,26,28,255],"2":[228,26,28,255],"3":[228,26,28,255],"4":[228,26,28,255],"5":[228,26,28,255],"6":[228,26,28,255],"7":[228,26,28,255],"8":[228,26,28,255],"9":[228,26,28,255],"10":[228,26,28,255],"11":[228,26,28,255],"12":[228,26,28,255],"13":[228,26,28,255],"14":[228,26,28,255],"15":[228,26,28,255],"16":[228,26,28,255],"17":[228,26,28,255],"18":[228,26,28,255],"19":[228,26,28,255],"20":[228,26,28,255],"21":[228,26,28,255],"22":[228,26,28,255],"23":[228,26,28,255],"24":[228,26,28,255],"25":[228,26,28,255],"26":[228,26,28,255],"27":[228,26,28,255],"28":[228,26,28,255],"29":[55,126,184,255],"30":[55,126,184,255],"31":[55,126,184,255],"32":[55,126,184,255],"33":[55,126,184,255],"34":[55,126,184,255],"35":[55,126,184,255],"36":[55,126,184,255],"37":[55,126,184,255],"38":[55,126,184,255],"39":[55,126,184,255],"40":[55,126,184,255],"41":[55,126,184,255],"42":[55,126,184,255],"43":[55,126,184,255],"44":[55,126,184,255],"45":[55,126,184,255],"46":[55,126,184,255],"47":[55,126,184,255],"48":[55,126,184,255],"49":[55,126,184,255],"50":[55,126,184,255],"51":[55,126,184,255],"52":[55,126,184,255],"53":[55,126,184,255],"54":[55,126,184,255],"55":[55,126,184,255],"56":[55,126,184,255],"57":[77,175,74,255],"58":[77,175,74,255],"59":[77,175,74,255],"60":[77,175,74,255],"61":[77,175,74,255],"62":[77,175,74,255],"63":[77,175,74,255],"64":[77,175,74,255],"65":[77,175,74,255],"66":[77,175,74,255],"67":[77,175,74,255],"68":[77,175,74,255],"69":[77,175,74,255],"70":[77,175,74,255],"71":[77,175,74,255],"72":[77,175,74,255],"73":[77,175,74,255],"74":[77,175,74,255],"75":[77,175,74,255],"76":[77,175,74,255],"77":[77,175,74,255],"78":[77,175,74,255],"79":[77,175,74,255],"80":[77,175,74,255],"81":[77,175,74,255],"82":[77,175,74,255],"83":[77,175,74,255],"84":[77,175,74,255],"85":[152,78,163,255],"86":[152,78,163,255],"87":[152,78,163,255],"88":[152,78,163,255],"89":[152,78,163,255],"90":[152,78,163,255],"91":[152,78,163,255],"92":[152,78,163,255],"93":[152,78,163,255],"94":[152,78,163,255],"95":[152,78,163,255],"96":[152,78,163,255],"97":[152,78,163,255],"98":[152,78,163,255],"99":[152,78,163,255],"100":[152,78,163,255],"101":[152,78,163,255],"102":[152,78,163,255],"103":[152,78,163,255],"104":[152,78,163,255],"105":[152,78,163,255],"106":[152,78,163,255],"107":[152,78,163,255],"108":[152,78,163,255],"109":[152,78,163,255],"110":[152,78,163,255],"111":[152,78,163,255],"112":[152,78,163,255],"113":[152,78,163,255],"114":[255,127,0,255],"115":[255,127,0,255],"116":[255,127,0,255],"117":[255,127,0,255],"118":[255,127,0,255],"119":[255,127,0,255],"120":[255,127,0,255],"121":[255,127,0,255],"122":[255,127,0,255],"123":[255,127,0,255],"124":[255,127,0,255],"125":[255,127,0,255],"126":[255,127,0,255],"127":[255,127,0,255],"128":[255,127,0,255],"129":[255,127,0,255],"130":[255,127,0,255],"131":[255,127,0,255],"132":[255,127,0,255],"133":[255,127,0,255],"134":[255,127,0,255],"135":[255,127,0,255],"136":[255,127,0,255],"137":[255,127,0,255],"138":[255,127,0,255],"139":[255,127,0,255],"140":[255,127,0,255],"141":[255,127,0,255],"142":[255,255,51,255],"143":[255,255,51,255],"144":[255,255,51,255],"145":[255,255,51,255],"146":[255,255,51,255],"147":[255,255,51,255],"148":[255,255,51,255],"149":[255,255,51,255],"150":[255,255,51,255],"151":[255,255,51,255],"152":[255,255,51,255],"153":[255,255,51,255],"154":[255,255,51,255],"155":[255,255,51,255],"156":[255,255,51,255],"157":[255,255,51,255],"158":[255,255,51,255],"159":[255,255,51,255],"160":[255,255,51,255],"161":[255,255,51,255],"162":[255,255,51,255],"163":[255,255,51,255],"164":[255,255,51,255],"165":[255,255,51,255],"166":[255,255,51,255],"167":[255,255,51,255],"168":[255,255,51,255],"169":[255,255,51,255],"170":[166,86,40,255],"171":[166,86,40,255],"172":[166,86,40,255],"173":[166,86,40,255],"174":[166,86,40,255],"175":[166,86,40,255],"176":[166,86,40,255],"177":[166,86,40,255],"178":[166,86,40,255],"179":[166,86,40,255],"180":[166,86,40,255],"181":[166,86,40,255],"182":[166,86,40,255],"183":[166,86,40,255],"184":[166,86,40,255],"185":[166,86,40,255],"186":[166,86,40,255],"187":[166,86,40,255],"188":[166,86,40,255],"189":[166,86,40,255],"190":[166,86,40,255],"191":[166,86,40,255],"192":[166,86,40,255],"193":[166,86,40,255],"194":[166,86,40,255],"195":[166,86,40,255],"196":[166,86,40,255],"197":[166,86,40,255],"198":[166,86,40,255],"199":[247,129,191,255],"200":[247,129,191,255],"201":[247,129,191,255],"202":[247,129,191,255],"203":[247,129,191,255],"204":[247,129,191,255],"205":[247,129,191,255],"206":[247,129,191,255],"207":[247,129,191,255],"208":[247,129,191,255],"209":[247,129,191,255],"210":[247,129,191,255],"211":[247,129,191,255],"212":[247,129,191,255],"213":[247,129,191,255],"214":[247,129,191,255],"215":[247,129,191,255],"216":[247,129,191,255],"217":[247,129,191,255],"218":[247,129,191,255],"219":[247,129,191,255],"220":[247,129,191,255],"221":[247,129,191,255],"222":[247,129,191,255],"223":[247,129,191,255],"224":[247,129,191,255],"225":[247,129,191,255],"226":[247,129,191,255],"227":[153,153,153,255],"228":[153,153,153,255],"229":[153,153,153,255],"230":[153,153,153,255],"231":[153,153,153,255],"232":[153,153,153,255],"233":[153,153,153,255],"234":[153,153,153,255],"235":[153,153,153,255],"236":[153,153,153,255],"237":[153,153,153,255],"238":[153,153,153,255],"239":[153,153,153,255],"240":[153,153,153,255],"241":[153,153,153,255],"242":[153,153,153,255],"243":[153,153,153,255],"244":[153,153,153,255],"245":[153,153,153,255],"246":[153,153,153,255],"247":[153,153,153,255],"248":[153,153,153,255],"249":[153,153,153,255],"250":[153,153,153,255],"251":[153,153,153,255],"252":[153,153,153,255],"253":[153,153,153,255],"254":[153,153,153,255],"255":[153,153,153,255]}, +set2: {"0":[102,194,165,255],"1":[102,194,165,255],"2":[102,194,165,255],"3":[102,194,165,255],"4":[102,194,165,255],"5":[102,194,165,255],"6":[102,194,165,255],"7":[102,194,165,255],"8":[102,194,165,255],"9":[102,194,165,255],"10":[102,194,165,255],"11":[102,194,165,255],"12":[102,194,165,255],"13":[102,194,165,255],"14":[102,194,165,255],"15":[102,194,165,255],"16":[102,194,165,255],"17":[102,194,165,255],"18":[102,194,165,255],"19":[102,194,165,255],"20":[102,194,165,255],"21":[102,194,165,255],"22":[102,194,165,255],"23":[102,194,165,255],"24":[102,194,165,255],"25":[102,194,165,255],"26":[102,194,165,255],"27":[102,194,165,255],"28":[102,194,165,255],"29":[102,194,165,255],"30":[102,194,165,255],"31":[102,194,165,255],"32":[252,141,98,255],"33":[252,141,98,255],"34":[252,141,98,255],"35":[252,141,98,255],"36":[252,141,98,255],"37":[252,141,98,255],"38":[252,141,98,255],"39":[252,141,98,255],"40":[252,141,98,255],"41":[252,141,98,255],"42":[252,141,98,255],"43":[252,141,98,255],"44":[252,141,98,255],"45":[252,141,98,255],"46":[252,141,98,255],"47":[252,141,98,255],"48":[252,141,98,255],"49":[252,141,98,255],"50":[252,141,98,255],"51":[252,141,98,255],"52":[252,141,98,255],"53":[252,141,98,255],"54":[252,141,98,255],"55":[252,141,98,255],"56":[252,141,98,255],"57":[252,141,98,255],"58":[252,141,98,255],"59":[252,141,98,255],"60":[252,141,98,255],"61":[252,141,98,255],"62":[252,141,98,255],"63":[252,141,98,255],"64":[141,160,203,255],"65":[141,160,203,255],"66":[141,160,203,255],"67":[141,160,203,255],"68":[141,160,203,255],"69":[141,160,203,255],"70":[141,160,203,255],"71":[141,160,203,255],"72":[141,160,203,255],"73":[141,160,203,255],"74":[141,160,203,255],"75":[141,160,203,255],"76":[141,160,203,255],"77":[141,160,203,255],"78":[141,160,203,255],"79":[141,160,203,255],"80":[141,160,203,255],"81":[141,160,203,255],"82":[141,160,203,255],"83":[141,160,203,255],"84":[141,160,203,255],"85":[141,160,203,255],"86":[141,160,203,255],"87":[141,160,203,255],"88":[141,160,203,255],"89":[141,160,203,255],"90":[141,160,203,255],"91":[141,160,203,255],"92":[141,160,203,255],"93":[141,160,203,255],"94":[141,160,203,255],"95":[141,160,203,255],"96":[231,138,195,255],"97":[231,138,195,255],"98":[231,138,195,255],"99":[231,138,195,255],"100":[231,138,195,255],"101":[231,138,195,255],"102":[231,138,195,255],"103":[231,138,195,255],"104":[231,138,195,255],"105":[231,138,195,255],"106":[231,138,195,255],"107":[231,138,195,255],"108":[231,138,195,255],"109":[231,138,195,255],"110":[231,138,195,255],"111":[231,138,195,255],"112":[231,138,195,255],"113":[231,138,195,255],"114":[231,138,195,255],"115":[231,138,195,255],"116":[231,138,195,255],"117":[231,138,195,255],"118":[231,138,195,255],"119":[231,138,195,255],"120":[231,138,195,255],"121":[231,138,195,255],"122":[231,138,195,255],"123":[231,138,195,255],"124":[231,138,195,255],"125":[231,138,195,255],"126":[231,138,195,255],"127":[231,138,195,255],"128":[166,216,84,255],"129":[166,216,84,255],"130":[166,216,84,255],"131":[166,216,84,255],"132":[166,216,84,255],"133":[166,216,84,255],"134":[166,216,84,255],"135":[166,216,84,255],"136":[166,216,84,255],"137":[166,216,84,255],"138":[166,216,84,255],"139":[166,216,84,255],"140":[166,216,84,255],"141":[166,216,84,255],"142":[166,216,84,255],"143":[166,216,84,255],"144":[166,216,84,255],"145":[166,216,84,255],"146":[166,216,84,255],"147":[166,216,84,255],"148":[166,216,84,255],"149":[166,216,84,255],"150":[166,216,84,255],"151":[166,216,84,255],"152":[166,216,84,255],"153":[166,216,84,255],"154":[166,216,84,255],"155":[166,216,84,255],"156":[166,216,84,255],"157":[166,216,84,255],"158":[166,216,84,255],"159":[166,216,84,255],"160":[255,217,47,255],"161":[255,217,47,255],"162":[255,217,47,255],"163":[255,217,47,255],"164":[255,217,47,255],"165":[255,217,47,255],"166":[255,217,47,255],"167":[255,217,47,255],"168":[255,217,47,255],"169":[255,217,47,255],"170":[255,217,47,255],"171":[255,217,47,255],"172":[255,217,47,255],"173":[255,217,47,255],"174":[255,217,47,255],"175":[255,217,47,255],"176":[255,217,47,255],"177":[255,217,47,255],"178":[255,217,47,255],"179":[255,217,47,255],"180":[255,217,47,255],"181":[255,217,47,255],"182":[255,217,47,255],"183":[255,217,47,255],"184":[255,217,47,255],"185":[255,217,47,255],"186":[255,217,47,255],"187":[255,217,47,255],"188":[255,217,47,255],"189":[255,217,47,255],"190":[255,217,47,255],"191":[255,217,47,255],"192":[229,196,148,255],"193":[229,196,148,255],"194":[229,196,148,255],"195":[229,196,148,255],"196":[229,196,148,255],"197":[229,196,148,255],"198":[229,196,148,255],"199":[229,196,148,255],"200":[229,196,148,255],"201":[229,196,148,255],"202":[229,196,148,255],"203":[229,196,148,255],"204":[229,196,148,255],"205":[229,196,148,255],"206":[229,196,148,255],"207":[229,196,148,255],"208":[229,196,148,255],"209":[229,196,148,255],"210":[229,196,148,255],"211":[229,196,148,255],"212":[229,196,148,255],"213":[229,196,148,255],"214":[229,196,148,255],"215":[229,196,148,255],"216":[229,196,148,255],"217":[229,196,148,255],"218":[229,196,148,255],"219":[229,196,148,255],"220":[229,196,148,255],"221":[229,196,148,255],"222":[229,196,148,255],"223":[229,196,148,255],"224":[179,179,179,255],"225":[179,179,179,255],"226":[179,179,179,255],"227":[179,179,179,255],"228":[179,179,179,255],"229":[179,179,179,255],"230":[179,179,179,255],"231":[179,179,179,255],"232":[179,179,179,255],"233":[179,179,179,255],"234":[179,179,179,255],"235":[179,179,179,255],"236":[179,179,179,255],"237":[179,179,179,255],"238":[179,179,179,255],"239":[179,179,179,255],"240":[179,179,179,255],"241":[179,179,179,255],"242":[179,179,179,255],"243":[179,179,179,255],"244":[179,179,179,255],"245":[179,179,179,255],"246":[179,179,179,255],"247":[179,179,179,255],"248":[179,179,179,255],"249":[179,179,179,255],"250":[179,179,179,255],"251":[179,179,179,255],"252":[179,179,179,255],"253":[179,179,179,255],"254":[179,179,179,255],"255":[179,179,179,255]}, +set3: {"0":[141,211,199,255],"1":[141,211,199,255],"2":[141,211,199,255],"3":[141,211,199,255],"4":[141,211,199,255],"5":[141,211,199,255],"6":[141,211,199,255],"7":[141,211,199,255],"8":[141,211,199,255],"9":[141,211,199,255],"10":[141,211,199,255],"11":[141,211,199,255],"12":[141,211,199,255],"13":[141,211,199,255],"14":[141,211,199,255],"15":[141,211,199,255],"16":[141,211,199,255],"17":[141,211,199,255],"18":[141,211,199,255],"19":[141,211,199,255],"20":[141,211,199,255],"21":[141,211,199,255],"22":[255,255,179,255],"23":[255,255,179,255],"24":[255,255,179,255],"25":[255,255,179,255],"26":[255,255,179,255],"27":[255,255,179,255],"28":[255,255,179,255],"29":[255,255,179,255],"30":[255,255,179,255],"31":[255,255,179,255],"32":[255,255,179,255],"33":[255,255,179,255],"34":[255,255,179,255],"35":[255,255,179,255],"36":[255,255,179,255],"37":[255,255,179,255],"38":[255,255,179,255],"39":[255,255,179,255],"40":[255,255,179,255],"41":[255,255,179,255],"42":[255,255,179,255],"43":[190,186,218,255],"44":[190,186,218,255],"45":[190,186,218,255],"46":[190,186,218,255],"47":[190,186,218,255],"48":[190,186,218,255],"49":[190,186,218,255],"50":[190,186,218,255],"51":[190,186,218,255],"52":[190,186,218,255],"53":[190,186,218,255],"54":[190,186,218,255],"55":[190,186,218,255],"56":[190,186,218,255],"57":[190,186,218,255],"58":[190,186,218,255],"59":[190,186,218,255],"60":[190,186,218,255],"61":[190,186,218,255],"62":[190,186,218,255],"63":[190,186,218,255],"64":[251,128,114,255],"65":[251,128,114,255],"66":[251,128,114,255],"67":[251,128,114,255],"68":[251,128,114,255],"69":[251,128,114,255],"70":[251,128,114,255],"71":[251,128,114,255],"72":[251,128,114,255],"73":[251,128,114,255],"74":[251,128,114,255],"75":[251,128,114,255],"76":[251,128,114,255],"77":[251,128,114,255],"78":[251,128,114,255],"79":[251,128,114,255],"80":[251,128,114,255],"81":[251,128,114,255],"82":[251,128,114,255],"83":[251,128,114,255],"84":[251,128,114,255],"85":[128,177,211,255],"86":[128,177,211,255],"87":[128,177,211,255],"88":[128,177,211,255],"89":[128,177,211,255],"90":[128,177,211,255],"91":[128,177,211,255],"92":[128,177,211,255],"93":[128,177,211,255],"94":[128,177,211,255],"95":[128,177,211,255],"96":[128,177,211,255],"97":[128,177,211,255],"98":[128,177,211,255],"99":[128,177,211,255],"100":[128,177,211,255],"101":[128,177,211,255],"102":[128,177,211,255],"103":[128,177,211,255],"104":[128,177,211,255],"105":[128,177,211,255],"106":[128,177,211,255],"107":[253,180,98,255],"108":[253,180,98,255],"109":[253,180,98,255],"110":[253,180,98,255],"111":[253,180,98,255],"112":[253,180,98,255],"113":[253,180,98,255],"114":[253,180,98,255],"115":[253,180,98,255],"116":[253,180,98,255],"117":[253,180,98,255],"118":[253,180,98,255],"119":[253,180,98,255],"120":[253,180,98,255],"121":[253,180,98,255],"122":[253,180,98,255],"123":[253,180,98,255],"124":[253,180,98,255],"125":[253,180,98,255],"126":[253,180,98,255],"127":[253,180,98,255],"128":[179,222,105,255],"129":[179,222,105,255],"130":[179,222,105,255],"131":[179,222,105,255],"132":[179,222,105,255],"133":[179,222,105,255],"134":[179,222,105,255],"135":[179,222,105,255],"136":[179,222,105,255],"137":[179,222,105,255],"138":[179,222,105,255],"139":[179,222,105,255],"140":[179,222,105,255],"141":[179,222,105,255],"142":[179,222,105,255],"143":[179,222,105,255],"144":[179,222,105,255],"145":[179,222,105,255],"146":[179,222,105,255],"147":[179,222,105,255],"148":[179,222,105,255],"149":[252,205,229,255],"150":[252,205,229,255],"151":[252,205,229,255],"152":[252,205,229,255],"153":[252,205,229,255],"154":[252,205,229,255],"155":[252,205,229,255],"156":[252,205,229,255],"157":[252,205,229,255],"158":[252,205,229,255],"159":[252,205,229,255],"160":[252,205,229,255],"161":[252,205,229,255],"162":[252,205,229,255],"163":[252,205,229,255],"164":[252,205,229,255],"165":[252,205,229,255],"166":[252,205,229,255],"167":[252,205,229,255],"168":[252,205,229,255],"169":[252,205,229,255],"170":[217,217,217,255],"171":[217,217,217,255],"172":[217,217,217,255],"173":[217,217,217,255],"174":[217,217,217,255],"175":[217,217,217,255],"176":[217,217,217,255],"177":[217,217,217,255],"178":[217,217,217,255],"179":[217,217,217,255],"180":[217,217,217,255],"181":[217,217,217,255],"182":[217,217,217,255],"183":[217,217,217,255],"184":[217,217,217,255],"185":[217,217,217,255],"186":[217,217,217,255],"187":[217,217,217,255],"188":[217,217,217,255],"189":[217,217,217,255],"190":[217,217,217,255],"191":[217,217,217,255],"192":[188,128,189,255],"193":[188,128,189,255],"194":[188,128,189,255],"195":[188,128,189,255],"196":[188,128,189,255],"197":[188,128,189,255],"198":[188,128,189,255],"199":[188,128,189,255],"200":[188,128,189,255],"201":[188,128,189,255],"202":[188,128,189,255],"203":[188,128,189,255],"204":[188,128,189,255],"205":[188,128,189,255],"206":[188,128,189,255],"207":[188,128,189,255],"208":[188,128,189,255],"209":[188,128,189,255],"210":[188,128,189,255],"211":[188,128,189,255],"212":[188,128,189,255],"213":[204,235,197,255],"214":[204,235,197,255],"215":[204,235,197,255],"216":[204,235,197,255],"217":[204,235,197,255],"218":[204,235,197,255],"219":[204,235,197,255],"220":[204,235,197,255],"221":[204,235,197,255],"222":[204,235,197,255],"223":[204,235,197,255],"224":[204,235,197,255],"225":[204,235,197,255],"226":[204,235,197,255],"227":[204,235,197,255],"228":[204,235,197,255],"229":[204,235,197,255],"230":[204,235,197,255],"231":[204,235,197,255],"232":[204,235,197,255],"233":[204,235,197,255],"234":[255,237,111,255],"235":[255,237,111,255],"236":[255,237,111,255],"237":[255,237,111,255],"238":[255,237,111,255],"239":[255,237,111,255],"240":[255,237,111,255],"241":[255,237,111,255],"242":[255,237,111,255],"243":[255,237,111,255],"244":[255,237,111,255],"245":[255,237,111,255],"246":[255,237,111,255],"247":[255,237,111,255],"248":[255,237,111,255],"249":[255,237,111,255],"250":[255,237,111,255],"251":[255,237,111,255],"252":[255,237,111,255],"253":[255,237,111,255],"254":[255,237,111,255],"255":[255,237,111,255]}, +solar: {"0":[51,19,23,255],"1":[52,20,24,255],"2":[53,20,24,255],"3":[55,21,25,255],"4":[56,21,25,255],"5":[57,21,26,255],"6":[58,22,26,255],"7":[59,22,27,255],"8":[61,23,27,255],"9":[62,23,28,255],"10":[63,23,28,255],"11":[64,24,28,255],"12":[66,24,29,255],"13":[67,25,29,255],"14":[68,25,30,255],"15":[69,25,30,255],"16":[71,26,30,255],"17":[72,26,31,255],"18":[73,27,31,255],"19":[74,27,31,255],"20":[76,27,32,255],"21":[77,28,32,255],"22":[78,28,32,255],"23":[79,28,33,255],"24":[81,29,33,255],"25":[82,29,33,255],"26":[83,29,34,255],"27":[84,30,34,255],"28":[86,30,34,255],"29":[87,30,34,255],"30":[88,31,35,255],"31":[89,31,35,255],"32":[91,31,35,255],"33":[92,32,35,255],"34":[93,32,35,255],"35":[94,32,35,255],"36":[96,33,36,255],"37":[97,33,36,255],"38":[98,33,36,255],"39":[99,34,36,255],"40":[101,34,36,255],"41":[102,34,36,255],"42":[103,35,36,255],"43":[104,35,36,255],"44":[106,35,36,255],"45":[107,36,36,255],"46":[108,36,36,255],"47":[109,37,36,255],"48":[111,37,36,255],"49":[112,37,36,255],"50":[113,38,36,255],"51":[114,38,36,255],"52":[116,38,36,255],"53":[117,39,36,255],"54":[118,39,36,255],"55":[119,40,36,255],"56":[120,40,35,255],"57":[122,41,35,255],"58":[123,41,35,255],"59":[124,42,35,255],"60":[125,42,35,255],"61":[126,43,34,255],"62":[127,43,34,255],"63":[129,44,34,255],"64":[130,44,34,255],"65":[131,45,33,255],"66":[132,45,33,255],"67":[133,46,33,255],"68":[134,46,33,255],"69":[135,47,32,255],"70":[136,48,32,255],"71":[137,48,32,255],"72":[138,49,31,255],"73":[139,50,31,255],"74":[140,50,31,255],"75":[141,51,31,255],"76":[142,52,30,255],"77":[143,52,30,255],"78":[144,53,30,255],"79":[145,54,29,255],"80":[146,55,29,255],"81":[147,56,29,255],"82":[148,56,28,255],"83":[149,57,28,255],"84":[150,58,28,255],"85":[151,59,27,255],"86":[151,60,27,255],"87":[152,60,27,255],"88":[153,61,27,255],"89":[154,62,26,255],"90":[155,63,26,255],"91":[156,64,26,255],"92":[156,65,25,255],"93":[157,66,25,255],"94":[158,67,25,255],"95":[159,67,25,255],"96":[160,68,24,255],"97":[160,69,24,255],"98":[161,70,24,255],"99":[162,71,24,255],"100":[163,72,23,255],"101":[164,73,23,255],"102":[164,74,23,255],"103":[165,75,23,255],"104":[166,76,22,255],"105":[166,77,22,255],"106":[167,78,22,255],"107":[168,79,22,255],"108":[169,80,21,255],"109":[169,81,21,255],"110":[170,82,21,255],"111":[171,83,21,255],"112":[171,84,21,255],"113":[172,85,20,255],"114":[173,86,20,255],"115":[173,87,20,255],"116":[174,88,20,255],"117":[175,89,20,255],"118":[175,90,20,255],"119":[176,91,20,255],"120":[177,92,19,255],"121":[177,93,19,255],"122":[178,94,19,255],"123":[179,95,19,255],"124":[179,96,19,255],"125":[180,97,19,255],"126":[180,98,19,255],"127":[181,99,19,255],"128":[182,100,19,255],"129":[182,101,19,255],"130":[183,102,19,255],"131":[183,103,18,255],"132":[184,104,18,255],"133":[185,105,18,255],"134":[185,106,18,255],"135":[186,107,18,255],"136":[186,108,18,255],"137":[187,109,18,255],"138":[187,110,18,255],"139":[188,111,19,255],"140":[188,113,19,255],"141":[189,114,19,255],"142":[190,115,19,255],"143":[190,116,19,255],"144":[191,117,19,255],"145":[191,118,19,255],"146":[192,119,19,255],"147":[192,120,19,255],"148":[193,121,19,255],"149":[193,122,20,255],"150":[194,123,20,255],"151":[194,124,20,255],"152":[195,126,20,255],"153":[195,127,20,255],"154":[196,128,20,255],"155":[196,129,21,255],"156":[197,130,21,255],"157":[197,131,21,255],"158":[198,132,21,255],"159":[198,133,22,255],"160":[199,134,22,255],"161":[199,135,22,255],"162":[199,137,22,255],"163":[200,138,23,255],"164":[200,139,23,255],"165":[201,140,23,255],"166":[201,141,24,255],"167":[202,142,24,255],"168":[202,143,24,255],"169":[203,144,25,255],"170":[203,146,25,255],"171":[203,147,25,255],"172":[204,148,26,255],"173":[204,149,26,255],"174":[205,150,27,255],"175":[205,151,27,255],"176":[205,153,27,255],"177":[206,154,28,255],"178":[206,155,28,255],"179":[207,156,29,255],"180":[207,157,29,255],"181":[207,158,30,255],"182":[208,159,30,255],"183":[208,161,31,255],"184":[209,162,31,255],"185":[209,163,32,255],"186":[209,164,32,255],"187":[210,165,32,255],"188":[210,167,33,255],"189":[210,168,33,255],"190":[211,169,34,255],"191":[211,170,34,255],"192":[211,171,35,255],"193":[212,173,36,255],"194":[212,174,36,255],"195":[212,175,37,255],"196":[213,176,37,255],"197":[213,177,38,255],"198":[213,179,38,255],"199":[214,180,39,255],"200":[214,181,39,255],"201":[214,182,40,255],"202":[215,183,40,255],"203":[215,185,41,255],"204":[215,186,42,255],"205":[216,187,42,255],"206":[216,188,43,255],"207":[216,190,43,255],"208":[216,191,44,255],"209":[217,192,44,255],"210":[217,193,45,255],"211":[217,195,46,255],"212":[217,196,46,255],"213":[218,197,47,255],"214":[218,198,47,255],"215":[218,200,48,255],"216":[218,201,49,255],"217":[219,202,49,255],"218":[219,203,50,255],"219":[219,205,51,255],"220":[219,206,51,255],"221":[220,207,52,255],"222":[220,208,52,255],"223":[220,210,53,255],"224":[220,211,54,255],"225":[220,212,54,255],"226":[221,214,55,255],"227":[221,215,56,255],"228":[221,216,56,255],"229":[221,218,57,255],"230":[221,219,58,255],"231":[222,220,58,255],"232":[222,222,59,255],"233":[222,223,60,255],"234":[222,224,60,255],"235":[222,226,61,255],"236":[222,227,61,255],"237":[223,228,62,255],"238":[223,230,63,255],"239":[223,231,63,255],"240":[223,232,64,255],"241":[223,234,65,255],"242":[223,235,65,255],"243":[223,236,66,255],"244":[223,238,67,255],"245":[223,239,68,255],"246":[224,240,68,255],"247":[224,242,69,255],"248":[224,243,70,255],"249":[224,245,70,255],"250":[224,246,71,255],"251":[224,247,72,255],"252":[224,249,72,255],"253":[224,250,73,255],"254":[224,252,74,255],"255":[224,253,74,255]}, +spectral: {"0":[158,1,66,255],"1":[160,3,66,255],"2":[162,5,67,255],"3":[164,8,67,255],"4":[166,10,68,255],"5":[168,12,68,255],"6":[170,15,69,255],"7":[173,17,69,255],"8":[175,20,70,255],"9":[177,22,70,255],"10":[179,24,71,255],"11":[181,27,71,255],"12":[183,29,72,255],"13":[186,32,72,255],"14":[188,34,73,255],"15":[190,36,73,255],"16":[192,39,74,255],"17":[194,41,74,255],"18":[196,44,75,255],"19":[198,46,75,255],"20":[201,48,76,255],"21":[203,51,76,255],"22":[205,53,77,255],"23":[207,56,77,255],"24":[209,58,78,255],"25":[211,60,78,255],"26":[213,62,78,255],"27":[214,64,78,255],"28":[216,66,77,255],"29":[217,68,77,255],"30":[218,70,76,255],"31":[219,72,76,255],"32":[220,73,75,255],"33":[222,75,75,255],"34":[223,77,75,255],"35":[224,79,74,255],"36":[225,81,74,255],"37":[226,83,73,255],"38":[228,85,73,255],"39":[229,86,72,255],"40":[230,88,72,255],"41":[231,90,71,255],"42":[233,92,71,255],"43":[234,94,70,255],"44":[235,96,70,255],"45":[236,97,69,255],"46":[237,99,69,255],"47":[239,101,68,255],"48":[240,103,68,255],"49":[241,105,67,255],"50":[242,107,67,255],"51":[244,109,67,255],"52":[244,111,68,255],"53":[244,114,69,255],"54":[245,116,70,255],"55":[245,119,71,255],"56":[245,121,72,255],"57":[246,124,74,255],"58":[246,126,75,255],"59":[246,129,76,255],"60":[247,131,77,255],"61":[247,134,78,255],"62":[247,137,79,255],"63":[248,139,81,255],"64":[248,142,82,255],"65":[248,144,83,255],"66":[249,147,84,255],"67":[249,149,85,255],"68":[250,152,86,255],"69":[250,154,88,255],"70":[250,157,89,255],"71":[251,159,90,255],"72":[251,162,91,255],"73":[251,165,92,255],"74":[252,167,94,255],"75":[252,170,95,255],"76":[252,172,96,255],"77":[253,174,97,255],"78":[253,176,99,255],"79":[253,178,101,255],"80":[253,180,102,255],"81":[253,182,104,255],"82":[253,184,106,255],"83":[253,186,107,255],"84":[253,188,109,255],"85":[253,190,110,255],"86":[253,192,112,255],"87":[253,194,114,255],"88":[253,196,115,255],"89":[253,198,117,255],"90":[253,200,119,255],"91":[253,202,120,255],"92":[253,204,122,255],"93":[253,206,124,255],"94":[253,208,125,255],"95":[253,210,127,255],"96":[253,212,129,255],"97":[253,214,130,255],"98":[253,216,132,255],"99":[253,218,134,255],"100":[253,220,135,255],"101":[253,222,137,255],"102":[254,224,139,255],"103":[254,225,141,255],"104":[254,226,143,255],"105":[254,227,145,255],"106":[254,228,147,255],"107":[254,230,149,255],"108":[254,231,151,255],"109":[254,232,153,255],"110":[254,233,155,255],"111":[254,234,157,255],"112":[254,236,159,255],"113":[254,237,161,255],"114":[254,238,163,255],"115":[254,239,165,255],"116":[254,241,167,255],"117":[254,242,169,255],"118":[254,243,171,255],"119":[254,244,173,255],"120":[254,245,175,255],"121":[254,247,177,255],"122":[254,248,179,255],"123":[254,249,181,255],"124":[254,250,183,255],"125":[254,251,185,255],"126":[254,253,187,255],"127":[254,254,189,255],"128":[254,254,190,255],"129":[253,254,188,255],"130":[252,254,187,255],"131":[251,253,185,255],"132":[250,253,184,255],"133":[249,252,182,255],"134":[248,252,181,255],"135":[247,252,179,255],"136":[246,251,178,255],"137":[245,251,176,255],"138":[244,250,174,255],"139":[243,250,173,255],"140":[242,250,171,255],"141":[241,249,170,255],"142":[240,249,168,255],"143":[239,248,167,255],"144":[238,248,165,255],"145":[237,248,164,255],"146":[236,247,162,255],"147":[235,247,161,255],"148":[234,246,159,255],"149":[233,246,158,255],"150":[232,246,156,255],"151":[231,245,155,255],"152":[230,245,153,255],"153":[230,245,152,255],"154":[227,244,152,255],"155":[225,243,152,255],"156":[223,242,153,255],"157":[220,241,153,255],"158":[218,240,154,255],"159":[216,239,154,255],"160":[213,238,155,255],"161":[211,237,155,255],"162":[209,236,156,255],"163":[206,235,156,255],"164":[204,234,157,255],"165":[202,233,157,255],"166":[199,232,158,255],"167":[197,231,158,255],"168":[195,230,159,255],"169":[192,229,159,255],"170":[190,229,160,255],"171":[188,228,160,255],"172":[186,227,160,255],"173":[183,226,161,255],"174":[181,225,161,255],"175":[179,224,162,255],"176":[176,223,162,255],"177":[174,222,163,255],"178":[172,221,163,255],"179":[169,220,164,255],"180":[166,219,164,255],"181":[164,218,164,255],"182":[161,217,164,255],"183":[158,216,164,255],"184":[156,215,164,255],"185":[153,214,164,255],"186":[150,213,164,255],"187":[148,212,164,255],"188":[145,210,164,255],"189":[142,209,164,255],"190":[139,208,164,255],"191":[137,207,164,255],"192":[134,206,164,255],"193":[131,205,164,255],"194":[129,204,164,255],"195":[126,203,164,255],"196":[123,202,164,255],"197":[120,201,164,255],"198":[118,200,164,255],"199":[115,199,164,255],"200":[112,198,164,255],"201":[110,197,164,255],"202":[107,196,164,255],"203":[104,195,164,255],"204":[102,194,165,255],"205":[99,191,165,255],"206":[97,189,166,255],"207":[95,187,167,255],"208":[93,184,168,255],"209":[91,182,169,255],"210":[89,180,170,255],"211":[87,178,171,255],"212":[85,175,172,255],"213":[83,173,173,255],"214":[81,171,174,255],"215":[79,168,175,255],"216":[77,166,176,255],"217":[75,164,177,255],"218":[73,162,178,255],"219":[71,159,179,255],"220":[69,157,180,255],"221":[67,155,181,255],"222":[65,153,181,255],"223":[63,150,182,255],"224":[61,148,183,255],"225":[59,146,184,255],"226":[57,143,185,255],"227":[55,141,186,255],"228":[53,139,187,255],"229":[51,137,188,255],"230":[50,134,188,255],"231":[52,132,187,255],"232":[54,130,186,255],"233":[56,128,185,255],"234":[57,125,184,255],"235":[59,123,183,255],"236":[61,121,182,255],"237":[62,119,181,255],"238":[64,117,180,255],"239":[66,114,178,255],"240":[68,112,177,255],"241":[69,110,176,255],"242":[71,108,175,255],"243":[73,105,174,255],"244":[75,103,173,255],"245":[76,101,172,255],"246":[78,99,171,255],"247":[80,96,170,255],"248":[81,94,169,255],"249":[83,92,168,255],"250":[85,90,167,255],"251":[87,87,166,255],"252":[88,85,165,255],"253":[90,83,164,255],"254":[92,81,163,255],"255":[94,79,162,255]}, +speed: {"0":[254,252,205,255],"1":[254,251,202,255],"2":[253,250,200,255],"3":[252,249,198,255],"4":[252,247,196,255],"5":[251,246,194,255],"6":[250,245,192,255],"7":[250,244,190,255],"8":[249,243,188,255],"9":[248,241,185,255],"10":[248,240,183,255],"11":[247,239,181,255],"12":[246,238,179,255],"13":[246,237,177,255],"14":[245,236,175,255],"15":[244,234,173,255],"16":[244,233,171,255],"17":[243,232,168,255],"18":[242,231,166,255],"19":[242,230,164,255],"20":[241,229,162,255],"21":[240,227,160,255],"22":[240,226,158,255],"23":[239,225,156,255],"24":[238,224,153,255],"25":[238,223,151,255],"26":[237,222,149,255],"27":[236,221,147,255],"28":[235,220,145,255],"29":[235,219,143,255],"30":[234,217,140,255],"31":[233,216,138,255],"32":[232,215,136,255],"33":[232,214,134,255],"34":[231,213,132,255],"35":[230,212,129,255],"36":[229,211,127,255],"37":[229,210,125,255],"38":[228,209,123,255],"39":[227,208,121,255],"40":[226,207,119,255],"41":[225,206,116,255],"42":[224,205,114,255],"43":[223,204,112,255],"44":[223,203,110,255],"45":[222,202,108,255],"46":[221,201,106,255],"47":[220,200,103,255],"48":[219,199,101,255],"49":[218,198,99,255],"50":[217,197,97,255],"51":[216,196,95,255],"52":[215,196,93,255],"53":[214,195,91,255],"54":[213,194,88,255],"55":[212,193,86,255],"56":[211,192,84,255],"57":[209,191,82,255],"58":[208,190,80,255],"59":[207,190,78,255],"60":[206,189,76,255],"61":[205,188,74,255],"62":[203,187,72,255],"63":[202,186,70,255],"64":[201,186,68,255],"65":[200,185,66,255],"66":[198,184,64,255],"67":[197,183,62,255],"68":[195,183,60,255],"69":[194,182,59,255],"70":[193,181,57,255],"71":[191,181,55,255],"72":[190,180,53,255],"73":[188,179,51,255],"74":[187,179,50,255],"75":[185,178,48,255],"76":[184,177,46,255],"77":[182,177,44,255],"78":[181,176,43,255],"79":[179,175,41,255],"80":[178,175,40,255],"81":[176,174,38,255],"82":[175,173,36,255],"83":[173,173,35,255],"84":[171,172,33,255],"85":[170,171,32,255],"86":[168,171,30,255],"87":[167,170,29,255],"88":[165,170,28,255],"89":[163,169,26,255],"90":[162,168,25,255],"91":[160,168,23,255],"92":[158,167,22,255],"93":[157,167,21,255],"94":[155,166,20,255],"95":[153,165,18,255],"96":[151,165,17,255],"97":[150,164,16,255],"98":[148,164,15,255],"99":[146,163,14,255],"100":[145,162,13,255],"101":[143,162,12,255],"102":[141,161,11,255],"103":[139,161,10,255],"104":[138,160,9,255],"105":[136,159,8,255],"106":[134,159,7,255],"107":[132,158,7,255],"108":[131,158,6,255],"109":[129,157,6,255],"110":[127,156,6,255],"111":[125,156,5,255],"112":[124,155,5,255],"113":[122,155,5,255],"114":[120,154,5,255],"115":[118,153,5,255],"116":[116,153,5,255],"117":[115,152,5,255],"118":[113,151,6,255],"119":[111,151,6,255],"120":[109,150,7,255],"121":[107,150,7,255],"122":[106,149,8,255],"123":[104,148,8,255],"124":[102,148,9,255],"125":[100,147,9,255],"126":[98,146,10,255],"127":[97,146,11,255],"128":[95,145,12,255],"129":[93,145,12,255],"130":[91,144,13,255],"131":[89,143,14,255],"132":[87,143,15,255],"133":[86,142,16,255],"134":[84,141,16,255],"135":[82,141,17,255],"136":[80,140,18,255],"137":[78,139,19,255],"138":[76,139,20,255],"139":[75,138,20,255],"140":[73,137,21,255],"141":[71,137,22,255],"142":[69,136,23,255],"143":[67,135,23,255],"144":[66,134,24,255],"145":[64,134,25,255],"146":[62,133,26,255],"147":[60,132,26,255],"148":[59,131,27,255],"149":[57,131,28,255],"150":[55,130,28,255],"151":[53,129,29,255],"152":[52,129,30,255],"153":[50,128,30,255],"154":[48,127,31,255],"155":[46,126,32,255],"156":[45,125,32,255],"157":[43,125,33,255],"158":[42,124,33,255],"159":[40,123,34,255],"160":[38,122,35,255],"161":[37,121,35,255],"162":[35,121,36,255],"163":[34,120,36,255],"164":[32,119,37,255],"165":[31,118,37,255],"166":[29,117,38,255],"167":[28,117,38,255],"168":[26,116,39,255],"169":[25,115,39,255],"170":[24,114,39,255],"171":[22,113,40,255],"172":[21,112,40,255],"173":[20,111,40,255],"174":[19,111,41,255],"175":[18,110,41,255],"176":[17,109,41,255],"177":[16,108,42,255],"178":[15,107,42,255],"179":[14,106,42,255],"180":[13,105,43,255],"181":[13,104,43,255],"182":[12,103,43,255],"183":[12,103,43,255],"184":[11,102,43,255],"185":[11,101,44,255],"186":[11,100,44,255],"187":[10,99,44,255],"188":[10,98,44,255],"189":[10,97,44,255],"190":[10,96,44,255],"191":[11,95,44,255],"192":[11,94,44,255],"193":[11,93,44,255],"194":[11,92,44,255],"195":[12,92,44,255],"196":[12,91,44,255],"197":[12,90,44,255],"198":[13,89,44,255],"199":[13,88,44,255],"200":[14,87,44,255],"201":[14,86,44,255],"202":[15,85,44,255],"203":[15,84,44,255],"204":[15,83,44,255],"205":[16,82,43,255],"206":[16,81,43,255],"207":[17,80,43,255],"208":[17,79,43,255],"209":[18,78,43,255],"210":[18,77,42,255],"211":[19,76,42,255],"212":[19,75,42,255],"213":[20,74,42,255],"214":[20,74,41,255],"215":[20,73,41,255],"216":[21,72,41,255],"217":[21,71,40,255],"218":[21,70,40,255],"219":[22,69,40,255],"220":[22,68,39,255],"221":[22,67,39,255],"222":[23,66,39,255],"223":[23,65,38,255],"224":[23,64,38,255],"225":[23,63,37,255],"226":[24,62,37,255],"227":[24,61,36,255],"228":[24,60,36,255],"229":[24,59,35,255],"230":[24,58,35,255],"231":[24,57,34,255],"232":[25,56,34,255],"233":[25,55,33,255],"234":[25,54,33,255],"235":[25,53,32,255],"236":[25,52,31,255],"237":[25,52,31,255],"238":[25,51,30,255],"239":[25,50,30,255],"240":[25,49,29,255],"241":[25,48,28,255],"242":[25,47,28,255],"243":[25,46,27,255],"244":[25,45,26,255],"245":[24,44,26,255],"246":[24,43,25,255],"247":[24,42,24,255],"248":[24,41,24,255],"249":[24,40,23,255],"250":[24,39,22,255],"251":[23,38,21,255],"252":[23,37,21,255],"253":[23,36,20,255],"254":[23,35,19,255],"255":[23,35,18,255]}, +spring: {"0":[255,0,255,255],"1":[255,1,254,255],"2":[255,2,253,255],"3":[255,3,252,255],"4":[255,4,251,255],"5":[255,5,250,255],"6":[255,6,249,255],"7":[255,7,248,255],"8":[255,8,247,255],"9":[255,9,246,255],"10":[255,10,245,255],"11":[255,11,244,255],"12":[255,12,243,255],"13":[255,13,242,255],"14":[255,14,241,255],"15":[255,15,240,255],"16":[255,16,239,255],"17":[255,17,238,255],"18":[255,18,237,255],"19":[255,19,236,255],"20":[255,20,235,255],"21":[255,21,234,255],"22":[255,22,233,255],"23":[255,23,232,255],"24":[255,24,231,255],"25":[255,25,230,255],"26":[255,26,229,255],"27":[255,27,228,255],"28":[255,28,227,255],"29":[255,29,226,255],"30":[255,30,225,255],"31":[255,31,224,255],"32":[255,32,223,255],"33":[255,32,222,255],"34":[255,34,221,255],"35":[255,35,220,255],"36":[255,36,219,255],"37":[255,36,218,255],"38":[255,38,217,255],"39":[255,39,216,255],"40":[255,40,215,255],"41":[255,40,214,255],"42":[255,42,213,255],"43":[255,43,211,255],"44":[255,44,211,255],"45":[255,44,210,255],"46":[255,46,209,255],"47":[255,47,208,255],"48":[255,48,207,255],"49":[255,48,206,255],"50":[255,50,205,255],"51":[255,51,204,255],"52":[255,52,203,255],"53":[255,52,202,255],"54":[255,54,201,255],"55":[255,55,200,255],"56":[255,56,199,255],"57":[255,56,198,255],"58":[255,58,197,255],"59":[255,59,195,255],"60":[255,60,195,255],"61":[255,60,194,255],"62":[255,62,193,255],"63":[255,63,192,255],"64":[255,64,191,255],"65":[255,65,190,255],"66":[255,65,189,255],"67":[255,67,188,255],"68":[255,68,187,255],"69":[255,69,186,255],"70":[255,70,185,255],"71":[255,71,184,255],"72":[255,72,183,255],"73":[255,73,182,255],"74":[255,73,181,255],"75":[255,75,179,255],"76":[255,76,179,255],"77":[255,77,178,255],"78":[255,78,177,255],"79":[255,79,176,255],"80":[255,80,175,255],"81":[255,81,174,255],"82":[255,81,173,255],"83":[255,83,172,255],"84":[255,84,171,255],"85":[255,85,170,255],"86":[255,86,169,255],"87":[255,87,168,255],"88":[255,88,167,255],"89":[255,89,166,255],"90":[255,89,165,255],"91":[255,91,163,255],"92":[255,92,163,255],"93":[255,93,162,255],"94":[255,94,161,255],"95":[255,95,160,255],"96":[255,96,159,255],"97":[255,97,158,255],"98":[255,97,157,255],"99":[255,99,156,255],"100":[255,100,155,255],"101":[255,101,154,255],"102":[255,102,153,255],"103":[255,103,152,255],"104":[255,104,151,255],"105":[255,105,150,255],"106":[255,105,149,255],"107":[255,107,147,255],"108":[255,108,147,255],"109":[255,109,146,255],"110":[255,110,145,255],"111":[255,111,144,255],"112":[255,112,143,255],"113":[255,113,142,255],"114":[255,113,141,255],"115":[255,115,140,255],"116":[255,116,139,255],"117":[255,117,138,255],"118":[255,118,137,255],"119":[255,119,136,255],"120":[255,120,135,255],"121":[255,121,134,255],"122":[255,121,133,255],"123":[255,123,131,255],"124":[255,124,131,255],"125":[255,125,130,255],"126":[255,126,129,255],"127":[255,127,128,255],"128":[255,128,127,255],"129":[255,129,126,255],"130":[255,130,125,255],"131":[255,131,124,255],"132":[255,131,123,255],"133":[255,133,121,255],"134":[255,134,121,255],"135":[255,135,120,255],"136":[255,136,119,255],"137":[255,137,118,255],"138":[255,138,117,255],"139":[255,139,116,255],"140":[255,140,114,255],"141":[255,141,113,255],"142":[255,142,113,255],"143":[255,143,112,255],"144":[255,144,111,255],"145":[255,145,110,255],"146":[255,146,109,255],"147":[255,147,108,255],"148":[255,147,107,255],"149":[255,149,105,255],"150":[255,150,105,255],"151":[255,151,104,255],"152":[255,152,103,255],"153":[255,153,102,255],"154":[255,154,101,255],"155":[255,155,100,255],"156":[255,156,98,255],"157":[255,157,97,255],"158":[255,158,97,255],"159":[255,159,96,255],"160":[255,160,95,255],"161":[255,161,94,255],"162":[255,162,93,255],"163":[255,163,92,255],"164":[255,163,91,255],"165":[255,165,89,255],"166":[255,166,89,255],"167":[255,167,88,255],"168":[255,168,87,255],"169":[255,169,86,255],"170":[255,170,85,255],"171":[255,171,84,255],"172":[255,172,82,255],"173":[255,173,81,255],"174":[255,174,81,255],"175":[255,175,80,255],"176":[255,176,79,255],"177":[255,177,78,255],"178":[255,178,77,255],"179":[255,179,76,255],"180":[255,179,75,255],"181":[255,181,73,255],"182":[255,182,73,255],"183":[255,183,72,255],"184":[255,184,71,255],"185":[255,185,70,255],"186":[255,186,69,255],"187":[255,187,68,255],"188":[255,188,66,255],"189":[255,189,65,255],"190":[255,190,65,255],"191":[255,191,64,255],"192":[255,192,63,255],"193":[255,193,62,255],"194":[255,194,61,255],"195":[255,195,60,255],"196":[255,195,59,255],"197":[255,197,57,255],"198":[255,198,56,255],"199":[255,199,56,255],"200":[255,200,55,255],"201":[255,201,54,255],"202":[255,202,53,255],"203":[255,203,52,255],"204":[255,204,50,255],"205":[255,205,49,255],"206":[255,206,48,255],"207":[255,207,48,255],"208":[255,208,47,255],"209":[255,209,46,255],"210":[255,210,45,255],"211":[255,211,44,255],"212":[255,211,43,255],"213":[255,213,41,255],"214":[255,214,40,255],"215":[255,215,40,255],"216":[255,216,39,255],"217":[255,217,38,255],"218":[255,218,37,255],"219":[255,219,36,255],"220":[255,220,34,255],"221":[255,221,33,255],"222":[255,222,32,255],"223":[255,223,32,255],"224":[255,224,31,255],"225":[255,225,30,255],"226":[255,226,29,255],"227":[255,227,28,255],"228":[255,227,27,255],"229":[255,229,25,255],"230":[255,230,24,255],"231":[255,231,24,255],"232":[255,232,23,255],"233":[255,233,22,255],"234":[255,234,21,255],"235":[255,235,20,255],"236":[255,236,18,255],"237":[255,237,17,255],"238":[255,238,16,255],"239":[255,239,16,255],"240":[255,240,15,255],"241":[255,241,14,255],"242":[255,242,13,255],"243":[255,243,12,255],"244":[255,243,11,255],"245":[255,245,9,255],"246":[255,246,8,255],"247":[255,247,8,255],"248":[255,248,7,255],"249":[255,249,6,255],"250":[255,250,5,255],"251":[255,251,4,255],"252":[255,252,2,255],"253":[255,253,1,255],"254":[255,254,0,255],"255":[255,255,0,255]}, +summer: {"0":[0,127,102,255],"1":[1,128,102,255],"2":[2,128,102,255],"3":[3,129,102,255],"4":[4,129,102,255],"5":[5,130,102,255],"6":[6,130,102,255],"7":[7,131,102,255],"8":[8,131,102,255],"9":[9,132,102,255],"10":[10,132,102,255],"11":[11,133,102,255],"12":[12,133,102,255],"13":[13,134,102,255],"14":[14,134,102,255],"15":[15,135,102,255],"16":[16,135,102,255],"17":[17,136,102,255],"18":[18,136,102,255],"19":[19,137,102,255],"20":[20,137,102,255],"21":[21,138,102,255],"22":[22,138,102,255],"23":[23,139,102,255],"24":[24,139,102,255],"25":[25,140,102,255],"26":[26,140,102,255],"27":[27,141,102,255],"28":[28,141,102,255],"29":[29,142,102,255],"30":[30,142,102,255],"31":[31,143,102,255],"32":[32,143,102,255],"33":[32,144,102,255],"34":[34,144,102,255],"35":[35,145,102,255],"36":[36,145,102,255],"37":[36,146,102,255],"38":[38,146,102,255],"39":[39,147,102,255],"40":[40,147,102,255],"41":[40,147,102,255],"42":[42,148,102,255],"43":[43,149,102,255],"44":[44,149,102,255],"45":[44,150,102,255],"46":[46,150,102,255],"47":[47,151,102,255],"48":[48,151,102,255],"49":[48,152,102,255],"50":[50,152,102,255],"51":[51,153,102,255],"52":[52,153,102,255],"53":[52,154,102,255],"54":[54,154,102,255],"55":[55,155,102,255],"56":[56,155,102,255],"57":[56,156,102,255],"58":[58,156,102,255],"59":[59,157,102,255],"60":[60,157,102,255],"61":[60,158,102,255],"62":[62,158,102,255],"63":[63,159,102,255],"64":[64,159,102,255],"65":[65,160,102,255],"66":[65,160,102,255],"67":[67,161,102,255],"68":[68,161,102,255],"69":[69,162,102,255],"70":[70,162,102,255],"71":[71,163,102,255],"72":[72,163,102,255],"73":[73,163,102,255],"74":[73,164,102,255],"75":[75,165,102,255],"76":[76,165,102,255],"77":[77,166,102,255],"78":[78,166,102,255],"79":[79,167,102,255],"80":[80,167,102,255],"81":[81,168,102,255],"82":[81,168,102,255],"83":[83,169,102,255],"84":[84,169,102,255],"85":[85,170,102,255],"86":[86,170,102,255],"87":[87,171,102,255],"88":[88,171,102,255],"89":[89,172,102,255],"90":[89,172,102,255],"91":[91,173,102,255],"92":[92,173,102,255],"93":[93,174,102,255],"94":[94,174,102,255],"95":[95,175,102,255],"96":[96,175,102,255],"97":[97,176,102,255],"98":[97,176,102,255],"99":[99,177,102,255],"100":[100,177,102,255],"101":[101,178,102,255],"102":[102,178,102,255],"103":[103,179,102,255],"104":[104,179,102,255],"105":[105,179,102,255],"106":[105,180,102,255],"107":[107,181,102,255],"108":[108,181,102,255],"109":[109,182,102,255],"110":[110,182,102,255],"111":[111,183,102,255],"112":[112,183,102,255],"113":[113,184,102,255],"114":[113,184,102,255],"115":[115,185,102,255],"116":[116,185,102,255],"117":[117,186,102,255],"118":[118,186,102,255],"119":[119,187,102,255],"120":[120,187,102,255],"121":[121,188,102,255],"122":[121,188,102,255],"123":[123,189,102,255],"124":[124,189,102,255],"125":[125,190,102,255],"126":[126,190,102,255],"127":[127,191,102,255],"128":[128,191,102,255],"129":[129,192,102,255],"130":[130,192,102,255],"131":[131,193,102,255],"132":[131,193,102,255],"133":[133,194,102,255],"134":[134,194,102,255],"135":[135,195,102,255],"136":[136,195,102,255],"137":[137,195,102,255],"138":[138,196,102,255],"139":[139,196,102,255],"140":[140,197,102,255],"141":[141,198,102,255],"142":[142,198,102,255],"143":[143,199,102,255],"144":[144,199,102,255],"145":[145,200,102,255],"146":[146,200,102,255],"147":[147,201,102,255],"148":[147,201,102,255],"149":[149,202,102,255],"150":[150,202,102,255],"151":[151,203,102,255],"152":[152,203,102,255],"153":[153,204,102,255],"154":[154,204,102,255],"155":[155,205,102,255],"156":[156,205,102,255],"157":[157,206,102,255],"158":[158,206,102,255],"159":[159,207,102,255],"160":[160,207,102,255],"161":[161,208,102,255],"162":[162,208,102,255],"163":[163,209,102,255],"164":[163,209,102,255],"165":[165,210,102,255],"166":[166,210,102,255],"167":[167,211,102,255],"168":[168,211,102,255],"169":[169,211,102,255],"170":[170,212,102,255],"171":[171,212,102,255],"172":[172,213,102,255],"173":[173,214,102,255],"174":[174,214,102,255],"175":[175,215,102,255],"176":[176,215,102,255],"177":[177,216,102,255],"178":[178,216,102,255],"179":[179,217,102,255],"180":[179,217,102,255],"181":[181,218,102,255],"182":[182,218,102,255],"183":[183,219,102,255],"184":[184,219,102,255],"185":[185,220,102,255],"186":[186,220,102,255],"187":[187,221,102,255],"188":[188,221,102,255],"189":[189,222,102,255],"190":[190,222,102,255],"191":[191,223,102,255],"192":[192,223,102,255],"193":[193,224,102,255],"194":[194,224,102,255],"195":[195,225,102,255],"196":[195,225,102,255],"197":[197,226,102,255],"198":[198,226,102,255],"199":[199,227,102,255],"200":[200,227,102,255],"201":[201,227,102,255],"202":[202,228,102,255],"203":[203,228,102,255],"204":[204,229,102,255],"205":[205,230,102,255],"206":[206,230,102,255],"207":[207,231,102,255],"208":[208,231,102,255],"209":[209,232,102,255],"210":[210,232,102,255],"211":[211,233,102,255],"212":[211,233,102,255],"213":[213,234,102,255],"214":[214,234,102,255],"215":[215,235,102,255],"216":[216,235,102,255],"217":[217,236,102,255],"218":[218,236,102,255],"219":[219,237,102,255],"220":[220,237,102,255],"221":[221,238,102,255],"222":[222,238,102,255],"223":[223,239,102,255],"224":[224,239,102,255],"225":[225,240,102,255],"226":[226,240,102,255],"227":[227,241,102,255],"228":[227,241,102,255],"229":[229,242,102,255],"230":[230,242,102,255],"231":[231,243,102,255],"232":[232,243,102,255],"233":[233,243,102,255],"234":[234,244,102,255],"235":[235,244,102,255],"236":[236,245,102,255],"237":[237,246,102,255],"238":[238,246,102,255],"239":[239,247,102,255],"240":[240,247,102,255],"241":[241,248,102,255],"242":[242,248,102,255],"243":[243,249,102,255],"244":[243,249,102,255],"245":[245,250,102,255],"246":[246,250,102,255],"247":[247,251,102,255],"248":[248,251,102,255],"249":[249,252,102,255],"250":[250,252,102,255],"251":[251,253,102,255],"252":[252,253,102,255],"253":[253,254,102,255],"254":[254,254,102,255],"255":[255,255,102,255]}, +tab10: {"0":[31,119,180,255],"1":[31,119,180,255],"2":[31,119,180,255],"3":[31,119,180,255],"4":[31,119,180,255],"5":[31,119,180,255],"6":[31,119,180,255],"7":[31,119,180,255],"8":[31,119,180,255],"9":[31,119,180,255],"10":[31,119,180,255],"11":[31,119,180,255],"12":[31,119,180,255],"13":[31,119,180,255],"14":[31,119,180,255],"15":[31,119,180,255],"16":[31,119,180,255],"17":[31,119,180,255],"18":[31,119,180,255],"19":[31,119,180,255],"20":[31,119,180,255],"21":[31,119,180,255],"22":[31,119,180,255],"23":[31,119,180,255],"24":[31,119,180,255],"25":[31,119,180,255],"26":[255,127,14,255],"27":[255,127,14,255],"28":[255,127,14,255],"29":[255,127,14,255],"30":[255,127,14,255],"31":[255,127,14,255],"32":[255,127,14,255],"33":[255,127,14,255],"34":[255,127,14,255],"35":[255,127,14,255],"36":[255,127,14,255],"37":[255,127,14,255],"38":[255,127,14,255],"39":[255,127,14,255],"40":[255,127,14,255],"41":[255,127,14,255],"42":[255,127,14,255],"43":[255,127,14,255],"44":[255,127,14,255],"45":[255,127,14,255],"46":[255,127,14,255],"47":[255,127,14,255],"48":[255,127,14,255],"49":[255,127,14,255],"50":[255,127,14,255],"51":[44,160,44,255],"52":[44,160,44,255],"53":[44,160,44,255],"54":[44,160,44,255],"55":[44,160,44,255],"56":[44,160,44,255],"57":[44,160,44,255],"58":[44,160,44,255],"59":[44,160,44,255],"60":[44,160,44,255],"61":[44,160,44,255],"62":[44,160,44,255],"63":[44,160,44,255],"64":[44,160,44,255],"65":[44,160,44,255],"66":[44,160,44,255],"67":[44,160,44,255],"68":[44,160,44,255],"69":[44,160,44,255],"70":[44,160,44,255],"71":[44,160,44,255],"72":[44,160,44,255],"73":[44,160,44,255],"74":[44,160,44,255],"75":[44,160,44,255],"76":[44,160,44,255],"77":[214,39,40,255],"78":[214,39,40,255],"79":[214,39,40,255],"80":[214,39,40,255],"81":[214,39,40,255],"82":[214,39,40,255],"83":[214,39,40,255],"84":[214,39,40,255],"85":[214,39,40,255],"86":[214,39,40,255],"87":[214,39,40,255],"88":[214,39,40,255],"89":[214,39,40,255],"90":[214,39,40,255],"91":[214,39,40,255],"92":[214,39,40,255],"93":[214,39,40,255],"94":[214,39,40,255],"95":[214,39,40,255],"96":[214,39,40,255],"97":[214,39,40,255],"98":[214,39,40,255],"99":[214,39,40,255],"100":[214,39,40,255],"101":[214,39,40,255],"102":[148,103,189,255],"103":[148,103,189,255],"104":[148,103,189,255],"105":[148,103,189,255],"106":[148,103,189,255],"107":[148,103,189,255],"108":[148,103,189,255],"109":[148,103,189,255],"110":[148,103,189,255],"111":[148,103,189,255],"112":[148,103,189,255],"113":[148,103,189,255],"114":[148,103,189,255],"115":[148,103,189,255],"116":[148,103,189,255],"117":[148,103,189,255],"118":[148,103,189,255],"119":[148,103,189,255],"120":[148,103,189,255],"121":[148,103,189,255],"122":[148,103,189,255],"123":[148,103,189,255],"124":[148,103,189,255],"125":[148,103,189,255],"126":[148,103,189,255],"127":[148,103,189,255],"128":[140,86,75,255],"129":[140,86,75,255],"130":[140,86,75,255],"131":[140,86,75,255],"132":[140,86,75,255],"133":[140,86,75,255],"134":[140,86,75,255],"135":[140,86,75,255],"136":[140,86,75,255],"137":[140,86,75,255],"138":[140,86,75,255],"139":[140,86,75,255],"140":[140,86,75,255],"141":[140,86,75,255],"142":[140,86,75,255],"143":[140,86,75,255],"144":[140,86,75,255],"145":[140,86,75,255],"146":[140,86,75,255],"147":[140,86,75,255],"148":[140,86,75,255],"149":[140,86,75,255],"150":[140,86,75,255],"151":[140,86,75,255],"152":[140,86,75,255],"153":[227,119,194,255],"154":[227,119,194,255],"155":[227,119,194,255],"156":[227,119,194,255],"157":[227,119,194,255],"158":[227,119,194,255],"159":[227,119,194,255],"160":[227,119,194,255],"161":[227,119,194,255],"162":[227,119,194,255],"163":[227,119,194,255],"164":[227,119,194,255],"165":[227,119,194,255],"166":[227,119,194,255],"167":[227,119,194,255],"168":[227,119,194,255],"169":[227,119,194,255],"170":[227,119,194,255],"171":[227,119,194,255],"172":[227,119,194,255],"173":[227,119,194,255],"174":[227,119,194,255],"175":[227,119,194,255],"176":[227,119,194,255],"177":[227,119,194,255],"178":[227,119,194,255],"179":[127,127,127,255],"180":[127,127,127,255],"181":[127,127,127,255],"182":[127,127,127,255],"183":[127,127,127,255],"184":[127,127,127,255],"185":[127,127,127,255],"186":[127,127,127,255],"187":[127,127,127,255],"188":[127,127,127,255],"189":[127,127,127,255],"190":[127,127,127,255],"191":[127,127,127,255],"192":[127,127,127,255],"193":[127,127,127,255],"194":[127,127,127,255],"195":[127,127,127,255],"196":[127,127,127,255],"197":[127,127,127,255],"198":[127,127,127,255],"199":[127,127,127,255],"200":[127,127,127,255],"201":[127,127,127,255],"202":[127,127,127,255],"203":[127,127,127,255],"204":[188,189,34,255],"205":[188,189,34,255],"206":[188,189,34,255],"207":[188,189,34,255],"208":[188,189,34,255],"209":[188,189,34,255],"210":[188,189,34,255],"211":[188,189,34,255],"212":[188,189,34,255],"213":[188,189,34,255],"214":[188,189,34,255],"215":[188,189,34,255],"216":[188,189,34,255],"217":[188,189,34,255],"218":[188,189,34,255],"219":[188,189,34,255],"220":[188,189,34,255],"221":[188,189,34,255],"222":[188,189,34,255],"223":[188,189,34,255],"224":[188,189,34,255],"225":[188,189,34,255],"226":[188,189,34,255],"227":[188,189,34,255],"228":[188,189,34,255],"229":[188,189,34,255],"230":[23,190,207,255],"231":[23,190,207,255],"232":[23,190,207,255],"233":[23,190,207,255],"234":[23,190,207,255],"235":[23,190,207,255],"236":[23,190,207,255],"237":[23,190,207,255],"238":[23,190,207,255],"239":[23,190,207,255],"240":[23,190,207,255],"241":[23,190,207,255],"242":[23,190,207,255],"243":[23,190,207,255],"244":[23,190,207,255],"245":[23,190,207,255],"246":[23,190,207,255],"247":[23,190,207,255],"248":[23,190,207,255],"249":[23,190,207,255],"250":[23,190,207,255],"251":[23,190,207,255],"252":[23,190,207,255],"253":[23,190,207,255],"254":[23,190,207,255],"255":[23,190,207,255]}, +tab20: {"0":[31,119,180,255],"1":[31,119,180,255],"2":[31,119,180,255],"3":[31,119,180,255],"4":[31,119,180,255],"5":[31,119,180,255],"6":[31,119,180,255],"7":[31,119,180,255],"8":[31,119,180,255],"9":[31,119,180,255],"10":[31,119,180,255],"11":[31,119,180,255],"12":[31,119,180,255],"13":[174,199,232,255],"14":[174,199,232,255],"15":[174,199,232,255],"16":[174,199,232,255],"17":[174,199,232,255],"18":[174,199,232,255],"19":[174,199,232,255],"20":[174,199,232,255],"21":[174,199,232,255],"22":[174,199,232,255],"23":[174,199,232,255],"24":[174,199,232,255],"25":[174,199,232,255],"26":[255,127,14,255],"27":[255,127,14,255],"28":[255,127,14,255],"29":[255,127,14,255],"30":[255,127,14,255],"31":[255,127,14,255],"32":[255,127,14,255],"33":[255,127,14,255],"34":[255,127,14,255],"35":[255,127,14,255],"36":[255,127,14,255],"37":[255,127,14,255],"38":[255,127,14,255],"39":[255,187,120,255],"40":[255,187,120,255],"41":[255,187,120,255],"42":[255,187,120,255],"43":[255,187,120,255],"44":[255,187,120,255],"45":[255,187,120,255],"46":[255,187,120,255],"47":[255,187,120,255],"48":[255,187,120,255],"49":[255,187,120,255],"50":[255,187,120,255],"51":[44,160,44,255],"52":[44,160,44,255],"53":[44,160,44,255],"54":[44,160,44,255],"55":[44,160,44,255],"56":[44,160,44,255],"57":[44,160,44,255],"58":[44,160,44,255],"59":[44,160,44,255],"60":[44,160,44,255],"61":[44,160,44,255],"62":[44,160,44,255],"63":[44,160,44,255],"64":[152,223,138,255],"65":[152,223,138,255],"66":[152,223,138,255],"67":[152,223,138,255],"68":[152,223,138,255],"69":[152,223,138,255],"70":[152,223,138,255],"71":[152,223,138,255],"72":[152,223,138,255],"73":[152,223,138,255],"74":[152,223,138,255],"75":[152,223,138,255],"76":[152,223,138,255],"77":[214,39,40,255],"78":[214,39,40,255],"79":[214,39,40,255],"80":[214,39,40,255],"81":[214,39,40,255],"82":[214,39,40,255],"83":[214,39,40,255],"84":[214,39,40,255],"85":[214,39,40,255],"86":[214,39,40,255],"87":[214,39,40,255],"88":[214,39,40,255],"89":[214,39,40,255],"90":[255,152,150,255],"91":[255,152,150,255],"92":[255,152,150,255],"93":[255,152,150,255],"94":[255,152,150,255],"95":[255,152,150,255],"96":[255,152,150,255],"97":[255,152,150,255],"98":[255,152,150,255],"99":[255,152,150,255],"100":[255,152,150,255],"101":[255,152,150,255],"102":[148,103,189,255],"103":[148,103,189,255],"104":[148,103,189,255],"105":[148,103,189,255],"106":[148,103,189,255],"107":[148,103,189,255],"108":[148,103,189,255],"109":[148,103,189,255],"110":[148,103,189,255],"111":[148,103,189,255],"112":[148,103,189,255],"113":[148,103,189,255],"114":[148,103,189,255],"115":[197,176,213,255],"116":[197,176,213,255],"117":[197,176,213,255],"118":[197,176,213,255],"119":[197,176,213,255],"120":[197,176,213,255],"121":[197,176,213,255],"122":[197,176,213,255],"123":[197,176,213,255],"124":[197,176,213,255],"125":[197,176,213,255],"126":[197,176,213,255],"127":[197,176,213,255],"128":[140,86,75,255],"129":[140,86,75,255],"130":[140,86,75,255],"131":[140,86,75,255],"132":[140,86,75,255],"133":[140,86,75,255],"134":[140,86,75,255],"135":[140,86,75,255],"136":[140,86,75,255],"137":[140,86,75,255],"138":[140,86,75,255],"139":[140,86,75,255],"140":[140,86,75,255],"141":[196,156,148,255],"142":[196,156,148,255],"143":[196,156,148,255],"144":[196,156,148,255],"145":[196,156,148,255],"146":[196,156,148,255],"147":[196,156,148,255],"148":[196,156,148,255],"149":[196,156,148,255],"150":[196,156,148,255],"151":[196,156,148,255],"152":[196,156,148,255],"153":[227,119,194,255],"154":[227,119,194,255],"155":[227,119,194,255],"156":[227,119,194,255],"157":[227,119,194,255],"158":[227,119,194,255],"159":[227,119,194,255],"160":[227,119,194,255],"161":[227,119,194,255],"162":[227,119,194,255],"163":[227,119,194,255],"164":[227,119,194,255],"165":[227,119,194,255],"166":[247,182,210,255],"167":[247,182,210,255],"168":[247,182,210,255],"169":[247,182,210,255],"170":[247,182,210,255],"171":[247,182,210,255],"172":[247,182,210,255],"173":[247,182,210,255],"174":[247,182,210,255],"175":[247,182,210,255],"176":[247,182,210,255],"177":[247,182,210,255],"178":[247,182,210,255],"179":[127,127,127,255],"180":[127,127,127,255],"181":[127,127,127,255],"182":[127,127,127,255],"183":[127,127,127,255],"184":[127,127,127,255],"185":[127,127,127,255],"186":[127,127,127,255],"187":[127,127,127,255],"188":[127,127,127,255],"189":[127,127,127,255],"190":[127,127,127,255],"191":[127,127,127,255],"192":[199,199,199,255],"193":[199,199,199,255],"194":[199,199,199,255],"195":[199,199,199,255],"196":[199,199,199,255],"197":[199,199,199,255],"198":[199,199,199,255],"199":[199,199,199,255],"200":[199,199,199,255],"201":[199,199,199,255],"202":[199,199,199,255],"203":[199,199,199,255],"204":[188,189,34,255],"205":[188,189,34,255],"206":[188,189,34,255],"207":[188,189,34,255],"208":[188,189,34,255],"209":[188,189,34,255],"210":[188,189,34,255],"211":[188,189,34,255],"212":[188,189,34,255],"213":[188,189,34,255],"214":[188,189,34,255],"215":[188,189,34,255],"216":[188,189,34,255],"217":[219,219,141,255],"218":[219,219,141,255],"219":[219,219,141,255],"220":[219,219,141,255],"221":[219,219,141,255],"222":[219,219,141,255],"223":[219,219,141,255],"224":[219,219,141,255],"225":[219,219,141,255],"226":[219,219,141,255],"227":[219,219,141,255],"228":[219,219,141,255],"229":[219,219,141,255],"230":[23,190,207,255],"231":[23,190,207,255],"232":[23,190,207,255],"233":[23,190,207,255],"234":[23,190,207,255],"235":[23,190,207,255],"236":[23,190,207,255],"237":[23,190,207,255],"238":[23,190,207,255],"239":[23,190,207,255],"240":[23,190,207,255],"241":[23,190,207,255],"242":[23,190,207,255],"243":[158,218,229,255],"244":[158,218,229,255],"245":[158,218,229,255],"246":[158,218,229,255],"247":[158,218,229,255],"248":[158,218,229,255],"249":[158,218,229,255],"250":[158,218,229,255],"251":[158,218,229,255],"252":[158,218,229,255],"253":[158,218,229,255],"254":[158,218,229,255],"255":[158,218,229,255]}, +tab20b: {"0":[57,59,121,255],"1":[57,59,121,255],"2":[57,59,121,255],"3":[57,59,121,255],"4":[57,59,121,255],"5":[57,59,121,255],"6":[57,59,121,255],"7":[57,59,121,255],"8":[57,59,121,255],"9":[57,59,121,255],"10":[57,59,121,255],"11":[57,59,121,255],"12":[57,59,121,255],"13":[82,84,163,255],"14":[82,84,163,255],"15":[82,84,163,255],"16":[82,84,163,255],"17":[82,84,163,255],"18":[82,84,163,255],"19":[82,84,163,255],"20":[82,84,163,255],"21":[82,84,163,255],"22":[82,84,163,255],"23":[82,84,163,255],"24":[82,84,163,255],"25":[82,84,163,255],"26":[107,110,207,255],"27":[107,110,207,255],"28":[107,110,207,255],"29":[107,110,207,255],"30":[107,110,207,255],"31":[107,110,207,255],"32":[107,110,207,255],"33":[107,110,207,255],"34":[107,110,207,255],"35":[107,110,207,255],"36":[107,110,207,255],"37":[107,110,207,255],"38":[107,110,207,255],"39":[156,158,222,255],"40":[156,158,222,255],"41":[156,158,222,255],"42":[156,158,222,255],"43":[156,158,222,255],"44":[156,158,222,255],"45":[156,158,222,255],"46":[156,158,222,255],"47":[156,158,222,255],"48":[156,158,222,255],"49":[156,158,222,255],"50":[156,158,222,255],"51":[99,121,57,255],"52":[99,121,57,255],"53":[99,121,57,255],"54":[99,121,57,255],"55":[99,121,57,255],"56":[99,121,57,255],"57":[99,121,57,255],"58":[99,121,57,255],"59":[99,121,57,255],"60":[99,121,57,255],"61":[99,121,57,255],"62":[99,121,57,255],"63":[99,121,57,255],"64":[140,162,82,255],"65":[140,162,82,255],"66":[140,162,82,255],"67":[140,162,82,255],"68":[140,162,82,255],"69":[140,162,82,255],"70":[140,162,82,255],"71":[140,162,82,255],"72":[140,162,82,255],"73":[140,162,82,255],"74":[140,162,82,255],"75":[140,162,82,255],"76":[140,162,82,255],"77":[181,207,107,255],"78":[181,207,107,255],"79":[181,207,107,255],"80":[181,207,107,255],"81":[181,207,107,255],"82":[181,207,107,255],"83":[181,207,107,255],"84":[181,207,107,255],"85":[181,207,107,255],"86":[181,207,107,255],"87":[181,207,107,255],"88":[181,207,107,255],"89":[181,207,107,255],"90":[206,219,156,255],"91":[206,219,156,255],"92":[206,219,156,255],"93":[206,219,156,255],"94":[206,219,156,255],"95":[206,219,156,255],"96":[206,219,156,255],"97":[206,219,156,255],"98":[206,219,156,255],"99":[206,219,156,255],"100":[206,219,156,255],"101":[206,219,156,255],"102":[140,109,49,255],"103":[140,109,49,255],"104":[140,109,49,255],"105":[140,109,49,255],"106":[140,109,49,255],"107":[140,109,49,255],"108":[140,109,49,255],"109":[140,109,49,255],"110":[140,109,49,255],"111":[140,109,49,255],"112":[140,109,49,255],"113":[140,109,49,255],"114":[140,109,49,255],"115":[189,158,57,255],"116":[189,158,57,255],"117":[189,158,57,255],"118":[189,158,57,255],"119":[189,158,57,255],"120":[189,158,57,255],"121":[189,158,57,255],"122":[189,158,57,255],"123":[189,158,57,255],"124":[189,158,57,255],"125":[189,158,57,255],"126":[189,158,57,255],"127":[189,158,57,255],"128":[231,186,82,255],"129":[231,186,82,255],"130":[231,186,82,255],"131":[231,186,82,255],"132":[231,186,82,255],"133":[231,186,82,255],"134":[231,186,82,255],"135":[231,186,82,255],"136":[231,186,82,255],"137":[231,186,82,255],"138":[231,186,82,255],"139":[231,186,82,255],"140":[231,186,82,255],"141":[231,203,148,255],"142":[231,203,148,255],"143":[231,203,148,255],"144":[231,203,148,255],"145":[231,203,148,255],"146":[231,203,148,255],"147":[231,203,148,255],"148":[231,203,148,255],"149":[231,203,148,255],"150":[231,203,148,255],"151":[231,203,148,255],"152":[231,203,148,255],"153":[132,60,57,255],"154":[132,60,57,255],"155":[132,60,57,255],"156":[132,60,57,255],"157":[132,60,57,255],"158":[132,60,57,255],"159":[132,60,57,255],"160":[132,60,57,255],"161":[132,60,57,255],"162":[132,60,57,255],"163":[132,60,57,255],"164":[132,60,57,255],"165":[132,60,57,255],"166":[173,73,74,255],"167":[173,73,74,255],"168":[173,73,74,255],"169":[173,73,74,255],"170":[173,73,74,255],"171":[173,73,74,255],"172":[173,73,74,255],"173":[173,73,74,255],"174":[173,73,74,255],"175":[173,73,74,255],"176":[173,73,74,255],"177":[173,73,74,255],"178":[173,73,74,255],"179":[214,97,107,255],"180":[214,97,107,255],"181":[214,97,107,255],"182":[214,97,107,255],"183":[214,97,107,255],"184":[214,97,107,255],"185":[214,97,107,255],"186":[214,97,107,255],"187":[214,97,107,255],"188":[214,97,107,255],"189":[214,97,107,255],"190":[214,97,107,255],"191":[214,97,107,255],"192":[231,150,156,255],"193":[231,150,156,255],"194":[231,150,156,255],"195":[231,150,156,255],"196":[231,150,156,255],"197":[231,150,156,255],"198":[231,150,156,255],"199":[231,150,156,255],"200":[231,150,156,255],"201":[231,150,156,255],"202":[231,150,156,255],"203":[231,150,156,255],"204":[123,65,115,255],"205":[123,65,115,255],"206":[123,65,115,255],"207":[123,65,115,255],"208":[123,65,115,255],"209":[123,65,115,255],"210":[123,65,115,255],"211":[123,65,115,255],"212":[123,65,115,255],"213":[123,65,115,255],"214":[123,65,115,255],"215":[123,65,115,255],"216":[123,65,115,255],"217":[165,81,148,255],"218":[165,81,148,255],"219":[165,81,148,255],"220":[165,81,148,255],"221":[165,81,148,255],"222":[165,81,148,255],"223":[165,81,148,255],"224":[165,81,148,255],"225":[165,81,148,255],"226":[165,81,148,255],"227":[165,81,148,255],"228":[165,81,148,255],"229":[165,81,148,255],"230":[206,109,189,255],"231":[206,109,189,255],"232":[206,109,189,255],"233":[206,109,189,255],"234":[206,109,189,255],"235":[206,109,189,255],"236":[206,109,189,255],"237":[206,109,189,255],"238":[206,109,189,255],"239":[206,109,189,255],"240":[206,109,189,255],"241":[206,109,189,255],"242":[206,109,189,255],"243":[222,158,214,255],"244":[222,158,214,255],"245":[222,158,214,255],"246":[222,158,214,255],"247":[222,158,214,255],"248":[222,158,214,255],"249":[222,158,214,255],"250":[222,158,214,255],"251":[222,158,214,255],"252":[222,158,214,255],"253":[222,158,214,255],"254":[222,158,214,255],"255":[222,158,214,255]}, +tab20c: {"0":[49,130,189,255],"1":[49,130,189,255],"2":[49,130,189,255],"3":[49,130,189,255],"4":[49,130,189,255],"5":[49,130,189,255],"6":[49,130,189,255],"7":[49,130,189,255],"8":[49,130,189,255],"9":[49,130,189,255],"10":[49,130,189,255],"11":[49,130,189,255],"12":[49,130,189,255],"13":[107,174,214,255],"14":[107,174,214,255],"15":[107,174,214,255],"16":[107,174,214,255],"17":[107,174,214,255],"18":[107,174,214,255],"19":[107,174,214,255],"20":[107,174,214,255],"21":[107,174,214,255],"22":[107,174,214,255],"23":[107,174,214,255],"24":[107,174,214,255],"25":[107,174,214,255],"26":[158,202,225,255],"27":[158,202,225,255],"28":[158,202,225,255],"29":[158,202,225,255],"30":[158,202,225,255],"31":[158,202,225,255],"32":[158,202,225,255],"33":[158,202,225,255],"34":[158,202,225,255],"35":[158,202,225,255],"36":[158,202,225,255],"37":[158,202,225,255],"38":[158,202,225,255],"39":[198,219,239,255],"40":[198,219,239,255],"41":[198,219,239,255],"42":[198,219,239,255],"43":[198,219,239,255],"44":[198,219,239,255],"45":[198,219,239,255],"46":[198,219,239,255],"47":[198,219,239,255],"48":[198,219,239,255],"49":[198,219,239,255],"50":[198,219,239,255],"51":[230,85,13,255],"52":[230,85,13,255],"53":[230,85,13,255],"54":[230,85,13,255],"55":[230,85,13,255],"56":[230,85,13,255],"57":[230,85,13,255],"58":[230,85,13,255],"59":[230,85,13,255],"60":[230,85,13,255],"61":[230,85,13,255],"62":[230,85,13,255],"63":[230,85,13,255],"64":[253,141,60,255],"65":[253,141,60,255],"66":[253,141,60,255],"67":[253,141,60,255],"68":[253,141,60,255],"69":[253,141,60,255],"70":[253,141,60,255],"71":[253,141,60,255],"72":[253,141,60,255],"73":[253,141,60,255],"74":[253,141,60,255],"75":[253,141,60,255],"76":[253,141,60,255],"77":[253,174,107,255],"78":[253,174,107,255],"79":[253,174,107,255],"80":[253,174,107,255],"81":[253,174,107,255],"82":[253,174,107,255],"83":[253,174,107,255],"84":[253,174,107,255],"85":[253,174,107,255],"86":[253,174,107,255],"87":[253,174,107,255],"88":[253,174,107,255],"89":[253,174,107,255],"90":[253,208,162,255],"91":[253,208,162,255],"92":[253,208,162,255],"93":[253,208,162,255],"94":[253,208,162,255],"95":[253,208,162,255],"96":[253,208,162,255],"97":[253,208,162,255],"98":[253,208,162,255],"99":[253,208,162,255],"100":[253,208,162,255],"101":[253,208,162,255],"102":[49,163,84,255],"103":[49,163,84,255],"104":[49,163,84,255],"105":[49,163,84,255],"106":[49,163,84,255],"107":[49,163,84,255],"108":[49,163,84,255],"109":[49,163,84,255],"110":[49,163,84,255],"111":[49,163,84,255],"112":[49,163,84,255],"113":[49,163,84,255],"114":[49,163,84,255],"115":[116,196,118,255],"116":[116,196,118,255],"117":[116,196,118,255],"118":[116,196,118,255],"119":[116,196,118,255],"120":[116,196,118,255],"121":[116,196,118,255],"122":[116,196,118,255],"123":[116,196,118,255],"124":[116,196,118,255],"125":[116,196,118,255],"126":[116,196,118,255],"127":[116,196,118,255],"128":[161,217,155,255],"129":[161,217,155,255],"130":[161,217,155,255],"131":[161,217,155,255],"132":[161,217,155,255],"133":[161,217,155,255],"134":[161,217,155,255],"135":[161,217,155,255],"136":[161,217,155,255],"137":[161,217,155,255],"138":[161,217,155,255],"139":[161,217,155,255],"140":[161,217,155,255],"141":[199,233,192,255],"142":[199,233,192,255],"143":[199,233,192,255],"144":[199,233,192,255],"145":[199,233,192,255],"146":[199,233,192,255],"147":[199,233,192,255],"148":[199,233,192,255],"149":[199,233,192,255],"150":[199,233,192,255],"151":[199,233,192,255],"152":[199,233,192,255],"153":[117,107,177,255],"154":[117,107,177,255],"155":[117,107,177,255],"156":[117,107,177,255],"157":[117,107,177,255],"158":[117,107,177,255],"159":[117,107,177,255],"160":[117,107,177,255],"161":[117,107,177,255],"162":[117,107,177,255],"163":[117,107,177,255],"164":[117,107,177,255],"165":[117,107,177,255],"166":[158,154,200,255],"167":[158,154,200,255],"168":[158,154,200,255],"169":[158,154,200,255],"170":[158,154,200,255],"171":[158,154,200,255],"172":[158,154,200,255],"173":[158,154,200,255],"174":[158,154,200,255],"175":[158,154,200,255],"176":[158,154,200,255],"177":[158,154,200,255],"178":[158,154,200,255],"179":[188,189,220,255],"180":[188,189,220,255],"181":[188,189,220,255],"182":[188,189,220,255],"183":[188,189,220,255],"184":[188,189,220,255],"185":[188,189,220,255],"186":[188,189,220,255],"187":[188,189,220,255],"188":[188,189,220,255],"189":[188,189,220,255],"190":[188,189,220,255],"191":[188,189,220,255],"192":[218,218,235,255],"193":[218,218,235,255],"194":[218,218,235,255],"195":[218,218,235,255],"196":[218,218,235,255],"197":[218,218,235,255],"198":[218,218,235,255],"199":[218,218,235,255],"200":[218,218,235,255],"201":[218,218,235,255],"202":[218,218,235,255],"203":[218,218,235,255],"204":[99,99,99,255],"205":[99,99,99,255],"206":[99,99,99,255],"207":[99,99,99,255],"208":[99,99,99,255],"209":[99,99,99,255],"210":[99,99,99,255],"211":[99,99,99,255],"212":[99,99,99,255],"213":[99,99,99,255],"214":[99,99,99,255],"215":[99,99,99,255],"216":[99,99,99,255],"217":[150,150,150,255],"218":[150,150,150,255],"219":[150,150,150,255],"220":[150,150,150,255],"221":[150,150,150,255],"222":[150,150,150,255],"223":[150,150,150,255],"224":[150,150,150,255],"225":[150,150,150,255],"226":[150,150,150,255],"227":[150,150,150,255],"228":[150,150,150,255],"229":[150,150,150,255],"230":[189,189,189,255],"231":[189,189,189,255],"232":[189,189,189,255],"233":[189,189,189,255],"234":[189,189,189,255],"235":[189,189,189,255],"236":[189,189,189,255],"237":[189,189,189,255],"238":[189,189,189,255],"239":[189,189,189,255],"240":[189,189,189,255],"241":[189,189,189,255],"242":[189,189,189,255],"243":[217,217,217,255],"244":[217,217,217,255],"245":[217,217,217,255],"246":[217,217,217,255],"247":[217,217,217,255],"248":[217,217,217,255],"249":[217,217,217,255],"250":[217,217,217,255],"251":[217,217,217,255],"252":[217,217,217,255],"253":[217,217,217,255],"254":[217,217,217,255],"255":[217,217,217,255]}, +tarn: {"0":[22,35,13,255],"1":[24,37,13,255],"2":[25,38,14,255],"3":[26,40,14,255],"4":[28,42,15,255],"5":[29,44,15,255],"6":[30,45,15,255],"7":[31,47,15,255],"8":[33,49,15,255],"9":[34,51,15,255],"10":[35,52,16,255],"11":[36,54,16,255],"12":[37,56,16,255],"13":[39,57,15,255],"14":[40,59,15,255],"15":[41,61,15,255],"16":[42,63,15,255],"17":[44,64,15,255],"18":[45,66,14,255],"19":[46,68,14,255],"20":[48,69,13,255],"21":[50,71,12,255],"22":[51,72,12,255],"23":[54,74,11,255],"24":[57,75,12,255],"25":[60,76,13,255],"26":[62,77,14,255],"27":[65,79,15,255],"28":[68,80,16,255],"29":[71,81,17,255],"30":[73,82,17,255],"31":[76,83,18,255],"32":[79,84,19,255],"33":[82,86,20,255],"34":[84,87,21,255],"35":[87,88,22,255],"36":[90,89,23,255],"37":[92,90,24,255],"38":[95,91,25,255],"39":[98,92,26,255],"40":[101,93,27,255],"41":[103,95,28,255],"42":[106,96,29,255],"43":[109,97,29,255],"44":[112,98,30,255],"45":[114,99,31,255],"46":[117,100,32,255],"47":[120,101,33,255],"48":[123,102,34,255],"49":[125,103,35,255],"50":[128,104,36,255],"51":[131,105,36,255],"52":[134,106,37,255],"53":[137,107,38,255],"54":[140,108,39,255],"55":[143,109,40,255],"56":[145,110,41,255],"57":[148,111,42,255],"58":[151,112,42,255],"59":[154,113,43,255],"60":[157,114,44,255],"61":[160,115,45,255],"62":[163,116,46,255],"63":[166,117,47,255],"64":[169,118,49,255],"65":[172,119,50,255],"66":[175,120,51,255],"67":[178,121,52,255],"68":[181,122,53,255],"69":[184,123,55,255],"70":[187,124,56,255],"71":[190,125,58,255],"72":[193,126,60,255],"73":[195,127,62,255],"74":[198,128,65,255],"75":[200,130,68,255],"76":[202,131,71,255],"77":[203,133,75,255],"78":[204,135,79,255],"79":[205,138,83,255],"80":[206,140,86,255],"81":[207,142,89,255],"82":[208,144,93,255],"83":[209,147,96,255],"84":[210,149,100,255],"85":[211,151,103,255],"86":[212,154,107,255],"87":[213,156,110,255],"88":[214,158,114,255],"89":[214,161,117,255],"90":[215,163,120,255],"91":[216,165,124,255],"92":[217,167,127,255],"93":[218,170,131,255],"94":[219,172,134,255],"95":[220,174,138,255],"96":[221,177,141,255],"97":[222,179,145,255],"98":[223,181,148,255],"99":[224,184,152,255],"100":[225,186,155,255],"101":[226,188,159,255],"102":[226,191,162,255],"103":[227,193,166,255],"104":[228,195,169,255],"105":[229,198,173,255],"106":[230,200,176,255],"107":[232,202,180,255],"108":[233,205,183,255],"109":[234,207,187,255],"110":[235,209,190,255],"111":[236,212,194,255],"112":[237,214,197,255],"113":[238,217,201,255],"114":[239,219,205,255],"115":[240,221,208,255],"116":[241,224,212,255],"117":[243,226,215,255],"118":[244,229,219,255],"119":[245,231,222,255],"120":[246,234,226,255],"121":[247,236,229,255],"122":[249,238,232,255],"123":[250,240,236,255],"124":[251,242,239,255],"125":[251,244,241,255],"126":[252,246,243,255],"127":[252,247,245,255],"128":[252,247,245,255],"129":[252,247,244,255],"130":[251,246,242,255],"131":[250,245,240,255],"132":[249,243,237,255],"133":[247,242,234,255],"134":[246,240,230,255],"135":[244,238,227,255],"136":[242,236,223,255],"137":[240,233,220,255],"138":[238,231,216,255],"139":[236,229,212,255],"140":[234,227,208,255],"141":[232,225,205,255],"142":[231,223,201,255],"143":[229,221,197,255],"144":[227,219,194,255],"145":[225,217,190,255],"146":[223,215,187,255],"147":[220,213,183,255],"148":[218,211,180,255],"149":[215,210,177,255],"150":[212,208,175,255],"151":[209,207,172,255],"152":[205,205,171,255],"153":[202,204,169,255],"154":[199,202,168,255],"155":[196,201,167,255],"156":[192,199,165,255],"157":[189,197,164,255],"158":[186,196,163,255],"159":[183,194,162,255],"160":[180,193,161,255],"161":[177,191,160,255],"162":[174,190,159,255],"163":[171,188,158,255],"164":[168,186,157,255],"165":[165,185,157,255],"166":[162,183,156,255],"167":[159,182,155,255],"168":[156,180,154,255],"169":[153,179,153,255],"170":[150,177,152,255],"171":[147,176,151,255],"172":[144,174,150,255],"173":[141,172,149,255],"174":[138,171,148,255],"175":[135,169,147,255],"176":[133,168,146,255],"177":[130,166,145,255],"178":[127,165,144,255],"179":[124,163,143,255],"180":[121,162,142,255],"181":[118,160,141,255],"182":[115,159,140,255],"183":[112,157,139,255],"184":[109,156,139,255],"185":[106,154,138,255],"186":[103,153,137,255],"187":[99,152,136,255],"188":[96,150,135,255],"189":[93,149,134,255],"190":[90,147,134,255],"191":[87,146,133,255],"192":[84,144,132,255],"193":[80,143,132,255],"194":[77,141,131,255],"195":[74,140,130,255],"196":[71,138,130,255],"197":[67,137,129,255],"198":[64,135,129,255],"199":[61,134,128,255],"200":[58,132,127,255],"201":[55,130,127,255],"202":[52,129,126,255],"203":[49,127,126,255],"204":[46,126,125,255],"205":[43,124,125,255],"206":[41,122,124,255],"207":[39,120,124,255],"208":[37,119,123,255],"209":[35,117,123,255],"210":[34,115,122,255],"211":[33,113,121,255],"212":[32,111,120,255],"213":[31,110,120,255],"214":[30,108,119,255],"215":[30,106,118,255],"216":[30,104,117,255],"217":[29,102,116,255],"218":[29,100,115,255],"219":[28,98,114,255],"220":[28,97,114,255],"221":[27,95,113,255],"222":[27,93,112,255],"223":[26,91,111,255],"224":[25,89,110,255],"225":[25,87,109,255],"226":[24,86,108,255],"227":[23,84,108,255],"228":[22,82,107,255],"229":[21,80,106,255],"230":[20,78,105,255],"231":[20,77,105,255],"232":[19,75,104,255],"233":[18,73,103,255],"234":[17,71,102,255],"235":[16,69,102,255],"236":[15,67,101,255],"237":[14,66,100,255],"238":[13,64,100,255],"239":[12,62,99,255],"240":[11,60,98,255],"241":[10,58,98,255],"242":[10,56,97,255],"243":[9,54,97,255],"244":[8,52,96,255],"245":[8,50,95,255],"246":[9,48,94,255],"247":[9,46,93,255],"248":[10,44,92,255],"249":[11,42,91,255],"250":[12,40,89,255],"251":[13,38,87,255],"252":[14,36,85,255],"253":[14,34,83,255],"254":[15,32,81,255],"255":[15,30,79,255]}, +tempo: {"0":[254,245,244,255],"1":[253,244,242,255],"2":[252,243,241,255],"3":[250,242,239,255],"4":[249,241,238,255],"5":[247,240,236,255],"6":[246,239,235,255],"7":[245,238,233,255],"8":[243,238,232,255],"9":[242,237,230,255],"10":[241,236,229,255],"11":[239,235,227,255],"12":[238,234,226,255],"13":[236,233,224,255],"14":[235,232,223,255],"15":[234,231,221,255],"16":[232,230,220,255],"17":[231,229,219,255],"18":[229,229,217,255],"19":[228,228,216,255],"20":[227,227,214,255],"21":[225,226,213,255],"22":[224,225,212,255],"23":[222,224,210,255],"24":[221,223,209,255],"25":[220,223,207,255],"26":[218,222,206,255],"27":[217,221,205,255],"28":[215,220,203,255],"29":[214,219,202,255],"30":[212,218,201,255],"31":[211,218,199,255],"32":[210,217,198,255],"33":[208,216,197,255],"34":[207,215,195,255],"35":[205,214,194,255],"36":[204,214,193,255],"37":[202,213,192,255],"38":[201,212,190,255],"39":[199,211,189,255],"40":[198,210,188,255],"41":[196,210,187,255],"42":[195,209,185,255],"43":[193,208,184,255],"44":[192,207,183,255],"45":[190,207,182,255],"46":[189,206,181,255],"47":[187,205,179,255],"48":[186,204,178,255],"49":[184,204,177,255],"50":[183,203,176,255],"51":[181,202,175,255],"52":[180,201,174,255],"53":[178,201,172,255],"54":[177,200,171,255],"55":[175,199,170,255],"56":[174,198,169,255],"57":[172,198,168,255],"58":[170,197,167,255],"59":[169,196,166,255],"60":[167,195,165,255],"61":[166,195,164,255],"62":[164,194,163,255],"63":[162,193,162,255],"64":[161,193,161,255],"65":[159,192,160,255],"66":[157,191,159,255],"67":[156,191,158,255],"68":[154,190,157,255],"69":[153,189,156,255],"70":[151,188,155,255],"71":[149,188,154,255],"72":[148,187,153,255],"73":[146,186,153,255],"74":[144,186,152,255],"75":[142,185,151,255],"76":[141,184,150,255],"77":[139,184,149,255],"78":[137,183,148,255],"79":[136,182,148,255],"80":[134,182,147,255],"81":[132,181,146,255],"82":[130,180,145,255],"83":[128,180,145,255],"84":[127,179,144,255],"85":[125,178,143,255],"86":[123,178,143,255],"87":[121,177,142,255],"88":[119,176,141,255],"89":[118,176,141,255],"90":[116,175,140,255],"91":[114,174,139,255],"92":[112,174,139,255],"93":[110,173,138,255],"94":[108,172,138,255],"95":[106,171,137,255],"96":[105,171,137,255],"97":[103,170,136,255],"98":[101,169,136,255],"99":[99,169,135,255],"100":[97,168,135,255],"101":[95,167,134,255],"102":[93,167,134,255],"103":[91,166,133,255],"104":[89,165,133,255],"105":[87,165,133,255],"106":[85,164,132,255],"107":[83,163,132,255],"108":[81,162,131,255],"109":[79,162,131,255],"110":[77,161,131,255],"111":[75,160,131,255],"112":[73,160,130,255],"113":[71,159,130,255],"114":[69,158,130,255],"115":[67,157,129,255],"116":[65,157,129,255],"117":[63,156,129,255],"118":[61,155,129,255],"119":[59,154,129,255],"120":[57,153,128,255],"121":[55,153,128,255],"122":[53,152,128,255],"123":[51,151,128,255],"124":[49,150,128,255],"125":[47,149,127,255],"126":[46,149,127,255],"127":[44,148,127,255],"128":[42,147,127,255],"129":[40,146,127,255],"130":[38,145,126,255],"131":[37,144,126,255],"132":[35,144,126,255],"133":[34,143,126,255],"134":[32,142,126,255],"135":[31,141,126,255],"136":[29,140,125,255],"137":[28,139,125,255],"138":[26,138,125,255],"139":[25,137,125,255],"140":[24,137,124,255],"141":[23,136,124,255],"142":[22,135,124,255],"143":[21,134,124,255],"144":[20,133,123,255],"145":[19,132,123,255],"146":[19,131,123,255],"147":[18,130,123,255],"148":[18,129,122,255],"149":[17,128,122,255],"150":[17,127,122,255],"151":[17,126,121,255],"152":[16,125,121,255],"153":[16,125,121,255],"154":[16,124,120,255],"155":[16,123,120,255],"156":[16,122,120,255],"157":[16,121,119,255],"158":[17,120,119,255],"159":[17,119,119,255],"160":[17,118,118,255],"161":[17,117,118,255],"162":[18,116,117,255],"163":[18,115,117,255],"164":[18,114,117,255],"165":[19,113,116,255],"166":[19,112,116,255],"167":[19,111,115,255],"168":[20,110,115,255],"169":[20,109,114,255],"170":[20,109,114,255],"171":[21,108,114,255],"172":[21,107,113,255],"173":[21,106,113,255],"174":[22,105,112,255],"175":[22,104,112,255],"176":[22,103,111,255],"177":[23,102,111,255],"178":[23,101,110,255],"179":[23,100,110,255],"180":[24,99,109,255],"181":[24,98,109,255],"182":[24,97,108,255],"183":[25,96,108,255],"184":[25,95,107,255],"185":[25,94,107,255],"186":[25,94,106,255],"187":[26,93,106,255],"188":[26,92,105,255],"189":[26,91,105,255],"190":[26,90,104,255],"191":[26,89,103,255],"192":[26,88,103,255],"193":[27,87,102,255],"194":[27,86,102,255],"195":[27,85,101,255],"196":[27,84,101,255],"197":[27,83,100,255],"198":[27,82,100,255],"199":[27,81,99,255],"200":[27,81,98,255],"201":[27,80,98,255],"202":[28,79,97,255],"203":[28,78,97,255],"204":[28,77,96,255],"205":[28,76,96,255],"206":[28,75,95,255],"207":[28,74,94,255],"208":[28,73,94,255],"209":[28,72,93,255],"210":[28,71,93,255],"211":[28,70,92,255],"212":[28,70,91,255],"213":[27,69,91,255],"214":[27,68,90,255],"215":[27,67,90,255],"216":[27,66,89,255],"217":[27,65,89,255],"218":[27,64,88,255],"219":[27,63,87,255],"220":[27,62,87,255],"221":[27,61,86,255],"222":[27,60,86,255],"223":[27,60,85,255],"224":[26,59,84,255],"225":[26,58,84,255],"226":[26,57,83,255],"227":[26,56,83,255],"228":[26,55,82,255],"229":[26,54,82,255],"230":[26,53,81,255],"231":[25,52,80,255],"232":[25,51,80,255],"233":[25,50,79,255],"234":[25,49,79,255],"235":[25,48,78,255],"236":[25,47,78,255],"237":[24,47,77,255],"238":[24,46,76,255],"239":[24,45,76,255],"240":[24,44,75,255],"241":[24,43,75,255],"242":[23,42,74,255],"243":[23,41,74,255],"244":[23,40,73,255],"245":[23,39,72,255],"246":[22,38,72,255],"247":[22,37,71,255],"248":[22,36,71,255],"249":[22,35,70,255],"250":[22,34,70,255],"251":[21,33,69,255],"252":[21,32,69,255],"253":[21,31,68,255],"254":[21,30,68,255],"255":[20,29,67,255]}, +terrain: {"0":[51,51,153,255],"1":[49,53,155,255],"2":[48,56,158,255],"3":[47,59,161,255],"4":[45,61,163,255],"5":[44,64,166,255],"6":[43,67,169,255],"7":[41,69,171,255],"8":[40,72,174,255],"9":[39,75,177,255],"10":[37,77,179,255],"11":[36,80,182,255],"12":[35,83,185,255],"13":[33,85,187,255],"14":[32,88,190,255],"15":[31,91,193,255],"16":[29,93,195,255],"17":[28,96,198,255],"18":[27,98,201,255],"19":[25,101,203,255],"20":[24,104,206,255],"21":[23,107,209,255],"22":[21,109,211,255],"23":[20,112,214,255],"24":[19,115,217,255],"25":[17,117,219,255],"26":[16,120,222,255],"27":[14,123,225,255],"28":[13,125,227,255],"29":[12,128,230,255],"30":[11,131,233,255],"31":[9,133,235,255],"32":[8,136,238,255],"33":[7,138,241,255],"34":[5,141,243,255],"35":[4,144,246,255],"36":[3,147,249,255],"37":[1,149,251,255],"38":[0,152,254,255],"39":[0,154,250,255],"40":[0,156,244,255],"41":[0,158,238,255],"42":[0,160,232,255],"43":[0,162,226,255],"44":[0,164,220,255],"45":[0,166,214,255],"46":[0,168,208,255],"47":[0,170,202,255],"48":[0,172,196,255],"49":[0,174,190,255],"50":[0,176,184,255],"51":[0,178,178,255],"52":[0,180,172,255],"53":[0,182,166,255],"54":[0,184,160,255],"55":[0,186,154,255],"56":[0,188,148,255],"57":[0,190,142,255],"58":[0,192,136,255],"59":[0,194,130,255],"60":[0,196,124,255],"61":[0,198,118,255],"62":[0,200,112,255],"63":[0,202,106,255],"64":[1,204,102,255],"65":[5,205,103,255],"66":[8,205,103,255],"67":[13,206,104,255],"68":[17,207,105,255],"69":[21,208,106,255],"70":[25,209,107,255],"71":[29,209,107,255],"72":[33,210,108,255],"73":[37,211,109,255],"74":[40,212,110,255],"75":[45,213,111,255],"76":[49,213,111,255],"77":[53,214,112,255],"78":[57,215,113,255],"79":[61,216,114,255],"80":[65,217,115,255],"81":[69,217,115,255],"82":[72,218,116,255],"83":[77,219,117,255],"84":[81,220,118,255],"85":[85,221,119,255],"86":[89,221,119,255],"87":[93,222,120,255],"88":[97,223,121,255],"89":[101,224,122,255],"90":[104,225,122,255],"91":[109,225,123,255],"92":[113,226,124,255],"93":[117,227,125,255],"94":[121,228,126,255],"95":[125,229,127,255],"96":[129,229,127,255],"97":[133,230,128,255],"98":[136,231,129,255],"99":[141,232,130,255],"100":[145,233,131,255],"101":[149,233,131,255],"102":[153,234,132,255],"103":[157,235,133,255],"104":[161,236,134,255],"105":[165,237,135,255],"106":[168,237,135,255],"107":[173,238,136,255],"108":[177,239,137,255],"109":[181,240,138,255],"110":[185,241,139,255],"111":[189,241,139,255],"112":[193,242,140,255],"113":[197,243,141,255],"114":[200,244,142,255],"115":[205,245,143,255],"116":[209,245,143,255],"117":[213,246,144,255],"118":[217,247,145,255],"119":[221,248,146,255],"120":[225,249,147,255],"121":[229,249,147,255],"122":[232,250,148,255],"123":[237,251,149,255],"124":[241,252,150,255],"125":[245,253,151,255],"126":[249,253,151,255],"127":[253,254,152,255],"128":[254,253,152,255],"129":[252,251,151,255],"130":[250,248,150,255],"131":[248,246,149,255],"132":[246,243,148,255],"133":[244,240,147,255],"134":[242,238,145,255],"135":[240,235,144,255],"136":[238,233,143,255],"137":[236,230,142,255],"138":[234,228,141,255],"139":[232,225,140,255],"140":[230,223,139,255],"141":[228,220,138,255],"142":[226,217,137,255],"143":[224,215,136,255],"144":[222,212,135,255],"145":[220,210,134,255],"146":[218,207,133,255],"147":[216,205,131,255],"148":[214,202,130,255],"149":[211,199,129,255],"150":[210,197,128,255],"151":[208,194,127,255],"152":[206,192,126,255],"153":[204,189,125,255],"154":[202,187,124,255],"155":[200,184,123,255],"156":[198,182,122,255],"157":[195,179,121,255],"158":[194,176,120,255],"159":[192,174,118,255],"160":[190,171,117,255],"161":[188,169,116,255],"162":[186,166,115,255],"163":[184,164,114,255],"164":[182,161,113,255],"165":[179,159,112,255],"166":[178,156,111,255],"167":[176,153,110,255],"168":[174,151,109,255],"169":[172,148,108,255],"170":[170,146,107,255],"171":[168,143,106,255],"172":[166,141,104,255],"173":[163,138,103,255],"174":[162,135,102,255],"175":[160,133,101,255],"176":[158,130,100,255],"177":[156,128,99,255],"178":[154,125,98,255],"179":[152,123,97,255],"180":[150,120,96,255],"181":[147,118,95,255],"182":[146,115,94,255],"183":[144,112,93,255],"184":[142,110,91,255],"185":[140,107,90,255],"186":[138,105,89,255],"187":[136,102,88,255],"188":[134,100,87,255],"189":[131,97,86,255],"190":[130,95,85,255],"191":[128,92,84,255],"192":[129,93,86,255],"193":[131,96,88,255],"194":[133,98,91,255],"195":[135,101,94,255],"196":[136,103,96,255],"197":[139,106,99,255],"198":[141,109,102,255],"199":[143,111,104,255],"200":[145,114,107,255],"201":[147,116,110,255],"202":[149,119,112,255],"203":[151,121,115,255],"204":[153,124,118,255],"205":[155,127,121,255],"206":[157,129,123,255],"207":[159,132,126,255],"208":[161,134,129,255],"209":[163,137,131,255],"210":[165,139,134,255],"211":[167,142,137,255],"212":[168,144,139,255],"213":[171,147,142,255],"214":[173,150,145,255],"215":[175,152,147,255],"216":[177,155,150,255],"217":[179,157,153,255],"218":[181,160,155,255],"219":[183,162,158,255],"220":[185,165,161,255],"221":[187,167,163,255],"222":[189,170,166,255],"223":[191,173,169,255],"224":[193,175,171,255],"225":[195,178,174,255],"226":[196,180,177,255],"227":[199,183,179,255],"228":[200,185,182,255],"229":[203,188,185,255],"230":[205,191,187,255],"231":[207,193,190,255],"232":[209,196,193,255],"233":[211,198,196,255],"234":[212,201,198,255],"235":[215,203,201,255],"236":[217,206,204,255],"237":[219,208,206,255],"238":[221,211,209,255],"239":[223,214,212,255],"240":[225,216,214,255],"241":[227,219,217,255],"242":[228,221,220,255],"243":[231,224,222,255],"244":[232,226,225,255],"245":[235,229,228,255],"246":[237,231,230,255],"247":[239,234,233,255],"248":[241,237,236,255],"249":[243,239,238,255],"250":[244,242,241,255],"251":[247,244,244,255],"252":[249,247,246,255],"253":[251,249,249,255],"254":[253,252,252,255],"255":[255,255,255,255]}, +topo: {"0":[39,26,44,255],"1":[41,27,46,255],"2":[42,29,49,255],"3":[43,30,52,255],"4":[45,32,55,255],"5":[46,33,57,255],"6":[47,35,60,255],"7":[49,36,63,255],"8":[50,38,66,255],"9":[51,39,69,255],"10":[52,41,72,255],"11":[53,42,75,255],"12":[54,43,78,255],"13":[56,45,82,255],"14":[57,46,85,255],"15":[58,48,88,255],"16":[59,49,91,255],"17":[60,51,95,255],"18":[61,52,98,255],"19":[61,54,101,255],"20":[62,55,105,255],"21":[63,57,108,255],"22":[63,58,111,255],"23":[64,60,115,255],"24":[64,61,118,255],"25":[65,63,121,255],"26":[65,65,124,255],"27":[65,67,127,255],"28":[65,69,130,255],"29":[65,70,133,255],"30":[64,72,135,255],"31":[64,75,137,255],"32":[64,77,139,255],"33":[63,79,141,255],"34":[63,81,142,255],"35":[62,83,143,255],"36":[62,85,144,255],"37":[62,88,145,255],"38":[61,90,146,255],"39":[61,92,146,255],"40":[61,94,147,255],"41":[61,96,147,255],"42":[61,98,148,255],"43":[61,100,148,255],"44":[61,102,149,255],"45":[62,105,149,255],"46":[62,107,150,255],"47":[62,109,150,255],"48":[63,111,150,255],"49":[63,113,151,255],"50":[63,115,151,255],"51":[64,117,152,255],"52":[64,119,152,255],"53":[65,121,153,255],"54":[66,123,153,255],"55":[66,125,153,255],"56":[67,127,154,255],"57":[67,129,154,255],"58":[68,130,155,255],"59":[69,132,155,255],"60":[69,134,156,255],"61":[70,136,156,255],"62":[71,138,157,255],"63":[71,140,157,255],"64":[72,142,157,255],"65":[73,144,158,255],"66":[73,146,158,255],"67":[74,148,159,255],"68":[75,150,159,255],"69":[75,152,160,255],"70":[76,154,160,255],"71":[77,156,160,255],"72":[78,159,161,255],"73":[78,161,161,255],"74":[79,163,162,255],"75":[80,165,162,255],"76":[81,167,162,255],"77":[82,169,162,255],"78":[83,171,163,255],"79":[84,173,163,255],"80":[85,175,163,255],"81":[86,177,163,255],"82":[88,179,163,255],"83":[89,181,163,255],"84":[91,183,163,255],"85":[92,185,163,255],"86":[94,187,163,255],"87":[96,189,163,255],"88":[98,191,163,255],"89":[100,193,163,255],"90":[103,195,163,255],"91":[105,197,163,255],"92":[108,199,163,255],"93":[111,201,163,255],"94":[114,202,163,255],"95":[118,204,163,255],"96":[121,206,162,255],"97":[125,208,162,255],"98":[129,209,162,255],"99":[133,211,163,255],"100":[137,213,163,255],"101":[141,214,163,255],"102":[145,216,163,255],"103":[149,217,164,255],"104":[154,219,164,255],"105":[158,220,165,255],"106":[163,222,166,255],"107":[167,223,167,255],"108":[171,225,168,255],"109":[176,226,169,255],"110":[180,227,170,255],"111":[184,229,171,255],"112":[189,230,173,255],"113":[193,232,174,255],"114":[197,233,176,255],"115":[201,235,177,255],"116":[206,236,179,255],"117":[210,237,181,255],"118":[214,239,183,255],"119":[218,240,185,255],"120":[222,242,187,255],"121":[226,243,189,255],"122":[230,245,191,255],"123":[235,246,193,255],"124":[239,248,195,255],"125":[243,249,198,255],"126":[247,251,200,255],"127":[251,252,202,255],"128":[13,37,19,255],"129":[14,38,20,255],"130":[15,40,21,255],"131":[16,42,21,255],"132":[17,44,22,255],"133":[18,46,23,255],"134":[19,47,23,255],"135":[19,49,24,255],"136":[20,51,25,255],"137":[21,53,25,255],"138":[22,54,26,255],"139":[23,56,26,255],"140":[24,58,27,255],"141":[25,60,27,255],"142":[25,61,27,255],"143":[26,63,28,255],"144":[27,65,28,255],"145":[28,67,29,255],"146":[29,68,29,255],"147":[29,70,29,255],"148":[30,72,29,255],"149":[32,74,30,255],"150":[33,75,30,255],"151":[34,77,30,255],"152":[36,79,30,255],"153":[39,80,30,255],"154":[42,81,30,255],"155":[45,83,31,255],"156":[48,84,32,255],"157":[51,85,33,255],"158":[54,87,35,255],"159":[57,88,36,255],"160":[59,89,38,255],"161":[62,90,40,255],"162":[65,92,41,255],"163":[67,93,43,255],"164":[70,94,45,255],"165":[73,95,46,255],"166":[75,97,47,255],"167":[78,98,49,255],"168":[81,99,50,255],"169":[83,100,51,255],"170":[86,101,52,255],"171":[89,103,54,255],"172":[91,104,55,255],"173":[94,105,55,255],"174":[96,106,56,255],"175":[99,108,57,255],"176":[102,109,58,255],"177":[104,110,59,255],"178":[107,111,59,255],"179":[110,113,60,255],"180":[112,114,60,255],"181":[115,115,61,255],"182":[118,116,61,255],"183":[120,118,62,255],"184":[123,119,62,255],"185":[126,120,62,255],"186":[128,121,63,255],"187":[131,123,63,255],"188":[134,124,63,255],"189":[136,125,63,255],"190":[139,126,63,255],"191":[142,128,63,255],"192":[144,129,63,255],"193":[147,130,63,255],"194":[150,131,63,255],"195":[153,133,63,255],"196":[155,134,63,255],"197":[158,135,63,255],"198":[161,136,63,255],"199":[164,138,63,255],"200":[167,139,63,255],"201":[169,140,63,255],"202":[172,142,62,255],"203":[175,143,62,255],"204":[178,144,62,255],"205":[181,145,62,255],"206":[184,146,62,255],"207":[187,148,62,255],"208":[190,149,62,255],"209":[193,150,64,255],"210":[194,152,68,255],"211":[195,154,72,255],"212":[197,156,76,255],"213":[198,158,79,255],"214":[199,160,83,255],"215":[200,162,86,255],"216":[201,164,90,255],"217":[202,167,93,255],"218":[203,169,97,255],"219":[204,171,100,255],"220":[205,173,104,255],"221":[206,175,107,255],"222":[207,177,111,255],"223":[208,179,114,255],"224":[210,182,118,255],"225":[211,184,121,255],"226":[212,186,125,255],"227":[213,188,128,255],"228":[214,190,132,255],"229":[215,193,135,255],"230":[216,195,139,255],"231":[217,197,142,255],"232":[218,199,146,255],"233":[219,202,149,255],"234":[220,204,153,255],"235":[222,206,156,255],"236":[223,208,160,255],"237":[224,211,163,255],"238":[225,213,167,255],"239":[226,215,170,255],"240":[227,218,174,255],"241":[229,220,177,255],"242":[230,222,181,255],"243":[231,224,185,255],"244":[232,227,188,255],"245":[234,229,192,255],"246":[235,231,195,255],"247":[236,234,199,255],"248":[238,236,202,255],"249":[239,239,206,255],"250":[241,241,210,255],"251":[242,243,213,255],"252":[243,246,217,255],"253":[245,248,220,255],"254":[247,250,224,255],"255":[248,253,228,255]}, +winter: {"0":[0,0,255,255],"1":[0,1,254,255],"2":[0,2,254,255],"3":[0,3,253,255],"4":[0,4,253,255],"5":[0,5,252,255],"6":[0,6,252,255],"7":[0,7,251,255],"8":[0,8,251,255],"9":[0,9,250,255],"10":[0,10,250,255],"11":[0,11,249,255],"12":[0,12,249,255],"13":[0,13,248,255],"14":[0,14,248,255],"15":[0,15,247,255],"16":[0,16,247,255],"17":[0,17,246,255],"18":[0,18,246,255],"19":[0,19,245,255],"20":[0,20,245,255],"21":[0,21,244,255],"22":[0,22,244,255],"23":[0,23,243,255],"24":[0,24,243,255],"25":[0,25,242,255],"26":[0,26,242,255],"27":[0,27,241,255],"28":[0,28,241,255],"29":[0,29,240,255],"30":[0,30,240,255],"31":[0,31,239,255],"32":[0,32,239,255],"33":[0,32,238,255],"34":[0,34,238,255],"35":[0,35,237,255],"36":[0,36,237,255],"37":[0,36,236,255],"38":[0,38,236,255],"39":[0,39,235,255],"40":[0,40,235,255],"41":[0,40,234,255],"42":[0,42,234,255],"43":[0,43,233,255],"44":[0,44,233,255],"45":[0,44,232,255],"46":[0,46,232,255],"47":[0,47,231,255],"48":[0,48,231,255],"49":[0,48,230,255],"50":[0,50,230,255],"51":[0,51,229,255],"52":[0,52,229,255],"53":[0,52,228,255],"54":[0,54,228,255],"55":[0,55,227,255],"56":[0,56,227,255],"57":[0,56,226,255],"58":[0,58,226,255],"59":[0,59,225,255],"60":[0,60,225,255],"61":[0,60,224,255],"62":[0,62,224,255],"63":[0,63,223,255],"64":[0,64,223,255],"65":[0,65,222,255],"66":[0,65,222,255],"67":[0,67,221,255],"68":[0,68,221,255],"69":[0,69,220,255],"70":[0,70,220,255],"71":[0,71,219,255],"72":[0,72,219,255],"73":[0,73,218,255],"74":[0,73,218,255],"75":[0,75,217,255],"76":[0,76,217,255],"77":[0,77,216,255],"78":[0,78,216,255],"79":[0,79,215,255],"80":[0,80,215,255],"81":[0,81,214,255],"82":[0,81,214,255],"83":[0,83,213,255],"84":[0,84,213,255],"85":[0,85,212,255],"86":[0,86,211,255],"87":[0,87,211,255],"88":[0,88,211,255],"89":[0,89,210,255],"90":[0,89,210,255],"91":[0,91,209,255],"92":[0,92,209,255],"93":[0,93,208,255],"94":[0,94,208,255],"95":[0,95,207,255],"96":[0,96,207,255],"97":[0,97,206,255],"98":[0,97,206,255],"99":[0,99,205,255],"100":[0,100,205,255],"101":[0,101,204,255],"102":[0,102,204,255],"103":[0,103,203,255],"104":[0,104,203,255],"105":[0,105,202,255],"106":[0,105,202,255],"107":[0,107,201,255],"108":[0,108,201,255],"109":[0,109,200,255],"110":[0,110,200,255],"111":[0,111,199,255],"112":[0,112,199,255],"113":[0,113,198,255],"114":[0,113,198,255],"115":[0,115,197,255],"116":[0,116,197,255],"117":[0,117,196,255],"118":[0,118,195,255],"119":[0,119,195,255],"120":[0,120,195,255],"121":[0,121,194,255],"122":[0,121,194,255],"123":[0,123,193,255],"124":[0,124,193,255],"125":[0,125,192,255],"126":[0,126,192,255],"127":[0,127,191,255],"128":[0,128,191,255],"129":[0,129,190,255],"130":[0,130,190,255],"131":[0,131,189,255],"132":[0,131,189,255],"133":[0,133,188,255],"134":[0,134,188,255],"135":[0,135,187,255],"136":[0,136,187,255],"137":[0,137,186,255],"138":[0,138,186,255],"139":[0,139,185,255],"140":[0,140,185,255],"141":[0,141,184,255],"142":[0,142,184,255],"143":[0,143,183,255],"144":[0,144,183,255],"145":[0,145,182,255],"146":[0,146,182,255],"147":[0,147,181,255],"148":[0,147,181,255],"149":[0,149,180,255],"150":[0,150,179,255],"151":[0,151,179,255],"152":[0,152,179,255],"153":[0,153,178,255],"154":[0,154,178,255],"155":[0,155,177,255],"156":[0,156,177,255],"157":[0,157,176,255],"158":[0,158,176,255],"159":[0,159,175,255],"160":[0,160,175,255],"161":[0,161,174,255],"162":[0,162,174,255],"163":[0,163,173,255],"164":[0,163,173,255],"165":[0,165,172,255],"166":[0,166,172,255],"167":[0,167,171,255],"168":[0,168,171,255],"169":[0,169,170,255],"170":[0,170,170,255],"171":[0,171,169,255],"172":[0,172,169,255],"173":[0,173,168,255],"174":[0,174,168,255],"175":[0,175,167,255],"176":[0,176,167,255],"177":[0,177,166,255],"178":[0,178,166,255],"179":[0,179,165,255],"180":[0,179,165,255],"181":[0,181,164,255],"182":[0,182,163,255],"183":[0,183,163,255],"184":[0,184,163,255],"185":[0,185,162,255],"186":[0,186,162,255],"187":[0,187,161,255],"188":[0,188,161,255],"189":[0,189,160,255],"190":[0,190,160,255],"191":[0,191,159,255],"192":[0,192,159,255],"193":[0,193,158,255],"194":[0,194,158,255],"195":[0,195,157,255],"196":[0,195,157,255],"197":[0,197,156,255],"198":[0,198,156,255],"199":[0,199,155,255],"200":[0,200,155,255],"201":[0,201,154,255],"202":[0,202,154,255],"203":[0,203,153,255],"204":[0,204,153,255],"205":[0,205,152,255],"206":[0,206,152,255],"207":[0,207,151,255],"208":[0,208,151,255],"209":[0,209,150,255],"210":[0,210,150,255],"211":[0,211,149,255],"212":[0,211,149,255],"213":[0,213,148,255],"214":[0,214,147,255],"215":[0,215,147,255],"216":[0,216,147,255],"217":[0,217,146,255],"218":[0,218,146,255],"219":[0,219,145,255],"220":[0,220,145,255],"221":[0,221,144,255],"222":[0,222,144,255],"223":[0,223,143,255],"224":[0,224,143,255],"225":[0,225,142,255],"226":[0,226,142,255],"227":[0,227,141,255],"228":[0,227,141,255],"229":[0,229,140,255],"230":[0,230,140,255],"231":[0,231,139,255],"232":[0,232,139,255],"233":[0,233,138,255],"234":[0,234,138,255],"235":[0,235,137,255],"236":[0,236,137,255],"237":[0,237,136,255],"238":[0,238,136,255],"239":[0,239,135,255],"240":[0,240,135,255],"241":[0,241,134,255],"242":[0,242,134,255],"243":[0,243,133,255],"244":[0,243,133,255],"245":[0,245,132,255],"246":[0,246,131,255],"247":[0,247,131,255],"248":[0,248,131,255],"249":[0,249,130,255],"250":[0,250,130,255],"251":[0,251,129,255],"252":[0,252,129,255],"253":[0,253,128,255],"254":[0,254,128,255],"255":[0,255,127,255]}, +}; diff --git a/app/scripts/components/exploration/components/datasets/colormap-options.scss b/app/scripts/components/exploration/components/datasets/colormap-options.scss new file mode 100644 index 000000000..a087cf8c5 --- /dev/null +++ b/app/scripts/components/exploration/components/datasets/colormap-options.scss @@ -0,0 +1,49 @@ +@use "uswds-core/src/styles/mixins/utilities" as mixins; + + +.colormap-options { + + &__container { + width: 383px; + overflow-y: auto; + } + + &__item { + cursor: pointer; + + &:hover { + @include mixins.u-bg('base-lightest') + } + + &.selected { + border-radius: 0; + outline: 2px solid; + outline-offset: -2px; + @include mixins.u-text('bold'); + @include mixins.u-outline-color('blue-40'); + @include mixins.u-bg('primary-lighter'); + } + } + + &__label { + text-align: left; + } + + &__preview { + width: 260px; + height: 12px; + cursor: default; + } + + &__input { + display: none; + } + + .tippy-content { + padding: 0; + } + + .tippy-arrow { + display: none; + } +} \ No newline at end of file diff --git a/app/scripts/components/exploration/components/datasets/colormap-options.tsx b/app/scripts/components/exploration/components/datasets/colormap-options.tsx new file mode 100644 index 000000000..a6ce07e21 --- /dev/null +++ b/app/scripts/components/exploration/components/datasets/colormap-options.tsx @@ -0,0 +1,150 @@ +import React, { useEffect, useState } from 'react'; +import { Icon } from "@trussworks/react-uswds"; +import { CollecticonDrop } from '@devseed-ui/collecticons'; +import { sequentialColorMaps, divergingColorMaps, restColorMaps } from './colorMaps'; + +import './colormap-options.scss'; + +export const DEFAULT_COLORMAP = 'viridis'; + +const CURATED_SEQUENTIAL_COLORMAPS = [ + 'viridis', 'plasma', 'inferno', 'magma', 'cividis', + 'purples', 'blues', 'reds', 'greens', 'oranges', + 'ylgnbu', 'ylgn', 'gnbu' +]; + +const CURATED_DIVERGING_COLORMAPS = [ + 'rdbu', 'rdylbu', 'bwr', 'coolwarm' +]; + +export const classifyColormap = (colormapName: string): 'sequential' | 'diverging' | 'rest' | 'unknown' => { + const baseName = normalizeColorMap(colormapName); + + if (sequentialColorMaps[baseName]) { + return 'sequential'; + } else if (divergingColorMaps[baseName]) { + return 'diverging'; + } else if (restColorMaps[baseName]) { + return 'rest'; + } + return 'unknown'; +}; + +interface ColormapOptionsProps { + colorMap: string | undefined; + setColorMap: (colorMap: string) => void; +} + +export const getColormapColors = (colormapName: string, isReversed: boolean): string[] => { + const baseName = normalizeColorMap(colormapName); + const colormapData = + sequentialColorMaps[baseName] || + divergingColorMaps[baseName] || + restColorMaps[baseName] || + sequentialColorMaps.viridis; + + const colorKeys = Object.keys(colormapData); + const colors = colorKeys.map((key) => { + const [r, g, b, a] = colormapData[key]; + return `rgba(${r}, ${g}, ${b}, ${a})`; + }); + + return isReversed ? colors.reduceRight((acc, color) => [...acc, color], []) : colors; +}; + +export function ColormapOptions({ colorMap = DEFAULT_COLORMAP, setColorMap}: ColormapOptionsProps) { + const initialIsReversed = colorMap.endsWith('_r'); + const initialColorMap = normalizeColorMap(colorMap); + + const [isReversed, setIsReversed] = useState(initialIsReversed); + const [selectedColorMap, setSelectedColorMap] = useState(initialColorMap); + + const colormapType = classifyColormap(selectedColorMap); + const [customColorMap, setCustomColorMap] = useState(null); + + useEffect(() => { + if (colormapType === 'sequential' && !CURATED_SEQUENTIAL_COLORMAPS.includes(selectedColorMap)) { + setCustomColorMap(selectedColorMap); + } else if (colormapType === 'diverging' && !CURATED_DIVERGING_COLORMAPS.includes(selectedColorMap)) { + setCustomColorMap(selectedColorMap); + } + }, [selectedColorMap, colormapType]); + + let availableColormaps: { name: string; label?: string }[] = []; + + if (colormapType === 'sequential') { + if (customColorMap) { + availableColormaps = [{ name: customColorMap }, ...CURATED_SEQUENTIAL_COLORMAPS.map(name => ({ name }))]; + } else { + availableColormaps = CURATED_SEQUENTIAL_COLORMAPS.map(name => ({ name })); + } + } else if (colormapType === 'diverging') { + if (customColorMap) { + availableColormaps = [{ name: customColorMap }, ...CURATED_DIVERGING_COLORMAPS.map(name => ({ name }))]; + } else { + availableColormaps = CURATED_DIVERGING_COLORMAPS.map(name => ({ name })); + } + } else if (colormapType === 'rest') { + availableColormaps = [{ name: selectedColorMap }]; + } else { + availableColormaps = [{ name: DEFAULT_COLORMAP }]; + } + + const handleReverseToggle = () => { + const newIsReversed = !isReversed; + setIsReversed(newIsReversed); + const baseColorMap = normalizeColorMap(selectedColorMap); + setColorMap(newIsReversed ? `${baseColorMap}_r` : baseColorMap); + }; + + const handleColorMapSelect = (colorMap: string) => { + const baseColorMap = normalizeColorMap(colorMap); + setSelectedColorMap(baseColorMap); + setColorMap(isReversed ? `${baseColorMap}_r` : baseColorMap); + }; + + return ( +
+
Colormap options
+ +
+
+ + {isReversed ? ( + + ) : ( + + )} + +
+
+ +
+ {availableColormaps.map(({ name }) => { + const previewColors = getColormapColors(name, isReversed); + + return ( +
handleColorMapSelect(name.toLowerCase())} + > +
+ +
+ ); + })} +
+
+ ); +} + + +function normalizeColorMap(colorMap: string): string { + return colorMap.replace(/_r$/, ''); +} diff --git a/app/scripts/components/exploration/components/datasets/data-layer-card.tsx b/app/scripts/components/exploration/components/datasets/data-layer-card.tsx index b5bbda34a..28500c92e 100644 --- a/app/scripts/components/exploration/components/datasets/data-layer-card.tsx +++ b/app/scripts/components/exploration/components/datasets/data-layer-card.tsx @@ -1,4 +1,4 @@ -import React from 'react'; +import React, { useRef, useState } from 'react'; import styled from 'styled-components'; import { PrimitiveAtom } from 'jotai'; import { glsp, themeVal } from '@devseed-ui/theme-provider'; @@ -6,27 +6,34 @@ import { LayerLegendCategorical, LayerLegendGradient } from 'veda'; import { CollecticonCircleInformation, CollecticonEyeDisabled, - CollecticonEye + CollecticonEye, + CollecticonChevronDownSmall } from '@devseed-ui/collecticons'; import { Toolbar } from '@devseed-ui/toolbar'; import { Heading } from '@devseed-ui/typography'; +import Tippy from '@tippyjs/react'; import { LayerInfoLiner } from '../layer-info-modal'; import LayerMenuOptions from './layer-options-menu'; +import { ColormapOptions } from './colormap-options'; import { TipButton } from '$components/common/tip-button'; import { - LayerCategoricalGraphic, - LayerGradientGraphic + LayerCategoricalGraphic, LayerGradientColormapGraphic } from '$components/common/map/layer-legend'; import { TimelineDataset } from '$components/exploration/types.d.ts'; import { CollecticonDatasetLayers } from '$components/common/icons/dataset-layers'; import { ParentDatasetTitle } from '$components/common/catalog/catalog-content'; +import 'tippy.js/dist/tippy.css'; +import { LoadingSkeleton } from '$components/common/loading-skeleton'; + interface CardProps { dataset: TimelineDataset; datasetAtom: PrimitiveAtom; isVisible: boolean | undefined; setVisible: any; + colorMap: string | undefined; + setColorMap: (colorMap: string) => void; onClickLayerInfo: () => void; datasetLegend: LayerLegendCategorical | LayerLegendGradient | undefined; } @@ -89,16 +96,37 @@ const DatasetMetricInfo = styled.div` color: ${themeVal('color.base-500')}; `; +const LegendColorMapTrigger = styled.div` + min-height: 46px; + min-width: 25px; + cursor: pointer; +`; + export default function DataLayerCard(props: CardProps) { const { dataset, datasetAtom, isVisible, setVisible, + colorMap, + setColorMap, datasetLegend, onClickLayerInfo } = props; const layerInfo = dataset.data.info; + const [min, max] = dataset.data.sourceParams?.rescale || [0, 1]; + const [isColorMapOpen, setIsColorMapOpen] = useState(false); + const triggerRef = useRef(null); + + const handleColorMapTriggerClick = () => { + setIsColorMapOpen((prev) => !prev); + }; + + const handleClickOutside = (event) => { + if (triggerRef.current && !triggerRef.current.contains(event.target)) { + setIsColorMapOpen(false); + } + }; return ( <> @@ -117,37 +145,24 @@ export default function DataLayerCard(props: CardProps) { e.stopPropagation()} onClick={onClickLayerInfo} > - + e.stopPropagation()} onClick={() => setVisible((v) => !v)} > {isVisible ? ( - + ) : ( - + )} @@ -159,18 +174,39 @@ export default function DataLayerCard(props: CardProps) { {datasetLegend?.type === 'categorical' && ( - + )} - {datasetLegend?.type === 'gradient' && ( - + {/* Show a loading skeleton when the color map is not categorical and the dataset + status is 'loading'. This is because we color map sometimes might come from the titiler + which could introduce a visual flash when going from the 'default' color map to the one + configured in titiler */} + {dataset.status === 'loading' && datasetLegend?.type === 'gradient' &&
} + {dataset.status === 'success' && datasetLegend?.type === 'gradient' && ( +
+ + + } + appendTo={() => document.body} + visible={isColorMapOpen} + interactive={true} + placement='top' + onClickOutside={(_, event) => handleClickOutside(event)} + > + + + + +
)} diff --git a/app/scripts/components/exploration/components/datasets/dataset-list-item.tsx b/app/scripts/components/exploration/components/datasets/dataset-list-item.tsx index 08eef9ccb..a80792c32 100644 --- a/app/scripts/components/exploration/components/datasets/dataset-list-item.tsx +++ b/app/scripts/components/exploration/components/datasets/dataset-list-item.tsx @@ -31,6 +31,7 @@ import { import { useDatasetHover } from '$components/exploration/hooks/use-dataset-hover'; import { useTimelineDatasetAtom, + useTimelineDatasetColormap, useTimelineDatasetSettings, useTimelineDatasetVisibility } from '$components/exploration/atoms/hooks'; @@ -101,6 +102,7 @@ export function DatasetListItem(props: DatasetListItemProps) { const { isAnalyzing, runAnalysis } = useAnalysisController(); const [isVisible, setVisible] = useTimelineDatasetVisibility(datasetAtom); + const [colorMap, setColorMap] = useTimelineDatasetColormap(datasetAtom); const [modalLayerInfo, setModalLayerInfo] = React.useState(); const [, setSetting] = useTimelineDatasetSettings(datasetAtom); @@ -207,7 +209,7 @@ export function DatasetListItem(props: DatasetListItemProps) {
- +
{modalLayerInfo && (