From 92b206bc05d883a4c7eab9ebc19f55680ee5e512 Mon Sep 17 00:00:00 2001 From: katherine powell Date: Tue, 20 Aug 2024 22:01:37 +0000 Subject: [PATCH 1/4] added post-proccessing, publish, and product config files --- ...f_gfs_10day_high_water_arrival_time_ak.sql | 45 + ...f_gfs_10day_high_water_arrival_time_ak.yml | 18 + ...10day_high_water_arrival_time_ak_noaa.mapx | 20270 ++++++++++++++++ ..._10day_high_water_arrival_time_ak_noaa.yml | 13 + 4 files changed, 20346 insertions(+) create mode 100644 Core/LAMBDA/viz_functions/viz_db_postprocess_sql/products/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak.sql create mode 100644 Core/LAMBDA/viz_functions/viz_initialize_pipeline/product_configs/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak.yml create mode 100644 Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak_noaa.mapx create mode 100644 Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak_noaa.yml diff --git a/Core/LAMBDA/viz_functions/viz_db_postprocess_sql/products/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak.sql b/Core/LAMBDA/viz_functions/viz_db_postprocess_sql/products/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak.sql new file mode 100644 index 00000000..28252d54 --- /dev/null +++ b/Core/LAMBDA/viz_functions/viz_db_postprocess_sql/products/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak.sql @@ -0,0 +1,45 @@ +DROP TABLE IF EXISTS publish.mrf_gfs_10day_high_water_arrival_time_ak; +WITH arrival_time AS ( + SELECT forecasts.feature_id, + min(forecasts.forecast_hour) AS high_water_arrival_hour, + to_char(forecasts.reference_time::timestamp without time zone + INTERVAL '1 hour' * min(forecasts.forecast_hour), 'YYYY-MM-DD HH24:MI:SS UTC') AS high_water_arrival_time, + forecasts.nwm_vers, + forecasts.reference_time, + CASE + WHEN max(forecasts.forecast_hour) >= 240 THEN '> 10 days'::text + ELSE (max(forecasts.forecast_hour)+3)::text + END AS below_bank_return_hour, + to_char(forecasts.reference_time::timestamp without time zone + INTERVAL '1 hour' * (max(forecasts.forecast_hour)+3), 'YYYY-MM-DD HH24:MI:SS UTC') AS below_bank_return_time, + CASE + WHEN max(forecasts.forecast_hour) >= 240 THEN 'Outside MRF Forecast Window'::text + ELSE ((max(forecasts.forecast_hour)+3) - min(forecasts.forecast_hour))::text + END AS duration, + thresholds.high_water_threshold AS high_water_threshold, + round((max(forecasts.streamflow) * 35.315::double precision)::numeric, 2) AS max_flow, + to_char(now()::timestamp without time zone, 'YYYY-MM-DD HH24:MI:SS UTC') AS update_time + FROM ingest.nwm_channel_rt_mrf_gfs_ak_mem1 AS forecasts + JOIN derived.recurrence_flows_ak thresholds ON forecasts.feature_id = thresholds.feature_id + WHERE thresholds.high_water_threshold > 0::double precision AND (forecasts.streamflow * 35.315::double precision) >= thresholds.high_water_threshold + GROUP BY forecasts.feature_id, forecasts.reference_time, forecasts.nwm_vers, thresholds.high_water_threshold +) + +SELECT channels.feature_id, + channels.feature_id::TEXT AS feature_id_str, + channels.name, + channels.strm_order, + channels.huc6, + 'AK' as state, + arrival_time.nwm_vers, + arrival_time.reference_time, + arrival_time.high_water_arrival_hour, + arrival_time.high_water_arrival_time, + arrival_time.below_bank_return_hour, + arrival_time.below_bank_return_time, + arrival_time.duration, + arrival_time.high_water_threshold, + arrival_time.max_flow, + arrival_time.update_time, + channels.geom +INTO publish.mrf_gfs_10day_high_water_arrival_time_ak +FROM derived.channels_alaska channels +JOIN arrival_time ON channels.feature_id = arrival_time.feature_id; \ No newline at end of file diff --git a/Core/LAMBDA/viz_functions/viz_initialize_pipeline/product_configs/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak.yml b/Core/LAMBDA/viz_functions/viz_initialize_pipeline/product_configs/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak.yml new file mode 100644 index 00000000..89cc749e --- /dev/null +++ b/Core/LAMBDA/viz_functions/viz_initialize_pipeline/product_configs/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak.yml @@ -0,0 +1,18 @@ +product: mrf_gfs_10day_high_water_arrival_time_ak +configuration: medium_range_mem1 +product_type: "vector" +run: true + +ingest_files: + - file_format: common/data/model/com/nwm/{{variable:NWM_DATAFLOW_VERSION}}/nwm.{{datetime:%Y%m%d}}/medium_range_alaska_mem1/nwm.t{{datetime:%H}}z.medium_range.channel_rt_1.f{{range:3,243,3,%03d}}.alaska.nc + file_step: None + file_window: None + target_table: ingest.nwm_channel_rt_mrf_gfs_ak_mem1 + target_keys: (feature_id, streamflow) + +postprocess_sql: + - sql_file: mrf_gfs_10day_high_water_arrival_time_ak + target_table: publish.mrf_gfs_10day_high_water_arrival_time_ak + +services: + - mrf_gfs_10day_high_water_arrival_time_ak_noaa \ No newline at end of file diff --git a/Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak_noaa.mapx b/Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak_noaa.mapx new file mode 100644 index 00000000..4a5861ce --- /dev/null +++ b/Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak_noaa.mapx @@ -0,0 +1,20270 @@ +{ + "type" : "CIMMapDocument", + "version" : "2.7.0", + "build" : 26828, + "mapDefinition" : { + "type" : "CIMMap", + "name" : "NWM Medium-Range High Water Arrival Time Forecast - Alaska", + "uRI" : "CIMPATH=map/map.xml", + "sourceModifiedTime" : { + "type" : "TimeInstant", + "start" : 978307200000 + }, + "metadataURI" : "CIMPATH=Metadata/cb35495819848e8909896b8bb0a1cfb0.xml", + "useSourceMetadata" : true, + "illumination" : { + "type" : "CIMIlluminationProperties", + "ambientLight" : 75, + "sunPositionX" : -0.61237243569579003, + "sunPositionY" : 0.61237243569579003, + "sunPositionZ" : 0.5, + "illuminationSource" : "AbsoluteSunPosition", + "sunAzimuth" : 315, + "sunAltitude" : 30, + "showStars" : true, + "enableAmbientOcclusion" : true, + "enableEyeDomeLighting" : true + }, + "layers" : [ + "CIMPATH=m_medium_range_high_water_arrival_time_forecast___alaska/cessing_publish_mrf_gfs_10day_high_water_arrival_time_ak2.xml", + "CIMPATH=m_medium_range_high_water_arrival_time_forecast___alaska/cessing_publish_mrf_gfs_10day_high_water_arrival_time_ak.xml", + "CIMPATH=m_medium_range_high_water_arrival_time_forecast___alaska/cessing_publish_mrf_gfs_10day_high_water_arrival_time_ak3.xml" + ], + "defaultViewingMode" : "Map", + "mapType" : "Map", + "defaultExtent" : { + "xmin" : -18252750.1984103955, + "ymin" : 7218399.5864063343, + "xmax" : -14410992.5148950294, + "ymax" : 9933030.01566719264, + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + } + }, + "elevationSurfaces" : [ + { + "type" : "CIMMapElevationSurface", + "elevationMode" : "BaseGlobeSurface", + "name" : "Ground", + "verticalExaggeration" : 1, + "mapElevationID" : "{FCF29520-3856-4F53-BAE3-FD7F7ACE8797}", + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 255, + 255, + 255, + 100 + ] + }, + "surfaceTINShadingMode" : "Smooth", + "visibility" : true, + "expanded" : true + } + ], + "generalPlacementProperties" : { + "type" : "CIMMaplexGeneralPlacementProperties", + "invertedLabelTolerance" : 2, + "unplacedLabelColor" : { + "type" : "CIMRGBColor", + "values" : [ + 255, + 0, + 0, + 100 + ] + }, + "keyNumberGroups" : [ + { + "type" : "CIMMaplexKeyNumberGroup", + "delimiterCharacter" : ".", + "horizontalAlignment" : "Left", + "maximumNumberOfLines" : 20, + "minimumNumberOfLines" : 2, + "name" : "Default", + "numberResetType" : "None", + "keyNumberMethod" : "PreventUnplacedLabels" + } + ], + "placementQuality" : "High" + }, + "snappingProperties" : { + "type" : "CIMSnappingProperties", + "xYTolerance" : 10, + "xYToleranceUnit" : "SnapXYToleranceUnitPixel", + "snapToSketchEnabled" : true, + "snapRequestType" : "SnapRequestType_GeometricAndVisualSnapping", + "isZSnappingEnabled" : true + }, + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + }, + "timeDisplay" : { + "type" : "CIMMapTimeDisplay", + "defaultTimeIntervalUnits" : "esriTimeUnitsUnknown", + "timeValue" : { + "type" : "TimeExtent", + "start" : null, + "end" : null, + "empty" : false + }, + "timeRelation" : "esriTimeRelationOverlaps" + }, + "colorModel" : "RGB", + "scales" : [ + { + "type" : "CIMScale", + "value" : 1000 + }, + { + "type" : "CIMScale", + "value" : 5000 + }, + { + "type" : "CIMScale", + "value" : 10000 + }, + { + "type" : "CIMScale", + "value" : 24000 + }, + { + "type" : "CIMScale", + "value" : 50000 + }, + { + "type" : "CIMScale", + "value" : 100000 + }, + { + "type" : "CIMScale", + "value" : 300000 + }, + { + "type" : "CIMScale", + "value" : 500000 + }, + { + "type" : "CIMScale", + "value" : 1000000 + }, + { + "type" : "CIMScale", + "value" : 2500000 + }, + { + "type" : "CIMScale", + "value" : 3000000 + }, + { + "type" : "CIMScale", + "value" : 5000000 + }, + { + "type" : "CIMScale", + "value" : 20000000 + }, + { + "type" : "CIMScale", + "value" : 100000000 + } + ], + "scaleFormat" : { + "type" : "CIMScaleFormat", + "formatType" : "Absolute", + "separator" : ":", + "decimalPlacesThreshold" : 100, + "decimalPlaces" : 2, + "showThousandSeparator" : true, + "pageUnitValue" : 1, + "equalsSign" : "=" + }, + "scaleDisplayFormat" : "Value", + "clippingMode" : "None", + "nearPlaneClipDistanceMode" : "Automatic", + "rGBColorProfile" : "sRGB IEC61966-2-1 noBPC", + "cMYKColorProfile" : "U.S. Web Coated (SWOP) v2" + }, + "layerDefinitions" : [ + { + "type" : "CIMFeatureLayer", + "name" : "3 Days - High Water Arrival Time", + "uRI" : "CIMPATH=m_medium_range_high_water_arrival_time_forecast___alaska/cessing_publish_mrf_gfs_10day_high_water_arrival_time_ak2.xml", + "sourceModifiedTime" : { + "type" : "TimeInstant" + }, + "metadataURI" : "CIMPATH=Metadata/506ae7ae3419851be60fe0eaf2b23632.xml", + "useSourceMetadata" : true, + "description" : "vizprocessing.publish.mrf_gfs_10day_high_water_arrival_time_ak", + "layerElevation" : { + "type" : "CIMLayerElevationSurface", + "mapElevationID" : "{FCF29520-3856-4F53-BAE3-FD7F7ACE8797}" + }, + "expanded" : true, + "layerType" : "Operational", + "showLegends" : true, + "visibility" : false, + "displayCacheType" : "Permanent", + "maxDisplayCacheAge" : 5, + "showPopups" : true, + "serviceLayerID" : -1, + "refreshRate" : -1, + "refreshRateUnit" : "esriTimeUnitsSeconds", + "blendingMode" : "Alpha", + "autoGenerateFeatureTemplates" : true, + "featureElevationExpression" : "0", + "featureTable" : { + "type" : "CIMFeatureTable", + "displayField" : "name", + "editable" : true, + "dataConnection" : { + "type" : "CIMSqlQueryDataConnection", + "workspaceConnectionString" : "ENCRYPTED_PASSWORD=00022e6848544c666f5538424f74397a7a6d643151354375344f6735576b4c57415444694a53466e336262506f79454b596d583363635a7a6e472b62624f6f6b5a6b30302a00;SERVER=hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;INSTANCE=sde:postgresql:hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;DBCLIENT=postgresql;DB_CONNECTION_PROPERTIES=hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;DATABASE=vizprocessing;USER=viz_proc_admin_rw_user;AUTHENTICATION_MODE=DBMS", + "workspaceFactory" : "SDE", + "dataset" : "vizprocessing.publish.%mrf_gfs_10day_high_water_arrival_time_ak", + "datasetType" : "esriDTFeatureClass", + "sqlQuery" : "select oid,feature_id,feature_id_str,name,strm_order,huc6,state,nwm_vers,reference_time,high_water_arrival_hour,high_water_arrival_time,below_bank_return_hour,below_bank_return_time,duration,high_water_threshold,max_flow,update_time,geom from vizprocessing.publish.mrf_gfs_10day_high_water_arrival_time_ak", + "srid" : "3857", + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + }, + "oIDFields" : "feature_id_str", + "geometryType" : "esriGeometryPolyline", + "extent" : { + "xmin" : -17222900.2084, + "ymin" : 8098950.33820000291, + "xmax" : -15618685.2129, + "ymax" : 9254145.48420000076, + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + } + }, + "queryFields" : [ + { + "name" : "oid", + "type" : "esriFieldTypeDouble", + "alias" : "oid" + }, + { + "name" : "feature_id", + "type" : "esriFieldTypeDouble", + "alias" : "feature_id" + }, + { + "name" : "feature_id_str", + "type" : "esriFieldTypeString", + "alias" : "feature_id_str", + "length" : 60000 + }, + { + "name" : "name", + "type" : "esriFieldTypeString", + "alias" : "name", + "length" : 60000 + }, + { + "name" : "strm_order", + "type" : "esriFieldTypeInteger", + "alias" : "strm_order" + }, + { + "name" : "huc6", + "type" : "esriFieldTypeString", + "alias" : "huc6", + "length" : 60000 + }, + { + "name" : "state", + "type" : "esriFieldTypeString", + "alias" : "state", + "length" : 60000 + }, + { + "name" : "nwm_vers", + "type" : "esriFieldTypeDouble", + "alias" : "nwm_vers" + }, + { + "name" : "reference_time", + "type" : "esriFieldTypeString", + "alias" : "reference_time", + "length" : 60000 + }, + { + "name" : "high_water_arrival_hour", + "type" : "esriFieldTypeInteger", + "alias" : "high_water_arrival_hour" + }, + { + "name" : "high_water_arrival_time", + "type" : "esriFieldTypeString", + "alias" : "high_water_arrival_time", + "length" : 60000 + }, + { + "name" : "below_bank_return_hour", + "type" : "esriFieldTypeString", + "alias" : "below_bank_return_hour", + "length" : 60000 + }, + { + "name" : "below_bank_return_time", + "type" : "esriFieldTypeString", + "alias" : "below_bank_return_time", + "length" : 60000 + }, + { + "name" : "duration", + "type" : "esriFieldTypeString", + "alias" : "duration", + "length" : 60000 + }, + { + "name" : "high_water_threshold", + "type" : "esriFieldTypeDouble", + "alias" : "high_water_threshold" + }, + { + "name" : "max_flow", + "type" : "esriFieldTypeDouble", + "alias" : "max_flow" + }, + { + "name" : "update_time", + "type" : "esriFieldTypeString", + "alias" : "update_time", + "length" : 60000 + }, + { + "name" : "geom", + "type" : "esriFieldTypeGeometry", + "alias" : "geom", + "geometryDef" : { + "avgNumPoints" : 0, + "geometryType" : "esriGeometryPolyline", + "hasM" : false, + "hasZ" : false, + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + } + } + } + ], + "spatialStorageType" : 8 + }, + "studyAreaSpatialRel" : "esriSpatialRelUndefined", + "searchOrder" : "esriSearchOrderSpatial" + }, + "htmlPopupEnabled" : true, + "selectable" : true, + "featureCacheType" : "Session", + "displayFiltersType" : "ByScale", + "featureBlendingMode" : "Alpha", + "labelClasses" : [ + { + "type" : "CIMLabelClass", + "expression" : "$feature.Name", + "expressionEngine" : "Arcade", + "featuresToLabel" : "AllVisibleFeatures", + "maplexLabelPlacementProperties" : { + "type" : "CIMMaplexLabelPlacementProperties", + "featureType" : "Line", + "avoidPolygonHoles" : true, + "canOverrunFeature" : true, + "canPlaceLabelOutsidePolygon" : true, + "canRemoveOverlappingLabel" : true, + "canStackLabel" : true, + "connectionType" : "MinimizeLabels", + "constrainOffset" : "AboveLine", + "contourAlignmentType" : "Page", + "contourLadderType" : "Straight", + "contourMaximumAngle" : 90, + "enableConnection" : true, + "featureWeight" : 0, + "fontHeightReductionLimit" : 4, + "fontHeightReductionStep" : 0.5, + "fontWidthReductionLimit" : 90, + "fontWidthReductionStep" : 5, + "graticuleAlignmentType" : "Straight", + "keyNumberGroupName" : "Default", + "labelBuffer" : 15, + "labelLargestPolygon" : true, + "labelPriority" : -1, + "labelStackingProperties" : { + "type" : "CIMMaplexLabelStackingProperties", + "stackAlignment" : "ChooseBest", + "maximumNumberOfLines" : 3, + "minimumNumberOfCharsPerLine" : 3, + "maximumNumberOfCharsPerLine" : 24, + "separators" : [ + { + "type" : "CIMMaplexStackingSeparator", + "separator" : " ", + "splitAfter" : true + }, + { + "type" : "CIMMaplexStackingSeparator", + "separator" : ",", + "visible" : true, + "splitAfter" : true + } + ] + }, + "lineFeatureType" : "General", + "linePlacementMethod" : "OffsetStraightFromLine", + "maximumLabelOverrun" : 16, + "maximumLabelOverrunUnit" : "Point", + "minimumFeatureSizeUnit" : "Map", + "multiPartOption" : "OneLabelPerFeature", + "offsetAlongLineProperties" : { + "type" : "CIMMaplexOffsetAlongLineProperties", + "placementMethod" : "BestPositionAlongLine", + "labelAnchorPoint" : "CenterOfLabel", + "distanceUnit" : "Map", + "useLineDirection" : true + }, + "pointExternalZonePriorities" : { + "type" : "CIMMaplexExternalZonePriorities", + "aboveLeft" : 4, + "aboveCenter" : 2, + "aboveRight" : 1, + "centerRight" : 3, + "belowRight" : 5, + "belowCenter" : 7, + "belowLeft" : 8, + "centerLeft" : 6 + }, + "pointPlacementMethod" : "AroundPoint", + "polygonAnchorPointType" : "GeometricCenter", + "polygonBoundaryWeight" : 0, + "polygonExternalZones" : { + "type" : "CIMMaplexExternalZonePriorities", + "aboveLeft" : 4, + "aboveCenter" : 2, + "aboveRight" : 1, + "centerRight" : 3, + "belowRight" : 5, + "belowCenter" : 7, + "belowLeft" : 8, + "centerLeft" : 6 + }, + "polygonFeatureType" : "General", + "polygonInternalZones" : { + "type" : "CIMMaplexInternalZonePriorities", + "center" : 1 + }, + "polygonPlacementMethod" : "CurvedInPolygon", + "primaryOffset" : 1, + "primaryOffsetUnit" : "Point", + "removeExtraWhiteSpace" : true, + "repetitionIntervalUnit" : "Map", + "rotationProperties" : { + "type" : "CIMMaplexRotationProperties", + "rotationType" : "Arithmetic", + "alignmentType" : "Straight" + }, + "secondaryOffset" : 100, + "strategyPriorities" : { + "type" : "CIMMaplexStrategyPriorities", + "stacking" : 1, + "overrun" : 2, + "fontCompression" : 3, + "fontReduction" : 4, + "abbreviation" : 5 + }, + "thinningDistanceUnit" : "Point", + "truncationMarkerCharacter" : ".", + "truncationMinimumLength" : 1, + "truncationPreferredCharacters" : "aeiou", + "polygonAnchorPointPerimeterInsetUnit" : "Point" + }, + "name" : "Class 1", + "priority" : -1, + "standardLabelPlacementProperties" : { + "type" : "CIMStandardLabelPlacementProperties", + "featureType" : "Line", + "featureWeight" : "Low", + "labelWeight" : "High", + "numLabelsOption" : "OneLabelPerName", + "lineLabelPosition" : { + "type" : "CIMStandardLineLabelPosition", + "above" : true, + "inLine" : true, + "parallel" : true + }, + "lineLabelPriorities" : { + "type" : "CIMStandardLineLabelPriorities", + "aboveStart" : 3, + "aboveAlong" : 3, + "aboveEnd" : 3, + "centerStart" : 3, + "centerAlong" : 3, + "centerEnd" : 3, + "belowStart" : 3, + "belowAlong" : 3, + "belowEnd" : 3 + }, + "pointPlacementMethod" : "AroundPoint", + "pointPlacementPriorities" : { + "type" : "CIMStandardPointPlacementPriorities", + "aboveLeft" : 2, + "aboveCenter" : 2, + "aboveRight" : 1, + "centerLeft" : 3, + "centerRight" : 2, + "belowLeft" : 3, + "belowCenter" : 3, + "belowRight" : 2 + }, + "rotationType" : "Arithmetic", + "polygonPlacementMethod" : "AlwaysHorizontal" + }, + "textSymbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMTextSymbol", + "blockProgression" : "TTB", + "depth3D" : 1, + "extrapolateBaselines" : true, + "fontEffects" : "Normal", + "fontEncoding" : "Unicode", + "fontFamilyName" : "Tahoma", + "fontStyleName" : "Regular", + "fontType" : "Unspecified", + "haloSize" : 1, + "height" : 10, + "hinting" : "Default", + "horizontalAlignment" : "Left", + "kerning" : true, + "letterWidth" : 100, + "ligatures" : true, + "lineGapType" : "ExtraLeading", + "symbol" : { + "type" : "CIMPolygonSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidFill", + "enable" : true, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 0, + 0, + 0, + 100 + ] + } + } + ] + }, + "textCase" : "Normal", + "textDirection" : "LTR", + "verticalAlignment" : "Bottom", + "verticalGlyphOrientation" : "Right", + "wordSpacing" : 100, + "billboardMode3D" : "FaceNearPlane" + } + }, + "useCodedValue" : true, + "visibility" : true, + "iD" : -1 + } + ], + "renderer" : { + "type" : "CIMClassBreaksRenderer", + "barrierWeight" : "High", + "breaks" : [ + { + "type" : "CIMClassBreak", + "label" : "Ongoing or 3 - 6 hours", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 245, + 200, + 224, + 100 + ] + } + } + ] + } + }, + "upperBound" : 6 + }, + { + "type" : "CIMClassBreak", + "label" : "7 - 12 hours", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 245, + 152, + 182, + 100 + ] + } + } + ] + } + }, + "upperBound" : 12 + }, + { + "type" : "CIMClassBreak", + "label" : "13 - 24 hours", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 205, + 90, + 153, + 100 + ] + } + } + ] + } + }, + "upperBound" : 24 + }, + { + "type" : "CIMClassBreak", + "label" : "25 - 36 hours", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 127, + 77, + 121, + 100 + ] + } + } + ] + } + }, + "upperBound" : 36 + }, + { + "type" : "CIMClassBreak", + "label" : "37 - 48 hours", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 0, + 112, + 255, + 100 + ] + } + } + ] + } + }, + "upperBound" : 48 + }, + { + "type" : "CIMClassBreak", + "label" : "49 - 72 hours", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 32, + 18, + 214, + 100 + ] + } + } + ] + } + }, + "upperBound" : 72 + } + ], + "classBreakType" : "GraduatedColor", + "classificationMethod" : "Manual", + "colorRamp" : { + "type" : "CIMMultipartColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "colorRamps" : [ + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 12.898047999999999, + 7.6295679999999999, + 135.16159999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 16.265215999999999, + 7.277056, + 136.47974400000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 16.265215999999999, + 7.277056, + 136.47974400000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 19.290368000000001, + 6.9647360000000003, + 137.729792, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 19.290368000000001, + 6.9647360000000003, + 137.729792, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 22.072831999999998, + 6.6879999999999997, + 138.92044799999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 22.072831999999998, + 6.6879999999999997, + 138.92044799999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 24.673024000000002, + 6.44224, + 140.058368, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 24.673024000000002, + 6.44224, + 140.058368, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 27.130880000000001, + 6.2231040000000002, + 141.15020799999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 27.130880000000001, + 6.2231040000000002, + 141.15020799999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 29.471744000000001, + 6.0303360000000001, + 142.19980799999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 29.471744000000001, + 6.0303360000000001, + 142.19980799999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 31.719168, + 5.8567679999999998, + 143.212288, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 31.719168, + 5.8567679999999998, + 143.212288, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 33.889536, + 5.698048, + 144.19200000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 33.889536, + 5.698048, + 144.19200000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 35.994368000000001, + 5.5518720000000004, + 145.141504, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 35.994368000000001, + 5.5518720000000004, + 145.141504, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 38.043391999999997, + 5.4154239999999998, + 146.063872, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 38.043391999999997, + 5.4154239999999998, + 146.063872, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 40.043776000000001, + 5.2866559999999998, + 146.96064000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 40.043776000000001, + 5.2866559999999998, + 146.96064000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 42.001919999999998, + 5.1637760000000004, + 147.83436800000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 42.001919999999998, + 5.1637760000000004, + 147.83436800000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 43.922944000000001, + 5.0447360000000003, + 148.68633600000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 43.922944000000001, + 5.0447360000000003, + 148.68633600000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 45.811199999999999, + 4.9285119999999996, + 149.51782399999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 45.811199999999999, + 4.9285119999999996, + 149.51782399999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 47.670527999999997, + 4.8135680000000001, + 150.33036799999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 47.670527999999997, + 4.8135680000000001, + 150.33036799999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 49.503743999999998, + 4.6986239999999997, + 151.12448000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 49.503743999999998, + 4.6986239999999997, + 151.12448000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 51.313920000000003, + 4.5829120000000003, + 151.901184, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 51.313920000000003, + 4.5829120000000003, + 151.901184, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 53.103360000000002, + 4.4651519999999998, + 152.661248, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 53.103360000000002, + 4.4651519999999998, + 152.661248, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 54.873600000000003, + 4.3450879999999996, + 153.40518399999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 54.873600000000003, + 4.3450879999999996, + 153.40518399999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 56.626432000000001, + 4.2232320000000003, + 154.13324800000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 56.626432000000001, + 4.2232320000000003, + 154.13324800000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 58.363647999999998, + 4.0977920000000001, + 154.84595200000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 58.363647999999998, + 4.0977920000000001, + 154.84595200000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 60.087040000000002, + 3.968512, + 155.54355200000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 60.087040000000002, + 3.968512, + 155.54355200000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 61.797376, + 3.8346239999999998, + 156.226304, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 61.797376, + 3.8346239999999998, + 156.226304, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 63.496192000000001, + 3.6963840000000001, + 156.89420799999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 63.496192000000001, + 3.6963840000000001, + 156.89420799999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 65.184511999999998, + 3.5537920000000001, + 157.54726400000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 65.184511999999998, + 3.5537920000000001, + 157.54726400000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 66.862848, + 3.4068480000000001, + 158.185216, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 66.862848, + 3.4068480000000001, + 158.185216, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 68.531968000000006, + 3.255296, + 158.80857599999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 68.531968000000006, + 3.255296, + 158.80857599999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 70.192896000000005, + 3.099904, + 159.416832, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 70.192896000000005, + 3.099904, + 159.416832, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 71.845888000000002, + 2.940928, + 160.009728, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 71.845888000000002, + 2.940928, + 160.009728, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 73.491455999999999, + 2.77888, + 160.58752000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 73.491455999999999, + 2.77888, + 160.58752000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 75.130368000000004, + 2.614528, + 161.14944, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 75.130368000000004, + 2.614528, + 161.14944, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 76.762879999999996, + 2.447616, + 161.69574399999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 76.762879999999996, + 2.447616, + 161.69574399999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 78.389759999999995, + 2.278912, + 162.22566399999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 78.389759999999995, + 2.278912, + 162.22566399999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 80.011008000000004, + 2.1091839999999999, + 162.73920000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 80.011008000000004, + 2.1091839999999999, + 162.73920000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 81.627135999999993, + 1.9394560000000001, + 163.23584, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 81.627135999999993, + 1.9394560000000001, + 163.23584, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 83.238399999999999, + 1.77024, + 163.71507199999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 83.238399999999999, + 1.77024, + 163.71507199999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 84.845056, + 1.602816, + 164.176896, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 84.845056, + 1.602816, + 164.176896, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 86.446848000000003, + 1.4382079999999999, + 164.620544, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 86.446848000000003, + 1.4382079999999999, + 164.620544, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 88.044799999999995, + 1.2776959999999999, + 165.04576, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 88.044799999999995, + 1.2776959999999999, + 165.04576, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 89.638400000000004, + 1.1217919999999999, + 165.45228800000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 89.638400000000004, + 1.1217919999999999, + 165.45228800000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 91.227903999999995, + 0.97228800000000004, + 165.83936, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 91.227903999999995, + 0.97228800000000004, + 165.83936, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 92.813568000000004, + 0.83020799999999995, + 166.20671999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 92.813568000000004, + 0.83020799999999995, + 166.20671999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 94.395647999999994, + 0.69734399999999996, + 166.553856, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 94.395647999999994, + 0.69734399999999996, + 166.553856, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 95.973631999999995, + 0.57472000000000001, + 166.880256, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 95.973631999999995, + 0.57472000000000001, + 166.880256, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 97.548032000000006, + 0.46438400000000002, + 167.185408, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 97.548032000000006, + 0.46438400000000002, + 167.185408, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 99.118848, + 0.36710399999999999, + 167.469312, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 99.118848, + 0.36710399999999999, + 167.469312, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 100.685824, + 0.28518399999999999, + 167.73094399999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 100.685824, + 0.28518399999999999, + 167.73094399999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 102.249216, + 0.21990399999999999, + 167.97004799999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 102.249216, + 0.21990399999999999, + 167.97004799999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 103.808768, + 0.173568, + 168.18611200000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 103.808768, + 0.173568, + 168.18611200000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 105.36448, + 0.14771200000000001, + 168.37888000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 105.36448, + 0.14771200000000001, + 168.37888000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 106.916352, + 0.14438400000000001, + 168.54784000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 106.916352, + 0.14438400000000001, + 168.54784000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 108.464384, + 0.165376, + 168.692736, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 108.464384, + 0.165376, + 168.692736, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 110.008064, + 0.21273600000000001, + 168.81280000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 110.008064, + 0.21273600000000001, + 168.81280000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 111.547904, + 0.28851199999999999, + 168.90803199999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 111.547904, + 0.28851199999999999, + 168.90803199999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 113.083392, + 0.39423999999999998, + 168.977664, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 113.083392, + 0.39423999999999998, + 168.977664, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 114.614784, + 0.53247999999999995, + 169.02144000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 114.614784, + 0.53247999999999995, + 169.02144000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 116.141312, + 0.70528000000000002, + 169.03935999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 116.141312, + 0.70528000000000002, + 169.03935999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 117.663488, + 0.91494399999999998, + 169.030912, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 117.663488, + 0.91494399999999998, + 169.030912, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 119.1808, + 1.1635200000000001, + 168.99558400000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 119.1808, + 1.1635200000000001, + 168.99558400000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 120.692992, + 1.453568, + 168.93363199999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 120.692992, + 1.453568, + 168.93363199999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 122.200064, + 1.78688, + 168.84454400000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 122.200064, + 1.78688, + 168.84454400000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 123.70175999999999, + 2.1657600000000001, + 168.72832, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 123.70175999999999, + 2.1657600000000001, + 168.72832, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 125.19808, + 2.5925120000000001, + 168.58470399999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 125.19808, + 2.5925120000000001, + 168.58470399999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 126.688512, + 3.0694400000000002, + 168.41344000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 126.688512, + 3.0694400000000002, + 168.41344000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 128.17356799999999, + 3.5980799999999999, + 168.214528, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 128.17356799999999, + 3.5980799999999999, + 168.214528, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 129.65222399999999, + 4.1812480000000001, + 167.98771199999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 129.65222399999999, + 4.1812480000000001, + 167.98771199999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 131.12473600000001, + 4.8212479999999998, + 167.73350400000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 131.12473600000001, + 4.8212479999999998, + 167.73350400000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 132.59084799999999, + 5.5201279999999997, + 167.45190400000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 132.59084799999999, + 5.5201279999999997, + 167.45190400000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 134.050048, + 6.2801920000000004, + 167.14265599999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 134.050048, + 6.2801920000000004, + 167.14265599999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 135.50233600000001, + 7.1032320000000002, + 166.806016, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 135.50233600000001, + 7.1032320000000002, + 166.806016, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 136.947712, + 7.9915520000000004, + 166.44224, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 136.947712, + 7.9915520000000004, + 166.44224, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 138.38592, + 8.9472000000000005, + 166.05184, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 138.38592, + 8.9472000000000005, + 166.05184, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 139.816192, + 9.9722240000000006, + 165.63455999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 139.816192, + 9.9722240000000006, + 165.63455999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 141.23903999999999, + 11.042816, + 165.190912, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 141.23903999999999, + 11.042816, + 165.190912, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 142.65420800000001, + 12.116736, + 164.721408, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 142.65420800000001, + 12.116736, + 164.721408, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 144.06092799999999, + 13.19552, + 164.226304, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 144.06092799999999, + 13.19552, + 164.226304, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 145.45945599999999, + 14.279168, + 163.70611199999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 145.45945599999999, + 14.279168, + 163.70611199999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 146.84979200000001, + 15.367167999999999, + 163.16134400000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 146.84979200000001, + 15.367167999999999, + 163.16134400000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 148.231424, + 16.459776000000002, + 162.59225599999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 148.231424, + 16.459776000000002, + 162.59225599999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 149.604096, + 17.556224, + 161.99987200000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 149.604096, + 17.556224, + 161.99987200000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 150.968064, + 18.656768, + 161.38444799999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 150.968064, + 18.656768, + 161.38444799999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 152.32281599999999, + 19.760639999999999, + 160.74675199999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 152.32281599999999, + 19.760639999999999, + 160.74675199999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 153.66809599999999, + 20.868096000000001, + 160.08755199999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 153.66809599999999, + 20.868096000000001, + 160.08755199999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 155.00416000000001, + 21.978624, + 159.40761599999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 155.00416000000001, + 21.978624, + 159.40761599999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 156.33075199999999, + 23.092224000000002, + 158.70745600000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 156.33075199999999, + 23.092224000000002, + 158.70745600000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 157.64787200000001, + 24.208383999999999, + 157.98784000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 157.64787200000001, + 24.208383999999999, + 157.98784000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 158.955264, + 25.327103999999999, + 157.24979200000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 158.955264, + 25.327103999999999, + 157.24979200000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 160.25267199999999, + 26.447872, + 156.49408, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 160.25267199999999, + 26.447872, + 156.49408, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 161.54035200000001, + 27.570944000000001, + 155.72147200000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 161.54035200000001, + 27.570944000000001, + 155.72147200000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 162.818048, + 28.695551999999999, + 154.93248, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 162.818048, + 28.695551999999999, + 154.93248, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 164.08550399999999, + 29.821952, + 154.12863999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 164.08550399999999, + 29.821952, + 154.12863999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 165.343232, + 30.949888000000001, + 153.30995200000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 165.343232, + 30.949888000000001, + 153.30995200000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 166.59097600000001, + 32.079104000000001, + 152.47795199999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 166.59097600000001, + 32.079104000000001, + 152.47795199999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 167.82848000000001, + 33.209600000000002, + 151.633152, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 167.82848000000001, + 33.209600000000002, + 151.633152, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 169.055744, + 34.340864000000003, + 150.77657600000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 169.055744, + 34.340864000000003, + 150.77657600000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 170.27302399999999, + 35.472895999999999, + 149.90899200000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 170.27302399999999, + 35.472895999999999, + 149.90899200000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 171.48032000000001, + 36.605952000000002, + 149.03142399999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 171.48032000000001, + 36.605952000000002, + 149.03142399999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 172.67763199999999, + 37.739263999999999, + 148.14412799999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 172.67763199999999, + 37.739263999999999, + 148.14412799999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 173.86496, + 38.873088000000003, + 147.24838399999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 173.86496, + 38.873088000000003, + 147.24838399999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 175.04204799999999, + 40.007168, + 146.34495999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 175.04204799999999, + 40.007168, + 146.34495999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 176.209408, + 41.141503999999998, + 145.43436800000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 176.209408, + 41.141503999999998, + 145.43436800000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 177.36704, + 42.276096000000003, + 144.51763199999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 177.36704, + 42.276096000000003, + 144.51763199999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 178.51494400000001, + 43.410688, + 143.59526399999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 178.51494400000001, + 43.410688, + 143.59526399999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 179.65286399999999, + 44.545279999999998, + 142.667776, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 179.65286399999999, + 44.545279999999998, + 142.667776, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 180.78156799999999, + 45.679872000000003, + 141.73619199999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 180.78156799999999, + 45.679872000000003, + 141.73619199999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 181.900544, + 46.814208000000001, + 140.80102400000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 181.900544, + 46.814208000000001, + 140.80102400000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 183.01004800000001, + 47.948543999999998, + 139.862528, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 183.01004800000001, + 47.948543999999998, + 139.862528, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 184.11033599999999, + 49.082624000000003, + 138.921728, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 184.11033599999999, + 49.082624000000003, + 138.921728, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 185.20166399999999, + 50.216448, + 137.97913600000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 185.20166399999999, + 50.216448, + 137.97913600000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 186.28352000000001, + 51.350015999999997, + 137.035008, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 186.28352000000001, + 51.350015999999997, + 137.035008, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 187.356672, + 52.483328, + 136.089856, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 187.356672, + 52.483328, + 136.089856, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 188.42086399999999, + 53.616383999999996, + 135.14444800000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 188.42086399999999, + 53.616383999999996, + 135.14444800000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 189.476608, + 54.749184, + 134.199296, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 189.476608, + 54.749184, + 134.199296, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 190.523392, + 55.881728000000003, + 133.254144, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 190.523392, + 55.881728000000003, + 133.254144, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 191.561984, + 57.014015999999998, + 132.309504, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 191.561984, + 57.014015999999998, + 132.309504, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 192.591872, + 58.146048, + 131.36614399999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 192.591872, + 58.146048, + 131.36614399999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 193.61382399999999, + 59.278080000000003, + 130.42380800000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 193.61382399999999, + 59.278080000000003, + 130.42380800000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 194.62758400000001, + 60.409855999999998, + 129.48326399999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 194.62758400000001, + 60.409855999999998, + 129.48326399999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 195.633408, + 61.541376, + 128.54425599999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 195.633408, + 61.541376, + 128.54425599999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 196.63104000000001, + 62.673152000000002, + 127.60704, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 196.63104000000001, + 62.673152000000002, + 127.60704, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 197.62124800000001, + 63.804671999999997, + 126.672128, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 197.62124800000001, + 63.804671999999997, + 126.672128, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 198.60377600000001, + 64.936447999999999, + 125.73977600000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 198.60377600000001, + 64.936447999999999, + 125.73977600000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 199.57862399999999, + 66.067967999999993, + 124.809984, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 199.57862399999999, + 66.067967999999993, + 124.809984, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 200.54604800000001, + 67.200000000000003, + 123.883008, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 200.54604800000001, + 67.200000000000003, + 123.883008, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 201.50604799999999, + 68.332031999999998, + 122.958592, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 201.50604799999999, + 68.332031999999998, + 122.958592, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 202.45887999999999, + 69.464320000000001, + 122.036736, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 202.45887999999999, + 69.464320000000001, + 122.036736, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 203.40454399999999, + 70.597120000000004, + 121.117952, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 203.40454399999999, + 70.597120000000004, + 121.117952, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 204.34329600000001, + 71.730431999999993, + 120.201728, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 204.34329600000001, + 71.730431999999993, + 120.201728, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 205.27488, + 72.864255999999997, + 119.28857600000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 205.27488, + 72.864255999999997, + 119.28857600000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 206.19955200000001, + 73.998592000000002, + 118.37824000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 206.19955200000001, + 73.998592000000002, + 118.37824000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 207.117312, + 75.133696, + 117.47072, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 207.117312, + 75.133696, + 117.47072, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 208.028672, + 76.269568000000007, + 116.56652800000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 208.028672, + 76.269568000000007, + 116.56652800000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 208.932864, + 77.406208000000007, + 115.664896, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 208.932864, + 77.406208000000007, + 115.664896, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 209.830656, + 78.543871999999993, + 114.766336, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 209.830656, + 78.543871999999993, + 114.766336, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 210.72179199999999, + 79.682816000000003, + 113.87033599999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 210.72179199999999, + 79.682816000000003, + 113.87033599999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 211.606528, + 80.822783999999999, + 112.976896, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 211.606528, + 80.822783999999999, + 112.976896, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 212.48460800000001, + 81.964032000000003, + 112.086016, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 212.48460800000001, + 81.964032000000003, + 112.086016, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 213.356032, + 83.106560000000002, + 111.19769599999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 213.356032, + 83.106560000000002, + 111.19769599999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 214.221056, + 84.250879999999995, + 110.31168, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 214.221056, + 84.250879999999995, + 110.31168, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 215.07968, + 85.396479999999997, + 109.42847999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 215.07968, + 85.396479999999997, + 109.42847999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 215.931904, + 86.543871999999993, + 108.54732799999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 215.931904, + 86.543871999999993, + 108.54732799999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 216.777728, + 87.693055999999999, + 107.668224, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 216.777728, + 87.693055999999999, + 107.668224, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 217.616896, + 88.844288000000006, + 106.791168, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 217.616896, + 88.844288000000006, + 106.791168, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 218.44966400000001, + 89.997568000000001, + 105.915904, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 218.44966400000001, + 89.997568000000001, + 105.915904, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 219.27603199999999, + 91.152895999999998, + 105.04243200000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 219.27603199999999, + 91.152895999999998, + 105.04243200000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 220.096, + 92.310528000000005, + 104.17075199999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 220.096, + 92.310528000000005, + 104.17075199999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 220.909312, + 93.470464000000007, + 103.300864, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 220.909312, + 93.470464000000007, + 103.300864, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 221.715968, + 94.632959999999997, + 102.432256, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 221.715968, + 94.632959999999997, + 102.432256, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 222.51596799999999, + 95.798271999999997, + 101.56492799999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 222.51596799999999, + 95.798271999999997, + 101.56492799999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 223.30956800000001, + 96.966144, + 100.69888, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 223.30956800000001, + 96.966144, + 100.69888, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 224.09625600000001, + 98.136831999999998, + 99.833855999999997, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 224.09625600000001, + 98.136831999999998, + 99.833855999999997, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 224.87628799999999, + 99.310592, + 98.9696, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 224.87628799999999, + 99.310592, + 98.9696, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 225.64940799999999, + 100.487424, + 98.106623999999996, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 225.64940799999999, + 100.487424, + 98.106623999999996, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 226.415616, + 101.66758400000001, + 97.244159999999994, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 226.415616, + 101.66758400000001, + 97.244159999999994, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 227.17491200000001, + 102.851072, + 96.382463999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 227.17491200000001, + 102.851072, + 96.382463999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 227.92704000000001, + 104.037888, + 95.521280000000004, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 227.92704000000001, + 104.037888, + 95.521280000000004, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 228.672, + 105.22828800000001, + 94.660607999999996, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 228.672, + 105.22828800000001, + 94.660607999999996, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 229.409536, + 106.42227200000001, + 93.800191999999996, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 229.409536, + 106.42227200000001, + 93.800191999999996, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 230.139904, + 107.620352, + 92.940032000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 230.139904, + 107.620352, + 92.940032000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 230.86259200000001, + 108.822272, + 92.080128000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 230.86259200000001, + 108.822272, + 92.080128000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 231.577856, + 110.028032, + 91.220224000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 231.577856, + 110.028032, + 91.220224000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 232.28543999999999, + 111.23814400000001, + 90.360320000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 232.28543999999999, + 111.23814400000001, + 90.360320000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 232.98508799999999, + 112.452608, + 89.500159999999994, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 232.98508799999999, + 112.452608, + 89.500159999999994, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 233.67679999999999, + 113.671424, + 88.640255999999994, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 233.67679999999999, + 113.671424, + 88.640255999999994, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 234.36057600000001, + 114.894592, + 87.779839999999993, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 234.36057600000001, + 114.894592, + 87.779839999999993, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 235.03590399999999, + 116.12236799999999, + 86.919424000000006, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 235.03590399999999, + 116.12236799999999, + 86.919424000000006, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 235.70278400000001, + 117.354752, + 86.058496000000005, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 235.70278400000001, + 117.354752, + 86.058496000000005, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 236.36147199999999, + 118.59225600000001, + 85.197056000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 236.36147199999999, + 118.59225600000001, + 85.197056000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 237.0112, + 119.834368, + 84.335359999999994, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 237.0112, + 119.834368, + 84.335359999999994, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 237.65222399999999, + 121.08159999999999, + 83.473151999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 237.65222399999999, + 121.08159999999999, + 83.473151999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 238.284288, + 122.333952, + 82.610432000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 238.284288, + 122.333952, + 82.610432000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 238.90739199999999, + 123.59168, + 81.747200000000007, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 238.90739199999999, + 123.59168, + 81.747200000000007, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 239.52127999999999, + 124.85427199999999, + 80.883712000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 239.52127999999999, + 124.85427199999999, + 80.883712000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 240.12544, + 126.12275200000001, + 80.019199999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 240.12544, + 126.12275200000001, + 80.019199999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 240.72012799999999, + 127.39635199999999, + 79.154432, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 240.72012799999999, + 127.39635199999999, + 79.154432, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 241.30508800000001, + 128.67558399999999, + 78.288895999999994, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 241.30508800000001, + 128.67558399999999, + 78.288895999999994, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 241.880064, + 129.96044800000001, + 77.422848000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 241.880064, + 129.96044800000001, + 77.422848000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 242.44505599999999, + 131.250944, + 76.556544000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 242.44505599999999, + 131.250944, + 76.556544000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 242.99955199999999, + 132.54732799999999, + 75.689471999999995, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 242.99955199999999, + 132.54732799999999, + 75.689471999999995, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 243.54406399999999, + 133.84960000000001, + 74.822400000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 243.54406399999999, + 133.84960000000001, + 74.822400000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 244.07756800000001, + 135.15776, + 73.954048, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 244.07756800000001, + 135.15776, + 73.954048, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 244.60032000000001, + 136.47180800000001, + 73.085440000000006, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 244.60032000000001, + 136.47180800000001, + 73.085440000000006, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 245.112064, + 137.792, + 72.216576000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 245.112064, + 137.792, + 72.216576000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 245.61254400000001, + 139.118336, + 71.347455999999994, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 245.61254400000001, + 139.118336, + 71.347455999999994, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 246.10201599999999, + 140.450816, + 70.478080000000006, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 246.10201599999999, + 140.450816, + 70.478080000000006, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 246.57996800000001, + 141.78944000000001, + 69.608704000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 246.57996800000001, + 141.78944000000001, + 69.608704000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 247.046144, + 143.134208, + 68.739328, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 247.046144, + 143.134208, + 68.739328, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 247.50028800000001, + 144.485376, + 67.870208000000005, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 247.50028800000001, + 144.485376, + 67.870208000000005, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 247.942656, + 145.8432, + 67.000575999999995, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 247.942656, + 145.8432, + 67.000575999999995, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 248.37248, + 147.207168, + 66.131200000000007, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 248.37248, + 147.207168, + 66.131200000000007, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 248.78976, + 148.57779199999999, + 65.262336000000005, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 248.78976, + 148.57779199999999, + 65.262336000000005, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 249.19449599999999, + 149.95481599999999, + 64.394239999999996, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 249.19449599999999, + 149.95481599999999, + 64.394239999999996, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 249.586432, + 151.33824000000001, + 63.526656000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 249.586432, + 151.33824000000001, + 63.526656000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 249.96556799999999, + 152.72832, + 62.660352000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 249.96556799999999, + 152.72832, + 62.660352000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 250.33113599999999, + 154.125056, + 61.795071999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 250.33113599999999, + 154.125056, + 61.795071999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 250.68364800000001, + 155.52819199999999, + 60.931328000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 250.68364800000001, + 155.52819199999999, + 60.931328000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.022336, + 156.937984, + 60.069375999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.022336, + 156.937984, + 60.069375999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.34745599999999, + 158.354432, + 59.209471999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.34745599999999, + 158.354432, + 59.209471999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.65849600000001, + 159.777536, + 58.351872, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.65849600000001, + 159.777536, + 58.351872, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.95494400000001, + 161.207808, + 57.496319999999997, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.95494400000001, + 161.207808, + 57.496319999999997, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.237056, + 162.64447999999999, + 56.643839999999997, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.237056, + 162.64447999999999, + 56.643839999999997, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.50432000000001, + 164.088064, + 55.794688000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.50432000000001, + 164.088064, + 55.794688000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.756992, + 165.538048, + 54.949888000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.756992, + 165.538048, + 54.949888000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.99456000000001, + 166.99520000000001, + 54.109183999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.99456000000001, + 166.99520000000001, + 54.109183999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.216768, + 168.45900800000001, + 53.273600000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.216768, + 168.45900800000001, + 53.273600000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.42336, + 169.929472, + 52.443904000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.42336, + 169.929472, + 52.443904000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.61433600000001, + 171.406848, + 51.620351999999997, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.61433600000001, + 171.406848, + 51.620351999999997, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.78944000000001, + 172.89088000000001, + 50.803967999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.78944000000001, + 172.89088000000001, + 50.803967999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.94816, + 174.38182399999999, + 49.995519999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.94816, + 174.38182399999999, + 49.995519999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.090496, + 175.87968000000001, + 49.195520000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.090496, + 175.87968000000001, + 49.195520000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.21619200000001, + 177.38419200000001, + 48.405504000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.21619200000001, + 177.38419200000001, + 48.405504000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.324736, + 178.89536000000001, + 47.626496000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.324736, + 178.89536000000001, + 47.626496000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.41638399999999, + 180.41369599999999, + 46.859008000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.41638399999999, + 180.41369599999999, + 46.859008000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.49036799999999, + 181.93868800000001, + 46.104832000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.49036799999999, + 181.93868800000001, + 46.104832000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.546944, + 183.470336, + 45.365248000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.546944, + 183.470336, + 45.365248000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.58534399999999, + 185.00889599999999, + 44.641536000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.58534399999999, + 185.00889599999999, + 44.641536000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.60556800000001, + 186.55436800000001, + 43.935231999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.60556800000001, + 186.55436800000001, + 43.935231999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.60761600000001, + 188.10649599999999, + 43.248128000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.60761600000001, + 188.10649599999999, + 43.248128000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.59072, + 189.66528, + 42.581760000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.59072, + 189.66528, + 42.581760000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.55488, + 191.23071999999999, + 41.938175999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.55488, + 191.23071999999999, + 41.938175999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.50009600000001, + 192.80307199999999, + 41.319423999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.50009600000001, + 192.80307199999999, + 41.319423999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.42585600000001, + 194.38182399999999, + 40.727552000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.42585600000001, + 194.38182399999999, + 40.727552000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.33139199999999, + 195.96774400000001, + 40.164096000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.33139199999999, + 195.96774400000001, + 40.164096000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.21644800000001, + 197.56031999999999, + 39.630848, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.21644800000001, + 197.56031999999999, + 39.630848, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.08127999999999, + 199.15955199999999, + 39.130879999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.08127999999999, + 199.15955199999999, + 39.130879999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.92563200000001, + 200.765184, + 38.666752000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.92563200000001, + 200.765184, + 38.666752000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.749504, + 202.37747200000001, + 38.240512000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.749504, + 202.37747200000001, + 38.240512000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.55238399999999, + 203.995904, + 37.85472, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.55238399999999, + 203.995904, + 37.85472, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.334272, + 205.62047999999999, + 37.511423999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.334272, + 205.62047999999999, + 37.511423999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.09388799999999, + 207.25222400000001, + 37.211391999999996, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.09388799999999, + 207.25222400000001, + 37.211391999999996, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.83097599999999, + 208.890368, + 36.956927999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.83097599999999, + 208.890368, + 36.956927999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.54630399999999, + 210.53465600000001, + 36.750591999999997, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.54630399999999, + 210.53465600000001, + 36.750591999999997, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.24038400000001, + 212.18457599999999, + 36.593919999999997, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.24038400000001, + 212.18457599999999, + 36.593919999999997, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.911936, + 213.84064000000001, + 36.487167999999997, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.911936, + 213.84064000000001, + 36.487167999999997, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.559168, + 215.503872, + 36.429568000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.559168, + 215.503872, + 36.429568000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.18464, + 217.172224, + 36.423423999999997, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.18464, + 217.172224, + 36.423423999999997, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 250.78886399999999, + 218.845696, + 36.467967999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 250.78886399999999, + 218.845696, + 36.467967999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 250.36671999999999, + 220.52659199999999, + 36.558847999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 250.36671999999999, + 220.52659199999999, + 36.558847999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 249.92384000000001, + 222.212096, + 36.697856000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 249.92384000000001, + 222.212096, + 36.697856000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 249.45740799999999, + 223.903232, + 36.879615999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 249.45740799999999, + 223.903232, + 36.879615999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 248.96768, + 225.59999999999999, + 37.100287999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 248.96768, + 225.59999999999999, + 37.100287999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 248.45644799999999, + 227.301376, + 37.355263999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 248.45644799999999, + 227.301376, + 37.355263999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 247.92140800000001, + 229.00838400000001, + 37.635584000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 247.92140800000001, + 229.00838400000001, + 37.635584000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 247.365376, + 230.71974399999999, + 37.934080000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 247.365376, + 230.71974399999999, + 37.934080000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 246.789376, + 232.43520000000001, + 38.238720000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 246.789376, + 232.43520000000001, + 38.238720000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 246.190336, + 234.15603200000001, + 38.533119999999997, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 246.190336, + 234.15603200000001, + 38.533119999999997, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 245.574656, + 235.88019199999999, + 38.800896000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 245.574656, + 235.88019199999999, + 38.800896000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 244.942848, + 237.60691199999999, + 39.016703999999997, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 244.942848, + 237.60691199999999, + 39.016703999999997, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 244.297472, + 239.33644799999999, + 39.147776, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 244.297472, + 239.33644799999999, + 39.147776, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 243.64185599999999, + 241.06777600000001, + 39.148800000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 243.64185599999999, + 241.06777600000001, + 39.148800000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 242.98265599999999, + 242.79936000000001, + 38.957568000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 242.98265599999999, + 242.79936000000001, + 38.957568000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 242.33011200000001, + 244.52864, + 38.483967999999997, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 242.33011200000001, + 244.52864, + 38.483967999999997, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 241.702912, + 246.250496, + 37.596415999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 241.702912, + 246.250496, + 37.596415999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 241.12537599999999, + 247.95903999999999, + 36.084735999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 241.12537599999999, + 247.95903999999999, + 36.084735999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 240.64384000000001, + 249.64044799999999, + 33.619456, + 100 + ] + } + } + ], + "weights" : [ + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803 + ] + }, + "field" : "high_water_arrival_hour", + "minimumBreak" : 3, + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignLeft", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0, + "zeroPad" : true + }, + "showInAscendingOrder" : true, + "heading" : "High Water Arrival Hour", + "sampleSize" : 10000, + "useDefaultSymbol" : true, + "defaultSymbolPatch" : "Default", + "defaultSymbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 204, + 204, + 204, + 100 + ] + } + } + ] + } + }, + "defaultLabel" : "Insufficient Data", + "polygonSymbolColorTarget" : "Fill", + "normalizationType" : "Nothing", + "exclusionLabel" : "", + "exclusionSymbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 255, + 0, + 0, + 100 + ] + } + } + ] + } + }, + "useExclusionSymbol" : false, + "exclusionSymbolPatch" : "Default", + "visualVariables" : [ + { + "type" : "CIMSizeVisualVariable", + "authoringInfo" : { + "type" : "CIMVisualVariableAuthoringInfo", + "minSliderValue" : 1, + "maxSliderValue" : 10, + "heading" : "Strm_Order" + }, + "randomMax" : 1, + "minSize" : 0.33000000000000002, + "maxSize" : 2, + "minValue" : 1, + "maxValue" : 10, + "valueRepresentation" : "Radius", + "variableType" : "Graduated", + "valueShape" : "Unknown", + "axis" : "HeightAxis", + "normalizationType" : "Nothing", + "valueExpressionInfo" : { + "type" : "CIMExpressionInfo", + "title" : "Custom", + "expression" : "$feature.Strm_Order", + "returnType" : "Default" + } + } + ] + }, + "scaleSymbols" : true, + "snappable" : true + }, + { + "type" : "CIMFeatureLayer", + "name" : "10 Days - High Water Arrival Time", + "uRI" : "CIMPATH=m_medium_range_high_water_arrival_time_forecast___alaska/cessing_publish_mrf_gfs_10day_high_water_arrival_time_ak.xml", + "sourceModifiedTime" : { + "type" : "TimeInstant" + }, + "useSourceMetadata" : true, + "description" : "vizprocessing.publish.mrf_gfs_10day_high_water_arrival_time_ak", + "layerElevation" : { + "type" : "CIMLayerElevationSurface", + "mapElevationID" : "{FCF29520-3856-4F53-BAE3-FD7F7ACE8797}" + }, + "expanded" : true, + "layerType" : "Operational", + "showLegends" : true, + "visibility" : true, + "displayCacheType" : "Permanent", + "maxDisplayCacheAge" : 5, + "popupInfo" : { + "type" : "CIMPopupInfo", + "title" : "{feature_id}: {name}", + "mediaInfos" : [ + { + "type" : "CIMTableMediaInfo", + "refreshRateUnit" : "esriTimeUnitsSeconds", + "rowSpan" : 1, + "columnSpan" : 1, + "fields" : [ + "update_time", + "feature_id", + "name", + "strm_order", + "huc6", + "nwm_vers", + "reference_time", + "t_bank", + "below_bank_return_hour", + "duration", + "bank_flow", + "max_flow" + ], + "useLayerFields" : true + } + ], + "gridLayout" : { + "type" : "CIMPopupLayout", + "columnWidths" : [ + 100 + ], + "borderWidth" : 0, + "borderColor" : { + "type" : "CIMRGBColor", + "values" : [ + 0, + 0, + 0, + 100 + ] + } + } + }, + "showPopups" : true, + "serviceLayerID" : -1, + "refreshRate" : -1, + "refreshRateUnit" : "esriTimeUnitsSeconds", + "blendingMode" : "Alpha", + "autoGenerateFeatureTemplates" : true, + "featureElevationExpression" : "0", + "featureTable" : { + "type" : "CIMFeatureTable", + "displayField" : "name", + "editable" : true, + "dataConnection" : { + "type" : "CIMSqlQueryDataConnection", + "workspaceConnectionString" : "ENCRYPTED_PASSWORD=00022e6848544c666f5538424f74397a7a6d643151354375344f6735576b4c57415444694a53466e336262506f79454b596d583363635a7a6e472b62624f6f6b5a6b30302a00;SERVER=hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;INSTANCE=sde:postgresql:hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;DBCLIENT=postgresql;DB_CONNECTION_PROPERTIES=hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;DATABASE=vizprocessing;USER=viz_proc_admin_rw_user;AUTHENTICATION_MODE=DBMS", + "workspaceFactory" : "SDE", + "dataset" : "vizprocessing.publish.%mrf_gfs_10day_high_water_arrival_time_ak", + "datasetType" : "esriDTFeatureClass", + "sqlQuery" : "select oid,feature_id,feature_id_str,name,strm_order,huc6,state,nwm_vers,reference_time,high_water_arrival_hour,high_water_arrival_time,below_bank_return_hour,below_bank_return_time,duration,high_water_threshold,max_flow,update_time,geom from vizprocessing.publish.mrf_gfs_10day_high_water_arrival_time_ak", + "srid" : "3857", + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + }, + "oIDFields" : "feature_id_str", + "geometryType" : "esriGeometryPolyline", + "extent" : { + "xmin" : -17222900.2084, + "ymin" : 8098950.33820000291, + "xmax" : -15618685.2129, + "ymax" : 9254145.48420000076, + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + } + }, + "queryFields" : [ + { + "name" : "oid", + "type" : "esriFieldTypeDouble", + "alias" : "oid" + }, + { + "name" : "feature_id", + "type" : "esriFieldTypeDouble", + "alias" : "feature_id" + }, + { + "name" : "feature_id_str", + "type" : "esriFieldTypeString", + "alias" : "feature_id_str", + "length" : 60000 + }, + { + "name" : "name", + "type" : "esriFieldTypeString", + "alias" : "name", + "length" : 60000 + }, + { + "name" : "strm_order", + "type" : "esriFieldTypeInteger", + "alias" : "strm_order" + }, + { + "name" : "huc6", + "type" : "esriFieldTypeString", + "alias" : "huc6", + "length" : 60000 + }, + { + "name" : "state", + "type" : "esriFieldTypeString", + "alias" : "state", + "length" : 60000 + }, + { + "name" : "nwm_vers", + "type" : "esriFieldTypeDouble", + "alias" : "nwm_vers" + }, + { + "name" : "reference_time", + "type" : "esriFieldTypeString", + "alias" : "reference_time", + "length" : 60000 + }, + { + "name" : "high_water_arrival_hour", + "type" : "esriFieldTypeInteger", + "alias" : "high_water_arrival_hour" + }, + { + "name" : "high_water_arrival_time", + "type" : "esriFieldTypeString", + "alias" : "high_water_arrival_time", + "length" : 60000 + }, + { + "name" : "below_bank_return_hour", + "type" : "esriFieldTypeString", + "alias" : "below_bank_return_hour", + "length" : 60000 + }, + { + "name" : "below_bank_return_time", + "type" : "esriFieldTypeString", + "alias" : "below_bank_return_time", + "length" : 60000 + }, + { + "name" : "duration", + "type" : "esriFieldTypeString", + "alias" : "duration", + "length" : 60000 + }, + { + "name" : "high_water_threshold", + "type" : "esriFieldTypeDouble", + "alias" : "high_water_threshold" + }, + { + "name" : "max_flow", + "type" : "esriFieldTypeDouble", + "alias" : "max_flow" + }, + { + "name" : "update_time", + "type" : "esriFieldTypeString", + "alias" : "update_time", + "length" : 60000 + }, + { + "name" : "geom", + "type" : "esriFieldTypeGeometry", + "alias" : "geom", + "geometryDef" : { + "avgNumPoints" : 0, + "geometryType" : "esriGeometryPolyline", + "hasM" : false, + "hasZ" : false, + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + } + } + } + ], + "spatialStorageType" : 8 + }, + "studyAreaSpatialRel" : "esriSpatialRelUndefined", + "searchOrder" : "esriSearchOrderSpatial" + }, + "htmlPopupEnabled" : true, + "selectable" : true, + "featureCacheType" : "Session", + "displayFiltersType" : "ByScale", + "featureBlendingMode" : "Alpha", + "labelClasses" : [ + { + "type" : "CIMLabelClass", + "expression" : "$feature.Name", + "expressionEngine" : "Arcade", + "featuresToLabel" : "AllVisibleFeatures", + "maplexLabelPlacementProperties" : { + "type" : "CIMMaplexLabelPlacementProperties", + "featureType" : "Line", + "avoidPolygonHoles" : true, + "canOverrunFeature" : true, + "canPlaceLabelOutsidePolygon" : true, + "canRemoveOverlappingLabel" : true, + "canStackLabel" : true, + "connectionType" : "MinimizeLabels", + "constrainOffset" : "AboveLine", + "contourAlignmentType" : "Page", + "contourLadderType" : "Straight", + "contourMaximumAngle" : 90, + "enableConnection" : true, + "featureWeight" : 0, + "fontHeightReductionLimit" : 4, + "fontHeightReductionStep" : 0.5, + "fontWidthReductionLimit" : 90, + "fontWidthReductionStep" : 5, + "graticuleAlignmentType" : "Straight", + "keyNumberGroupName" : "Default", + "labelBuffer" : 15, + "labelLargestPolygon" : true, + "labelPriority" : -1, + "labelStackingProperties" : { + "type" : "CIMMaplexLabelStackingProperties", + "stackAlignment" : "ChooseBest", + "maximumNumberOfLines" : 3, + "minimumNumberOfCharsPerLine" : 3, + "maximumNumberOfCharsPerLine" : 24, + "separators" : [ + { + "type" : "CIMMaplexStackingSeparator", + "separator" : " ", + "splitAfter" : true + }, + { + "type" : "CIMMaplexStackingSeparator", + "separator" : ",", + "visible" : true, + "splitAfter" : true + } + ] + }, + "lineFeatureType" : "General", + "linePlacementMethod" : "OffsetStraightFromLine", + "maximumLabelOverrun" : 16, + "maximumLabelOverrunUnit" : "Point", + "minimumFeatureSizeUnit" : "Map", + "multiPartOption" : "OneLabelPerFeature", + "offsetAlongLineProperties" : { + "type" : "CIMMaplexOffsetAlongLineProperties", + "placementMethod" : "BestPositionAlongLine", + "labelAnchorPoint" : "CenterOfLabel", + "distanceUnit" : "Map", + "useLineDirection" : true + }, + "pointExternalZonePriorities" : { + "type" : "CIMMaplexExternalZonePriorities", + "aboveLeft" : 4, + "aboveCenter" : 2, + "aboveRight" : 1, + "centerRight" : 3, + "belowRight" : 5, + "belowCenter" : 7, + "belowLeft" : 8, + "centerLeft" : 6 + }, + "pointPlacementMethod" : "AroundPoint", + "polygonAnchorPointType" : "GeometricCenter", + "polygonBoundaryWeight" : 0, + "polygonExternalZones" : { + "type" : "CIMMaplexExternalZonePriorities", + "aboveLeft" : 4, + "aboveCenter" : 2, + "aboveRight" : 1, + "centerRight" : 3, + "belowRight" : 5, + "belowCenter" : 7, + "belowLeft" : 8, + "centerLeft" : 6 + }, + "polygonFeatureType" : "General", + "polygonInternalZones" : { + "type" : "CIMMaplexInternalZonePriorities", + "center" : 1 + }, + "polygonPlacementMethod" : "CurvedInPolygon", + "primaryOffset" : 1, + "primaryOffsetUnit" : "Point", + "removeExtraWhiteSpace" : true, + "repetitionIntervalUnit" : "Map", + "rotationProperties" : { + "type" : "CIMMaplexRotationProperties", + "rotationType" : "Arithmetic", + "alignmentType" : "Straight" + }, + "secondaryOffset" : 100, + "strategyPriorities" : { + "type" : "CIMMaplexStrategyPriorities", + "stacking" : 1, + "overrun" : 2, + "fontCompression" : 3, + "fontReduction" : 4, + "abbreviation" : 5 + }, + "thinningDistanceUnit" : "Point", + "truncationMarkerCharacter" : ".", + "truncationMinimumLength" : 1, + "truncationPreferredCharacters" : "aeiou", + "polygonAnchorPointPerimeterInsetUnit" : "Point" + }, + "name" : "Class 1", + "priority" : -1, + "standardLabelPlacementProperties" : { + "type" : "CIMStandardLabelPlacementProperties", + "featureType" : "Line", + "featureWeight" : "Low", + "labelWeight" : "High", + "numLabelsOption" : "OneLabelPerName", + "lineLabelPosition" : { + "type" : "CIMStandardLineLabelPosition", + "above" : true, + "inLine" : true, + "parallel" : true + }, + "lineLabelPriorities" : { + "type" : "CIMStandardLineLabelPriorities", + "aboveStart" : 3, + "aboveAlong" : 3, + "aboveEnd" : 3, + "centerStart" : 3, + "centerAlong" : 3, + "centerEnd" : 3, + "belowStart" : 3, + "belowAlong" : 3, + "belowEnd" : 3 + }, + "pointPlacementMethod" : "AroundPoint", + "pointPlacementPriorities" : { + "type" : "CIMStandardPointPlacementPriorities", + "aboveLeft" : 2, + "aboveCenter" : 2, + "aboveRight" : 1, + "centerLeft" : 3, + "centerRight" : 2, + "belowLeft" : 3, + "belowCenter" : 3, + "belowRight" : 2 + }, + "rotationType" : "Arithmetic", + "polygonPlacementMethod" : "AlwaysHorizontal" + }, + "textSymbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMTextSymbol", + "blockProgression" : "TTB", + "depth3D" : 1, + "extrapolateBaselines" : true, + "fontEffects" : "Normal", + "fontEncoding" : "Unicode", + "fontFamilyName" : "Tahoma", + "fontStyleName" : "Regular", + "fontType" : "Unspecified", + "haloSize" : 1, + "height" : 10, + "hinting" : "Default", + "horizontalAlignment" : "Left", + "kerning" : true, + "letterWidth" : 100, + "ligatures" : true, + "lineGapType" : "ExtraLeading", + "symbol" : { + "type" : "CIMPolygonSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidFill", + "enable" : true, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 0, + 0, + 0, + 100 + ] + } + } + ] + }, + "textCase" : "Normal", + "textDirection" : "LTR", + "verticalAlignment" : "Bottom", + "verticalGlyphOrientation" : "Right", + "wordSpacing" : 100, + "billboardMode3D" : "FaceNearPlane" + } + }, + "useCodedValue" : true, + "visibility" : true, + "iD" : -1 + } + ], + "renderer" : { + "type" : "CIMClassBreaksRenderer", + "barrierWeight" : "High", + "breaks" : [ + { + "type" : "CIMClassBreak", + "label" : "Ongoing or 3 - 12 hours", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 245, + 200, + 224, + 100 + ] + } + } + ] + } + }, + "upperBound" : 12 + }, + { + "type" : "CIMClassBreak", + "label" : "13 - 24 hours", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 245, + 152, + 182, + 100 + ] + } + } + ] + } + }, + "upperBound" : 24 + }, + { + "type" : "CIMClassBreak", + "label" : "25 - 48 hours", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 205, + 90, + 153, + 100 + ] + } + } + ] + } + }, + "upperBound" : 48 + }, + { + "type" : "CIMClassBreak", + "label" : "3 days", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 127, + 77, + 121, + 100 + ] + } + } + ] + } + }, + "upperBound" : 72 + }, + { + "type" : "CIMClassBreak", + "label" : "4 - 5 days", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 0, + 112, + 255, + 100 + ] + } + } + ] + } + }, + "upperBound" : 120 + }, + { + "type" : "CIMClassBreak", + "label" : "6 - 7 days", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 32, + 18, + 214, + 100 + ] + } + } + ] + } + }, + "upperBound" : 168 + }, + { + "type" : "CIMClassBreak", + "label" : "8 - 10 days", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 32, + 18, + 77, + 100 + ] + } + } + ] + } + }, + "upperBound" : 240 + } + ], + "classBreakType" : "GraduatedColor", + "classificationMethod" : "Manual", + "colorRamp" : { + "type" : "CIMMultipartColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "colorRamps" : [ + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 12.898047999999999, + 7.6295679999999999, + 135.16159999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 16.265215999999999, + 7.277056, + 136.47974400000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 16.265215999999999, + 7.277056, + 136.47974400000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 19.290368000000001, + 6.9647360000000003, + 137.729792, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 19.290368000000001, + 6.9647360000000003, + 137.729792, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 22.072831999999998, + 6.6879999999999997, + 138.92044799999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 22.072831999999998, + 6.6879999999999997, + 138.92044799999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 24.673024000000002, + 6.44224, + 140.058368, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 24.673024000000002, + 6.44224, + 140.058368, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 27.130880000000001, + 6.2231040000000002, + 141.15020799999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 27.130880000000001, + 6.2231040000000002, + 141.15020799999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 29.471744000000001, + 6.0303360000000001, + 142.19980799999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 29.471744000000001, + 6.0303360000000001, + 142.19980799999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 31.719168, + 5.8567679999999998, + 143.212288, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 31.719168, + 5.8567679999999998, + 143.212288, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 33.889536, + 5.698048, + 144.19200000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 33.889536, + 5.698048, + 144.19200000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 35.994368000000001, + 5.5518720000000004, + 145.141504, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 35.994368000000001, + 5.5518720000000004, + 145.141504, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 38.043391999999997, + 5.4154239999999998, + 146.063872, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 38.043391999999997, + 5.4154239999999998, + 146.063872, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 40.043776000000001, + 5.2866559999999998, + 146.96064000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 40.043776000000001, + 5.2866559999999998, + 146.96064000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 42.001919999999998, + 5.1637760000000004, + 147.83436800000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 42.001919999999998, + 5.1637760000000004, + 147.83436800000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 43.922944000000001, + 5.0447360000000003, + 148.68633600000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 43.922944000000001, + 5.0447360000000003, + 148.68633600000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 45.811199999999999, + 4.9285119999999996, + 149.51782399999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 45.811199999999999, + 4.9285119999999996, + 149.51782399999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 47.670527999999997, + 4.8135680000000001, + 150.33036799999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 47.670527999999997, + 4.8135680000000001, + 150.33036799999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 49.503743999999998, + 4.6986239999999997, + 151.12448000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 49.503743999999998, + 4.6986239999999997, + 151.12448000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 51.313920000000003, + 4.5829120000000003, + 151.901184, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 51.313920000000003, + 4.5829120000000003, + 151.901184, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 53.103360000000002, + 4.4651519999999998, + 152.661248, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 53.103360000000002, + 4.4651519999999998, + 152.661248, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 54.873600000000003, + 4.3450879999999996, + 153.40518399999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 54.873600000000003, + 4.3450879999999996, + 153.40518399999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 56.626432000000001, + 4.2232320000000003, + 154.13324800000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 56.626432000000001, + 4.2232320000000003, + 154.13324800000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 58.363647999999998, + 4.0977920000000001, + 154.84595200000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 58.363647999999998, + 4.0977920000000001, + 154.84595200000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 60.087040000000002, + 3.968512, + 155.54355200000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 60.087040000000002, + 3.968512, + 155.54355200000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 61.797376, + 3.8346239999999998, + 156.226304, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 61.797376, + 3.8346239999999998, + 156.226304, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 63.496192000000001, + 3.6963840000000001, + 156.89420799999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 63.496192000000001, + 3.6963840000000001, + 156.89420799999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 65.184511999999998, + 3.5537920000000001, + 157.54726400000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 65.184511999999998, + 3.5537920000000001, + 157.54726400000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 66.862848, + 3.4068480000000001, + 158.185216, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 66.862848, + 3.4068480000000001, + 158.185216, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 68.531968000000006, + 3.255296, + 158.80857599999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 68.531968000000006, + 3.255296, + 158.80857599999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 70.192896000000005, + 3.099904, + 159.416832, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 70.192896000000005, + 3.099904, + 159.416832, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 71.845888000000002, + 2.940928, + 160.009728, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 71.845888000000002, + 2.940928, + 160.009728, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 73.491455999999999, + 2.77888, + 160.58752000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 73.491455999999999, + 2.77888, + 160.58752000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 75.130368000000004, + 2.614528, + 161.14944, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 75.130368000000004, + 2.614528, + 161.14944, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 76.762879999999996, + 2.447616, + 161.69574399999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 76.762879999999996, + 2.447616, + 161.69574399999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 78.389759999999995, + 2.278912, + 162.22566399999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 78.389759999999995, + 2.278912, + 162.22566399999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 80.011008000000004, + 2.1091839999999999, + 162.73920000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 80.011008000000004, + 2.1091839999999999, + 162.73920000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 81.627135999999993, + 1.9394560000000001, + 163.23584, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 81.627135999999993, + 1.9394560000000001, + 163.23584, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 83.238399999999999, + 1.77024, + 163.71507199999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 83.238399999999999, + 1.77024, + 163.71507199999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 84.845056, + 1.602816, + 164.176896, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 84.845056, + 1.602816, + 164.176896, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 86.446848000000003, + 1.4382079999999999, + 164.620544, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 86.446848000000003, + 1.4382079999999999, + 164.620544, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 88.044799999999995, + 1.2776959999999999, + 165.04576, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 88.044799999999995, + 1.2776959999999999, + 165.04576, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 89.638400000000004, + 1.1217919999999999, + 165.45228800000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 89.638400000000004, + 1.1217919999999999, + 165.45228800000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 91.227903999999995, + 0.97228800000000004, + 165.83936, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 91.227903999999995, + 0.97228800000000004, + 165.83936, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 92.813568000000004, + 0.83020799999999995, + 166.20671999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 92.813568000000004, + 0.83020799999999995, + 166.20671999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 94.395647999999994, + 0.69734399999999996, + 166.553856, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 94.395647999999994, + 0.69734399999999996, + 166.553856, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 95.973631999999995, + 0.57472000000000001, + 166.880256, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 95.973631999999995, + 0.57472000000000001, + 166.880256, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 97.548032000000006, + 0.46438400000000002, + 167.185408, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 97.548032000000006, + 0.46438400000000002, + 167.185408, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 99.118848, + 0.36710399999999999, + 167.469312, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 99.118848, + 0.36710399999999999, + 167.469312, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 100.685824, + 0.28518399999999999, + 167.73094399999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 100.685824, + 0.28518399999999999, + 167.73094399999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 102.249216, + 0.21990399999999999, + 167.97004799999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 102.249216, + 0.21990399999999999, + 167.97004799999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 103.808768, + 0.173568, + 168.18611200000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 103.808768, + 0.173568, + 168.18611200000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 105.36448, + 0.14771200000000001, + 168.37888000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 105.36448, + 0.14771200000000001, + 168.37888000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 106.916352, + 0.14438400000000001, + 168.54784000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 106.916352, + 0.14438400000000001, + 168.54784000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 108.464384, + 0.165376, + 168.692736, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 108.464384, + 0.165376, + 168.692736, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 110.008064, + 0.21273600000000001, + 168.81280000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 110.008064, + 0.21273600000000001, + 168.81280000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 111.547904, + 0.28851199999999999, + 168.90803199999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 111.547904, + 0.28851199999999999, + 168.90803199999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 113.083392, + 0.39423999999999998, + 168.977664, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 113.083392, + 0.39423999999999998, + 168.977664, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 114.614784, + 0.53247999999999995, + 169.02144000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 114.614784, + 0.53247999999999995, + 169.02144000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 116.141312, + 0.70528000000000002, + 169.03935999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 116.141312, + 0.70528000000000002, + 169.03935999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 117.663488, + 0.91494399999999998, + 169.030912, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 117.663488, + 0.91494399999999998, + 169.030912, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 119.1808, + 1.1635200000000001, + 168.99558400000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 119.1808, + 1.1635200000000001, + 168.99558400000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 120.692992, + 1.453568, + 168.93363199999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 120.692992, + 1.453568, + 168.93363199999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 122.200064, + 1.78688, + 168.84454400000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 122.200064, + 1.78688, + 168.84454400000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 123.70175999999999, + 2.1657600000000001, + 168.72832, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 123.70175999999999, + 2.1657600000000001, + 168.72832, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 125.19808, + 2.5925120000000001, + 168.58470399999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 125.19808, + 2.5925120000000001, + 168.58470399999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 126.688512, + 3.0694400000000002, + 168.41344000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 126.688512, + 3.0694400000000002, + 168.41344000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 128.17356799999999, + 3.5980799999999999, + 168.214528, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 128.17356799999999, + 3.5980799999999999, + 168.214528, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 129.65222399999999, + 4.1812480000000001, + 167.98771199999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 129.65222399999999, + 4.1812480000000001, + 167.98771199999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 131.12473600000001, + 4.8212479999999998, + 167.73350400000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 131.12473600000001, + 4.8212479999999998, + 167.73350400000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 132.59084799999999, + 5.5201279999999997, + 167.45190400000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 132.59084799999999, + 5.5201279999999997, + 167.45190400000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 134.050048, + 6.2801920000000004, + 167.14265599999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 134.050048, + 6.2801920000000004, + 167.14265599999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 135.50233600000001, + 7.1032320000000002, + 166.806016, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 135.50233600000001, + 7.1032320000000002, + 166.806016, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 136.947712, + 7.9915520000000004, + 166.44224, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 136.947712, + 7.9915520000000004, + 166.44224, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 138.38592, + 8.9472000000000005, + 166.05184, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 138.38592, + 8.9472000000000005, + 166.05184, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 139.816192, + 9.9722240000000006, + 165.63455999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 139.816192, + 9.9722240000000006, + 165.63455999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 141.23903999999999, + 11.042816, + 165.190912, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 141.23903999999999, + 11.042816, + 165.190912, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 142.65420800000001, + 12.116736, + 164.721408, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 142.65420800000001, + 12.116736, + 164.721408, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 144.06092799999999, + 13.19552, + 164.226304, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 144.06092799999999, + 13.19552, + 164.226304, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 145.45945599999999, + 14.279168, + 163.70611199999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 145.45945599999999, + 14.279168, + 163.70611199999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 146.84979200000001, + 15.367167999999999, + 163.16134400000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 146.84979200000001, + 15.367167999999999, + 163.16134400000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 148.231424, + 16.459776000000002, + 162.59225599999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 148.231424, + 16.459776000000002, + 162.59225599999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 149.604096, + 17.556224, + 161.99987200000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 149.604096, + 17.556224, + 161.99987200000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 150.968064, + 18.656768, + 161.38444799999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 150.968064, + 18.656768, + 161.38444799999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 152.32281599999999, + 19.760639999999999, + 160.74675199999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 152.32281599999999, + 19.760639999999999, + 160.74675199999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 153.66809599999999, + 20.868096000000001, + 160.08755199999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 153.66809599999999, + 20.868096000000001, + 160.08755199999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 155.00416000000001, + 21.978624, + 159.40761599999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 155.00416000000001, + 21.978624, + 159.40761599999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 156.33075199999999, + 23.092224000000002, + 158.70745600000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 156.33075199999999, + 23.092224000000002, + 158.70745600000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 157.64787200000001, + 24.208383999999999, + 157.98784000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 157.64787200000001, + 24.208383999999999, + 157.98784000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 158.955264, + 25.327103999999999, + 157.24979200000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 158.955264, + 25.327103999999999, + 157.24979200000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 160.25267199999999, + 26.447872, + 156.49408, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 160.25267199999999, + 26.447872, + 156.49408, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 161.54035200000001, + 27.570944000000001, + 155.72147200000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 161.54035200000001, + 27.570944000000001, + 155.72147200000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 162.818048, + 28.695551999999999, + 154.93248, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 162.818048, + 28.695551999999999, + 154.93248, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 164.08550399999999, + 29.821952, + 154.12863999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 164.08550399999999, + 29.821952, + 154.12863999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 165.343232, + 30.949888000000001, + 153.30995200000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 165.343232, + 30.949888000000001, + 153.30995200000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 166.59097600000001, + 32.079104000000001, + 152.47795199999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 166.59097600000001, + 32.079104000000001, + 152.47795199999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 167.82848000000001, + 33.209600000000002, + 151.633152, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 167.82848000000001, + 33.209600000000002, + 151.633152, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 169.055744, + 34.340864000000003, + 150.77657600000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 169.055744, + 34.340864000000003, + 150.77657600000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 170.27302399999999, + 35.472895999999999, + 149.90899200000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 170.27302399999999, + 35.472895999999999, + 149.90899200000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 171.48032000000001, + 36.605952000000002, + 149.03142399999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 171.48032000000001, + 36.605952000000002, + 149.03142399999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 172.67763199999999, + 37.739263999999999, + 148.14412799999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 172.67763199999999, + 37.739263999999999, + 148.14412799999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 173.86496, + 38.873088000000003, + 147.24838399999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 173.86496, + 38.873088000000003, + 147.24838399999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 175.04204799999999, + 40.007168, + 146.34495999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 175.04204799999999, + 40.007168, + 146.34495999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 176.209408, + 41.141503999999998, + 145.43436800000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 176.209408, + 41.141503999999998, + 145.43436800000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 177.36704, + 42.276096000000003, + 144.51763199999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 177.36704, + 42.276096000000003, + 144.51763199999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 178.51494400000001, + 43.410688, + 143.59526399999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 178.51494400000001, + 43.410688, + 143.59526399999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 179.65286399999999, + 44.545279999999998, + 142.667776, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 179.65286399999999, + 44.545279999999998, + 142.667776, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 180.78156799999999, + 45.679872000000003, + 141.73619199999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 180.78156799999999, + 45.679872000000003, + 141.73619199999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 181.900544, + 46.814208000000001, + 140.80102400000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 181.900544, + 46.814208000000001, + 140.80102400000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 183.01004800000001, + 47.948543999999998, + 139.862528, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 183.01004800000001, + 47.948543999999998, + 139.862528, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 184.11033599999999, + 49.082624000000003, + 138.921728, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 184.11033599999999, + 49.082624000000003, + 138.921728, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 185.20166399999999, + 50.216448, + 137.97913600000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 185.20166399999999, + 50.216448, + 137.97913600000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 186.28352000000001, + 51.350015999999997, + 137.035008, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 186.28352000000001, + 51.350015999999997, + 137.035008, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 187.356672, + 52.483328, + 136.089856, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 187.356672, + 52.483328, + 136.089856, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 188.42086399999999, + 53.616383999999996, + 135.14444800000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 188.42086399999999, + 53.616383999999996, + 135.14444800000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 189.476608, + 54.749184, + 134.199296, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 189.476608, + 54.749184, + 134.199296, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 190.523392, + 55.881728000000003, + 133.254144, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 190.523392, + 55.881728000000003, + 133.254144, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 191.561984, + 57.014015999999998, + 132.309504, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 191.561984, + 57.014015999999998, + 132.309504, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 192.591872, + 58.146048, + 131.36614399999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 192.591872, + 58.146048, + 131.36614399999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 193.61382399999999, + 59.278080000000003, + 130.42380800000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 193.61382399999999, + 59.278080000000003, + 130.42380800000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 194.62758400000001, + 60.409855999999998, + 129.48326399999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 194.62758400000001, + 60.409855999999998, + 129.48326399999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 195.633408, + 61.541376, + 128.54425599999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 195.633408, + 61.541376, + 128.54425599999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 196.63104000000001, + 62.673152000000002, + 127.60704, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 196.63104000000001, + 62.673152000000002, + 127.60704, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 197.62124800000001, + 63.804671999999997, + 126.672128, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 197.62124800000001, + 63.804671999999997, + 126.672128, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 198.60377600000001, + 64.936447999999999, + 125.73977600000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 198.60377600000001, + 64.936447999999999, + 125.73977600000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 199.57862399999999, + 66.067967999999993, + 124.809984, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 199.57862399999999, + 66.067967999999993, + 124.809984, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 200.54604800000001, + 67.200000000000003, + 123.883008, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 200.54604800000001, + 67.200000000000003, + 123.883008, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 201.50604799999999, + 68.332031999999998, + 122.958592, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 201.50604799999999, + 68.332031999999998, + 122.958592, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 202.45887999999999, + 69.464320000000001, + 122.036736, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 202.45887999999999, + 69.464320000000001, + 122.036736, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 203.40454399999999, + 70.597120000000004, + 121.117952, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 203.40454399999999, + 70.597120000000004, + 121.117952, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 204.34329600000001, + 71.730431999999993, + 120.201728, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 204.34329600000001, + 71.730431999999993, + 120.201728, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 205.27488, + 72.864255999999997, + 119.28857600000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 205.27488, + 72.864255999999997, + 119.28857600000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 206.19955200000001, + 73.998592000000002, + 118.37824000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 206.19955200000001, + 73.998592000000002, + 118.37824000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 207.117312, + 75.133696, + 117.47072, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 207.117312, + 75.133696, + 117.47072, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 208.028672, + 76.269568000000007, + 116.56652800000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 208.028672, + 76.269568000000007, + 116.56652800000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 208.932864, + 77.406208000000007, + 115.664896, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 208.932864, + 77.406208000000007, + 115.664896, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 209.830656, + 78.543871999999993, + 114.766336, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 209.830656, + 78.543871999999993, + 114.766336, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 210.72179199999999, + 79.682816000000003, + 113.87033599999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 210.72179199999999, + 79.682816000000003, + 113.87033599999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 211.606528, + 80.822783999999999, + 112.976896, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 211.606528, + 80.822783999999999, + 112.976896, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 212.48460800000001, + 81.964032000000003, + 112.086016, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 212.48460800000001, + 81.964032000000003, + 112.086016, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 213.356032, + 83.106560000000002, + 111.19769599999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 213.356032, + 83.106560000000002, + 111.19769599999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 214.221056, + 84.250879999999995, + 110.31168, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 214.221056, + 84.250879999999995, + 110.31168, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 215.07968, + 85.396479999999997, + 109.42847999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 215.07968, + 85.396479999999997, + 109.42847999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 215.931904, + 86.543871999999993, + 108.54732799999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 215.931904, + 86.543871999999993, + 108.54732799999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 216.777728, + 87.693055999999999, + 107.668224, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 216.777728, + 87.693055999999999, + 107.668224, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 217.616896, + 88.844288000000006, + 106.791168, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 217.616896, + 88.844288000000006, + 106.791168, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 218.44966400000001, + 89.997568000000001, + 105.915904, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 218.44966400000001, + 89.997568000000001, + 105.915904, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 219.27603199999999, + 91.152895999999998, + 105.04243200000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 219.27603199999999, + 91.152895999999998, + 105.04243200000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 220.096, + 92.310528000000005, + 104.17075199999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 220.096, + 92.310528000000005, + 104.17075199999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 220.909312, + 93.470464000000007, + 103.300864, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 220.909312, + 93.470464000000007, + 103.300864, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 221.715968, + 94.632959999999997, + 102.432256, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 221.715968, + 94.632959999999997, + 102.432256, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 222.51596799999999, + 95.798271999999997, + 101.56492799999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 222.51596799999999, + 95.798271999999997, + 101.56492799999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 223.30956800000001, + 96.966144, + 100.69888, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 223.30956800000001, + 96.966144, + 100.69888, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 224.09625600000001, + 98.136831999999998, + 99.833855999999997, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 224.09625600000001, + 98.136831999999998, + 99.833855999999997, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 224.87628799999999, + 99.310592, + 98.9696, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 224.87628799999999, + 99.310592, + 98.9696, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 225.64940799999999, + 100.487424, + 98.106623999999996, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 225.64940799999999, + 100.487424, + 98.106623999999996, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 226.415616, + 101.66758400000001, + 97.244159999999994, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 226.415616, + 101.66758400000001, + 97.244159999999994, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 227.17491200000001, + 102.851072, + 96.382463999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 227.17491200000001, + 102.851072, + 96.382463999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 227.92704000000001, + 104.037888, + 95.521280000000004, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 227.92704000000001, + 104.037888, + 95.521280000000004, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 228.672, + 105.22828800000001, + 94.660607999999996, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 228.672, + 105.22828800000001, + 94.660607999999996, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 229.409536, + 106.42227200000001, + 93.800191999999996, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 229.409536, + 106.42227200000001, + 93.800191999999996, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 230.139904, + 107.620352, + 92.940032000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 230.139904, + 107.620352, + 92.940032000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 230.86259200000001, + 108.822272, + 92.080128000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 230.86259200000001, + 108.822272, + 92.080128000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 231.577856, + 110.028032, + 91.220224000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 231.577856, + 110.028032, + 91.220224000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 232.28543999999999, + 111.23814400000001, + 90.360320000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 232.28543999999999, + 111.23814400000001, + 90.360320000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 232.98508799999999, + 112.452608, + 89.500159999999994, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 232.98508799999999, + 112.452608, + 89.500159999999994, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 233.67679999999999, + 113.671424, + 88.640255999999994, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 233.67679999999999, + 113.671424, + 88.640255999999994, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 234.36057600000001, + 114.894592, + 87.779839999999993, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 234.36057600000001, + 114.894592, + 87.779839999999993, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 235.03590399999999, + 116.12236799999999, + 86.919424000000006, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 235.03590399999999, + 116.12236799999999, + 86.919424000000006, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 235.70278400000001, + 117.354752, + 86.058496000000005, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 235.70278400000001, + 117.354752, + 86.058496000000005, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 236.36147199999999, + 118.59225600000001, + 85.197056000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 236.36147199999999, + 118.59225600000001, + 85.197056000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 237.0112, + 119.834368, + 84.335359999999994, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 237.0112, + 119.834368, + 84.335359999999994, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 237.65222399999999, + 121.08159999999999, + 83.473151999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 237.65222399999999, + 121.08159999999999, + 83.473151999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 238.284288, + 122.333952, + 82.610432000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 238.284288, + 122.333952, + 82.610432000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 238.90739199999999, + 123.59168, + 81.747200000000007, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 238.90739199999999, + 123.59168, + 81.747200000000007, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 239.52127999999999, + 124.85427199999999, + 80.883712000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 239.52127999999999, + 124.85427199999999, + 80.883712000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 240.12544, + 126.12275200000001, + 80.019199999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 240.12544, + 126.12275200000001, + 80.019199999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 240.72012799999999, + 127.39635199999999, + 79.154432, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 240.72012799999999, + 127.39635199999999, + 79.154432, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 241.30508800000001, + 128.67558399999999, + 78.288895999999994, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 241.30508800000001, + 128.67558399999999, + 78.288895999999994, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 241.880064, + 129.96044800000001, + 77.422848000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 241.880064, + 129.96044800000001, + 77.422848000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 242.44505599999999, + 131.250944, + 76.556544000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 242.44505599999999, + 131.250944, + 76.556544000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 242.99955199999999, + 132.54732799999999, + 75.689471999999995, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 242.99955199999999, + 132.54732799999999, + 75.689471999999995, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 243.54406399999999, + 133.84960000000001, + 74.822400000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 243.54406399999999, + 133.84960000000001, + 74.822400000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 244.07756800000001, + 135.15776, + 73.954048, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 244.07756800000001, + 135.15776, + 73.954048, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 244.60032000000001, + 136.47180800000001, + 73.085440000000006, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 244.60032000000001, + 136.47180800000001, + 73.085440000000006, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 245.112064, + 137.792, + 72.216576000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 245.112064, + 137.792, + 72.216576000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 245.61254400000001, + 139.118336, + 71.347455999999994, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 245.61254400000001, + 139.118336, + 71.347455999999994, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 246.10201599999999, + 140.450816, + 70.478080000000006, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 246.10201599999999, + 140.450816, + 70.478080000000006, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 246.57996800000001, + 141.78944000000001, + 69.608704000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 246.57996800000001, + 141.78944000000001, + 69.608704000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 247.046144, + 143.134208, + 68.739328, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 247.046144, + 143.134208, + 68.739328, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 247.50028800000001, + 144.485376, + 67.870208000000005, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 247.50028800000001, + 144.485376, + 67.870208000000005, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 247.942656, + 145.8432, + 67.000575999999995, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 247.942656, + 145.8432, + 67.000575999999995, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 248.37248, + 147.207168, + 66.131200000000007, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 248.37248, + 147.207168, + 66.131200000000007, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 248.78976, + 148.57779199999999, + 65.262336000000005, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 248.78976, + 148.57779199999999, + 65.262336000000005, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 249.19449599999999, + 149.95481599999999, + 64.394239999999996, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 249.19449599999999, + 149.95481599999999, + 64.394239999999996, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 249.586432, + 151.33824000000001, + 63.526656000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 249.586432, + 151.33824000000001, + 63.526656000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 249.96556799999999, + 152.72832, + 62.660352000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 249.96556799999999, + 152.72832, + 62.660352000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 250.33113599999999, + 154.125056, + 61.795071999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 250.33113599999999, + 154.125056, + 61.795071999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 250.68364800000001, + 155.52819199999999, + 60.931328000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 250.68364800000001, + 155.52819199999999, + 60.931328000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.022336, + 156.937984, + 60.069375999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.022336, + 156.937984, + 60.069375999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.34745599999999, + 158.354432, + 59.209471999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.34745599999999, + 158.354432, + 59.209471999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.65849600000001, + 159.777536, + 58.351872, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.65849600000001, + 159.777536, + 58.351872, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.95494400000001, + 161.207808, + 57.496319999999997, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.95494400000001, + 161.207808, + 57.496319999999997, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.237056, + 162.64447999999999, + 56.643839999999997, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.237056, + 162.64447999999999, + 56.643839999999997, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.50432000000001, + 164.088064, + 55.794688000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.50432000000001, + 164.088064, + 55.794688000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.756992, + 165.538048, + 54.949888000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.756992, + 165.538048, + 54.949888000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.99456000000001, + 166.99520000000001, + 54.109183999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.99456000000001, + 166.99520000000001, + 54.109183999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.216768, + 168.45900800000001, + 53.273600000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.216768, + 168.45900800000001, + 53.273600000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.42336, + 169.929472, + 52.443904000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.42336, + 169.929472, + 52.443904000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.61433600000001, + 171.406848, + 51.620351999999997, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.61433600000001, + 171.406848, + 51.620351999999997, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.78944000000001, + 172.89088000000001, + 50.803967999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.78944000000001, + 172.89088000000001, + 50.803967999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.94816, + 174.38182399999999, + 49.995519999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.94816, + 174.38182399999999, + 49.995519999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.090496, + 175.87968000000001, + 49.195520000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.090496, + 175.87968000000001, + 49.195520000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.21619200000001, + 177.38419200000001, + 48.405504000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.21619200000001, + 177.38419200000001, + 48.405504000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.324736, + 178.89536000000001, + 47.626496000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.324736, + 178.89536000000001, + 47.626496000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.41638399999999, + 180.41369599999999, + 46.859008000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.41638399999999, + 180.41369599999999, + 46.859008000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.49036799999999, + 181.93868800000001, + 46.104832000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.49036799999999, + 181.93868800000001, + 46.104832000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.546944, + 183.470336, + 45.365248000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.546944, + 183.470336, + 45.365248000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.58534399999999, + 185.00889599999999, + 44.641536000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.58534399999999, + 185.00889599999999, + 44.641536000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.60556800000001, + 186.55436800000001, + 43.935231999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.60556800000001, + 186.55436800000001, + 43.935231999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.60761600000001, + 188.10649599999999, + 43.248128000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.60761600000001, + 188.10649599999999, + 43.248128000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.59072, + 189.66528, + 42.581760000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.59072, + 189.66528, + 42.581760000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.55488, + 191.23071999999999, + 41.938175999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.55488, + 191.23071999999999, + 41.938175999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.50009600000001, + 192.80307199999999, + 41.319423999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.50009600000001, + 192.80307199999999, + 41.319423999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.42585600000001, + 194.38182399999999, + 40.727552000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.42585600000001, + 194.38182399999999, + 40.727552000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.33139199999999, + 195.96774400000001, + 40.164096000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.33139199999999, + 195.96774400000001, + 40.164096000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.21644800000001, + 197.56031999999999, + 39.630848, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.21644800000001, + 197.56031999999999, + 39.630848, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.08127999999999, + 199.15955199999999, + 39.130879999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 254.08127999999999, + 199.15955199999999, + 39.130879999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.92563200000001, + 200.765184, + 38.666752000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.92563200000001, + 200.765184, + 38.666752000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.749504, + 202.37747200000001, + 38.240512000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.749504, + 202.37747200000001, + 38.240512000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.55238399999999, + 203.995904, + 37.85472, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.55238399999999, + 203.995904, + 37.85472, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.334272, + 205.62047999999999, + 37.511423999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.334272, + 205.62047999999999, + 37.511423999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.09388799999999, + 207.25222400000001, + 37.211391999999996, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 253.09388799999999, + 207.25222400000001, + 37.211391999999996, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.83097599999999, + 208.890368, + 36.956927999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.83097599999999, + 208.890368, + 36.956927999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.54630399999999, + 210.53465600000001, + 36.750591999999997, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.54630399999999, + 210.53465600000001, + 36.750591999999997, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.24038400000001, + 212.18457599999999, + 36.593919999999997, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 252.24038400000001, + 212.18457599999999, + 36.593919999999997, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.911936, + 213.84064000000001, + 36.487167999999997, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.911936, + 213.84064000000001, + 36.487167999999997, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.559168, + 215.503872, + 36.429568000000003, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.559168, + 215.503872, + 36.429568000000003, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.18464, + 217.172224, + 36.423423999999997, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 251.18464, + 217.172224, + 36.423423999999997, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 250.78886399999999, + 218.845696, + 36.467967999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 250.78886399999999, + 218.845696, + 36.467967999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 250.36671999999999, + 220.52659199999999, + 36.558847999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 250.36671999999999, + 220.52659199999999, + 36.558847999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 249.92384000000001, + 222.212096, + 36.697856000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 249.92384000000001, + 222.212096, + 36.697856000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 249.45740799999999, + 223.903232, + 36.879615999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 249.45740799999999, + 223.903232, + 36.879615999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 248.96768, + 225.59999999999999, + 37.100287999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 248.96768, + 225.59999999999999, + 37.100287999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 248.45644799999999, + 227.301376, + 37.355263999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 248.45644799999999, + 227.301376, + 37.355263999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 247.92140800000001, + 229.00838400000001, + 37.635584000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 247.92140800000001, + 229.00838400000001, + 37.635584000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 247.365376, + 230.71974399999999, + 37.934080000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 247.365376, + 230.71974399999999, + 37.934080000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 246.789376, + 232.43520000000001, + 38.238720000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 246.789376, + 232.43520000000001, + 38.238720000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 246.190336, + 234.15603200000001, + 38.533119999999997, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 246.190336, + 234.15603200000001, + 38.533119999999997, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 245.574656, + 235.88019199999999, + 38.800896000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 245.574656, + 235.88019199999999, + 38.800896000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 244.942848, + 237.60691199999999, + 39.016703999999997, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 244.942848, + 237.60691199999999, + 39.016703999999997, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 244.297472, + 239.33644799999999, + 39.147776, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 244.297472, + 239.33644799999999, + 39.147776, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 243.64185599999999, + 241.06777600000001, + 39.148800000000001, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 243.64185599999999, + 241.06777600000001, + 39.148800000000001, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 242.98265599999999, + 242.79936000000001, + 38.957568000000002, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 242.98265599999999, + 242.79936000000001, + 38.957568000000002, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 242.33011200000001, + 244.52864, + 38.483967999999997, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 242.33011200000001, + 244.52864, + 38.483967999999997, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 241.702912, + 246.250496, + 37.596415999999998, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 241.702912, + 246.250496, + 37.596415999999998, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 241.12537599999999, + 247.95903999999999, + 36.084735999999999, + 100 + ] + } + }, + { + "type" : "CIMLinearContinuousColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "fromColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 241.12537599999999, + 247.95903999999999, + 36.084735999999999, + 100 + ] + }, + "toColor" : { + "type" : "CIMRGBColor", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "values" : [ + 240.64384000000001, + 249.64044799999999, + 33.619456, + 100 + ] + } + } + ], + "weights" : [ + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803, + 0.0039215686274509803 + ] + }, + "field" : "high_water_arrival_hour", + "minimumBreak" : 3, + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignLeft", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0, + "zeroPad" : true + }, + "showInAscendingOrder" : true, + "heading" : "High Water Arrival Hour", + "sampleSize" : 10000, + "useDefaultSymbol" : true, + "defaultSymbolPatch" : "Default", + "defaultSymbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 204, + 204, + 204, + 100 + ] + } + } + ] + } + }, + "defaultLabel" : "Insufficient Data", + "polygonSymbolColorTarget" : "Fill", + "normalizationType" : "Nothing", + "exclusionLabel" : "", + "exclusionSymbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 255, + 0, + 0, + 100 + ] + } + } + ] + } + }, + "useExclusionSymbol" : false, + "exclusionSymbolPatch" : "Default", + "visualVariables" : [ + { + "type" : "CIMSizeVisualVariable", + "authoringInfo" : { + "type" : "CIMVisualVariableAuthoringInfo", + "minSliderValue" : 1, + "maxSliderValue" : 10, + "heading" : "Strm_Order" + }, + "randomMax" : 1, + "minSize" : 0.33000000000000002, + "maxSize" : 2, + "minValue" : 1, + "maxValue" : 10, + "valueRepresentation" : "Radius", + "variableType" : "Graduated", + "valueShape" : "Unknown", + "axis" : "HeightAxis", + "normalizationType" : "Nothing", + "valueExpressionInfo" : { + "type" : "CIMExpressionInfo", + "title" : "Custom", + "expression" : "$feature.Strm_Order", + "returnType" : "Default" + } + } + ] + }, + "scaleSymbols" : true, + "snappable" : true + }, + { + "type" : "CIMFeatureLayer", + "name" : "10 Days - High Water End Time", + "uRI" : "CIMPATH=m_medium_range_high_water_arrival_time_forecast___alaska/cessing_publish_mrf_gfs_10day_high_water_arrival_time_ak3.xml", + "sourceModifiedTime" : { + "type" : "TimeInstant" + }, + "metadataURI" : "CIMPATH=Metadata/d463385880b2aad41236ff40f194c043.xml", + "useSourceMetadata" : true, + "description" : "vizprocessing.publish.mrf_gfs_10day_high_water_arrival_time_ak", + "layerElevation" : { + "type" : "CIMLayerElevationSurface", + "mapElevationID" : "{FCF29520-3856-4F53-BAE3-FD7F7ACE8797}" + }, + "expanded" : true, + "layerType" : "Operational", + "showLegends" : true, + "visibility" : false, + "displayCacheType" : "Permanent", + "maxDisplayCacheAge" : 5, + "showPopups" : true, + "serviceLayerID" : -1, + "refreshRate" : -1, + "refreshRateUnit" : "esriTimeUnitsSeconds", + "blendingMode" : "Alpha", + "autoGenerateFeatureTemplates" : true, + "featureElevationExpression" : "0", + "featureTable" : { + "type" : "CIMFeatureTable", + "displayField" : "name", + "editable" : true, + "dataConnection" : { + "type" : "CIMSqlQueryDataConnection", + "workspaceConnectionString" : "ENCRYPTED_PASSWORD=00022e6848544c666f5538424f74397a7a6d643151354375344f6735576b4c57415444694a53466e336262506f79454b596d583363635a7a6e472b62624f6f6b5a6b30302a00;SERVER=hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;INSTANCE=sde:postgresql:hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;DBCLIENT=postgresql;DB_CONNECTION_PROPERTIES=hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;DATABASE=vizprocessing;USER=viz_proc_admin_rw_user;AUTHENTICATION_MODE=DBMS", + "workspaceFactory" : "SDE", + "dataset" : "vizprocessing.publish.%mrf_gfs_10day_high_water_arrival_time_ak", + "datasetType" : "esriDTFeatureClass", + "sqlQuery" : "select oid,feature_id,feature_id_str,name,strm_order,huc6,state,nwm_vers,reference_time,high_water_arrival_hour,high_water_arrival_time,below_bank_return_hour,below_bank_return_time,duration,high_water_threshold,max_flow,update_time,geom from vizprocessing.publish.mrf_gfs_10day_high_water_arrival_time_ak", + "srid" : "3857", + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + }, + "oIDFields" : "feature_id_str", + "geometryType" : "esriGeometryPolyline", + "extent" : { + "xmin" : -17222900.2084, + "ymin" : 8098950.33820000291, + "xmax" : -15618685.2129, + "ymax" : 9254145.48420000076, + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + } + }, + "queryFields" : [ + { + "name" : "oid", + "type" : "esriFieldTypeDouble", + "alias" : "oid" + }, + { + "name" : "feature_id", + "type" : "esriFieldTypeDouble", + "alias" : "feature_id" + }, + { + "name" : "feature_id_str", + "type" : "esriFieldTypeString", + "alias" : "feature_id_str", + "length" : 60000 + }, + { + "name" : "name", + "type" : "esriFieldTypeString", + "alias" : "name", + "length" : 60000 + }, + { + "name" : "strm_order", + "type" : "esriFieldTypeInteger", + "alias" : "strm_order" + }, + { + "name" : "huc6", + "type" : "esriFieldTypeString", + "alias" : "huc6", + "length" : 60000 + }, + { + "name" : "state", + "type" : "esriFieldTypeString", + "alias" : "state", + "length" : 60000 + }, + { + "name" : "nwm_vers", + "type" : "esriFieldTypeDouble", + "alias" : "nwm_vers" + }, + { + "name" : "reference_time", + "type" : "esriFieldTypeString", + "alias" : "reference_time", + "length" : 60000 + }, + { + "name" : "high_water_arrival_hour", + "type" : "esriFieldTypeInteger", + "alias" : "high_water_arrival_hour" + }, + { + "name" : "high_water_arrival_time", + "type" : "esriFieldTypeString", + "alias" : "high_water_arrival_time", + "length" : 60000 + }, + { + "name" : "below_bank_return_hour", + "type" : "esriFieldTypeString", + "alias" : "below_bank_return_hour", + "length" : 60000 + }, + { + "name" : "below_bank_return_time", + "type" : "esriFieldTypeString", + "alias" : "below_bank_return_time", + "length" : 60000 + }, + { + "name" : "duration", + "type" : "esriFieldTypeString", + "alias" : "duration", + "length" : 60000 + }, + { + "name" : "high_water_threshold", + "type" : "esriFieldTypeDouble", + "alias" : "high_water_threshold" + }, + { + "name" : "max_flow", + "type" : "esriFieldTypeDouble", + "alias" : "max_flow" + }, + { + "name" : "update_time", + "type" : "esriFieldTypeString", + "alias" : "update_time", + "length" : 60000 + }, + { + "name" : "geom", + "type" : "esriFieldTypeGeometry", + "alias" : "geom", + "geometryDef" : { + "avgNumPoints" : 0, + "geometryType" : "esriGeometryPolyline", + "hasM" : false, + "hasZ" : false, + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + } + } + } + ], + "spatialStorageType" : 8 + }, + "studyAreaSpatialRel" : "esriSpatialRelUndefined", + "searchOrder" : "esriSearchOrderSpatial" + }, + "htmlPopupEnabled" : true, + "selectable" : true, + "featureCacheType" : "Session", + "displayFiltersType" : "ByScale", + "featureBlendingMode" : "Alpha", + "labelClasses" : [ + { + "type" : "CIMLabelClass", + "expression" : "$feature.Name", + "expressionEngine" : "Arcade", + "featuresToLabel" : "AllVisibleFeatures", + "maplexLabelPlacementProperties" : { + "type" : "CIMMaplexLabelPlacementProperties", + "featureType" : "Line", + "avoidPolygonHoles" : true, + "canOverrunFeature" : true, + "canPlaceLabelOutsidePolygon" : true, + "canRemoveOverlappingLabel" : true, + "canStackLabel" : true, + "connectionType" : "MinimizeLabels", + "constrainOffset" : "AboveLine", + "contourAlignmentType" : "Page", + "contourLadderType" : "Straight", + "contourMaximumAngle" : 90, + "enableConnection" : true, + "featureWeight" : 0, + "fontHeightReductionLimit" : 4, + "fontHeightReductionStep" : 0.5, + "fontWidthReductionLimit" : 90, + "fontWidthReductionStep" : 5, + "graticuleAlignmentType" : "Straight", + "keyNumberGroupName" : "Default", + "labelBuffer" : 15, + "labelLargestPolygon" : true, + "labelPriority" : -1, + "labelStackingProperties" : { + "type" : "CIMMaplexLabelStackingProperties", + "stackAlignment" : "ChooseBest", + "maximumNumberOfLines" : 3, + "minimumNumberOfCharsPerLine" : 3, + "maximumNumberOfCharsPerLine" : 24, + "separators" : [ + { + "type" : "CIMMaplexStackingSeparator", + "separator" : " ", + "splitAfter" : true + }, + { + "type" : "CIMMaplexStackingSeparator", + "separator" : ",", + "visible" : true, + "splitAfter" : true + } + ] + }, + "lineFeatureType" : "General", + "linePlacementMethod" : "OffsetStraightFromLine", + "maximumLabelOverrun" : 16, + "maximumLabelOverrunUnit" : "Point", + "minimumFeatureSizeUnit" : "Map", + "multiPartOption" : "OneLabelPerFeature", + "offsetAlongLineProperties" : { + "type" : "CIMMaplexOffsetAlongLineProperties", + "placementMethod" : "BestPositionAlongLine", + "labelAnchorPoint" : "CenterOfLabel", + "distanceUnit" : "Map", + "useLineDirection" : true + }, + "pointExternalZonePriorities" : { + "type" : "CIMMaplexExternalZonePriorities", + "aboveLeft" : 4, + "aboveCenter" : 2, + "aboveRight" : 1, + "centerRight" : 3, + "belowRight" : 5, + "belowCenter" : 7, + "belowLeft" : 8, + "centerLeft" : 6 + }, + "pointPlacementMethod" : "AroundPoint", + "polygonAnchorPointType" : "GeometricCenter", + "polygonBoundaryWeight" : 0, + "polygonExternalZones" : { + "type" : "CIMMaplexExternalZonePriorities", + "aboveLeft" : 4, + "aboveCenter" : 2, + "aboveRight" : 1, + "centerRight" : 3, + "belowRight" : 5, + "belowCenter" : 7, + "belowLeft" : 8, + "centerLeft" : 6 + }, + "polygonFeatureType" : "General", + "polygonInternalZones" : { + "type" : "CIMMaplexInternalZonePriorities", + "center" : 1 + }, + "polygonPlacementMethod" : "CurvedInPolygon", + "primaryOffset" : 1, + "primaryOffsetUnit" : "Point", + "removeExtraWhiteSpace" : true, + "repetitionIntervalUnit" : "Map", + "rotationProperties" : { + "type" : "CIMMaplexRotationProperties", + "rotationType" : "Arithmetic", + "alignmentType" : "Straight" + }, + "secondaryOffset" : 100, + "strategyPriorities" : { + "type" : "CIMMaplexStrategyPriorities", + "stacking" : 1, + "overrun" : 2, + "fontCompression" : 3, + "fontReduction" : 4, + "abbreviation" : 5 + }, + "thinningDistanceUnit" : "Point", + "truncationMarkerCharacter" : ".", + "truncationMinimumLength" : 1, + "truncationPreferredCharacters" : "aeiou", + "polygonAnchorPointPerimeterInsetUnit" : "Point" + }, + "name" : "Class 1", + "priority" : -1, + "standardLabelPlacementProperties" : { + "type" : "CIMStandardLabelPlacementProperties", + "featureType" : "Line", + "featureWeight" : "Low", + "labelWeight" : "High", + "numLabelsOption" : "OneLabelPerName", + "lineLabelPosition" : { + "type" : "CIMStandardLineLabelPosition", + "above" : true, + "inLine" : true, + "parallel" : true + }, + "lineLabelPriorities" : { + "type" : "CIMStandardLineLabelPriorities", + "aboveStart" : 3, + "aboveAlong" : 3, + "aboveEnd" : 3, + "centerStart" : 3, + "centerAlong" : 3, + "centerEnd" : 3, + "belowStart" : 3, + "belowAlong" : 3, + "belowEnd" : 3 + }, + "pointPlacementMethod" : "AroundPoint", + "pointPlacementPriorities" : { + "type" : "CIMStandardPointPlacementPriorities", + "aboveLeft" : 2, + "aboveCenter" : 2, + "aboveRight" : 1, + "centerLeft" : 3, + "centerRight" : 2, + "belowLeft" : 3, + "belowCenter" : 3, + "belowRight" : 2 + }, + "rotationType" : "Arithmetic", + "polygonPlacementMethod" : "AlwaysHorizontal" + }, + "textSymbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMTextSymbol", + "blockProgression" : "TTB", + "depth3D" : 1, + "extrapolateBaselines" : true, + "fontEffects" : "Normal", + "fontEncoding" : "Unicode", + "fontFamilyName" : "Tahoma", + "fontStyleName" : "Regular", + "fontType" : "Unspecified", + "haloSize" : 1, + "height" : 10, + "hinting" : "Default", + "horizontalAlignment" : "Left", + "kerning" : true, + "letterWidth" : 100, + "ligatures" : true, + "lineGapType" : "ExtraLeading", + "symbol" : { + "type" : "CIMPolygonSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidFill", + "enable" : true, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 0, + 0, + 0, + 100 + ] + } + } + ] + }, + "textCase" : "Normal", + "textDirection" : "LTR", + "verticalAlignment" : "Bottom", + "verticalGlyphOrientation" : "Right", + "wordSpacing" : 100, + "billboardMode3D" : "FaceNearPlane" + } + }, + "useCodedValue" : true, + "visibility" : true, + "iD" : -1 + } + ], + "renderer" : { + "type" : "CIMUniqueValueRenderer", + "visualVariables" : [ + { + "type" : "CIMSizeVisualVariable", + "authoringInfo" : { + "type" : "CIMVisualVariableAuthoringInfo", + "minSliderValue" : 1, + "maxSliderValue" : 10, + "heading" : "Strm_Order" + }, + "randomMax" : 1, + "minSize" : 0.33000000000000002, + "maxSize" : 2, + "minValue" : 1, + "maxValue" : 10, + "valueRepresentation" : "Radius", + "variableType" : "Graduated", + "valueShape" : "Unknown", + "axis" : "HeightAxis", + "normalizationType" : "Nothing", + "valueExpressionInfo" : { + "type" : "CIMExpressionInfo", + "title" : "Custom", + "expression" : "$feature.Strm_Order", + "returnType" : "Default" + } + } + ], + "colorRamp" : { + "type" : "CIMRandomHSVColorRamp", + "colorSpace" : { + "type" : "CIMICCColorSpace", + "url" : "Default RGB" + }, + "maxH" : 360, + "minS" : 15, + "maxS" : 30, + "minV" : 99, + "maxV" : 100, + "minAlpha" : 100, + "maxAlpha" : 100 + }, + "defaultLabel" : "", + "defaultSymbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 130, + 130, + 130, + 100 + ] + } + } + ] + } + }, + "defaultSymbolPatch" : "Default", + "fields" : [ + "below_bank_return_hour" + ], + "groups" : [ + { + "type" : "CIMUniqueValueGroup", + "classes" : [ + { + "type" : "CIMUniqueValueClass", + "editable" : true, + "label" : "3 - 12 hours", + "patch" : "LineHorizontal", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 245, + 200, + 224, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "3" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "6" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "9" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "12" + ] + } + ], + "visible" : true + }, + { + "type" : "CIMUniqueValueClass", + "editable" : true, + "label" : "13 - 24 hours", + "patch" : "LineHorizontal", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 245, + 152, + 182, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "15" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "18" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "21" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "24" + ] + } + ], + "visible" : true + }, + { + "type" : "CIMUniqueValueClass", + "editable" : true, + "label" : "25 - 48 hours", + "patch" : "LineHorizontal", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 205, + 90, + 153, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "27" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "30" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "33" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "36" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "39" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "42" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "45" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "48" + ] + } + ], + "visible" : true + }, + { + "type" : "CIMUniqueValueClass", + "editable" : true, + "label" : "3 days", + "patch" : "LineHorizontal", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 127, + 77, + 121, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "51" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "54" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "57" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "60" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "63" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "66" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "69" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "72" + ] + } + ], + "visible" : true + }, + { + "type" : "CIMUniqueValueClass", + "editable" : true, + "label" : "4 - 5 days", + "patch" : "LineHorizontal", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 0, + 112, + 255, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "75" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "78" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "81" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "84" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "87" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "90" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "93" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "96" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "99" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "102" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "105" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "108" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "111" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "114" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "117" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "120" + ] + } + ], + "visible" : true + }, + { + "type" : "CIMUniqueValueClass", + "editable" : true, + "label" : "6 - 7 days", + "patch" : "LineHorizontal", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 32, + 18, + 214, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "123" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "126" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "129" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "132" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "135" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "138" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "141" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "144" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "147" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "150" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "153" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "156" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "159" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "162" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "165" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "168" + ] + } + ], + "visible" : true + }, + { + "type" : "CIMUniqueValueClass", + "editable" : true, + "label" : "8 - 10 days or Beyond Forecast", + "patch" : "LineHorizontal", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 32, + 18, + 77, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "171" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "174" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "177" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "180" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "183" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "186" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "189" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "192" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "195" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "198" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "201" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "204" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "207" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "210" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "213" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "216" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "219" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "222" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "225" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "228" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "231" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "234" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "237" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "240" + ] + }, + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "> 10 days" + ] + } + ], + "visible" : true + }, + { + "type" : "CIMUniqueValueClass", + "label" : "Insufficient Data", + "patch" : "Default", + "symbol" : { + "type" : "CIMSymbolReference", + "symbol" : { + "type" : "CIMLineSymbol", + "symbolLayers" : [ + { + "type" : "CIMSolidStroke", + "enable" : true, + "capStyle" : "Round", + "joinStyle" : "Round", + "lineStyle3D" : "Strip", + "miterLimit" : 10, + "width" : 1, + "color" : { + "type" : "CIMRGBColor", + "values" : [ + 204.05000000000001, + 204, + 204, + 100 + ] + } + } + ] + } + }, + "values" : [ + { + "type" : "CIMUniqueValue", + "fieldValues" : [ + "Insufficient Data" + ] + } + ], + "visible" : true + } + ], + "heading" : "High Water End Hour" + } + ], + "polygonSymbolColorTarget" : "Fill" + }, + "scaleSymbols" : true, + "snappable" : true + } + ], + "binaryReferences" : [ + { + "type" : "CIMBinaryReference", + "uRI" : "CIMPATH=Metadata/506ae7ae3419851be60fe0eaf2b23632.xml", + "data" : "\r\n20240820215040001.0TRUEvizprocessing.publish.mrf_gfs_10day_high_water_arrival_time_akvizprocessing.publish.mrf_gfs_10day_high_water_arrival_time_ak\r\n" + }, + { + "type" : "CIMBinaryReference", + "uRI" : "CIMPATH=Metadata/cb35495819848e8909896b8bb0a1cfb0.xml", + "data" : "\r\n20180402145011001.0TRUEMap/9j/4AAQSkZJRgABAQEAAAAAAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0a\r\nHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIy\r\nMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCACFAMgDAREA\r\nAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQA\r\nAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3\r\nODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWm\r\np6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEA\r\nAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSEx\r\nBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElK\r\nU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3\r\nuLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD3+gAo\r\nAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgA\r\noAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACg\r\nAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKAC\r\ngAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKA\r\nCgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAK\r\nACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoA\r\nKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAo\r\nAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgA\r\noAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACg\r\nAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKAC\r\ngAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKA\r\nCgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAK\r\nACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoA\r\n/9k=\r\n" + }, + { + "type" : "CIMBinaryReference", + "uRI" : "CIMPATH=Metadata/d463385880b2aad41236ff40f194c043.xml", + "data" : "\r\n20240820215044001.0TRUEvizprocessing.publish.mrf_gfs_10day_high_water_arrival_time_akvizprocessing.publish.mrf_gfs_10day_high_water_arrival_time_ak\r\n" + } + ] +} \ No newline at end of file diff --git a/Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak_noaa.yml b/Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak_noaa.yml new file mode 100644 index 00000000..bd40bbf0 --- /dev/null +++ b/Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak_noaa.yml @@ -0,0 +1,13 @@ +service: mrf_gfs_10day_high_water_arrival_time_ak +summary: Medium-Range GFS 10 Day High Water Arrival Time Forecast - Alaska +description: Depicts the forecast arrival time of high water over the next 10 days. This service is derived from the + medium-range GFS configuration of the National Water Model (NWM) over the Alaska domain. Shown are reaches that are + expected to have flow at or above the high water threshold over the next 10 days. Reaches are colored by the time + at which they are forecast to reach high water (calculated in 3 hour increments). High water thresholds + (regionally varied) were derived using the 43-year NWM v3.0 reanalysis simulation. Updated every 6 hours. +tags: arrival time, national water model, nwm, mrf, medium, range, conus +credits: National Water Model, NOAA/NWS National Water Center +egis_server: server +egis_folder: nwm +feature_service: false +public_service: false \ No newline at end of file From a5d0906ccc049801d0d3d976ea20880d50725de6 Mon Sep 17 00:00:00 2001 From: katherine powell Date: Tue, 20 Aug 2024 22:39:21 +0000 Subject: [PATCH 2/4] formatted field names and order in mapx --- ...10day_high_water_arrival_time_ak_noaa.mapx | 585 +++++++++++++++++- 1 file changed, 582 insertions(+), 3 deletions(-) diff --git a/Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak_noaa.mapx b/Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak_noaa.mapx index 4a5861ce..c7411968 100644 --- a/Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak_noaa.mapx +++ b/Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak_noaa.mapx @@ -193,7 +193,8 @@ "name" : "3 Days - High Water Arrival Time", "uRI" : "CIMPATH=m_medium_range_high_water_arrival_time_forecast___alaska/cessing_publish_mrf_gfs_10day_high_water_arrival_time_ak2.xml", "sourceModifiedTime" : { - "type" : "TimeInstant" + "type" : "TimeInstant", + "start" : 978307200000 }, "metadataURI" : "CIMPATH=Metadata/506ae7ae3419851be60fe0eaf2b23632.xml", "useSourceMetadata" : true, @@ -219,6 +220,198 @@ "type" : "CIMFeatureTable", "displayField" : "name", "editable" : true, + "fieldDescriptions" : [ + { + "type" : "CIMFieldDescription", + "alias" : "oid", + "fieldName" : "oid", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Name", + "fieldName" : "name", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "High Water Arrival Hour", + "fieldName" : "high_water_arrival_hour", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "High Water Arrival Time", + "fieldName" : "high_water_arrival_time", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "High Water Duration (hours)", + "fieldName" : "duration", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "High Water End Hour", + "fieldName" : "below_bank_return_hour", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "HIgh Water End Time", + "fieldName" : "below_bank_return_time", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "High Water Threshold", + "fieldName" : "high_water_threshold", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Max Streamflow (cfs)", + "fieldName" : "max_flow", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 3 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "NWM Feature ID", + "fieldName" : "feature_id_str", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "NWM Version", + "fieldName" : "nwm_vers", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "feature_id", + "fieldName" : "feature_id", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "visible" : false, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Reference Time", + "fieldName" : "reference_time", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "State", + "fieldName" : "state", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Stream Order", + "fieldName" : "strm_order", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Update Time", + "fieldName" : "update_time", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "USGS HUC6", + "fieldName" : "huc6", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "geom", + "fieldName" : "geom", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "ESRI_OID", + "fieldName" : "ESRI_OID", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "readOnly" : true, + "visible" : true, + "searchMode" : "Exact" + } + ], "dataConnection" : { "type" : "CIMSqlQueryDataConnection", "workspaceConnectionString" : "ENCRYPTED_PASSWORD=00022e6848544c666f5538424f74397a7a6d643151354375344f6735576b4c57415444694a53466e336262506f79454b596d583363635a7a6e472b62624f6f6b5a6b30302a00;SERVER=hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;INSTANCE=sde:postgresql:hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;DBCLIENT=postgresql;DB_CONNECTION_PROPERTIES=hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;DATABASE=vizprocessing;USER=viz_proc_admin_rw_user;AUTHENTICATION_MODE=DBMS", @@ -9564,7 +9757,8 @@ "name" : "10 Days - High Water Arrival Time", "uRI" : "CIMPATH=m_medium_range_high_water_arrival_time_forecast___alaska/cessing_publish_mrf_gfs_10day_high_water_arrival_time_ak.xml", "sourceModifiedTime" : { - "type" : "TimeInstant" + "type" : "TimeInstant", + "start" : 978307200000 }, "useSourceMetadata" : true, "description" : "vizprocessing.publish.mrf_gfs_10day_high_water_arrival_time_ak", @@ -9632,6 +9826,198 @@ "type" : "CIMFeatureTable", "displayField" : "name", "editable" : true, + "fieldDescriptions" : [ + { + "type" : "CIMFieldDescription", + "alias" : "oid", + "fieldName" : "oid", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Name", + "fieldName" : "name", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "High Water Arrival Hour", + "fieldName" : "high_water_arrival_hour", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "High Water Arrival Time", + "fieldName" : "high_water_arrival_time", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "High Water Duration (hours)", + "fieldName" : "duration", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "High Water End Hour", + "fieldName" : "below_bank_return_hour", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "High Water End Time", + "fieldName" : "below_bank_return_time", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "High Water Threshold", + "fieldName" : "high_water_threshold", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Max Streamflow (cfs)", + "fieldName" : "max_flow", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 3 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "feature_id", + "fieldName" : "feature_id", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "visible" : false, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "NWM Feature ID", + "fieldName" : "feature_id_str", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "NWM Version", + "fieldName" : "nwm_vers", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Reference Time", + "fieldName" : "reference_time", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "State", + "fieldName" : "state", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Stream Order", + "fieldName" : "strm_order", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Update Time", + "fieldName" : "update_time", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "USGS HUC6", + "fieldName" : "huc6", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "geom", + "fieldName" : "geom", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "ESRI_OID", + "fieldName" : "ESRI_OID", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "readOnly" : true, + "visible" : true, + "searchMode" : "Exact" + } + ], "dataConnection" : { "type" : "CIMSqlQueryDataConnection", "workspaceConnectionString" : "ENCRYPTED_PASSWORD=00022e6848544c666f5538424f74397a7a6d643151354375344f6735576b4c57415444694a53466e336262506f79454b596d583363635a7a6e472b62624f6f6b5a6b30302a00;SERVER=hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;INSTANCE=sde:postgresql:hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;DBCLIENT=postgresql;DB_CONNECTION_PROPERTIES=hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;DATABASE=vizprocessing;USER=viz_proc_admin_rw_user;AUTHENTICATION_MODE=DBMS", @@ -19009,7 +19395,8 @@ "name" : "10 Days - High Water End Time", "uRI" : "CIMPATH=m_medium_range_high_water_arrival_time_forecast___alaska/cessing_publish_mrf_gfs_10day_high_water_arrival_time_ak3.xml", "sourceModifiedTime" : { - "type" : "TimeInstant" + "type" : "TimeInstant", + "start" : 978307200000 }, "metadataURI" : "CIMPATH=Metadata/d463385880b2aad41236ff40f194c043.xml", "useSourceMetadata" : true, @@ -19035,6 +19422,198 @@ "type" : "CIMFeatureTable", "displayField" : "name", "editable" : true, + "fieldDescriptions" : [ + { + "type" : "CIMFieldDescription", + "alias" : "oid", + "fieldName" : "oid", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Name", + "fieldName" : "name", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "High Water Arrival Hour", + "fieldName" : "high_water_arrival_hour", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "High Water Arrival Time", + "fieldName" : "high_water_arrival_time", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "High Water Duration (hours)", + "fieldName" : "duration", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "High Water End Hour", + "fieldName" : "below_bank_return_hour", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "High Water End Time", + "fieldName" : "below_bank_return_time", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "High Water Threshold", + "fieldName" : "high_water_threshold", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Max Streamflow (cfs)", + "fieldName" : "max_flow", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 3 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "feature_id", + "fieldName" : "feature_id", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "visible" : false, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "NWM Feature ID", + "fieldName" : "feature_id_str", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "NWM Version", + "fieldName" : "nwm_vers", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 6 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Reference Time", + "fieldName" : "reference_time", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "State", + "fieldName" : "state", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Stream Order", + "fieldName" : "strm_order", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "Update Time", + "fieldName" : "update_time", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "USGS HUC6", + "fieldName" : "huc6", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "geom", + "fieldName" : "geom", + "visible" : true, + "searchMode" : "Exact" + }, + { + "type" : "CIMFieldDescription", + "alias" : "ESRI_OID", + "fieldName" : "ESRI_OID", + "numberFormat" : { + "type" : "CIMNumericFormat", + "alignmentOption" : "esriAlignRight", + "alignmentWidth" : 0, + "roundingOption" : "esriRoundNumberOfDecimals", + "roundingValue" : 0 + }, + "readOnly" : true, + "visible" : true, + "searchMode" : "Exact" + } + ], "dataConnection" : { "type" : "CIMSqlQueryDataConnection", "workspaceConnectionString" : "ENCRYPTED_PASSWORD=00022e6848544c666f5538424f74397a7a6d643151354375344f6735576b4c57415444694a53466e336262506f79454b596d583363635a7a6e472b62624f6f6b5a6b30302a00;SERVER=hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;INSTANCE=sde:postgresql:hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;DBCLIENT=postgresql;DB_CONNECTION_PROPERTIES=hv-vpp-ti-viz-processing.c4vzypepnkx3.us-east-1.rds.amazonaws.com;DATABASE=vizprocessing;USER=viz_proc_admin_rw_user;AUTHENTICATION_MODE=DBMS", From f639191ce9224c4db98b85c42af3d1c9ef3d2599 Mon Sep 17 00:00:00 2001 From: katherine powell Date: Tue, 20 Aug 2024 22:58:26 +0000 Subject: [PATCH 3/4] corrected the configuration assignment in product config yml --- .../mrf_gfs_10day_high_water_arrival_time_ak.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/LAMBDA/viz_functions/viz_initialize_pipeline/product_configs/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak.yml b/Core/LAMBDA/viz_functions/viz_initialize_pipeline/product_configs/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak.yml index 89cc749e..b18b094f 100644 --- a/Core/LAMBDA/viz_functions/viz_initialize_pipeline/product_configs/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak.yml +++ b/Core/LAMBDA/viz_functions/viz_initialize_pipeline/product_configs/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak.yml @@ -1,5 +1,5 @@ product: mrf_gfs_10day_high_water_arrival_time_ak -configuration: medium_range_mem1 +configuration: medium_range_alaska_mem1 product_type: "vector" run: true From e60b4b8979f2f3d9c99e5f8e31c3260d48bdfd7a Mon Sep 17 00:00:00 2001 From: NickChadwick-NOAA Date: Wed, 21 Aug 2024 13:17:09 -0500 Subject: [PATCH 4/4] Update mrf_gfs_10day_high_water_arrival_time_ak_noaa.yml --- .../mrf_gfs_10day_high_water_arrival_time_ak_noaa.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak_noaa.yml b/Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak_noaa.yml index bd40bbf0..f865ee05 100644 --- a/Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak_noaa.yml +++ b/Core/LAMBDA/viz_functions/viz_publish_service/services/medium_range_alaska_mem1/mrf_gfs_10day_high_water_arrival_time_ak_noaa.yml @@ -1,4 +1,4 @@ -service: mrf_gfs_10day_high_water_arrival_time_ak +service: mrf_gfs_10day_high_water_arrival_time_ak_noaa summary: Medium-Range GFS 10 Day High Water Arrival Time Forecast - Alaska description: Depicts the forecast arrival time of high water over the next 10 days. This service is derived from the medium-range GFS configuration of the National Water Model (NWM) over the Alaska domain. Shown are reaches that are @@ -10,4 +10,4 @@ credits: National Water Model, NOAA/NWS National Water Center egis_server: server egis_folder: nwm feature_service: false -public_service: false \ No newline at end of file +public_service: false