{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "ToolTipBuilder@783fee04" ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "class ToolTipBuilder implements IToolTipBuilder{\n", " @Override\n", " public String getToolTip(TreeMapNode node) { \n", " String tooltip = \"\";\n", " if (node.isLeaf()){\n", " Object userObject = node.getUserObject();\n", " if (userObject instanceof Map){\n", " tooltip+=\"Label: \"+ ((Map) userObject).get(\"label\");\n", " }else{\n", " tooltip+=\"Label: \"+ userObject.toString();\n", " }\n", " tooltip+=\"
\";\n", " tooltip+=\"Weight: \"+ node.getWeight();\n", " tooltip+=\"
\";\n", " tooltip+=\"Value: \"+ node.getLabelValue();\n", " }\n", " tooltip;\n", " }\n", "};\n", " \n", "toolTipBuilder = new ToolTipBuilder(); " ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "node = new TreeMapNode(\"0\");\n", "def node00 = new TreeMapNode(\"00\", 2, new DefaultValue(2));\n", "\n", "def node01 = new TreeMapNode(\"01\");\n", "node01.add(new TreeMapNode(\"011\", 1, new DefaultValue(1)))\n", "node01.add(new TreeMapNode(\"012\", 2, new DefaultValue(1)))\n", "node01.add(new TreeMapNode(\"013\", 3, new DefaultValue(1)))\n", "\n", "def node02 = new TreeMapNode(\"02\");\n", "node02.add(new TreeMapNode(\"020\", 2, new DefaultValue(2)))\n", "node02.add(new TreeMapNode(\"021\", 1, new DefaultValue(1)))\n", "node02.add(new TreeMapNode(\"022\", 1, new DefaultValue(1)))\n", "node02.add(new TreeMapNode(\"023\", 1, new DefaultValue(1)))\n", "node02.add(new TreeMapNode(\"024\", 2, new DefaultValue(2)))\n", "\n", "def node03 = new TreeMapNode(\"03\");\n", "node03.add(new TreeMapNode(\"030\", 1, new DefaultValue(2)))\n", "node03.add(new TreeMapNode(\"031\", 2, new DefaultValue(2)))\n", "node03.add(new TreeMapNode(\"032\", 3, new DefaultValue(2)))\n", "node03.add(new TreeMapNode(\"033\", 4, new DefaultValue(2)))\n", "\n", "def node04 = new TreeMapNode(\"04\", 6, new DefaultValue(5))\n", "\n", "node.add(node01)\n", "node.add(node02)\n", "node.add(node03)\n", "node.add(node04)" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "big_node = new TreeMapNode(\"root\");\n", "def nodeX = new TreeMapNode(\"branch1\");\n", "def nodeY = new TreeMapNode(\"branch2\");\n", "\n", "(1..500).each({ nodeX.add(new TreeMapNode(it + \"\", it * 2, new DefaultValue(it))) })\n", "\n", "def nodeX1 = new TreeMapNode(\"branch11\");\n", "(1..250).each({ nodeX1.add(new TreeMapNode(it + \"\", it * 2, new DefaultValue(it))) })\n", "nodeX.add(nodeX1)\n", "\n", "(1..500).each({ nodeY.add(new TreeMapNode(it + \"\", it * 2, new DefaultValue(it))) })\n", "\n", "def nodeY1 = new TreeMapNode(\"branch21\");\n", "(1..250).each({ nodeY1.add(new TreeMapNode(it + \"\", it * 2, new DefaultValue(it))) })\n", "nodeY.add(nodeY1)\n", "\n", "big_node.add(nodeX);\n", "big_node.add(nodeY);" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "null" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "def spjson = '{\"name\":\"flare\",\"children\":[{\"name\":\"analytics\",\"children\":[{\"name\":\"cluster\",\"children\":[{\"name\":\"AgglomerativeCluster\",\"size\":3938},{\"name\":\"CommunityStructure\",\"size\":3812},{\"name\":\"HierarchicalCluster\",\"size\":6714},{\"name\":\"MergeEdge\",\"size\":743}]},{\"name\":\"graph\",\"children\":[{\"name\":\"BetweennessCentrality\",\"size\":3534},{\"name\":\"LinkDistance\",\"size\":5731},{\"name\":\"MaxFlowMinCut\",\"size\":7840},{\"name\":\"ShortestPaths\",\"size\":5914},{\"name\":\"SpanningTree\",\"size\":3416}]},{\"name\":\"optimization\",\"children\":[{\"name\":\"AspectRatioBanker\",\"size\":7074}]}]},{\"name\":\"animate\",\"children\":[{\"name\":\"Easing\",\"size\":17010},{\"name\":\"FunctionSequence\",\"size\":5842},{\"name\":\"interpolate\",\"children\":[{\"name\":\"ArrayInterpolator\",\"size\":1983},{\"name\":\"ColorInterpolator\",\"size\":2047},{\"name\":\"DateInterpolator\",\"size\":1375},{\"name\":\"Interpolator\",\"size\":8746},{\"name\":\"MatrixInterpolator\",\"size\":2202},{\"name\":\"NumberInterpolator\",\"size\":1382},{\"name\":\"ObjectInterpolator\",\"size\":1629},{\"name\":\"PointInterpolator\",\"size\":1675},{\"name\":\"RectangleInterpolator\",\"size\":2042}]},{\"name\":\"ISchedulable\",\"size\":1041},{\"name\":\"Parallel\",\"size\":5176},{\"name\":\"Pause\",\"size\":449},{\"name\":\"Scheduler\",\"size\":5593},{\"name\":\"Sequence\",\"size\":5534},{\"name\":\"Transition\",\"size\":9201},{\"name\":\"Transitioner\",\"size\":19975},{\"name\":\"TransitionEvent\",\"size\":1116},{\"name\":\"Tween\",\"size\":6006}]},{\"name\":\"data\",\"children\":[{\"name\":\"converters\",\"children\":[{\"name\":\"Converters\",\"size\":721},{\"name\":\"DelimitedTextConverter\",\"size\":4294},{\"name\":\"GraphMLConverter\",\"size\":9800},{\"name\":\"IDataConverter\",\"size\":1314},{\"name\":\"JSONConverter\",\"size\":2220}]},{\"name\":\"DataField\",\"size\":1759},{\"name\":\"DataSchema\",\"size\":2165},{\"name\":\"DataSet\",\"size\":586},{\"name\":\"DataSource\",\"size\":3331},{\"name\":\"DataTable\",\"size\":772},{\"name\":\"DataUtil\",\"size\":3322}]},{\"name\":\"display\",\"children\":[{\"name\":\"DirtySprite\",\"size\":8833},{\"name\":\"LineSprite\",\"size\":1732},{\"name\":\"RectSprite\",\"size\":3623},{\"name\":\"TextSprite\",\"size\":10066}]},{\"name\":\"flex\",\"children\":[{\"name\":\"FlareVis\",\"size\":4116}]},{\"name\":\"physics\",\"children\":[{\"name\":\"DragForce\",\"size\":1082},{\"name\":\"GravityForce\",\"size\":1336},{\"name\":\"IForce\",\"size\":319},{\"name\":\"NBodyForce\",\"size\":10498},{\"name\":\"Particle\",\"size\":2822},{\"name\":\"Simulation\",\"size\":9983},{\"name\":\"Spring\",\"size\":2213},{\"name\":\"SpringForce\",\"size\":1681}]},{\"name\":\"query\",\"children\":[{\"name\":\"AggregateExpression\",\"size\":1616},{\"name\":\"And\",\"size\":1027},{\"name\":\"Arithmetic\",\"size\":3891},{\"name\":\"Average\",\"size\":891},{\"name\":\"BinaryExpression\",\"size\":2893},{\"name\":\"Comparison\",\"size\":5103},{\"name\":\"CompositeExpression\",\"size\":3677},{\"name\":\"Count\",\"size\":781},{\"name\":\"DateUtil\",\"size\":4141},{\"name\":\"Distinct\",\"size\":933},{\"name\":\"Expression\",\"size\":5130},{\"name\":\"ExpressionIterator\",\"size\":3617},{\"name\":\"Fn\",\"size\":3240},{\"name\":\"If\",\"size\":2732},{\"name\":\"IsA\",\"size\":2039},{\"name\":\"Literal\",\"size\":1214},{\"name\":\"Match\",\"size\":3748},{\"name\":\"Maximum\",\"size\":843},{\"name\":\"methods\",\"children\":[{\"name\":\"add\",\"size\":593},{\"name\":\"and\",\"size\":330},{\"name\":\"average\",\"size\":287},{\"name\":\"count\",\"size\":277},{\"name\":\"distinct\",\"size\":292},{\"name\":\"div\",\"size\":595},{\"name\":\"eq\",\"size\":594},{\"name\":\"fn\",\"size\":460},{\"name\":\"gt\",\"size\":603},{\"name\":\"gte\",\"size\":625},{\"name\":\"iff\",\"size\":748},{\"name\":\"isa\",\"size\":461},{\"name\":\"lt\",\"size\":597},{\"name\":\"lte\",\"size\":619},{\"name\":\"max\",\"size\":283},{\"name\":\"min\",\"size\":283},{\"name\":\"mod\",\"size\":591},{\"name\":\"mul\",\"size\":603},{\"name\":\"neq\",\"size\":599},{\"name\":\"not\",\"size\":386},{\"name\":\"or\",\"size\":323},{\"name\":\"orderby\",\"size\":307},{\"name\":\"range\",\"size\":772},{\"name\":\"select\",\"size\":296},{\"name\":\"stddev\",\"size\":363},{\"name\":\"sub\",\"size\":600},{\"name\":\"sum\",\"size\":280},{\"name\":\"update\",\"size\":307},{\"name\":\"variance\",\"size\":335},{\"name\":\"where\",\"size\":299},{\"name\":\"xor\",\"size\":354},{\"name\":\"_\",\"size\":264}]},{\"name\":\"Minimum\",\"size\":843},{\"name\":\"Not\",\"size\":1554},{\"name\":\"Or\",\"size\":970},{\"name\":\"Query\",\"size\":13896},{\"name\":\"Range\",\"size\":1594},{\"name\":\"StringUtil\",\"size\":4130},{\"name\":\"Sum\",\"size\":791},{\"name\":\"Variable\",\"size\":1124},{\"name\":\"Variance\",\"size\":1876},{\"name\":\"Xor\",\"size\":1101}]},{\"name\":\"scale\",\"children\":[{\"name\":\"IScaleMap\",\"size\":2105},{\"name\":\"LinearScale\",\"size\":1316},{\"name\":\"LogScale\",\"size\":3151},{\"name\":\"OrdinalScale\",\"size\":3770},{\"name\":\"QuantileScale\",\"size\":2435},{\"name\":\"QuantitativeScale\",\"size\":4839},{\"name\":\"RootScale\",\"size\":1756},{\"name\":\"Scale\",\"size\":4268},{\"name\":\"ScaleType\",\"size\":1821},{\"name\":\"TimeScale\",\"size\":5833}]},{\"name\":\"util\",\"children\":[{\"name\":\"Arrays\",\"size\":8258},{\"name\":\"Colors\",\"size\":10001},{\"name\":\"Dates\",\"size\":8217},{\"name\":\"Displays\",\"size\":12555},{\"name\":\"Filter\",\"size\":2324},{\"name\":\"Geometry\",\"size\":10993},{\"name\":\"heap\",\"children\":[{\"name\":\"FibonacciHeap\",\"size\":9354},{\"name\":\"HeapNode\",\"size\":1233}]},{\"name\":\"IEvaluable\",\"size\":335},{\"name\":\"IPredicate\",\"size\":383},{\"name\":\"IValueProxy\",\"size\":874},{\"name\":\"math\",\"children\":[{\"name\":\"DenseMatrix\",\"size\":3165},{\"name\":\"IMatrix\",\"size\":2815},{\"name\":\"SparseMatrix\",\"size\":3366}]},{\"name\":\"Maths\",\"size\":17705},{\"name\":\"Orientation\",\"size\":1486},{\"name\":\"palette\",\"children\":[{\"name\":\"ColorPalette\",\"size\":6367},{\"name\":\"Palette\",\"size\":1229},{\"name\":\"ShapePalette\",\"size\":2059},{\"name\":\"SizePalette\",\"size\":2291}]},{\"name\":\"Property\",\"size\":5559},{\"name\":\"Shapes\",\"size\":19118},{\"name\":\"Sort\",\"size\":6887},{\"name\":\"Stats\",\"size\":6557},{\"name\":\"Strings\",\"size\":22026}]},{\"name\":\"vis\",\"children\":[{\"name\":\"axis\",\"children\":[{\"name\":\"Axes\",\"size\":1302},{\"name\":\"Axis\",\"size\":24593},{\"name\":\"AxisGridLine\",\"size\":652},{\"name\":\"AxisLabel\",\"size\":636},{\"name\":\"CartesianAxes\",\"size\":6703}]},{\"name\":\"controls\",\"children\":[{\"name\":\"AnchorControl\",\"size\":2138},{\"name\":\"ClickControl\",\"size\":3824},{\"name\":\"Control\",\"size\":1353},{\"name\":\"ControlList\",\"size\":4665},{\"name\":\"DragControl\",\"size\":2649},{\"name\":\"ExpandControl\",\"size\":2832},{\"name\":\"HoverControl\",\"size\":4896},{\"name\":\"IControl\",\"size\":763},{\"name\":\"PanZoomControl\",\"size\":5222},{\"name\":\"SelectionControl\",\"size\":7862},{\"name\":\"TooltipControl\",\"size\":8435}]},{\"name\":\"data\",\"children\":[{\"name\":\"Data\",\"size\":20544},{\"name\":\"DataList\",\"size\":19788},{\"name\":\"DataSprite\",\"size\":10349},{\"name\":\"EdgeSprite\",\"size\":3301},{\"name\":\"NodeSprite\",\"size\":19382},{\"name\":\"render\",\"children\":[{\"name\":\"ArrowType\",\"size\":698},{\"name\":\"EdgeRenderer\",\"size\":5569},{\"name\":\"IRenderer\",\"size\":353},{\"name\":\"ShapeRenderer\",\"size\":2247}]},{\"name\":\"ScaleBinding\",\"size\":11275},{\"name\":\"Tree\",\"size\":7147},{\"name\":\"TreeBuilder\",\"size\":9930}]},{\"name\":\"events\",\"children\":[{\"name\":\"DataEvent\",\"size\":2313},{\"name\":\"SelectionEvent\",\"size\":1880},{\"name\":\"TooltipEvent\",\"size\":1701},{\"name\":\"VisualizationEvent\",\"size\":1117}]},{\"name\":\"legend\",\"children\":[{\"name\":\"Legend\",\"size\":20859},{\"name\":\"LegendItem\",\"size\":4614},{\"name\":\"LegendRange\",\"size\":10530}]},{\"name\":\"operator\",\"children\":[{\"name\":\"distortion\",\"children\":[{\"name\":\"BifocalDistortion\",\"size\":4461},{\"name\":\"Distortion\",\"size\":6314},{\"name\":\"FisheyeDistortion\",\"size\":3444}]},{\"name\":\"encoder\",\"children\":[{\"name\":\"ColorEncoder\",\"size\":3179},{\"name\":\"Encoder\",\"size\":4060},{\"name\":\"PropertyEncoder\",\"size\":4138},{\"name\":\"ShapeEncoder\",\"size\":1690},{\"name\":\"SizeEncoder\",\"size\":1830}]},{\"name\":\"filter\",\"children\":[{\"name\":\"FisheyeTreeFilter\",\"size\":5219},{\"name\":\"GraphDistanceFilter\",\"size\":3165},{\"name\":\"VisibilityFilter\",\"size\":3509}]},{\"name\":\"IOperator\",\"size\":1286},{\"name\":\"label\",\"children\":[{\"name\":\"Labeler\",\"size\":9956},{\"name\":\"RadialLabeler\",\"size\":3899},{\"name\":\"StackedAreaLabeler\",\"size\":3202}]},{\"name\":\"layout\",\"children\":[{\"name\":\"AxisLayout\",\"size\":6725},{\"name\":\"BundledEdgeRouter\",\"size\":3727},{\"name\":\"CircleLayout\",\"size\":9317},{\"name\":\"CirclePackingLayout\",\"size\":12003},{\"name\":\"DendrogramLayout\",\"size\":4853},{\"name\":\"ForceDirectedLayout\",\"size\":8411},{\"name\":\"IcicleTreeLayout\",\"size\":4864},{\"name\":\"IndentedTreeLayout\",\"size\":3174},{\"name\":\"Layout\",\"size\":7881},{\"name\":\"NodeLinkTreeLayout\",\"size\":12870},{\"name\":\"PieLayout\",\"size\":2728},{\"name\":\"RadialTreeLayout\",\"size\":12348},{\"name\":\"RandomLayout\",\"size\":870},{\"name\":\"StackedAreaLayout\",\"size\":9121},{\"name\":\"TreeMapLayout\",\"size\":9191}]},{\"name\":\"Operator\",\"size\":2490},{\"name\":\"OperatorList\",\"size\":5248},{\"name\":\"OperatorSequence\",\"size\":4190},{\"name\":\"OperatorSwitch\",\"size\":2581},{\"name\":\"SortOperator\",\"size\":2023}]},{\"name\":\"Visualization\",\"size\":16540}]}]}'\n", "def slurper = new groovy.json.JsonSlurper()\n", "\n", " void process(groovy.json.internal.LazyMap node, TreeMapNode parent) {\n", " //println node.name;\n", " TreeMapNode treeNode = new TreeMapNode(node.name);\n", " if (node.size == null)\n", " treeNode = new TreeMapNode(node.name)\n", " else\n", " treeNode = new TreeMapNode(node.name, node.size as double, new DefaultValue(node.size as double))\n", " \n", " parent.add(treeNode)\n", " \n", " node.children.each { \n", " process(it, treeNode)\n", " } \n", "} \n", "\n", "real_node = new TreeMapNode(\"root\");\n", "\n", "def sp = slurper.parseText(spjson)\n", "process(sp, real_node)" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "02932799-2e5a-4b54-8bce-9ffe9cffb73c", "version_major": 2, "version_minor": 0 }, "method": "display_data" }, "metadata": {}, "output_type": "display_data" } ], "source": [ "def x = new TreeMap(\n", " root: node,\n", " showLegend: true,\n", " title: \"Simple TreeChart\"\n", ");\n", "x" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Other Properties" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "* mode\n", "* ratio\n", "* round\n", "* sticky\n", "* valueAccessor" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Mode property" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If mode is specified, sets the layout algorithm. If mode is not specified, returns the current layout algorithm, which defaults to \"squarify\". The following modes are supported:\n", "\n", "* squarify - rectangular subdivision; squareness controlled via the target ratio.\n", "* slice - horizontal subdivision.\n", "* dice - vertical subdivision.\n", "* slice-dice - alternating between horizontal and vertical subdivision." ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8a46b203-aa12-43fd-9af7-5d85e781651c", "version_major": 2, "version_minor": 0 }, "method": "display_data" }, "metadata": {}, "output_type": "display_data" } ], "source": [ "def x = new TreeMap(\n", " root: node,\n", " mode: Mode.SQUARIFY,\n", " title: \"Mode.SQUARIFY\"\n", ");\n", "x" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "68850d59-402b-41f6-a518-a06cb9aba6f9", "version_major": 2, "version_minor": 0 }, "method": "display_data" }, "metadata": {}, "output_type": "display_data" } ], "source": [ "def x = new TreeMap(\n", " root: node,\n", " mode: Mode.SLICE,\n", " title: \"Mode.SLICE\"\n", ");\n", "x" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ac9172c4-0ca7-415e-8178-0af60913e75d", "version_major": 2, "version_minor": 0 }, "method": "display_data" }, "metadata": {}, "output_type": "display_data" } ], "source": [ "def x = new TreeMap(\n", " root: node,\n", " mode: Mode.DICE,\n", " title: \"Mode.DICE\"\n", ");\n", "x" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5929ac24-629d-4aae-936b-4f5056d113af", "version_major": 2, "version_minor": 0 }, "method": "display_data" }, "metadata": {}, "output_type": "display_data" } ], "source": [ "def x = new TreeMap(\n", " root: node,\n", " mode: Mode.SLICE_DIC,\n", " title: \"Mode.SLICE_DIC\"\n", ");\n", "x" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Sticky property" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If sticky is specified, sets whether or not the treemap layout is \"sticky\": a sticky treemap layout will preserve the relative arrangement of nodes across transitions. The allocation of nodes into squarified horizontal and vertical rows is persisted across updates \n", "by storing a z attribute on the last element in each row; this allows nodes to be resized smoothly, without shuffling or occlusion that would impede perception of changing values. Note, however, that this results in a suboptimal layout for one of the two states. \n", "If sticky is not specified, returns whether the treemap layout is sticky.\n", "\n", "Implementation note: sticky treemaps cache the array of nodes internally; therefore, it is not possible to reuse the same layout instance on multiple datasets. To reset the cached state when switching datasets with a sticky layout, call sticky(true) again. Since version \n", "1.25.0, hierarchy layouts no longer copy the input data by default on each invocation, so it may be possible to eliminate caching and make the layout fully stateless." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Round property" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If round is specified, sets whether or not the treemap layout will round to exact pixel boundaries. This can be nice to avoid antialiasing artifacts in SVG. If round is not specified, returns whether the treemap will be rounded." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Ratio property" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If ratio is specified, sets the layout ratio. If ratio is not specified, returns the current layout ratio, which defaults to .5 * (1 + Math.sqrt(5))" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "728d26b7-0546-4cb8-b45f-a4eac5501deb", "version_major": 2, "version_minor": 0 }, "method": "display_data" }, "metadata": {}, "output_type": "display_data" } ], "source": [ "def x = new TreeMap(\n", " root: node,\n", " ratio: 0.5,\n", " title: \"Property 'ratio' is 0.5\"\n", ");\n", "x" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "98376745-597f-4c50-81b9-128c3edf334e", "version_major": 2, "version_minor": 0 }, "method": "display_data" }, "metadata": {}, "output_type": "display_data" } ], "source": [ "def x = new TreeMap(\n", " root: node,\n", " toolTipBuilder: toolTipBuilder,\n", " colorProvider: new RandomColorProvider(),\n", " valueAccessor: ValueAccessor.VALUE,\n", " title: \"ValueAccessor.VALUE\"\n", ");\n", "x" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "eed6bc96-f816-477e-9ea8-00a5add12e5e", "version_major": 2, "version_minor": 0 }, "method": "display_data" }, "metadata": {}, "output_type": "display_data" } ], "source": [ "def x = new TreeMap(\n", " root: node,\n", " toolTipBuilder: toolTipBuilder,\n", " colorProvider: new RandomColorProvider(),\n", " valueAccessor: ValueAccessor.WEIGHT,\n", " title: \"ValueAccessor.WEIGHT\"\n", ");\n", "x" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "19d7570e-741c-4563-b8e2-3783bffa2309", "version_major": 2, "version_minor": 0 }, "method": "display_data" }, "metadata": {}, "output_type": "display_data" } ], "source": [ " \n", " def x = new TreeMap(\n", " root: node,\n", " toolTipBuilder: toolTipBuilder,\n", " title: \"Using custom ToolTipBuilder\"\n", ");\n", "x" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### ColorProviders" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In curent moment we are supporting next ColorProviders\n", "\n", "* RandomColorProvider (default)\n", "* GradientColorProvider\n", "\n", "You can set property 'fromValue' for providers thar uses min and max values. If this property is 'true' then value uses for color calculating. Otherwise - wight." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### RandomColorProvider" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9b337cdd-f269-4ba1-8bc7-036d7f5a0100", "version_major": 2, "version_minor": 0 }, "method": "display_data" }, "metadata": {}, "output_type": "display_data" } ], "source": [ "def x = new TreeMap(\n", " root: node,\n", " toolTipBuilder: toolTipBuilder,\n", " colorProvider: new RandomColorProvider(),\n", " title: \"Default RandomColorProvider\"\n", ");\n", "x" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d626debb-5dfe-4979-a377-e3b9d4798138", "version_major": 2, "version_minor": 0 }, "method": "display_data" }, "metadata": {}, "output_type": "display_data" } ], "source": [ "Color[] colours = [\n", " new Color(255, 0, 0),\n", " new Color(0, 255, 0),\n", " new Color(0, 0, 255),\n", " new Color(255, 255, 0),\n", " new Color(255, 0, 255),\n", " new Color(0, 255, 255),\n", " new Color(102, 102, 51),\n", " new Color(255, 51, 153),\n", " new Color(255, 153, 51),\n", " new Color(204, 204, 51),\n", " new Color(205, 102, 204),\n", " new Color(51, 153, 255),\n", " new Color(153, 102, 0)\n", " ];\n", "\n", "def x = new TreeMap(\n", " root: node,\n", " toolTipBuilder: toolTipBuilder,\n", " colorProvider: new RandomColorProvider(colours),\n", " title: \"RandomColorProvider with different colours\"\n", ");\n", "x" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### GradientColorProvider" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fbf65e2c-0436-421c-b388-497a16475483", "version_major": 2, "version_minor": 0 }, "method": "display_data" }, "metadata": {}, "output_type": "display_data" } ], "source": [ "def x = new TreeMap(\n", " root: node,\n", " toolTipBuilder: toolTipBuilder,\n", " title: \"GradientColorProvider with default colours\"\n", ");\n", "x.setColorProvider(new GradientColorProvider(x))\n", "x" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c09f4f08-027b-47cb-be41-ac12a45db2e0", "version_major": 2, "version_minor": 0 }, "method": "display_data" }, "metadata": {}, "output_type": "display_data" } ], "source": [ "def x = new TreeMap(\n", " root: node,\n", " toolTipBuilder: toolTipBuilder,\n", " title: \"GradientColorProvider with overrides colours\"\n", ");\n", "x.setColorProvider(new GradientColorProvider(x, Color.LIGHT_GRAY, Color.DARK_GRAY))\n", "x" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a0a1c68a-dadb-457c-b376-205790fa36e1", "version_major": 2, "version_minor": 0 }, "method": "display_data" }, "metadata": {}, "output_type": "display_data" } ], "source": [ " def x = new TreeMap(\n", " root: big_node,\n", " showLegend: false,\n", " toolTipBuilder: toolTipBuilder,\n", " title: \"Big TreeMap chart (1500 entities)\"\n", ");\n", "x.setColorProvider(new GradientColorProvider(x))\n", "x" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Example from http://bl.ocks.org/mbostock/4063582" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e60b5857-68ee-4c9e-b165-cf8e4c3fac03", "version_major": 2, "version_minor": 0 }, "method": "display_data" }, "metadata": {}, "output_type": "display_data" } ], "source": [ "def x = new TreeMap(\n", " root: real_node,\n", " showLegend: false,\n", " toolTipBuilder: toolTipBuilder,\n", " title: \"Flare\",\n", " initWidth:1300,\n", " initHeight:600\n", ");\n", "RandomColorProvider colorProvider = new RandomColorProvider(\n", " [\n", " '#3182bd',\n", " '#6baed6',\n", " '#9ecae1',\n", " '#c6dbef',\n", " '#e6550d',\n", " '#fd8d3c',\n", " '#fdae6b',\n", " '#fdd0a2',\n", " '#31a354',\n", " '#74c476',\n", " '#a1d99b',\n", " '#c7e9c0',\n", " '#756bb1',\n", " '#9e9ac8',\n", " '#bcbddc',\n", " '#dadaeb',\n", " '#636363',\n", " '#969696',\n", " '#bdbdbd',\n", " '#d9d9d9'\n", " ]\n", ")\n", "colorProvider.setGroupByParent(true)\n", "x.setColorProvider(colorProvider)\n", "x" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "beakerx_kernel_parameters": {}, "kernelspec": { "display_name": "Groovy", "language": "groovy", "name": "groovy" }, "language_info": { "codemirror_mode": "groovy", "file_extension": ".groovy", "mimetype": "", "name": "Groovy", "nbconverter_exporter": "", "version": "2.4.3" }, "widgets": { "application/vnd.jupyter.widget-state+json": { "state": { "028721ac-cf96-4f8e-8ca2-1382080bfaf1": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "ValueAccessor.VALUE", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#21578d", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "Label: 011
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "Label: 012
Weight: 2.0
Value: 1.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "Label: 013
Weight: 3.0
Value: 1.0", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "Label: 020
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "Label: 021
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "Label: 022
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "Label: 023
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "Label: 024
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "Label: 030
Weight: 1.0
Value: 2.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "Label: 031
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#8c1d17", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "Label: 032
Weight: 3.0
Value: 2.0", "type": "TreeMapNode", "weight": 3 }, { "color": "#8c1d17", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "Label: 033
Weight: 4.0
Value: 2.0", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#968236", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "Label: 04
Weight: 6.0
Value: 5.0", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "02932799-2e5a-4b54-8bce-9ffe9cffb73c": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "Simple TreeChart", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#21578d", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "011", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "012", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "013", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "020", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "021", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "022", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "023", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "024", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "030", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "031", "type": "TreeMapNode", "weight": 2 }, { "color": "#8c1d17", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "032", "type": "TreeMapNode", "weight": 3 }, { "color": "#8c1d17", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "033", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#968236", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "04", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "show_legend": true, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "19d7570e-741c-4563-b8e2-3783bffa2309": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "Using custom ToolTipBuilder", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#21578d", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "Label: 011
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "Label: 012
Weight: 2.0
Value: 1.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "Label: 013
Weight: 3.0
Value: 1.0", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "Label: 020
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "Label: 021
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "Label: 022
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "Label: 023
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "Label: 024
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "Label: 030
Weight: 1.0
Value: 2.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "Label: 031
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#8c1d17", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "Label: 032
Weight: 3.0
Value: 2.0", "type": "TreeMapNode", "weight": 3 }, { "color": "#8c1d17", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "Label: 033
Weight: 4.0
Value: 2.0", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#968236", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "Label: 04
Weight: 6.0
Value: 5.0", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "256260e1-2dc1-48cb-b245-62330f97097e": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "Mode.DICE", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#21578d", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "011", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "012", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "013", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "020", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "021", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "022", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "023", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "024", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "030", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "031", "type": "TreeMapNode", "weight": 2 }, { "color": "#8c1d17", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "032", "type": "TreeMapNode", "weight": 3 }, { "color": "#8c1d17", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "033", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#968236", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "04", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "mode": "dice", "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "2a038dd8-bfbd-47e9-b3d3-2071d8aabdf4": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "Flare", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "children": [ { "children": [ { "color": "#3182bd", "doubleValue": 3938, "label": "AgglomerativeCluster", "labelValue": "3938.0", "tooltip": "Label: AgglomerativeCluster
Weight: 3938.0
Value: 3938.0", "type": "TreeMapNode", "weight": 3938 }, { "color": "#3182bd", "doubleValue": 3812, "label": "CommunityStructure", "labelValue": "3812.0", "tooltip": "Label: CommunityStructure
Weight: 3812.0
Value: 3812.0", "type": "TreeMapNode", "weight": 3812 }, { "color": "#3182bd", "doubleValue": 6714, "label": "HierarchicalCluster", "labelValue": "6714.0", "tooltip": "Label: HierarchicalCluster
Weight: 6714.0
Value: 6714.0", "type": "TreeMapNode", "weight": 6714 }, { "color": "#3182bd", "doubleValue": 743, "label": "MergeEdge", "labelValue": "743.0", "tooltip": "Label: MergeEdge
Weight: 743.0
Value: 743.0", "type": "TreeMapNode", "weight": 743 } ], "type": "TreeMapNode", "weight": 15207 }, { "children": [ { "color": "#6baed6", "doubleValue": 3534, "label": "BetweennessCentrality", "labelValue": "3534.0", "tooltip": "Label: BetweennessCentrality
Weight: 3534.0
Value: 3534.0", "type": "TreeMapNode", "weight": 3534 }, { "color": "#6baed6", "doubleValue": 5731, "label": "LinkDistance", "labelValue": "5731.0", "tooltip": "Label: LinkDistance
Weight: 5731.0
Value: 5731.0", "type": "TreeMapNode", "weight": 5731 }, { "color": "#6baed6", "doubleValue": 7840, "label": "MaxFlowMinCut", "labelValue": "7840.0", "tooltip": "Label: MaxFlowMinCut
Weight: 7840.0
Value: 7840.0", "type": "TreeMapNode", "weight": 7840 }, { "color": "#6baed6", "doubleValue": 5914, "label": "ShortestPaths", "labelValue": "5914.0", "tooltip": "Label: ShortestPaths
Weight: 5914.0
Value: 5914.0", "type": "TreeMapNode", "weight": 5914 }, { "color": "#6baed6", "doubleValue": 3416, "label": "SpanningTree", "labelValue": "3416.0", "tooltip": "Label: SpanningTree
Weight: 3416.0
Value: 3416.0", "type": "TreeMapNode", "weight": 3416 } ], "type": "TreeMapNode", "weight": 26435 }, { "children": [ { "color": "#9ecae1", "doubleValue": 7074, "label": "AspectRatioBanker", "labelValue": "7074.0", "tooltip": "Label: AspectRatioBanker
Weight: 7074.0
Value: 7074.0", "type": "TreeMapNode", "weight": 7074 } ], "type": "TreeMapNode", "weight": 7074 } ], "type": "TreeMapNode", "weight": 48716 }, { "children": [ { "color": "#c6dbef", "doubleValue": 17010, "label": "Easing", "labelValue": "17010.0", "tooltip": "Label: Easing
Weight: 17010.0
Value: 17010.0", "type": "TreeMapNode", "weight": 17010 }, { "color": "#c6dbef", "doubleValue": 5842, "label": "FunctionSequence", "labelValue": "5842.0", "tooltip": "Label: FunctionSequence
Weight: 5842.0
Value: 5842.0", "type": "TreeMapNode", "weight": 5842 }, { "children": [ { "color": "#e6550d", "doubleValue": 1983, "label": "ArrayInterpolator", "labelValue": "1983.0", "tooltip": "Label: ArrayInterpolator
Weight: 1983.0
Value: 1983.0", "type": "TreeMapNode", "weight": 1983 }, { "color": "#e6550d", "doubleValue": 2047, "label": "ColorInterpolator", "labelValue": "2047.0", "tooltip": "Label: ColorInterpolator
Weight: 2047.0
Value: 2047.0", "type": "TreeMapNode", "weight": 2047 }, { "color": "#e6550d", "doubleValue": 1375, "label": "DateInterpolator", "labelValue": "1375.0", "tooltip": "Label: DateInterpolator
Weight: 1375.0
Value: 1375.0", "type": "TreeMapNode", "weight": 1375 }, { "color": "#e6550d", "doubleValue": 8746, "label": "Interpolator", "labelValue": "8746.0", "tooltip": "Label: Interpolator
Weight: 8746.0
Value: 8746.0", "type": "TreeMapNode", "weight": 8746 }, { "color": "#e6550d", "doubleValue": 2202, "label": "MatrixInterpolator", "labelValue": "2202.0", "tooltip": "Label: MatrixInterpolator
Weight: 2202.0
Value: 2202.0", "type": "TreeMapNode", "weight": 2202 }, { "color": "#e6550d", "doubleValue": 1382, "label": "NumberInterpolator", "labelValue": "1382.0", "tooltip": "Label: NumberInterpolator
Weight: 1382.0
Value: 1382.0", "type": "TreeMapNode", "weight": 1382 }, { "color": "#e6550d", "doubleValue": 1629, "label": "ObjectInterpolator", "labelValue": "1629.0", "tooltip": "Label: ObjectInterpolator
Weight: 1629.0
Value: 1629.0", "type": "TreeMapNode", "weight": 1629 }, { "color": "#e6550d", "doubleValue": 1675, "label": "PointInterpolator", "labelValue": "1675.0", "tooltip": "Label: PointInterpolator
Weight: 1675.0
Value: 1675.0", "type": "TreeMapNode", "weight": 1675 }, { "color": "#e6550d", "doubleValue": 2042, "label": "RectangleInterpolator", "labelValue": "2042.0", "tooltip": "Label: RectangleInterpolator
Weight: 2042.0
Value: 2042.0", "type": "TreeMapNode", "weight": 2042 } ], "type": "TreeMapNode", "weight": 23081 }, { "color": "#c6dbef", "doubleValue": 1041, "label": "ISchedulable", "labelValue": "1041.0", "tooltip": "Label: ISchedulable
Weight: 1041.0
Value: 1041.0", "type": "TreeMapNode", "weight": 1041 }, { "color": "#c6dbef", "doubleValue": 5176, "label": "Parallel", "labelValue": "5176.0", "tooltip": "Label: Parallel
Weight: 5176.0
Value: 5176.0", "type": "TreeMapNode", "weight": 5176 }, { "color": "#c6dbef", "doubleValue": 449, "label": "Pause", "labelValue": "449.0", "tooltip": "Label: Pause
Weight: 449.0
Value: 449.0", "type": "TreeMapNode", "weight": 449 }, { "color": "#c6dbef", "doubleValue": 5593, "label": "Scheduler", "labelValue": "5593.0", "tooltip": "Label: Scheduler
Weight: 5593.0
Value: 5593.0", "type": "TreeMapNode", "weight": 5593 }, { "color": "#c6dbef", "doubleValue": 5534, "label": "Sequence", "labelValue": "5534.0", "tooltip": "Label: Sequence
Weight: 5534.0
Value: 5534.0", "type": "TreeMapNode", "weight": 5534 }, { "color": "#c6dbef", "doubleValue": 9201, "label": "Transition", "labelValue": "9201.0", "tooltip": "Label: Transition
Weight: 9201.0
Value: 9201.0", "type": "TreeMapNode", "weight": 9201 }, { "color": "#c6dbef", "doubleValue": 19975, "label": "Transitioner", "labelValue": "19975.0", "tooltip": "Label: Transitioner
Weight: 19975.0
Value: 19975.0", "type": "TreeMapNode", "weight": 19975 }, { "color": "#c6dbef", "doubleValue": 1116, "label": "TransitionEvent", "labelValue": "1116.0", "tooltip": "Label: TransitionEvent
Weight: 1116.0
Value: 1116.0", "type": "TreeMapNode", "weight": 1116 }, { "color": "#c6dbef", "doubleValue": 6006, "label": "Tween", "labelValue": "6006.0", "tooltip": "Label: Tween
Weight: 6006.0
Value: 6006.0", "type": "TreeMapNode", "weight": 6006 } ], "type": "TreeMapNode", "weight": 100024 }, { "children": [ { "children": [ { "color": "#fd8d3c", "doubleValue": 721, "label": "Converters", "labelValue": "721.0", "tooltip": "Label: Converters
Weight: 721.0
Value: 721.0", "type": "TreeMapNode", "weight": 721 }, { "color": "#fd8d3c", "doubleValue": 4294, "label": "DelimitedTextConverter", "labelValue": "4294.0", "tooltip": "Label: DelimitedTextConverter
Weight: 4294.0
Value: 4294.0", "type": "TreeMapNode", "weight": 4294 }, { "color": "#fd8d3c", "doubleValue": 9800, "label": "GraphMLConverter", "labelValue": "9800.0", "tooltip": "Label: GraphMLConverter
Weight: 9800.0
Value: 9800.0", "type": "TreeMapNode", "weight": 9800 }, { "color": "#fd8d3c", "doubleValue": 1314, "label": "IDataConverter", "labelValue": "1314.0", "tooltip": "Label: IDataConverter
Weight: 1314.0
Value: 1314.0", "type": "TreeMapNode", "weight": 1314 }, { "color": "#fd8d3c", "doubleValue": 2220, "label": "JSONConverter", "labelValue": "2220.0", "tooltip": "Label: JSONConverter
Weight: 2220.0
Value: 2220.0", "type": "TreeMapNode", "weight": 2220 } ], "type": "TreeMapNode", "weight": 18349 }, { "color": "#fdae6b", "doubleValue": 1759, "label": "DataField", "labelValue": "1759.0", "tooltip": "Label: DataField
Weight: 1759.0
Value: 1759.0", "type": "TreeMapNode", "weight": 1759 }, { "color": "#fdae6b", "doubleValue": 2165, "label": "DataSchema", "labelValue": "2165.0", "tooltip": "Label: DataSchema
Weight: 2165.0
Value: 2165.0", "type": "TreeMapNode", "weight": 2165 }, { "color": "#fdae6b", "doubleValue": 586, "label": "DataSet", "labelValue": "586.0", "tooltip": "Label: DataSet
Weight: 586.0
Value: 586.0", "type": "TreeMapNode", "weight": 586 }, { "color": "#fdae6b", "doubleValue": 3331, "label": "DataSource", "labelValue": "3331.0", "tooltip": "Label: DataSource
Weight: 3331.0
Value: 3331.0", "type": "TreeMapNode", "weight": 3331 }, { "color": "#fdae6b", "doubleValue": 772, "label": "DataTable", "labelValue": "772.0", "tooltip": "Label: DataTable
Weight: 772.0
Value: 772.0", "type": "TreeMapNode", "weight": 772 }, { "color": "#fdae6b", "doubleValue": 3322, "label": "DataUtil", "labelValue": "3322.0", "tooltip": "Label: DataUtil
Weight: 3322.0
Value: 3322.0", "type": "TreeMapNode", "weight": 3322 } ], "type": "TreeMapNode", "weight": 30284 }, { "children": [ { "color": "#fdd0a2", "doubleValue": 8833, "label": "DirtySprite", "labelValue": "8833.0", "tooltip": "Label: DirtySprite
Weight: 8833.0
Value: 8833.0", "type": "TreeMapNode", "weight": 8833 }, { "color": "#fdd0a2", "doubleValue": 1732, "label": "LineSprite", "labelValue": "1732.0", "tooltip": "Label: LineSprite
Weight: 1732.0
Value: 1732.0", "type": "TreeMapNode", "weight": 1732 }, { "color": "#fdd0a2", "doubleValue": 3623, "label": "RectSprite", "labelValue": "3623.0", "tooltip": "Label: RectSprite
Weight: 3623.0
Value: 3623.0", "type": "TreeMapNode", "weight": 3623 }, { "color": "#fdd0a2", "doubleValue": 10066, "label": "TextSprite", "labelValue": "10066.0", "tooltip": "Label: TextSprite
Weight: 10066.0
Value: 10066.0", "type": "TreeMapNode", "weight": 10066 } ], "type": "TreeMapNode", "weight": 24254 }, { "children": [ { "color": "#31a354", "doubleValue": 4116, "label": "FlareVis", "labelValue": "4116.0", "tooltip": "Label: FlareVis
Weight: 4116.0
Value: 4116.0", "type": "TreeMapNode", "weight": 4116 } ], "type": "TreeMapNode", "weight": 4116 }, { "children": [ { "color": "#74c476", "doubleValue": 1082, "label": "DragForce", "labelValue": "1082.0", "tooltip": "Label: DragForce
Weight: 1082.0
Value: 1082.0", "type": "TreeMapNode", "weight": 1082 }, { "color": "#74c476", "doubleValue": 1336, "label": "GravityForce", "labelValue": "1336.0", "tooltip": "Label: GravityForce
Weight: 1336.0
Value: 1336.0", "type": "TreeMapNode", "weight": 1336 }, { "color": "#74c476", "doubleValue": 319, "label": "IForce", "labelValue": "319.0", "tooltip": "Label: IForce
Weight: 319.0
Value: 319.0", "type": "TreeMapNode", "weight": 319 }, { "color": "#74c476", "doubleValue": 10498, "label": "NBodyForce", "labelValue": "10498.0", "tooltip": "Label: NBodyForce
Weight: 10498.0
Value: 10498.0", "type": "TreeMapNode", "weight": 10498 }, { "color": "#74c476", "doubleValue": 2822, "label": "Particle", "labelValue": "2822.0", "tooltip": "Label: Particle
Weight: 2822.0
Value: 2822.0", "type": "TreeMapNode", "weight": 2822 }, { "color": "#74c476", "doubleValue": 9983, "label": "Simulation", "labelValue": "9983.0", "tooltip": "Label: Simulation
Weight: 9983.0
Value: 9983.0", "type": "TreeMapNode", "weight": 9983 }, { "color": "#74c476", "doubleValue": 2213, "label": "Spring", "labelValue": "2213.0", "tooltip": "Label: Spring
Weight: 2213.0
Value: 2213.0", "type": "TreeMapNode", "weight": 2213 }, { "color": "#74c476", "doubleValue": 1681, "label": "SpringForce", "labelValue": "1681.0", "tooltip": "Label: SpringForce
Weight: 1681.0
Value: 1681.0", "type": "TreeMapNode", "weight": 1681 } ], "type": "TreeMapNode", "weight": 29934 }, { "children": [ { "color": "#a1d99b", "doubleValue": 1616, "label": "AggregateExpression", "labelValue": "1616.0", "tooltip": "Label: AggregateExpression
Weight: 1616.0
Value: 1616.0", "type": "TreeMapNode", "weight": 1616 }, { "color": "#a1d99b", "doubleValue": 1027, "label": "And", "labelValue": "1027.0", "tooltip": "Label: And
Weight: 1027.0
Value: 1027.0", "type": "TreeMapNode", "weight": 1027 }, { "color": "#a1d99b", "doubleValue": 3891, "label": "Arithmetic", "labelValue": "3891.0", "tooltip": "Label: Arithmetic
Weight: 3891.0
Value: 3891.0", "type": "TreeMapNode", "weight": 3891 }, { "color": "#a1d99b", "doubleValue": 891, "label": "Average", "labelValue": "891.0", "tooltip": "Label: Average
Weight: 891.0
Value: 891.0", "type": "TreeMapNode", "weight": 891 }, { "color": "#a1d99b", "doubleValue": 2893, "label": "BinaryExpression", "labelValue": "2893.0", "tooltip": "Label: BinaryExpression
Weight: 2893.0
Value: 2893.0", "type": "TreeMapNode", "weight": 2893 }, { "color": "#a1d99b", "doubleValue": 5103, "label": "Comparison", "labelValue": "5103.0", "tooltip": "Label: Comparison
Weight: 5103.0
Value: 5103.0", "type": "TreeMapNode", "weight": 5103 }, { "color": "#a1d99b", "doubleValue": 3677, "label": "CompositeExpression", "labelValue": "3677.0", "tooltip": "Label: CompositeExpression
Weight: 3677.0
Value: 3677.0", "type": "TreeMapNode", "weight": 3677 }, { "color": "#a1d99b", "doubleValue": 781, "label": "Count", "labelValue": "781.0", "tooltip": "Label: Count
Weight: 781.0
Value: 781.0", "type": "TreeMapNode", "weight": 781 }, { "color": "#a1d99b", "doubleValue": 4141, "label": "DateUtil", "labelValue": "4141.0", "tooltip": "Label: DateUtil
Weight: 4141.0
Value: 4141.0", "type": "TreeMapNode", "weight": 4141 }, { "color": "#a1d99b", "doubleValue": 933, "label": "Distinct", "labelValue": "933.0", "tooltip": "Label: Distinct
Weight: 933.0
Value: 933.0", "type": "TreeMapNode", "weight": 933 }, { "color": "#a1d99b", "doubleValue": 5130, "label": "Expression", "labelValue": "5130.0", "tooltip": "Label: Expression
Weight: 5130.0
Value: 5130.0", "type": "TreeMapNode", "weight": 5130 }, { "color": "#a1d99b", "doubleValue": 3617, "label": "ExpressionIterator", "labelValue": "3617.0", "tooltip": "Label: ExpressionIterator
Weight: 3617.0
Value: 3617.0", "type": "TreeMapNode", "weight": 3617 }, { "color": "#a1d99b", "doubleValue": 3240, "label": "Fn", "labelValue": "3240.0", "tooltip": "Label: Fn
Weight: 3240.0
Value: 3240.0", "type": "TreeMapNode", "weight": 3240 }, { "color": "#a1d99b", "doubleValue": 2732, "label": "If", "labelValue": "2732.0", "tooltip": "Label: If
Weight: 2732.0
Value: 2732.0", "type": "TreeMapNode", "weight": 2732 }, { "color": "#a1d99b", "doubleValue": 2039, "label": "IsA", "labelValue": "2039.0", "tooltip": "Label: IsA
Weight: 2039.0
Value: 2039.0", "type": "TreeMapNode", "weight": 2039 }, { "color": "#a1d99b", "doubleValue": 1214, "label": "Literal", "labelValue": "1214.0", "tooltip": "Label: Literal
Weight: 1214.0
Value: 1214.0", "type": "TreeMapNode", "weight": 1214 }, { "color": "#a1d99b", "doubleValue": 3748, "label": "Match", "labelValue": "3748.0", "tooltip": "Label: Match
Weight: 3748.0
Value: 3748.0", "type": "TreeMapNode", "weight": 3748 }, { "color": "#a1d99b", "doubleValue": 843, "label": "Maximum", "labelValue": "843.0", "tooltip": "Label: Maximum
Weight: 843.0
Value: 843.0", "type": "TreeMapNode", "weight": 843 }, { "children": [ { "color": "#c7e9c0", "doubleValue": 593, "label": "add", "labelValue": "593.0", "tooltip": "Label: add
Weight: 593.0
Value: 593.0", "type": "TreeMapNode", "weight": 593 }, { "color": "#c7e9c0", "doubleValue": 330, "label": "and", "labelValue": "330.0", "tooltip": "Label: and
Weight: 330.0
Value: 330.0", "type": "TreeMapNode", "weight": 330 }, { "color": "#c7e9c0", "doubleValue": 287, "label": "average", "labelValue": "287.0", "tooltip": "Label: average
Weight: 287.0
Value: 287.0", "type": "TreeMapNode", "weight": 287 }, { "color": "#c7e9c0", "doubleValue": 277, "label": "count", "labelValue": "277.0", "tooltip": "Label: count
Weight: 277.0
Value: 277.0", "type": "TreeMapNode", "weight": 277 }, { "color": "#c7e9c0", "doubleValue": 292, "label": "distinct", "labelValue": "292.0", "tooltip": "Label: distinct
Weight: 292.0
Value: 292.0", "type": "TreeMapNode", "weight": 292 }, { "color": "#c7e9c0", "doubleValue": 595, "label": "div", "labelValue": "595.0", "tooltip": "Label: div
Weight: 595.0
Value: 595.0", "type": "TreeMapNode", "weight": 595 }, { "color": "#c7e9c0", "doubleValue": 594, "label": "eq", "labelValue": "594.0", "tooltip": "Label: eq
Weight: 594.0
Value: 594.0", "type": "TreeMapNode", "weight": 594 }, { "color": "#c7e9c0", "doubleValue": 460, "label": "fn", "labelValue": "460.0", "tooltip": "Label: fn
Weight: 460.0
Value: 460.0", "type": "TreeMapNode", "weight": 460 }, { "color": "#c7e9c0", "doubleValue": 603, "label": "gt", "labelValue": "603.0", "tooltip": "Label: gt
Weight: 603.0
Value: 603.0", "type": "TreeMapNode", "weight": 603 }, { "color": "#c7e9c0", "doubleValue": 625, "label": "gte", "labelValue": "625.0", "tooltip": "Label: gte
Weight: 625.0
Value: 625.0", "type": "TreeMapNode", "weight": 625 }, { "color": "#c7e9c0", "doubleValue": 748, "label": "iff", "labelValue": "748.0", "tooltip": "Label: iff
Weight: 748.0
Value: 748.0", "type": "TreeMapNode", "weight": 748 }, { "color": "#c7e9c0", "doubleValue": 461, "label": "isa", "labelValue": "461.0", "tooltip": "Label: isa
Weight: 461.0
Value: 461.0", "type": "TreeMapNode", "weight": 461 }, { "color": "#c7e9c0", "doubleValue": 597, "label": "lt", "labelValue": "597.0", "tooltip": "Label: lt
Weight: 597.0
Value: 597.0", "type": "TreeMapNode", "weight": 597 }, { "color": "#c7e9c0", "doubleValue": 619, "label": "lte", "labelValue": "619.0", "tooltip": "Label: lte
Weight: 619.0
Value: 619.0", "type": "TreeMapNode", "weight": 619 }, { "color": "#c7e9c0", "doubleValue": 283, "label": "max", "labelValue": "283.0", "tooltip": "Label: max
Weight: 283.0
Value: 283.0", "type": "TreeMapNode", "weight": 283 }, { "color": "#c7e9c0", "doubleValue": 283, "label": "min", "labelValue": "283.0", "tooltip": "Label: min
Weight: 283.0
Value: 283.0", "type": "TreeMapNode", "weight": 283 }, { "color": "#c7e9c0", "doubleValue": 591, "label": "mod", "labelValue": "591.0", "tooltip": "Label: mod
Weight: 591.0
Value: 591.0", "type": "TreeMapNode", "weight": 591 }, { "color": "#c7e9c0", "doubleValue": 603, "label": "mul", "labelValue": "603.0", "tooltip": "Label: mul
Weight: 603.0
Value: 603.0", "type": "TreeMapNode", "weight": 603 }, { "color": "#c7e9c0", "doubleValue": 599, "label": "neq", "labelValue": "599.0", "tooltip": "Label: neq
Weight: 599.0
Value: 599.0", "type": "TreeMapNode", "weight": 599 }, { "color": "#c7e9c0", "doubleValue": 386, "label": "not", "labelValue": "386.0", "tooltip": "Label: not
Weight: 386.0
Value: 386.0", "type": "TreeMapNode", "weight": 386 }, { "color": "#c7e9c0", "doubleValue": 323, "label": "or", "labelValue": "323.0", "tooltip": "Label: or
Weight: 323.0
Value: 323.0", "type": "TreeMapNode", "weight": 323 }, { "color": "#c7e9c0", "doubleValue": 307, "label": "orderby", "labelValue": "307.0", "tooltip": "Label: orderby
Weight: 307.0
Value: 307.0", "type": "TreeMapNode", "weight": 307 }, { "color": "#c7e9c0", "doubleValue": 772, "label": "range", "labelValue": "772.0", "tooltip": "Label: range
Weight: 772.0
Value: 772.0", "type": "TreeMapNode", "weight": 772 }, { "color": "#c7e9c0", "doubleValue": 296, "label": "select", "labelValue": "296.0", "tooltip": "Label: select
Weight: 296.0
Value: 296.0", "type": "TreeMapNode", "weight": 296 }, { "color": "#c7e9c0", "doubleValue": 363, "label": "stddev", "labelValue": "363.0", "tooltip": "Label: stddev
Weight: 363.0
Value: 363.0", "type": "TreeMapNode", "weight": 363 }, { "color": "#c7e9c0", "doubleValue": 600, "label": "sub", "labelValue": "600.0", "tooltip": "Label: sub
Weight: 600.0
Value: 600.0", "type": "TreeMapNode", "weight": 600 }, { "color": "#c7e9c0", "doubleValue": 280, "label": "sum", "labelValue": "280.0", "tooltip": "Label: sum
Weight: 280.0
Value: 280.0", "type": "TreeMapNode", "weight": 280 }, { "color": "#c7e9c0", "doubleValue": 307, "label": "update", "labelValue": "307.0", "tooltip": "Label: update
Weight: 307.0
Value: 307.0", "type": "TreeMapNode", "weight": 307 }, { "color": "#c7e9c0", "doubleValue": 335, "label": "variance", "labelValue": "335.0", "tooltip": "Label: variance
Weight: 335.0
Value: 335.0", "type": "TreeMapNode", "weight": 335 }, { "color": "#c7e9c0", "doubleValue": 299, "label": "where", "labelValue": "299.0", "tooltip": "Label: where
Weight: 299.0
Value: 299.0", "type": "TreeMapNode", "weight": 299 }, { "color": "#c7e9c0", "doubleValue": 354, "label": "xor", "labelValue": "354.0", "tooltip": "Label: xor
Weight: 354.0
Value: 354.0", "type": "TreeMapNode", "weight": 354 }, { "color": "#c7e9c0", "doubleValue": 264, "label": "_", "labelValue": "264.0", "tooltip": "Label: _
Weight: 264.0
Value: 264.0", "type": "TreeMapNode", "weight": 264 } ], "type": "TreeMapNode", "weight": 14326 }, { "color": "#a1d99b", "doubleValue": 843, "label": "Minimum", "labelValue": "843.0", "tooltip": "Label: Minimum
Weight: 843.0
Value: 843.0", "type": "TreeMapNode", "weight": 843 }, { "color": "#a1d99b", "doubleValue": 1554, "label": "Not", "labelValue": "1554.0", "tooltip": "Label: Not
Weight: 1554.0
Value: 1554.0", "type": "TreeMapNode", "weight": 1554 }, { "color": "#a1d99b", "doubleValue": 970, "label": "Or", "labelValue": "970.0", "tooltip": "Label: Or
Weight: 970.0
Value: 970.0", "type": "TreeMapNode", "weight": 970 }, { "color": "#a1d99b", "doubleValue": 13896, "label": "Query", "labelValue": "13896.0", "tooltip": "Label: Query
Weight: 13896.0
Value: 13896.0", "type": "TreeMapNode", "weight": 13896 }, { "color": "#a1d99b", "doubleValue": 1594, "label": "Range", "labelValue": "1594.0", "tooltip": "Label: Range
Weight: 1594.0
Value: 1594.0", "type": "TreeMapNode", "weight": 1594 }, { "color": "#a1d99b", "doubleValue": 4130, "label": "StringUtil", "labelValue": "4130.0", "tooltip": "Label: StringUtil
Weight: 4130.0
Value: 4130.0", "type": "TreeMapNode", "weight": 4130 }, { "color": "#a1d99b", "doubleValue": 791, "label": "Sum", "labelValue": "791.0", "tooltip": "Label: Sum
Weight: 791.0
Value: 791.0", "type": "TreeMapNode", "weight": 791 }, { "color": "#a1d99b", "doubleValue": 1124, "label": "Variable", "labelValue": "1124.0", "tooltip": "Label: Variable
Weight: 1124.0
Value: 1124.0", "type": "TreeMapNode", "weight": 1124 }, { "color": "#a1d99b", "doubleValue": 1876, "label": "Variance", "labelValue": "1876.0", "tooltip": "Label: Variance
Weight: 1876.0
Value: 1876.0", "type": "TreeMapNode", "weight": 1876 }, { "color": "#a1d99b", "doubleValue": 1101, "label": "Xor", "labelValue": "1101.0", "tooltip": "Label: Xor
Weight: 1101.0
Value: 1101.0", "type": "TreeMapNode", "weight": 1101 } ], "type": "TreeMapNode", "weight": 89721 }, { "children": [ { "color": "#756bb1", "doubleValue": 2105, "label": "IScaleMap", "labelValue": "2105.0", "tooltip": "Label: IScaleMap
Weight: 2105.0
Value: 2105.0", "type": "TreeMapNode", "weight": 2105 }, { "color": "#756bb1", "doubleValue": 1316, "label": "LinearScale", "labelValue": "1316.0", "tooltip": "Label: LinearScale
Weight: 1316.0
Value: 1316.0", "type": "TreeMapNode", "weight": 1316 }, { "color": "#756bb1", "doubleValue": 3151, "label": "LogScale", "labelValue": "3151.0", "tooltip": "Label: LogScale
Weight: 3151.0
Value: 3151.0", "type": "TreeMapNode", "weight": 3151 }, { "color": "#756bb1", "doubleValue": 3770, "label": "OrdinalScale", "labelValue": "3770.0", "tooltip": "Label: OrdinalScale
Weight: 3770.0
Value: 3770.0", "type": "TreeMapNode", "weight": 3770 }, { "color": "#756bb1", "doubleValue": 2435, "label": "QuantileScale", "labelValue": "2435.0", "tooltip": "Label: QuantileScale
Weight: 2435.0
Value: 2435.0", "type": "TreeMapNode", "weight": 2435 }, { "color": "#756bb1", "doubleValue": 4839, "label": "QuantitativeScale", "labelValue": "4839.0", "tooltip": "Label: QuantitativeScale
Weight: 4839.0
Value: 4839.0", "type": "TreeMapNode", "weight": 4839 }, { "color": "#756bb1", "doubleValue": 1756, "label": "RootScale", "labelValue": "1756.0", "tooltip": "Label: RootScale
Weight: 1756.0
Value: 1756.0", "type": "TreeMapNode", "weight": 1756 }, { "color": "#756bb1", "doubleValue": 4268, "label": "Scale", "labelValue": "4268.0", "tooltip": "Label: Scale
Weight: 4268.0
Value: 4268.0", "type": "TreeMapNode", "weight": 4268 }, { "color": "#756bb1", "doubleValue": 1821, "label": "ScaleType", "labelValue": "1821.0", "tooltip": "Label: ScaleType
Weight: 1821.0
Value: 1821.0", "type": "TreeMapNode", "weight": 1821 }, { "color": "#756bb1", "doubleValue": 5833, "label": "TimeScale", "labelValue": "5833.0", "tooltip": "Label: TimeScale
Weight: 5833.0
Value: 5833.0", "type": "TreeMapNode", "weight": 5833 } ], "type": "TreeMapNode", "weight": 31294 }, { "children": [ { "color": "#9e9ac8", "doubleValue": 8258, "label": "Arrays", "labelValue": "8258.0", "tooltip": "Label: Arrays
Weight: 8258.0
Value: 8258.0", "type": "TreeMapNode", "weight": 8258 }, { "color": "#9e9ac8", "doubleValue": 10001, "label": "Colors", "labelValue": "10001.0", "tooltip": "Label: Colors
Weight: 10001.0
Value: 10001.0", "type": "TreeMapNode", "weight": 10001 }, { "color": "#9e9ac8", "doubleValue": 8217, "label": "Dates", "labelValue": "8217.0", "tooltip": "Label: Dates
Weight: 8217.0
Value: 8217.0", "type": "TreeMapNode", "weight": 8217 }, { "color": "#9e9ac8", "doubleValue": 12555, "label": "Displays", "labelValue": "12555.0", "tooltip": "Label: Displays
Weight: 12555.0
Value: 12555.0", "type": "TreeMapNode", "weight": 12555 }, { "color": "#9e9ac8", "doubleValue": 2324, "label": "Filter", "labelValue": "2324.0", "tooltip": "Label: Filter
Weight: 2324.0
Value: 2324.0", "type": "TreeMapNode", "weight": 2324 }, { "color": "#9e9ac8", "doubleValue": 10993, "label": "Geometry", "labelValue": "10993.0", "tooltip": "Label: Geometry
Weight: 10993.0
Value: 10993.0", "type": "TreeMapNode", "weight": 10993 }, { "children": [ { "color": "#bcbddc", "doubleValue": 9354, "label": "FibonacciHeap", "labelValue": "9354.0", "tooltip": "Label: FibonacciHeap
Weight: 9354.0
Value: 9354.0", "type": "TreeMapNode", "weight": 9354 }, { "color": "#bcbddc", "doubleValue": 1233, "label": "HeapNode", "labelValue": "1233.0", "tooltip": "Label: HeapNode
Weight: 1233.0
Value: 1233.0", "type": "TreeMapNode", "weight": 1233 } ], "type": "TreeMapNode", "weight": 10587 }, { "color": "#9e9ac8", "doubleValue": 335, "label": "IEvaluable", "labelValue": "335.0", "tooltip": "Label: IEvaluable
Weight: 335.0
Value: 335.0", "type": "TreeMapNode", "weight": 335 }, { "color": "#9e9ac8", "doubleValue": 383, "label": "IPredicate", "labelValue": "383.0", "tooltip": "Label: IPredicate
Weight: 383.0
Value: 383.0", "type": "TreeMapNode", "weight": 383 }, { "color": "#9e9ac8", "doubleValue": 874, "label": "IValueProxy", "labelValue": "874.0", "tooltip": "Label: IValueProxy
Weight: 874.0
Value: 874.0", "type": "TreeMapNode", "weight": 874 }, { "children": [ { "color": "#dadaeb", "doubleValue": 3165, "label": "DenseMatrix", "labelValue": "3165.0", "tooltip": "Label: DenseMatrix
Weight: 3165.0
Value: 3165.0", "type": "TreeMapNode", "weight": 3165 }, { "color": "#dadaeb", "doubleValue": 2815, "label": "IMatrix", "labelValue": "2815.0", "tooltip": "Label: IMatrix
Weight: 2815.0
Value: 2815.0", "type": "TreeMapNode", "weight": 2815 }, { "color": "#dadaeb", "doubleValue": 3366, "label": "SparseMatrix", "labelValue": "3366.0", "tooltip": "Label: SparseMatrix
Weight: 3366.0
Value: 3366.0", "type": "TreeMapNode", "weight": 3366 } ], "type": "TreeMapNode", "weight": 9346 }, { "color": "#9e9ac8", "doubleValue": 17705, "label": "Maths", "labelValue": "17705.0", "tooltip": "Label: Maths
Weight: 17705.0
Value: 17705.0", "type": "TreeMapNode", "weight": 17705 }, { "color": "#9e9ac8", "doubleValue": 1486, "label": "Orientation", "labelValue": "1486.0", "tooltip": "Label: Orientation
Weight: 1486.0
Value: 1486.0", "type": "TreeMapNode", "weight": 1486 }, { "children": [ { "color": "#636363", "doubleValue": 6367, "label": "ColorPalette", "labelValue": "6367.0", "tooltip": "Label: ColorPalette
Weight: 6367.0
Value: 6367.0", "type": "TreeMapNode", "weight": 6367 }, { "color": "#636363", "doubleValue": 1229, "label": "Palette", "labelValue": "1229.0", "tooltip": "Label: Palette
Weight: 1229.0
Value: 1229.0", "type": "TreeMapNode", "weight": 1229 }, { "color": "#636363", "doubleValue": 2059, "label": "ShapePalette", "labelValue": "2059.0", "tooltip": "Label: ShapePalette
Weight: 2059.0
Value: 2059.0", "type": "TreeMapNode", "weight": 2059 }, { "color": "#636363", "doubleValue": 2291, "label": "SizePalette", "labelValue": "2291.0", "tooltip": "Label: SizePalette
Weight: 2291.0
Value: 2291.0", "type": "TreeMapNode", "weight": 2291 } ], "type": "TreeMapNode", "weight": 11946 }, { "color": "#9e9ac8", "doubleValue": 5559, "label": "Property", "labelValue": "5559.0", "tooltip": "Label: Property
Weight: 5559.0
Value: 5559.0", "type": "TreeMapNode", "weight": 5559 }, { "color": "#9e9ac8", "doubleValue": 19118, "label": "Shapes", "labelValue": "19118.0", "tooltip": "Label: Shapes
Weight: 19118.0
Value: 19118.0", "type": "TreeMapNode", "weight": 19118 }, { "color": "#9e9ac8", "doubleValue": 6887, "label": "Sort", "labelValue": "6887.0", "tooltip": "Label: Sort
Weight: 6887.0
Value: 6887.0", "type": "TreeMapNode", "weight": 6887 }, { "color": "#9e9ac8", "doubleValue": 6557, "label": "Stats", "labelValue": "6557.0", "tooltip": "Label: Stats
Weight: 6557.0
Value: 6557.0", "type": "TreeMapNode", "weight": 6557 }, { "color": "#9e9ac8", "doubleValue": 22026, "label": "Strings", "labelValue": "22026.0", "tooltip": "Label: Strings
Weight: 22026.0
Value: 22026.0", "type": "TreeMapNode", "weight": 22026 } ], "type": "TreeMapNode", "weight": 165157 }, { "children": [ { "children": [ { "color": "#969696", "doubleValue": 1302, "label": "Axes", "labelValue": "1302.0", "tooltip": "Label: Axes
Weight: 1302.0
Value: 1302.0", "type": "TreeMapNode", "weight": 1302 }, { "color": "#969696", "doubleValue": 24593, "label": "Axis", "labelValue": "24593.0", "tooltip": "Label: Axis
Weight: 24593.0
Value: 24593.0", "type": "TreeMapNode", "weight": 24593 }, { "color": "#969696", "doubleValue": 652, "label": "AxisGridLine", "labelValue": "652.0", "tooltip": "Label: AxisGridLine
Weight: 652.0
Value: 652.0", "type": "TreeMapNode", "weight": 652 }, { "color": "#969696", "doubleValue": 636, "label": "AxisLabel", "labelValue": "636.0", "tooltip": "Label: AxisLabel
Weight: 636.0
Value: 636.0", "type": "TreeMapNode", "weight": 636 }, { "color": "#969696", "doubleValue": 6703, "label": "CartesianAxes", "labelValue": "6703.0", "tooltip": "Label: CartesianAxes
Weight: 6703.0
Value: 6703.0", "type": "TreeMapNode", "weight": 6703 } ], "type": "TreeMapNode", "weight": 33886 }, { "children": [ { "color": "#bdbdbd", "doubleValue": 2138, "label": "AnchorControl", "labelValue": "2138.0", "tooltip": "Label: AnchorControl
Weight: 2138.0
Value: 2138.0", "type": "TreeMapNode", "weight": 2138 }, { "color": "#bdbdbd", "doubleValue": 3824, "label": "ClickControl", "labelValue": "3824.0", "tooltip": "Label: ClickControl
Weight: 3824.0
Value: 3824.0", "type": "TreeMapNode", "weight": 3824 }, { "color": "#bdbdbd", "doubleValue": 1353, "label": "Control", "labelValue": "1353.0", "tooltip": "Label: Control
Weight: 1353.0
Value: 1353.0", "type": "TreeMapNode", "weight": 1353 }, { "color": "#bdbdbd", "doubleValue": 4665, "label": "ControlList", "labelValue": "4665.0", "tooltip": "Label: ControlList
Weight: 4665.0
Value: 4665.0", "type": "TreeMapNode", "weight": 4665 }, { "color": "#bdbdbd", "doubleValue": 2649, "label": "DragControl", "labelValue": "2649.0", "tooltip": "Label: DragControl
Weight: 2649.0
Value: 2649.0", "type": "TreeMapNode", "weight": 2649 }, { "color": "#bdbdbd", "doubleValue": 2832, "label": "ExpandControl", "labelValue": "2832.0", "tooltip": "Label: ExpandControl
Weight: 2832.0
Value: 2832.0", "type": "TreeMapNode", "weight": 2832 }, { "color": "#bdbdbd", "doubleValue": 4896, "label": "HoverControl", "labelValue": "4896.0", "tooltip": "Label: HoverControl
Weight: 4896.0
Value: 4896.0", "type": "TreeMapNode", "weight": 4896 }, { "color": "#bdbdbd", "doubleValue": 763, "label": "IControl", "labelValue": "763.0", "tooltip": "Label: IControl
Weight: 763.0
Value: 763.0", "type": "TreeMapNode", "weight": 763 }, { "color": "#bdbdbd", "doubleValue": 5222, "label": "PanZoomControl", "labelValue": "5222.0", "tooltip": "Label: PanZoomControl
Weight: 5222.0
Value: 5222.0", "type": "TreeMapNode", "weight": 5222 }, { "color": "#bdbdbd", "doubleValue": 7862, "label": "SelectionControl", "labelValue": "7862.0", "tooltip": "Label: SelectionControl
Weight: 7862.0
Value: 7862.0", "type": "TreeMapNode", "weight": 7862 }, { "color": "#bdbdbd", "doubleValue": 8435, "label": "TooltipControl", "labelValue": "8435.0", "tooltip": "Label: TooltipControl
Weight: 8435.0
Value: 8435.0", "type": "TreeMapNode", "weight": 8435 } ], "type": "TreeMapNode", "weight": 44639 }, { "children": [ { "color": "#fdae6b", "doubleValue": 20544, "label": "Data", "labelValue": "20544.0", "tooltip": "Label: Data
Weight: 20544.0
Value: 20544.0", "type": "TreeMapNode", "weight": 20544 }, { "color": "#fdae6b", "doubleValue": 19788, "label": "DataList", "labelValue": "19788.0", "tooltip": "Label: DataList
Weight: 19788.0
Value: 19788.0", "type": "TreeMapNode", "weight": 19788 }, { "color": "#fdae6b", "doubleValue": 10349, "label": "DataSprite", "labelValue": "10349.0", "tooltip": "Label: DataSprite
Weight: 10349.0
Value: 10349.0", "type": "TreeMapNode", "weight": 10349 }, { "color": "#fdae6b", "doubleValue": 3301, "label": "EdgeSprite", "labelValue": "3301.0", "tooltip": "Label: EdgeSprite
Weight: 3301.0
Value: 3301.0", "type": "TreeMapNode", "weight": 3301 }, { "color": "#fdae6b", "doubleValue": 19382, "label": "NodeSprite", "labelValue": "19382.0", "tooltip": "Label: NodeSprite
Weight: 19382.0
Value: 19382.0", "type": "TreeMapNode", "weight": 19382 }, { "children": [ { "color": "#d9d9d9", "doubleValue": 698, "label": "ArrowType", "labelValue": "698.0", "tooltip": "Label: ArrowType
Weight: 698.0
Value: 698.0", "type": "TreeMapNode", "weight": 698 }, { "color": "#d9d9d9", "doubleValue": 5569, "label": "EdgeRenderer", "labelValue": "5569.0", "tooltip": "Label: EdgeRenderer
Weight: 5569.0
Value: 5569.0", "type": "TreeMapNode", "weight": 5569 }, { "color": "#d9d9d9", "doubleValue": 353, "label": "IRenderer", "labelValue": "353.0", "tooltip": "Label: IRenderer
Weight: 353.0
Value: 353.0", "type": "TreeMapNode", "weight": 353 }, { "color": "#d9d9d9", "doubleValue": 2247, "label": "ShapeRenderer", "labelValue": "2247.0", "tooltip": "Label: ShapeRenderer
Weight: 2247.0
Value: 2247.0", "type": "TreeMapNode", "weight": 2247 } ], "type": "TreeMapNode", "weight": 8867 }, { "color": "#fdae6b", "doubleValue": 11275, "label": "ScaleBinding", "labelValue": "11275.0", "tooltip": "Label: ScaleBinding
Weight: 11275.0
Value: 11275.0", "type": "TreeMapNode", "weight": 11275 }, { "color": "#fdae6b", "doubleValue": 7147, "label": "Tree", "labelValue": "7147.0", "tooltip": "Label: Tree
Weight: 7147.0
Value: 7147.0", "type": "TreeMapNode", "weight": 7147 }, { "color": "#fdae6b", "doubleValue": 9930, "label": "TreeBuilder", "labelValue": "9930.0", "tooltip": "Label: TreeBuilder
Weight: 9930.0
Value: 9930.0", "type": "TreeMapNode", "weight": 9930 } ], "type": "TreeMapNode", "weight": 110583 }, { "children": [ { "color": "#3182bd", "doubleValue": 2313, "label": "DataEvent", "labelValue": "2313.0", "tooltip": "Label: DataEvent
Weight: 2313.0
Value: 2313.0", "type": "TreeMapNode", "weight": 2313 }, { "color": "#3182bd", "doubleValue": 1880, "label": "SelectionEvent", "labelValue": "1880.0", "tooltip": "Label: SelectionEvent
Weight: 1880.0
Value: 1880.0", "type": "TreeMapNode", "weight": 1880 }, { "color": "#3182bd", "doubleValue": 1701, "label": "TooltipEvent", "labelValue": "1701.0", "tooltip": "Label: TooltipEvent
Weight: 1701.0
Value: 1701.0", "type": "TreeMapNode", "weight": 1701 }, { "color": "#3182bd", "doubleValue": 1117, "label": "VisualizationEvent", "labelValue": "1117.0", "tooltip": "Label: VisualizationEvent
Weight: 1117.0
Value: 1117.0", "type": "TreeMapNode", "weight": 1117 } ], "type": "TreeMapNode", "weight": 7011 }, { "children": [ { "color": "#6baed6", "doubleValue": 20859, "label": "Legend", "labelValue": "20859.0", "tooltip": "Label: Legend
Weight: 20859.0
Value: 20859.0", "type": "TreeMapNode", "weight": 20859 }, { "color": "#6baed6", "doubleValue": 4614, "label": "LegendItem", "labelValue": "4614.0", "tooltip": "Label: LegendItem
Weight: 4614.0
Value: 4614.0", "type": "TreeMapNode", "weight": 4614 }, { "color": "#6baed6", "doubleValue": 10530, "label": "LegendRange", "labelValue": "10530.0", "tooltip": "Label: LegendRange
Weight: 10530.0
Value: 10530.0", "type": "TreeMapNode", "weight": 10530 } ], "type": "TreeMapNode", "weight": 36003 }, { "children": [ { "children": [ { "color": "#9ecae1", "doubleValue": 4461, "label": "BifocalDistortion", "labelValue": "4461.0", "tooltip": "Label: BifocalDistortion
Weight: 4461.0
Value: 4461.0", "type": "TreeMapNode", "weight": 4461 }, { "color": "#9ecae1", "doubleValue": 6314, "label": "Distortion", "labelValue": "6314.0", "tooltip": "Label: Distortion
Weight: 6314.0
Value: 6314.0", "type": "TreeMapNode", "weight": 6314 }, { "color": "#9ecae1", "doubleValue": 3444, "label": "FisheyeDistortion", "labelValue": "3444.0", "tooltip": "Label: FisheyeDistortion
Weight: 3444.0
Value: 3444.0", "type": "TreeMapNode", "weight": 3444 } ], "type": "TreeMapNode", "weight": 14219 }, { "children": [ { "color": "#c6dbef", "doubleValue": 3179, "label": "ColorEncoder", "labelValue": "3179.0", "tooltip": "Label: ColorEncoder
Weight: 3179.0
Value: 3179.0", "type": "TreeMapNode", "weight": 3179 }, { "color": "#c6dbef", "doubleValue": 4060, "label": "Encoder", "labelValue": "4060.0", "tooltip": "Label: Encoder
Weight: 4060.0
Value: 4060.0", "type": "TreeMapNode", "weight": 4060 }, { "color": "#c6dbef", "doubleValue": 4138, "label": "PropertyEncoder", "labelValue": "4138.0", "tooltip": "Label: PropertyEncoder
Weight: 4138.0
Value: 4138.0", "type": "TreeMapNode", "weight": 4138 }, { "color": "#c6dbef", "doubleValue": 1690, "label": "ShapeEncoder", "labelValue": "1690.0", "tooltip": "Label: ShapeEncoder
Weight: 1690.0
Value: 1690.0", "type": "TreeMapNode", "weight": 1690 }, { "color": "#c6dbef", "doubleValue": 1830, "label": "SizeEncoder", "labelValue": "1830.0", "tooltip": "Label: SizeEncoder
Weight: 1830.0
Value: 1830.0", "type": "TreeMapNode", "weight": 1830 } ], "type": "TreeMapNode", "weight": 14897 }, { "children": [ { "color": "#e6550d", "doubleValue": 5219, "label": "FisheyeTreeFilter", "labelValue": "5219.0", "tooltip": "Label: FisheyeTreeFilter
Weight: 5219.0
Value: 5219.0", "type": "TreeMapNode", "weight": 5219 }, { "color": "#e6550d", "doubleValue": 3165, "label": "GraphDistanceFilter", "labelValue": "3165.0", "tooltip": "Label: GraphDistanceFilter
Weight: 3165.0
Value: 3165.0", "type": "TreeMapNode", "weight": 3165 }, { "color": "#e6550d", "doubleValue": 3509, "label": "VisibilityFilter", "labelValue": "3509.0", "tooltip": "Label: VisibilityFilter
Weight: 3509.0
Value: 3509.0", "type": "TreeMapNode", "weight": 3509 } ], "type": "TreeMapNode", "weight": 11893 }, { "color": "#fd8d3c", "doubleValue": 1286, "label": "IOperator", "labelValue": "1286.0", "tooltip": "Label: IOperator
Weight: 1286.0
Value: 1286.0", "type": "TreeMapNode", "weight": 1286 }, { "children": [ { "color": "#fdae6b", "doubleValue": 9956, "label": "Labeler", "labelValue": "9956.0", "tooltip": "Label: Labeler
Weight: 9956.0
Value: 9956.0", "type": "TreeMapNode", "weight": 9956 }, { "color": "#fdae6b", "doubleValue": 3899, "label": "RadialLabeler", "labelValue": "3899.0", "tooltip": "Label: RadialLabeler
Weight: 3899.0
Value: 3899.0", "type": "TreeMapNode", "weight": 3899 }, { "color": "#fdae6b", "doubleValue": 3202, "label": "StackedAreaLabeler", "labelValue": "3202.0", "tooltip": "Label: StackedAreaLabeler
Weight: 3202.0
Value: 3202.0", "type": "TreeMapNode", "weight": 3202 } ], "type": "TreeMapNode", "weight": 17057 }, { "children": [ { "color": "#fdd0a2", "doubleValue": 6725, "label": "AxisLayout", "labelValue": "6725.0", "tooltip": "Label: AxisLayout
Weight: 6725.0
Value: 6725.0", "type": "TreeMapNode", "weight": 6725 }, { "color": "#fdd0a2", "doubleValue": 3727, "label": "BundledEdgeRouter", "labelValue": "3727.0", "tooltip": "Label: BundledEdgeRouter
Weight: 3727.0
Value: 3727.0", "type": "TreeMapNode", "weight": 3727 }, { "color": "#fdd0a2", "doubleValue": 9317, "label": "CircleLayout", "labelValue": "9317.0", "tooltip": "Label: CircleLayout
Weight: 9317.0
Value: 9317.0", "type": "TreeMapNode", "weight": 9317 }, { "color": "#fdd0a2", "doubleValue": 12003, "label": "CirclePackingLayout", "labelValue": "12003.0", "tooltip": "Label: CirclePackingLayout
Weight: 12003.0
Value: 12003.0", "type": "TreeMapNode", "weight": 12003 }, { "color": "#fdd0a2", "doubleValue": 4853, "label": "DendrogramLayout", "labelValue": "4853.0", "tooltip": "Label: DendrogramLayout
Weight: 4853.0
Value: 4853.0", "type": "TreeMapNode", "weight": 4853 }, { "color": "#fdd0a2", "doubleValue": 8411, "label": "ForceDirectedLayout", "labelValue": "8411.0", "tooltip": "Label: ForceDirectedLayout
Weight: 8411.0
Value: 8411.0", "type": "TreeMapNode", "weight": 8411 }, { "color": "#fdd0a2", "doubleValue": 4864, "label": "IcicleTreeLayout", "labelValue": "4864.0", "tooltip": "Label: IcicleTreeLayout
Weight: 4864.0
Value: 4864.0", "type": "TreeMapNode", "weight": 4864 }, { "color": "#fdd0a2", "doubleValue": 3174, "label": "IndentedTreeLayout", "labelValue": "3174.0", "tooltip": "Label: IndentedTreeLayout
Weight: 3174.0
Value: 3174.0", "type": "TreeMapNode", "weight": 3174 }, { "color": "#fdd0a2", "doubleValue": 7881, "label": "Layout", "labelValue": "7881.0", "tooltip": "Label: Layout
Weight: 7881.0
Value: 7881.0", "type": "TreeMapNode", "weight": 7881 }, { "color": "#fdd0a2", "doubleValue": 12870, "label": "NodeLinkTreeLayout", "labelValue": "12870.0", "tooltip": "Label: NodeLinkTreeLayout
Weight: 12870.0
Value: 12870.0", "type": "TreeMapNode", "weight": 12870 }, { "color": "#fdd0a2", "doubleValue": 2728, "label": "PieLayout", "labelValue": "2728.0", "tooltip": "Label: PieLayout
Weight: 2728.0
Value: 2728.0", "type": "TreeMapNode", "weight": 2728 }, { "color": "#fdd0a2", "doubleValue": 12348, "label": "RadialTreeLayout", "labelValue": "12348.0", "tooltip": "Label: RadialTreeLayout
Weight: 12348.0
Value: 12348.0", "type": "TreeMapNode", "weight": 12348 }, { "color": "#fdd0a2", "doubleValue": 870, "label": "RandomLayout", "labelValue": "870.0", "tooltip": "Label: RandomLayout
Weight: 870.0
Value: 870.0", "type": "TreeMapNode", "weight": 870 }, { "color": "#fdd0a2", "doubleValue": 9121, "label": "StackedAreaLayout", "labelValue": "9121.0", "tooltip": "Label: StackedAreaLayout
Weight: 9121.0
Value: 9121.0", "type": "TreeMapNode", "weight": 9121 }, { "color": "#fdd0a2", "doubleValue": 9191, "label": "TreeMapLayout", "labelValue": "9191.0", "tooltip": "Label: TreeMapLayout
Weight: 9191.0
Value: 9191.0", "type": "TreeMapNode", "weight": 9191 } ], "type": "TreeMapNode", "weight": 108083 }, { "color": "#fd8d3c", "doubleValue": 2490, "label": "Operator", "labelValue": "2490.0", "tooltip": "Label: Operator
Weight: 2490.0
Value: 2490.0", "type": "TreeMapNode", "weight": 2490 }, { "color": "#fd8d3c", "doubleValue": 5248, "label": "OperatorList", "labelValue": "5248.0", "tooltip": "Label: OperatorList
Weight: 5248.0
Value: 5248.0", "type": "TreeMapNode", "weight": 5248 }, { "color": "#fd8d3c", "doubleValue": 4190, "label": "OperatorSequence", "labelValue": "4190.0", "tooltip": "Label: OperatorSequence
Weight: 4190.0
Value: 4190.0", "type": "TreeMapNode", "weight": 4190 }, { "color": "#fd8d3c", "doubleValue": 2581, "label": "OperatorSwitch", "labelValue": "2581.0", "tooltip": "Label: OperatorSwitch
Weight: 2581.0
Value: 2581.0", "type": "TreeMapNode", "weight": 2581 }, { "color": "#fd8d3c", "doubleValue": 2023, "label": "SortOperator", "labelValue": "2023.0", "tooltip": "Label: SortOperator
Weight: 2023.0
Value: 2023.0", "type": "TreeMapNode", "weight": 2023 } ], "type": "TreeMapNode", "weight": 183967 }, { "color": "#31a354", "doubleValue": 16540, "label": "Visualization", "labelValue": "16540.0", "tooltip": "Label: Visualization
Weight: 16540.0
Value: 16540.0", "type": "TreeMapNode", "weight": 16540 } ], "type": "TreeMapNode", "weight": 432629 } ], "type": "TreeMapNode", "weight": 956129 } ], "type": "TreeMapNode", "weight": 956129 }, "init_height": 600, "init_width": 1300, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "2b5dafdd-a44b-4dab-b4ad-8409551d7480": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "Default RandomColorProvider", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#21578d", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "Label: 011
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "Label: 012
Weight: 2.0
Value: 1.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "Label: 013
Weight: 3.0
Value: 1.0", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "Label: 020
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "Label: 021
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "Label: 022
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "Label: 023
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "Label: 024
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "Label: 030
Weight: 1.0
Value: 2.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "Label: 031
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#8c1d17", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "Label: 032
Weight: 3.0
Value: 2.0", "type": "TreeMapNode", "weight": 3 }, { "color": "#8c1d17", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "Label: 033
Weight: 4.0
Value: 2.0", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#968236", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "Label: 04
Weight: 6.0
Value: 5.0", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "4ee18c5a-726e-4058-ab84-ea28b0ef1ff1": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "ValueAccessor.WEIGHT", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#21578d", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "Label: 011
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "Label: 012
Weight: 2.0
Value: 1.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "Label: 013
Weight: 3.0
Value: 1.0", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "Label: 020
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "Label: 021
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "Label: 022
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "Label: 023
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "Label: 024
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "Label: 030
Weight: 1.0
Value: 2.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "Label: 031
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#8c1d17", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "Label: 032
Weight: 3.0
Value: 2.0", "type": "TreeMapNode", "weight": 3 }, { "color": "#8c1d17", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "Label: 033
Weight: 4.0
Value: 2.0", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#968236", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "Label: 04
Weight: 6.0
Value: 5.0", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "WEIGHT" } } }, "52c03ced-e6d7-4aaa-9a5a-6bca086d46ec": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "Mode.SQUARIFY", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#21578d", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "011", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "012", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "013", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "020", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "021", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "022", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "023", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "024", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "030", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "031", "type": "TreeMapNode", "weight": 2 }, { "color": "#8c1d17", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "032", "type": "TreeMapNode", "weight": 3 }, { "color": "#8c1d17", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "033", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#968236", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "04", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "mode": "squarify", "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "56ed6b95-67ff-4fce-9d51-243aa387c367": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "Using custom ToolTipBuilder", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#21578d", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "Label: 011
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "Label: 012
Weight: 2.0
Value: 1.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "Label: 013
Weight: 3.0
Value: 1.0", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "Label: 020
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "Label: 021
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "Label: 022
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "Label: 023
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "Label: 024
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "Label: 030
Weight: 1.0
Value: 2.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "Label: 031
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#8c1d17", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "Label: 032
Weight: 3.0
Value: 2.0", "type": "TreeMapNode", "weight": 3 }, { "color": "#8c1d17", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "Label: 033
Weight: 4.0
Value: 2.0", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#968236", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "Label: 04
Weight: 6.0
Value: 5.0", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "5929ac24-629d-4aae-936b-4f5056d113af": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "Mode.SLICE_DIC", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#21578d", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "011", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "012", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "013", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "020", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "021", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "022", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "023", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "024", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "030", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "031", "type": "TreeMapNode", "weight": 2 }, { "color": "#8c1d17", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "032", "type": "TreeMapNode", "weight": 3 }, { "color": "#8c1d17", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "033", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#968236", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "04", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "mode": "slice-dic", "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "5d6f99b7-4243-4ebe-bc0e-fbd03f6eacdb": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "Simple TreeChart", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#21578d", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "011", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "012", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "013", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "020", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "021", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "022", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "023", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "024", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "030", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "031", "type": "TreeMapNode", "weight": 2 }, { "color": "#8c1d17", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "032", "type": "TreeMapNode", "weight": 3 }, { "color": "#8c1d17", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "033", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#968236", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "04", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "show_legend": true, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "68850d59-402b-41f6-a518-a06cb9aba6f9": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "Mode.SLICE", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#21578d", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "011", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "012", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "013", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "020", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "021", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "022", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "023", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "024", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "030", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "031", "type": "TreeMapNode", "weight": 2 }, { "color": "#8c1d17", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "032", "type": "TreeMapNode", "weight": 3 }, { "color": "#8c1d17", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "033", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#968236", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "04", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "mode": "slice", "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "728d26b7-0546-4cb8-b45f-a4eac5501deb": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "Property 'ratio' is 0.5", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#21578d", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "011", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "012", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "013", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "020", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "021", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "022", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "023", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "024", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "030", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "031", "type": "TreeMapNode", "weight": 2 }, { "color": "#8c1d17", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "032", "type": "TreeMapNode", "weight": 3 }, { "color": "#8c1d17", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "033", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#968236", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "04", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "ratio": 0.5, "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "7d5da56c-d4de-43dc-bf27-16da6850e30b": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "Property 'ratio' is 0.5", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#21578d", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "011", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "012", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "013", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "020", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "021", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "022", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "023", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "024", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "030", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "031", "type": "TreeMapNode", "weight": 2 }, { "color": "#8c1d17", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "032", "type": "TreeMapNode", "weight": 3 }, { "color": "#8c1d17", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "033", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#968236", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "04", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "ratio": 0.5, "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "8a46b203-aa12-43fd-9af7-5d85e781651c": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "Mode.SQUARIFY", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#21578d", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "011", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "012", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "013", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "020", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "021", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "022", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "023", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "024", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "030", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "031", "type": "TreeMapNode", "weight": 2 }, { "color": "#8c1d17", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "032", "type": "TreeMapNode", "weight": 3 }, { "color": "#8c1d17", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "033", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#968236", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "04", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "mode": "squarify", "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "98376745-597f-4c50-81b9-128c3edf334e": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "ValueAccessor.VALUE", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#21578d", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "Label: 011
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "Label: 012
Weight: 2.0
Value: 1.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "Label: 013
Weight: 3.0
Value: 1.0", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "Label: 020
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "Label: 021
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "Label: 022
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "Label: 023
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "Label: 024
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "Label: 030
Weight: 1.0
Value: 2.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "Label: 031
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#8c1d17", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "Label: 032
Weight: 3.0
Value: 2.0", "type": "TreeMapNode", "weight": 3 }, { "color": "#8c1d17", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "Label: 033
Weight: 4.0
Value: 2.0", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#968236", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "Label: 04
Weight: 6.0
Value: 5.0", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "9b337cdd-f269-4ba1-8bc7-036d7f5a0100": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "Default RandomColorProvider", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#21578d", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "Label: 011
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "Label: 012
Weight: 2.0
Value: 1.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "Label: 013
Weight: 3.0
Value: 1.0", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "Label: 020
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "Label: 021
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "Label: 022
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "Label: 023
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "Label: 024
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "Label: 030
Weight: 1.0
Value: 2.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "Label: 031
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#8c1d17", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "Label: 032
Weight: 3.0
Value: 2.0", "type": "TreeMapNode", "weight": 3 }, { "color": "#8c1d17", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "Label: 033
Weight: 4.0
Value: 2.0", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#968236", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "Label: 04
Weight: 6.0
Value: 5.0", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "a0a1c68a-dadb-457c-b376-205790fa36e1": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "Big TreeMap chart (1500 entities)", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#ff0000", "doubleValue": 1, "label": "1", "labelValue": "1.0", "tooltip": "Label: 1
Weight: 2.0
Value: 1.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#fe0100", "doubleValue": 2, "label": "2", "labelValue": "2.0", "tooltip": "Label: 2
Weight: 4.0
Value: 2.0", "type": "TreeMapNode", "weight": 4 }, { "color": "#fe0100", "doubleValue": 3, "label": "3", "labelValue": "3.0", "tooltip": "Label: 3
Weight: 6.0
Value: 3.0", "type": "TreeMapNode", "weight": 6 }, { "color": "#fd0200", "doubleValue": 4, "label": "4", "labelValue": "4.0", "tooltip": "Label: 4
Weight: 8.0
Value: 4.0", "type": "TreeMapNode", "weight": 8 }, { "color": "#fd0200", "doubleValue": 5, "label": "5", "labelValue": "5.0", "tooltip": "Label: 5
Weight: 10.0
Value: 5.0", "type": "TreeMapNode", "weight": 10 }, { "color": "#fc0300", "doubleValue": 6, "label": "6", "labelValue": "6.0", "tooltip": "Label: 6
Weight: 12.0
Value: 6.0", "type": "TreeMapNode", "weight": 12 }, { "color": "#fc0300", "doubleValue": 7, "label": "7", "labelValue": "7.0", "tooltip": "Label: 7
Weight: 14.0
Value: 7.0", "type": "TreeMapNode", "weight": 14 }, { "color": "#fb0400", "doubleValue": 8, "label": "8", "labelValue": "8.0", "tooltip": "Label: 8
Weight: 16.0
Value: 8.0", "type": "TreeMapNode", "weight": 16 }, { "color": "#fb0400", "doubleValue": 9, "label": "9", "labelValue": "9.0", "tooltip": "Label: 9
Weight: 18.0
Value: 9.0", "type": "TreeMapNode", "weight": 18 }, { "color": "#fa0500", "doubleValue": 10, "label": "10", "labelValue": "10.0", "tooltip": "Label: 10
Weight: 20.0
Value: 10.0", "type": "TreeMapNode", "weight": 20 }, { "color": "#fa0500", "doubleValue": 11, "label": "11", "labelValue": "11.0", "tooltip": "Label: 11
Weight: 22.0
Value: 11.0", "type": "TreeMapNode", "weight": 22 }, { "color": "#f90600", "doubleValue": 12, "label": "12", "labelValue": "12.0", "tooltip": "Label: 12
Weight: 24.0
Value: 12.0", "type": "TreeMapNode", "weight": 24 }, { "color": "#f90600", "doubleValue": 13, "label": "13", "labelValue": "13.0", "tooltip": "Label: 13
Weight: 26.0
Value: 13.0", "type": "TreeMapNode", "weight": 26 }, { "color": "#f80700", "doubleValue": 14, "label": "14", "labelValue": "14.0", "tooltip": "Label: 14
Weight: 28.0
Value: 14.0", "type": "TreeMapNode", "weight": 28 }, { "color": "#f80700", "doubleValue": 15, "label": "15", "labelValue": "15.0", "tooltip": "Label: 15
Weight: 30.0
Value: 15.0", "type": "TreeMapNode", "weight": 30 }, { "color": "#f70800", "doubleValue": 16, "label": "16", "labelValue": "16.0", "tooltip": "Label: 16
Weight: 32.0
Value: 16.0", "type": "TreeMapNode", "weight": 32 }, { "color": "#f70800", "doubleValue": 17, "label": "17", "labelValue": "17.0", "tooltip": "Label: 17
Weight: 34.0
Value: 17.0", "type": "TreeMapNode", "weight": 34 }, { "color": "#f60900", "doubleValue": 18, "label": "18", "labelValue": "18.0", "tooltip": "Label: 18
Weight: 36.0
Value: 18.0", "type": "TreeMapNode", "weight": 36 }, { "color": "#f60900", "doubleValue": 19, "label": "19", "labelValue": "19.0", "tooltip": "Label: 19
Weight: 38.0
Value: 19.0", "type": "TreeMapNode", "weight": 38 }, { "color": "#f50a00", "doubleValue": 20, "label": "20", "labelValue": "20.0", "tooltip": "Label: 20
Weight: 40.0
Value: 20.0", "type": "TreeMapNode", "weight": 40 }, { "color": "#f50a00", "doubleValue": 21, "label": "21", "labelValue": "21.0", "tooltip": "Label: 21
Weight: 42.0
Value: 21.0", "type": "TreeMapNode", "weight": 42 }, { "color": "#f40b00", "doubleValue": 22, "label": "22", "labelValue": "22.0", "tooltip": "Label: 22
Weight: 44.0
Value: 22.0", "type": "TreeMapNode", "weight": 44 }, { "color": "#f40b00", "doubleValue": 23, "label": "23", "labelValue": "23.0", "tooltip": "Label: 23
Weight: 46.0
Value: 23.0", "type": "TreeMapNode", "weight": 46 }, { "color": "#f30c00", "doubleValue": 24, "label": "24", "labelValue": "24.0", "tooltip": "Label: 24
Weight: 48.0
Value: 24.0", "type": "TreeMapNode", "weight": 48 }, { "color": "#f30c00", "doubleValue": 25, "label": "25", "labelValue": "25.0", "tooltip": "Label: 25
Weight: 50.0
Value: 25.0", "type": "TreeMapNode", "weight": 50 }, { "color": "#f20d00", "doubleValue": 26, "label": "26", "labelValue": "26.0", "tooltip": "Label: 26
Weight: 52.0
Value: 26.0", "type": "TreeMapNode", "weight": 52 }, { "color": "#f20d00", "doubleValue": 27, "label": "27", "labelValue": "27.0", "tooltip": "Label: 27
Weight: 54.0
Value: 27.0", "type": "TreeMapNode", "weight": 54 }, { "color": "#f10e00", "doubleValue": 28, "label": "28", "labelValue": "28.0", "tooltip": "Label: 28
Weight: 56.0
Value: 28.0", "type": "TreeMapNode", "weight": 56 }, { "color": "#f10e00", "doubleValue": 29, "label": "29", "labelValue": "29.0", "tooltip": "Label: 29
Weight: 58.0
Value: 29.0", "type": "TreeMapNode", "weight": 58 }, { "color": "#f00f00", "doubleValue": 30, "label": "30", "labelValue": "30.0", "tooltip": "Label: 30
Weight: 60.0
Value: 30.0", "type": "TreeMapNode", "weight": 60 }, { "color": "#f00f00", "doubleValue": 31, "label": "31", "labelValue": "31.0", "tooltip": "Label: 31
Weight: 62.0
Value: 31.0", "type": "TreeMapNode", "weight": 62 }, { "color": "#ef1000", "doubleValue": 32, "label": "32", "labelValue": "32.0", "tooltip": "Label: 32
Weight: 64.0
Value: 32.0", "type": "TreeMapNode", "weight": 64 }, { "color": "#ef1000", "doubleValue": 33, "label": "33", "labelValue": "33.0", "tooltip": "Label: 33
Weight: 66.0
Value: 33.0", "type": "TreeMapNode", "weight": 66 }, { "color": "#ee1100", "doubleValue": 34, "label": "34", "labelValue": "34.0", "tooltip": "Label: 34
Weight: 68.0
Value: 34.0", "type": "TreeMapNode", "weight": 68 }, { "color": "#ee1100", "doubleValue": 35, "label": "35", "labelValue": "35.0", "tooltip": "Label: 35
Weight: 70.0
Value: 35.0", "type": "TreeMapNode", "weight": 70 }, { "color": "#ed1200", "doubleValue": 36, "label": "36", "labelValue": "36.0", "tooltip": "Label: 36
Weight: 72.0
Value: 36.0", "type": "TreeMapNode", "weight": 72 }, { "color": "#ed1200", "doubleValue": 37, "label": "37", "labelValue": "37.0", "tooltip": "Label: 37
Weight: 74.0
Value: 37.0", "type": "TreeMapNode", "weight": 74 }, { "color": "#ec1300", "doubleValue": 38, "label": "38", "labelValue": "38.0", "tooltip": "Label: 38
Weight: 76.0
Value: 38.0", "type": "TreeMapNode", "weight": 76 }, { "color": "#ec1300", "doubleValue": 39, "label": "39", "labelValue": "39.0", "tooltip": "Label: 39
Weight: 78.0
Value: 39.0", "type": "TreeMapNode", "weight": 78 }, { "color": "#eb1400", "doubleValue": 40, "label": "40", "labelValue": "40.0", "tooltip": "Label: 40
Weight: 80.0
Value: 40.0", "type": "TreeMapNode", "weight": 80 }, { "color": "#eb1400", "doubleValue": 41, "label": "41", "labelValue": "41.0", "tooltip": "Label: 41
Weight: 82.0
Value: 41.0", "type": "TreeMapNode", "weight": 82 }, { "color": "#ea1500", "doubleValue": 42, "label": "42", "labelValue": "42.0", "tooltip": "Label: 42
Weight: 84.0
Value: 42.0", "type": "TreeMapNode", "weight": 84 }, { "color": "#ea1500", "doubleValue": 43, "label": "43", "labelValue": "43.0", "tooltip": "Label: 43
Weight: 86.0
Value: 43.0", "type": "TreeMapNode", "weight": 86 }, { "color": "#e91600", "doubleValue": 44, "label": "44", "labelValue": "44.0", "tooltip": "Label: 44
Weight: 88.0
Value: 44.0", "type": "TreeMapNode", "weight": 88 }, { "color": "#e91600", "doubleValue": 45, "label": "45", "labelValue": "45.0", "tooltip": "Label: 45
Weight: 90.0
Value: 45.0", "type": "TreeMapNode", "weight": 90 }, { "color": "#e81700", "doubleValue": 46, "label": "46", "labelValue": "46.0", "tooltip": "Label: 46
Weight: 92.0
Value: 46.0", "type": "TreeMapNode", "weight": 92 }, { "color": "#e71800", "doubleValue": 47, "label": "47", "labelValue": "47.0", "tooltip": "Label: 47
Weight: 94.0
Value: 47.0", "type": "TreeMapNode", "weight": 94 }, { "color": "#e71800", "doubleValue": 48, "label": "48", "labelValue": "48.0", "tooltip": "Label: 48
Weight: 96.0
Value: 48.0", "type": "TreeMapNode", "weight": 96 }, { "color": "#e61900", "doubleValue": 49, "label": "49", "labelValue": "49.0", "tooltip": "Label: 49
Weight: 98.0
Value: 49.0", "type": "TreeMapNode", "weight": 98 }, { "color": "#e61900", "doubleValue": 50, "label": "50", "labelValue": "50.0", "tooltip": "Label: 50
Weight: 100.0
Value: 50.0", "type": "TreeMapNode", "weight": 100 }, { "color": "#e51a00", "doubleValue": 51, "label": "51", "labelValue": "51.0", "tooltip": "Label: 51
Weight: 102.0
Value: 51.0", "type": "TreeMapNode", "weight": 102 }, { "color": "#e51a00", "doubleValue": 52, "label": "52", "labelValue": "52.0", "tooltip": "Label: 52
Weight: 104.0
Value: 52.0", "type": "TreeMapNode", "weight": 104 }, { "color": "#e41b00", "doubleValue": 53, "label": "53", "labelValue": "53.0", "tooltip": "Label: 53
Weight: 106.0
Value: 53.0", "type": "TreeMapNode", "weight": 106 }, { "color": "#e41b00", "doubleValue": 54, "label": "54", "labelValue": "54.0", "tooltip": "Label: 54
Weight: 108.0
Value: 54.0", "type": "TreeMapNode", "weight": 108 }, { "color": "#e31c00", "doubleValue": 55, "label": "55", "labelValue": "55.0", "tooltip": "Label: 55
Weight: 110.0
Value: 55.0", "type": "TreeMapNode", "weight": 110 }, { "color": "#e31c00", "doubleValue": 56, "label": "56", "labelValue": "56.0", "tooltip": "Label: 56
Weight: 112.0
Value: 56.0", "type": "TreeMapNode", "weight": 112 }, { "color": "#e21d00", "doubleValue": 57, "label": "57", "labelValue": "57.0", "tooltip": "Label: 57
Weight: 114.0
Value: 57.0", "type": "TreeMapNode", "weight": 114 }, { "color": "#e21d00", "doubleValue": 58, "label": "58", "labelValue": "58.0", "tooltip": "Label: 58
Weight: 116.0
Value: 58.0", "type": "TreeMapNode", "weight": 116 }, { "color": "#e11e00", "doubleValue": 59, "label": "59", "labelValue": "59.0", "tooltip": "Label: 59
Weight: 118.0
Value: 59.0", "type": "TreeMapNode", "weight": 118 }, { "color": "#e11e00", "doubleValue": 60, "label": "60", "labelValue": "60.0", "tooltip": "Label: 60
Weight: 120.0
Value: 60.0", "type": "TreeMapNode", "weight": 120 }, { "color": "#e01f00", "doubleValue": 61, "label": "61", "labelValue": "61.0", "tooltip": "Label: 61
Weight: 122.0
Value: 61.0", "type": "TreeMapNode", "weight": 122 }, { "color": "#e01f00", "doubleValue": 62, "label": "62", "labelValue": "62.0", "tooltip": "Label: 62
Weight: 124.0
Value: 62.0", "type": "TreeMapNode", "weight": 124 }, { "color": "#df2000", "doubleValue": 63, "label": "63", "labelValue": "63.0", "tooltip": "Label: 63
Weight: 126.0
Value: 63.0", "type": "TreeMapNode", "weight": 126 }, { "color": "#df2000", "doubleValue": 64, "label": "64", "labelValue": "64.0", "tooltip": "Label: 64
Weight: 128.0
Value: 64.0", "type": "TreeMapNode", "weight": 128 }, { "color": "#de2100", "doubleValue": 65, "label": "65", "labelValue": "65.0", "tooltip": "Label: 65
Weight: 130.0
Value: 65.0", "type": "TreeMapNode", "weight": 130 }, { "color": "#de2100", "doubleValue": 66, "label": "66", "labelValue": "66.0", "tooltip": "Label: 66
Weight: 132.0
Value: 66.0", "type": "TreeMapNode", "weight": 132 }, { "color": "#dd2200", "doubleValue": 67, "label": "67", "labelValue": "67.0", "tooltip": "Label: 67
Weight: 134.0
Value: 67.0", "type": "TreeMapNode", "weight": 134 }, { "color": "#dd2200", "doubleValue": 68, "label": "68", "labelValue": "68.0", "tooltip": "Label: 68
Weight: 136.0
Value: 68.0", "type": "TreeMapNode", "weight": 136 }, { "color": "#dc2300", "doubleValue": 69, "label": "69", "labelValue": "69.0", "tooltip": "Label: 69
Weight: 138.0
Value: 69.0", "type": "TreeMapNode", "weight": 138 }, { "color": "#dc2300", "doubleValue": 70, "label": "70", "labelValue": "70.0", "tooltip": "Label: 70
Weight: 140.0
Value: 70.0", "type": "TreeMapNode", "weight": 140 }, { "color": "#db2400", "doubleValue": 71, "label": "71", "labelValue": "71.0", "tooltip": "Label: 71
Weight: 142.0
Value: 71.0", "type": "TreeMapNode", "weight": 142 }, { "color": "#db2400", "doubleValue": 72, "label": "72", "labelValue": "72.0", "tooltip": "Label: 72
Weight: 144.0
Value: 72.0", "type": "TreeMapNode", "weight": 144 }, { "color": "#da2500", "doubleValue": 73, "label": "73", "labelValue": "73.0", "tooltip": "Label: 73
Weight: 146.0
Value: 73.0", "type": "TreeMapNode", "weight": 146 }, { "color": "#da2500", "doubleValue": 74, "label": "74", "labelValue": "74.0", "tooltip": "Label: 74
Weight: 148.0
Value: 74.0", "type": "TreeMapNode", "weight": 148 }, { "color": "#d92600", "doubleValue": 75, "label": "75", "labelValue": "75.0", "tooltip": "Label: 75
Weight: 150.0
Value: 75.0", "type": "TreeMapNode", "weight": 150 }, { "color": "#d92600", "doubleValue": 76, "label": "76", "labelValue": "76.0", "tooltip": "Label: 76
Weight: 152.0
Value: 76.0", "type": "TreeMapNode", "weight": 152 }, { "color": "#d82700", "doubleValue": 77, "label": "77", "labelValue": "77.0", "tooltip": "Label: 77
Weight: 154.0
Value: 77.0", "type": "TreeMapNode", "weight": 154 }, { "color": "#d82700", "doubleValue": 78, "label": "78", "labelValue": "78.0", "tooltip": "Label: 78
Weight: 156.0
Value: 78.0", "type": "TreeMapNode", "weight": 156 }, { "color": "#d72800", "doubleValue": 79, "label": "79", "labelValue": "79.0", "tooltip": "Label: 79
Weight: 158.0
Value: 79.0", "type": "TreeMapNode", "weight": 158 }, { "color": "#d72800", "doubleValue": 80, "label": "80", "labelValue": "80.0", "tooltip": "Label: 80
Weight: 160.0
Value: 80.0", "type": "TreeMapNode", "weight": 160 }, { "color": "#d62900", "doubleValue": 81, "label": "81", "labelValue": "81.0", "tooltip": "Label: 81
Weight: 162.0
Value: 81.0", "type": "TreeMapNode", "weight": 162 }, { "color": "#d62900", "doubleValue": 82, "label": "82", "labelValue": "82.0", "tooltip": "Label: 82
Weight: 164.0
Value: 82.0", "type": "TreeMapNode", "weight": 164 }, { "color": "#d52a00", "doubleValue": 83, "label": "83", "labelValue": "83.0", "tooltip": "Label: 83
Weight: 166.0
Value: 83.0", "type": "TreeMapNode", "weight": 166 }, { "color": "#d52a00", "doubleValue": 84, "label": "84", "labelValue": "84.0", "tooltip": "Label: 84
Weight: 168.0
Value: 84.0", "type": "TreeMapNode", "weight": 168 }, { "color": "#d42b00", "doubleValue": 85, "label": "85", "labelValue": "85.0", "tooltip": "Label: 85
Weight: 170.0
Value: 85.0", "type": "TreeMapNode", "weight": 170 }, { "color": "#d42b00", "doubleValue": 86, "label": "86", "labelValue": "86.0", "tooltip": "Label: 86
Weight: 172.0
Value: 86.0", "type": "TreeMapNode", "weight": 172 }, { "color": "#d32c00", "doubleValue": 87, "label": "87", "labelValue": "87.0", "tooltip": "Label: 87
Weight: 174.0
Value: 87.0", "type": "TreeMapNode", "weight": 174 }, { "color": "#d32c00", "doubleValue": 88, "label": "88", "labelValue": "88.0", "tooltip": "Label: 88
Weight: 176.0
Value: 88.0", "type": "TreeMapNode", "weight": 176 }, { "color": "#d22d00", "doubleValue": 89, "label": "89", "labelValue": "89.0", "tooltip": "Label: 89
Weight: 178.0
Value: 89.0", "type": "TreeMapNode", "weight": 178 }, { "color": "#d22d00", "doubleValue": 90, "label": "90", "labelValue": "90.0", "tooltip": "Label: 90
Weight: 180.0
Value: 90.0", "type": "TreeMapNode", "weight": 180 }, { "color": "#d12e00", "doubleValue": 91, "label": "91", "labelValue": "91.0", "tooltip": "Label: 91
Weight: 182.0
Value: 91.0", "type": "TreeMapNode", "weight": 182 }, { "color": "#d02f00", "doubleValue": 92, "label": "92", "labelValue": "92.0", "tooltip": "Label: 92
Weight: 184.0
Value: 92.0", "type": "TreeMapNode", "weight": 184 }, { "color": "#d02f00", "doubleValue": 93, "label": "93", "labelValue": "93.0", "tooltip": "Label: 93
Weight: 186.0
Value: 93.0", "type": "TreeMapNode", "weight": 186 }, { "color": "#cf3000", "doubleValue": 94, "label": "94", "labelValue": "94.0", "tooltip": "Label: 94
Weight: 188.0
Value: 94.0", "type": "TreeMapNode", "weight": 188 }, { "color": "#cf3000", "doubleValue": 95, "label": "95", "labelValue": "95.0", "tooltip": "Label: 95
Weight: 190.0
Value: 95.0", "type": "TreeMapNode", "weight": 190 }, { "color": "#ce3100", "doubleValue": 96, "label": "96", "labelValue": "96.0", "tooltip": "Label: 96
Weight: 192.0
Value: 96.0", "type": "TreeMapNode", "weight": 192 }, { "color": "#ce3100", "doubleValue": 97, "label": "97", "labelValue": "97.0", "tooltip": "Label: 97
Weight: 194.0
Value: 97.0", "type": "TreeMapNode", "weight": 194 }, { "color": "#cd3200", "doubleValue": 98, "label": "98", "labelValue": "98.0", "tooltip": "Label: 98
Weight: 196.0
Value: 98.0", "type": "TreeMapNode", "weight": 196 }, { "color": "#cd3200", "doubleValue": 99, "label": "99", "labelValue": "99.0", "tooltip": "Label: 99
Weight: 198.0
Value: 99.0", "type": "TreeMapNode", "weight": 198 }, { "color": "#cc3300", "doubleValue": 100, "label": "100", "labelValue": "100.0", "tooltip": "Label: 100
Weight: 200.0
Value: 100.0", "type": "TreeMapNode", "weight": 200 }, { "color": "#cc3300", "doubleValue": 101, "label": "101", "labelValue": "101.0", "tooltip": "Label: 101
Weight: 202.0
Value: 101.0", "type": "TreeMapNode", "weight": 202 }, { "color": "#cb3400", "doubleValue": 102, "label": "102", "labelValue": "102.0", "tooltip": "Label: 102
Weight: 204.0
Value: 102.0", "type": "TreeMapNode", "weight": 204 }, { "color": "#cb3400", "doubleValue": 103, "label": "103", "labelValue": "103.0", "tooltip": "Label: 103
Weight: 206.0
Value: 103.0", "type": "TreeMapNode", "weight": 206 }, { "color": "#ca3500", "doubleValue": 104, "label": "104", "labelValue": "104.0", "tooltip": "Label: 104
Weight: 208.0
Value: 104.0", "type": "TreeMapNode", "weight": 208 }, { "color": "#ca3500", "doubleValue": 105, "label": "105", "labelValue": "105.0", "tooltip": "Label: 105
Weight: 210.0
Value: 105.0", "type": "TreeMapNode", "weight": 210 }, { "color": "#c93600", "doubleValue": 106, "label": "106", "labelValue": "106.0", "tooltip": "Label: 106
Weight: 212.0
Value: 106.0", "type": "TreeMapNode", "weight": 212 }, { "color": "#c93600", "doubleValue": 107, "label": "107", "labelValue": "107.0", "tooltip": "Label: 107
Weight: 214.0
Value: 107.0", "type": "TreeMapNode", "weight": 214 }, { "color": "#c83700", "doubleValue": 108, "label": "108", "labelValue": "108.0", "tooltip": "Label: 108
Weight: 216.0
Value: 108.0", "type": "TreeMapNode", "weight": 216 }, { "color": "#c83700", "doubleValue": 109, "label": "109", "labelValue": "109.0", "tooltip": "Label: 109
Weight: 218.0
Value: 109.0", "type": "TreeMapNode", "weight": 218 }, { "color": "#c73800", "doubleValue": 110, "label": "110", "labelValue": "110.0", "tooltip": "Label: 110
Weight: 220.0
Value: 110.0", "type": "TreeMapNode", "weight": 220 }, { "color": "#c73800", "doubleValue": 111, "label": "111", "labelValue": "111.0", "tooltip": "Label: 111
Weight: 222.0
Value: 111.0", "type": "TreeMapNode", "weight": 222 }, { "color": "#c63900", "doubleValue": 112, "label": "112", "labelValue": "112.0", "tooltip": "Label: 112
Weight: 224.0
Value: 112.0", "type": "TreeMapNode", "weight": 224 }, { "color": "#c63900", "doubleValue": 113, "label": "113", "labelValue": "113.0", "tooltip": "Label: 113
Weight: 226.0
Value: 113.0", "type": "TreeMapNode", "weight": 226 }, { "color": "#c53a00", "doubleValue": 114, "label": "114", "labelValue": "114.0", "tooltip": "Label: 114
Weight: 228.0
Value: 114.0", "type": "TreeMapNode", "weight": 228 }, { "color": "#c53a00", "doubleValue": 115, "label": "115", "labelValue": "115.0", "tooltip": "Label: 115
Weight: 230.0
Value: 115.0", "type": "TreeMapNode", "weight": 230 }, { "color": "#c43b00", "doubleValue": 116, "label": "116", "labelValue": "116.0", "tooltip": "Label: 116
Weight: 232.0
Value: 116.0", "type": "TreeMapNode", "weight": 232 }, { "color": "#c43b00", "doubleValue": 117, "label": "117", "labelValue": "117.0", "tooltip": "Label: 117
Weight: 234.0
Value: 117.0", "type": "TreeMapNode", "weight": 234 }, { "color": "#c33c00", "doubleValue": 118, "label": "118", "labelValue": "118.0", "tooltip": "Label: 118
Weight: 236.0
Value: 118.0", "type": "TreeMapNode", "weight": 236 }, { "color": "#c33c00", "doubleValue": 119, "label": "119", "labelValue": "119.0", "tooltip": "Label: 119
Weight: 238.0
Value: 119.0", "type": "TreeMapNode", "weight": 238 }, { "color": "#c23d00", "doubleValue": 120, "label": "120", "labelValue": "120.0", "tooltip": "Label: 120
Weight: 240.0
Value: 120.0", "type": "TreeMapNode", "weight": 240 }, { "color": "#c23d00", "doubleValue": 121, "label": "121", "labelValue": "121.0", "tooltip": "Label: 121
Weight: 242.0
Value: 121.0", "type": "TreeMapNode", "weight": 242 }, { "color": "#c13e00", "doubleValue": 122, "label": "122", "labelValue": "122.0", "tooltip": "Label: 122
Weight: 244.0
Value: 122.0", "type": "TreeMapNode", "weight": 244 }, { "color": "#c13e00", "doubleValue": 123, "label": "123", "labelValue": "123.0", "tooltip": "Label: 123
Weight: 246.0
Value: 123.0", "type": "TreeMapNode", "weight": 246 }, { "color": "#c03f00", "doubleValue": 124, "label": "124", "labelValue": "124.0", "tooltip": "Label: 124
Weight: 248.0
Value: 124.0", "type": "TreeMapNode", "weight": 248 }, { "color": "#c03f00", "doubleValue": 125, "label": "125", "labelValue": "125.0", "tooltip": "Label: 125
Weight: 250.0
Value: 125.0", "type": "TreeMapNode", "weight": 250 }, { "color": "#bf4000", "doubleValue": 126, "label": "126", "labelValue": "126.0", "tooltip": "Label: 126
Weight: 252.0
Value: 126.0", "type": "TreeMapNode", "weight": 252 }, { "color": "#bf4000", "doubleValue": 127, "label": "127", "labelValue": "127.0", "tooltip": "Label: 127
Weight: 254.0
Value: 127.0", "type": "TreeMapNode", "weight": 254 }, { "color": "#be4100", "doubleValue": 128, "label": "128", "labelValue": "128.0", "tooltip": "Label: 128
Weight: 256.0
Value: 128.0", "type": "TreeMapNode", "weight": 256 }, { "color": "#be4100", "doubleValue": 129, "label": "129", "labelValue": "129.0", "tooltip": "Label: 129
Weight: 258.0
Value: 129.0", "type": "TreeMapNode", "weight": 258 }, { "color": "#bd4200", "doubleValue": 130, "label": "130", "labelValue": "130.0", "tooltip": "Label: 130
Weight: 260.0
Value: 130.0", "type": "TreeMapNode", "weight": 260 }, { "color": "#bd4200", "doubleValue": 131, "label": "131", "labelValue": "131.0", "tooltip": "Label: 131
Weight: 262.0
Value: 131.0", "type": "TreeMapNode", "weight": 262 }, { "color": "#bc4300", "doubleValue": 132, "label": "132", "labelValue": "132.0", "tooltip": "Label: 132
Weight: 264.0
Value: 132.0", "type": "TreeMapNode", "weight": 264 }, { "color": "#bc4300", "doubleValue": 133, "label": "133", "labelValue": "133.0", "tooltip": "Label: 133
Weight: 266.0
Value: 133.0", "type": "TreeMapNode", "weight": 266 }, { "color": "#bb4400", "doubleValue": 134, "label": "134", "labelValue": "134.0", "tooltip": "Label: 134
Weight: 268.0
Value: 134.0", "type": "TreeMapNode", "weight": 268 }, { "color": "#bb4400", "doubleValue": 135, "label": "135", "labelValue": "135.0", "tooltip": "Label: 135
Weight: 270.0
Value: 135.0", "type": "TreeMapNode", "weight": 270 }, { "color": "#ba4500", "doubleValue": 136, "label": "136", "labelValue": "136.0", "tooltip": "Label: 136
Weight: 272.0
Value: 136.0", "type": "TreeMapNode", "weight": 272 }, { "color": "#ba4500", "doubleValue": 137, "label": "137", "labelValue": "137.0", "tooltip": "Label: 137
Weight: 274.0
Value: 137.0", "type": "TreeMapNode", "weight": 274 }, { "color": "#b94600", "doubleValue": 138, "label": "138", "labelValue": "138.0", "tooltip": "Label: 138
Weight: 276.0
Value: 138.0", "type": "TreeMapNode", "weight": 276 }, { "color": "#b84700", "doubleValue": 139, "label": "139", "labelValue": "139.0", "tooltip": "Label: 139
Weight: 278.0
Value: 139.0", "type": "TreeMapNode", "weight": 278 }, { "color": "#b84700", "doubleValue": 140, "label": "140", "labelValue": "140.0", "tooltip": "Label: 140
Weight: 280.0
Value: 140.0", "type": "TreeMapNode", "weight": 280 }, { "color": "#b74800", "doubleValue": 141, "label": "141", "labelValue": "141.0", "tooltip": "Label: 141
Weight: 282.0
Value: 141.0", "type": "TreeMapNode", "weight": 282 }, { "color": "#b74800", "doubleValue": 142, "label": "142", "labelValue": "142.0", "tooltip": "Label: 142
Weight: 284.0
Value: 142.0", "type": "TreeMapNode", "weight": 284 }, { "color": "#b64900", "doubleValue": 143, "label": "143", "labelValue": "143.0", "tooltip": "Label: 143
Weight: 286.0
Value: 143.0", "type": "TreeMapNode", "weight": 286 }, { "color": "#b64900", "doubleValue": 144, "label": "144", "labelValue": "144.0", "tooltip": "Label: 144
Weight: 288.0
Value: 144.0", "type": "TreeMapNode", "weight": 288 }, { "color": "#b54a00", "doubleValue": 145, "label": "145", "labelValue": "145.0", "tooltip": "Label: 145
Weight: 290.0
Value: 145.0", "type": "TreeMapNode", "weight": 290 }, { "color": "#b54a00", "doubleValue": 146, "label": "146", "labelValue": "146.0", "tooltip": "Label: 146
Weight: 292.0
Value: 146.0", "type": "TreeMapNode", "weight": 292 }, { "color": "#b44b00", "doubleValue": 147, "label": "147", "labelValue": "147.0", "tooltip": "Label: 147
Weight: 294.0
Value: 147.0", "type": "TreeMapNode", "weight": 294 }, { "color": "#b44b00", "doubleValue": 148, "label": "148", "labelValue": "148.0", "tooltip": "Label: 148
Weight: 296.0
Value: 148.0", "type": "TreeMapNode", "weight": 296 }, { "color": "#b34c00", "doubleValue": 149, "label": "149", "labelValue": "149.0", "tooltip": "Label: 149
Weight: 298.0
Value: 149.0", "type": "TreeMapNode", "weight": 298 }, { "color": "#b34c00", "doubleValue": 150, "label": "150", "labelValue": "150.0", "tooltip": "Label: 150
Weight: 300.0
Value: 150.0", "type": "TreeMapNode", "weight": 300 }, { "color": "#b24d00", "doubleValue": 151, "label": "151", "labelValue": "151.0", "tooltip": "Label: 151
Weight: 302.0
Value: 151.0", "type": "TreeMapNode", "weight": 302 }, { "color": "#b24d00", "doubleValue": 152, "label": "152", "labelValue": "152.0", "tooltip": "Label: 152
Weight: 304.0
Value: 152.0", "type": "TreeMapNode", "weight": 304 }, { "color": "#b14e00", "doubleValue": 153, "label": "153", "labelValue": "153.0", "tooltip": "Label: 153
Weight: 306.0
Value: 153.0", "type": "TreeMapNode", "weight": 306 }, { "color": "#b14e00", "doubleValue": 154, "label": "154", "labelValue": "154.0", "tooltip": "Label: 154
Weight: 308.0
Value: 154.0", "type": "TreeMapNode", "weight": 308 }, { "color": "#b04f00", "doubleValue": 155, "label": "155", "labelValue": "155.0", "tooltip": "Label: 155
Weight: 310.0
Value: 155.0", "type": "TreeMapNode", "weight": 310 }, { "color": "#b04f00", "doubleValue": 156, "label": "156", "labelValue": "156.0", "tooltip": "Label: 156
Weight: 312.0
Value: 156.0", "type": "TreeMapNode", "weight": 312 }, { "color": "#af5000", "doubleValue": 157, "label": "157", "labelValue": "157.0", "tooltip": "Label: 157
Weight: 314.0
Value: 157.0", "type": "TreeMapNode", "weight": 314 }, { "color": "#af5000", "doubleValue": 158, "label": "158", "labelValue": "158.0", "tooltip": "Label: 158
Weight: 316.0
Value: 158.0", "type": "TreeMapNode", "weight": 316 }, { "color": "#ae5100", "doubleValue": 159, "label": "159", "labelValue": "159.0", "tooltip": "Label: 159
Weight: 318.0
Value: 159.0", "type": "TreeMapNode", "weight": 318 }, { "color": "#ae5100", "doubleValue": 160, "label": "160", "labelValue": "160.0", "tooltip": "Label: 160
Weight: 320.0
Value: 160.0", "type": "TreeMapNode", "weight": 320 }, { "color": "#ad5200", "doubleValue": 161, "label": "161", "labelValue": "161.0", "tooltip": "Label: 161
Weight: 322.0
Value: 161.0", "type": "TreeMapNode", "weight": 322 }, { "color": "#ad5200", "doubleValue": 162, "label": "162", "labelValue": "162.0", "tooltip": "Label: 162
Weight: 324.0
Value: 162.0", "type": "TreeMapNode", "weight": 324 }, { "color": "#ac5300", "doubleValue": 163, "label": "163", "labelValue": "163.0", "tooltip": "Label: 163
Weight: 326.0
Value: 163.0", "type": "TreeMapNode", "weight": 326 }, { "color": "#ac5300", "doubleValue": 164, "label": "164", "labelValue": "164.0", "tooltip": "Label: 164
Weight: 328.0
Value: 164.0", "type": "TreeMapNode", "weight": 328 }, { "color": "#ab5400", "doubleValue": 165, "label": "165", "labelValue": "165.0", "tooltip": "Label: 165
Weight: 330.0
Value: 165.0", "type": "TreeMapNode", "weight": 330 }, { "color": "#ab5400", "doubleValue": 166, "label": "166", "labelValue": "166.0", "tooltip": "Label: 166
Weight: 332.0
Value: 166.0", "type": "TreeMapNode", "weight": 332 }, { "color": "#aa5500", "doubleValue": 167, "label": "167", "labelValue": "167.0", "tooltip": "Label: 167
Weight: 334.0
Value: 167.0", "type": "TreeMapNode", "weight": 334 }, { "color": "#aa5500", "doubleValue": 168, "label": "168", "labelValue": "168.0", "tooltip": "Label: 168
Weight: 336.0
Value: 168.0", "type": "TreeMapNode", "weight": 336 }, { "color": "#a95600", "doubleValue": 169, "label": "169", "labelValue": "169.0", "tooltip": "Label: 169
Weight: 338.0
Value: 169.0", "type": "TreeMapNode", "weight": 338 }, { "color": "#a95600", "doubleValue": 170, "label": "170", "labelValue": "170.0", "tooltip": "Label: 170
Weight: 340.0
Value: 170.0", "type": "TreeMapNode", "weight": 340 }, { "color": "#a85700", "doubleValue": 171, "label": "171", "labelValue": "171.0", "tooltip": "Label: 171
Weight: 342.0
Value: 171.0", "type": "TreeMapNode", "weight": 342 }, { "color": "#a85700", "doubleValue": 172, "label": "172", "labelValue": "172.0", "tooltip": "Label: 172
Weight: 344.0
Value: 172.0", "type": "TreeMapNode", "weight": 344 }, { "color": "#a75800", "doubleValue": 173, "label": "173", "labelValue": "173.0", "tooltip": "Label: 173
Weight: 346.0
Value: 173.0", "type": "TreeMapNode", "weight": 346 }, { "color": "#a75800", "doubleValue": 174, "label": "174", "labelValue": "174.0", "tooltip": "Label: 174
Weight: 348.0
Value: 174.0", "type": "TreeMapNode", "weight": 348 }, { "color": "#a65900", "doubleValue": 175, "label": "175", "labelValue": "175.0", "tooltip": "Label: 175
Weight: 350.0
Value: 175.0", "type": "TreeMapNode", "weight": 350 }, { "color": "#a65900", "doubleValue": 176, "label": "176", "labelValue": "176.0", "tooltip": "Label: 176
Weight: 352.0
Value: 176.0", "type": "TreeMapNode", "weight": 352 }, { "color": "#a55a00", "doubleValue": 177, "label": "177", "labelValue": "177.0", "tooltip": "Label: 177
Weight: 354.0
Value: 177.0", "type": "TreeMapNode", "weight": 354 }, { "color": "#a55a00", "doubleValue": 178, "label": "178", "labelValue": "178.0", "tooltip": "Label: 178
Weight: 356.0
Value: 178.0", "type": "TreeMapNode", "weight": 356 }, { "color": "#a45b00", "doubleValue": 179, "label": "179", "labelValue": "179.0", "tooltip": "Label: 179
Weight: 358.0
Value: 179.0", "type": "TreeMapNode", "weight": 358 }, { "color": "#a45b00", "doubleValue": 180, "label": "180", "labelValue": "180.0", "tooltip": "Label: 180
Weight: 360.0
Value: 180.0", "type": "TreeMapNode", "weight": 360 }, { "color": "#a35c00", "doubleValue": 181, "label": "181", "labelValue": "181.0", "tooltip": "Label: 181
Weight: 362.0
Value: 181.0", "type": "TreeMapNode", "weight": 362 }, { "color": "#a35c00", "doubleValue": 182, "label": "182", "labelValue": "182.0", "tooltip": "Label: 182
Weight: 364.0
Value: 182.0", "type": "TreeMapNode", "weight": 364 }, { "color": "#a25d00", "doubleValue": 183, "label": "183", "labelValue": "183.0", "tooltip": "Label: 183
Weight: 366.0
Value: 183.0", "type": "TreeMapNode", "weight": 366 }, { "color": "#a15e00", "doubleValue": 184, "label": "184", "labelValue": "184.0", "tooltip": "Label: 184
Weight: 368.0
Value: 184.0", "type": "TreeMapNode", "weight": 368 }, { "color": "#a15e00", "doubleValue": 185, "label": "185", "labelValue": "185.0", "tooltip": "Label: 185
Weight: 370.0
Value: 185.0", "type": "TreeMapNode", "weight": 370 }, { "color": "#a05f00", "doubleValue": 186, "label": "186", "labelValue": "186.0", "tooltip": "Label: 186
Weight: 372.0
Value: 186.0", "type": "TreeMapNode", "weight": 372 }, { "color": "#a05f00", "doubleValue": 187, "label": "187", "labelValue": "187.0", "tooltip": "Label: 187
Weight: 374.0
Value: 187.0", "type": "TreeMapNode", "weight": 374 }, { "color": "#9f6000", "doubleValue": 188, "label": "188", "labelValue": "188.0", "tooltip": "Label: 188
Weight: 376.0
Value: 188.0", "type": "TreeMapNode", "weight": 376 }, { "color": "#9f6000", "doubleValue": 189, "label": "189", "labelValue": "189.0", "tooltip": "Label: 189
Weight: 378.0
Value: 189.0", "type": "TreeMapNode", "weight": 378 }, { "color": "#9e6100", "doubleValue": 190, "label": "190", "labelValue": "190.0", "tooltip": "Label: 190
Weight: 380.0
Value: 190.0", "type": "TreeMapNode", "weight": 380 }, { "color": "#9e6100", "doubleValue": 191, "label": "191", "labelValue": "191.0", "tooltip": "Label: 191
Weight: 382.0
Value: 191.0", "type": "TreeMapNode", "weight": 382 }, { "color": "#9d6200", "doubleValue": 192, "label": "192", "labelValue": "192.0", "tooltip": "Label: 192
Weight: 384.0
Value: 192.0", "type": "TreeMapNode", "weight": 384 }, { "color": "#9d6200", "doubleValue": 193, "label": "193", "labelValue": "193.0", "tooltip": "Label: 193
Weight: 386.0
Value: 193.0", "type": "TreeMapNode", "weight": 386 }, { "color": "#9c6300", "doubleValue": 194, "label": "194", "labelValue": "194.0", "tooltip": "Label: 194
Weight: 388.0
Value: 194.0", "type": "TreeMapNode", "weight": 388 }, { "color": "#9c6300", "doubleValue": 195, "label": "195", "labelValue": "195.0", "tooltip": "Label: 195
Weight: 390.0
Value: 195.0", "type": "TreeMapNode", "weight": 390 }, { "color": "#9b6400", "doubleValue": 196, "label": "196", "labelValue": "196.0", "tooltip": "Label: 196
Weight: 392.0
Value: 196.0", "type": "TreeMapNode", "weight": 392 }, { "color": "#9b6400", "doubleValue": 197, "label": "197", "labelValue": "197.0", "tooltip": "Label: 197
Weight: 394.0
Value: 197.0", "type": "TreeMapNode", "weight": 394 }, { "color": "#9a6500", "doubleValue": 198, "label": "198", "labelValue": "198.0", "tooltip": "Label: 198
Weight: 396.0
Value: 198.0", "type": "TreeMapNode", "weight": 396 }, { "color": "#9a6500", "doubleValue": 199, "label": "199", "labelValue": "199.0", "tooltip": "Label: 199
Weight: 398.0
Value: 199.0", "type": "TreeMapNode", "weight": 398 }, { "color": "#996600", "doubleValue": 200, "label": "200", "labelValue": "200.0", "tooltip": "Label: 200
Weight: 400.0
Value: 200.0", "type": "TreeMapNode", "weight": 400 }, { "color": "#996600", "doubleValue": 201, "label": "201", "labelValue": "201.0", "tooltip": "Label: 201
Weight: 402.0
Value: 201.0", "type": "TreeMapNode", "weight": 402 }, { "color": "#986700", "doubleValue": 202, "label": "202", "labelValue": "202.0", "tooltip": "Label: 202
Weight: 404.0
Value: 202.0", "type": "TreeMapNode", "weight": 404 }, { "color": "#986700", "doubleValue": 203, "label": "203", "labelValue": "203.0", "tooltip": "Label: 203
Weight: 406.0
Value: 203.0", "type": "TreeMapNode", "weight": 406 }, { "color": "#976800", "doubleValue": 204, "label": "204", "labelValue": "204.0", "tooltip": "Label: 204
Weight: 408.0
Value: 204.0", "type": "TreeMapNode", "weight": 408 }, { "color": "#976800", "doubleValue": 205, "label": "205", "labelValue": "205.0", "tooltip": "Label: 205
Weight: 410.0
Value: 205.0", "type": "TreeMapNode", "weight": 410 }, { "color": "#966900", "doubleValue": 206, "label": "206", "labelValue": "206.0", "tooltip": "Label: 206
Weight: 412.0
Value: 206.0", "type": "TreeMapNode", "weight": 412 }, { "color": "#966900", "doubleValue": 207, "label": "207", "labelValue": "207.0", "tooltip": "Label: 207
Weight: 414.0
Value: 207.0", "type": "TreeMapNode", "weight": 414 }, { "color": "#956a00", "doubleValue": 208, "label": "208", "labelValue": "208.0", "tooltip": "Label: 208
Weight: 416.0
Value: 208.0", "type": "TreeMapNode", "weight": 416 }, { "color": "#956a00", "doubleValue": 209, "label": "209", "labelValue": "209.0", "tooltip": "Label: 209
Weight: 418.0
Value: 209.0", "type": "TreeMapNode", "weight": 418 }, { "color": "#946b00", "doubleValue": 210, "label": "210", "labelValue": "210.0", "tooltip": "Label: 210
Weight: 420.0
Value: 210.0", "type": "TreeMapNode", "weight": 420 }, { "color": "#946b00", "doubleValue": 211, "label": "211", "labelValue": "211.0", "tooltip": "Label: 211
Weight: 422.0
Value: 211.0", "type": "TreeMapNode", "weight": 422 }, { "color": "#936c00", "doubleValue": 212, "label": "212", "labelValue": "212.0", "tooltip": "Label: 212
Weight: 424.0
Value: 212.0", "type": "TreeMapNode", "weight": 424 }, { "color": "#936c00", "doubleValue": 213, "label": "213", "labelValue": "213.0", "tooltip": "Label: 213
Weight: 426.0
Value: 213.0", "type": "TreeMapNode", "weight": 426 }, { "color": "#926d00", "doubleValue": 214, "label": "214", "labelValue": "214.0", "tooltip": "Label: 214
Weight: 428.0
Value: 214.0", "type": "TreeMapNode", "weight": 428 }, { "color": "#926d00", "doubleValue": 215, "label": "215", "labelValue": "215.0", "tooltip": "Label: 215
Weight: 430.0
Value: 215.0", "type": "TreeMapNode", "weight": 430 }, { "color": "#916e00", "doubleValue": 216, "label": "216", "labelValue": "216.0", "tooltip": "Label: 216
Weight: 432.0
Value: 216.0", "type": "TreeMapNode", "weight": 432 }, { "color": "#916e00", "doubleValue": 217, "label": "217", "labelValue": "217.0", "tooltip": "Label: 217
Weight: 434.0
Value: 217.0", "type": "TreeMapNode", "weight": 434 }, { "color": "#906f00", "doubleValue": 218, "label": "218", "labelValue": "218.0", "tooltip": "Label: 218
Weight: 436.0
Value: 218.0", "type": "TreeMapNode", "weight": 436 }, { "color": "#906f00", "doubleValue": 219, "label": "219", "labelValue": "219.0", "tooltip": "Label: 219
Weight: 438.0
Value: 219.0", "type": "TreeMapNode", "weight": 438 }, { "color": "#8f7000", "doubleValue": 220, "label": "220", "labelValue": "220.0", "tooltip": "Label: 220
Weight: 440.0
Value: 220.0", "type": "TreeMapNode", "weight": 440 }, { "color": "#8f7000", "doubleValue": 221, "label": "221", "labelValue": "221.0", "tooltip": "Label: 221
Weight: 442.0
Value: 221.0", "type": "TreeMapNode", "weight": 442 }, { "color": "#8e7100", "doubleValue": 222, "label": "222", "labelValue": "222.0", "tooltip": "Label: 222
Weight: 444.0
Value: 222.0", "type": "TreeMapNode", "weight": 444 }, { "color": "#8e7100", "doubleValue": 223, "label": "223", "labelValue": "223.0", "tooltip": "Label: 223
Weight: 446.0
Value: 223.0", "type": "TreeMapNode", "weight": 446 }, { "color": "#8d7200", "doubleValue": 224, "label": "224", "labelValue": "224.0", "tooltip": "Label: 224
Weight: 448.0
Value: 224.0", "type": "TreeMapNode", "weight": 448 }, { "color": "#8d7200", "doubleValue": 225, "label": "225", "labelValue": "225.0", "tooltip": "Label: 225
Weight: 450.0
Value: 225.0", "type": "TreeMapNode", "weight": 450 }, { "color": "#8c7300", "doubleValue": 226, "label": "226", "labelValue": "226.0", "tooltip": "Label: 226
Weight: 452.0
Value: 226.0", "type": "TreeMapNode", "weight": 452 }, { "color": "#8c7300", "doubleValue": 227, "label": "227", "labelValue": "227.0", "tooltip": "Label: 227
Weight: 454.0
Value: 227.0", "type": "TreeMapNode", "weight": 454 }, { "color": "#8b7400", "doubleValue": 228, "label": "228", "labelValue": "228.0", "tooltip": "Label: 228
Weight: 456.0
Value: 228.0", "type": "TreeMapNode", "weight": 456 }, { "color": "#8a7500", "doubleValue": 229, "label": "229", "labelValue": "229.0", "tooltip": "Label: 229
Weight: 458.0
Value: 229.0", "type": "TreeMapNode", "weight": 458 }, { "color": "#8a7500", "doubleValue": 230, "label": "230", "labelValue": "230.0", "tooltip": "Label: 230
Weight: 460.0
Value: 230.0", "type": "TreeMapNode", "weight": 460 }, { "color": "#897600", "doubleValue": 231, "label": "231", "labelValue": "231.0", "tooltip": "Label: 231
Weight: 462.0
Value: 231.0", "type": "TreeMapNode", "weight": 462 }, { "color": "#897600", "doubleValue": 232, "label": "232", "labelValue": "232.0", "tooltip": "Label: 232
Weight: 464.0
Value: 232.0", "type": "TreeMapNode", "weight": 464 }, { "color": "#887700", "doubleValue": 233, "label": "233", "labelValue": "233.0", "tooltip": "Label: 233
Weight: 466.0
Value: 233.0", "type": "TreeMapNode", "weight": 466 }, { "color": "#887700", "doubleValue": 234, "label": "234", "labelValue": "234.0", "tooltip": "Label: 234
Weight: 468.0
Value: 234.0", "type": "TreeMapNode", "weight": 468 }, { "color": "#877800", "doubleValue": 235, "label": "235", "labelValue": "235.0", "tooltip": "Label: 235
Weight: 470.0
Value: 235.0", "type": "TreeMapNode", "weight": 470 }, { "color": "#877800", "doubleValue": 236, "label": "236", "labelValue": "236.0", "tooltip": "Label: 236
Weight: 472.0
Value: 236.0", "type": "TreeMapNode", "weight": 472 }, { "color": "#867900", "doubleValue": 237, "label": "237", "labelValue": "237.0", "tooltip": "Label: 237
Weight: 474.0
Value: 237.0", "type": "TreeMapNode", "weight": 474 }, { "color": "#867900", "doubleValue": 238, "label": "238", "labelValue": "238.0", "tooltip": "Label: 238
Weight: 476.0
Value: 238.0", "type": "TreeMapNode", "weight": 476 }, { "color": "#857a00", "doubleValue": 239, "label": "239", "labelValue": "239.0", "tooltip": "Label: 239
Weight: 478.0
Value: 239.0", "type": "TreeMapNode", "weight": 478 }, { "color": "#857a00", "doubleValue": 240, "label": "240", "labelValue": "240.0", "tooltip": "Label: 240
Weight: 480.0
Value: 240.0", "type": "TreeMapNode", "weight": 480 }, { "color": "#847b00", "doubleValue": 241, "label": "241", "labelValue": "241.0", "tooltip": "Label: 241
Weight: 482.0
Value: 241.0", "type": "TreeMapNode", "weight": 482 }, { "color": "#847b00", "doubleValue": 242, "label": "242", "labelValue": "242.0", "tooltip": "Label: 242
Weight: 484.0
Value: 242.0", "type": "TreeMapNode", "weight": 484 }, { "color": "#837c00", "doubleValue": 243, "label": "243", "labelValue": "243.0", "tooltip": "Label: 243
Weight: 486.0
Value: 243.0", "type": "TreeMapNode", "weight": 486 }, { "color": "#837c00", "doubleValue": 244, "label": "244", "labelValue": "244.0", "tooltip": "Label: 244
Weight: 488.0
Value: 244.0", "type": "TreeMapNode", "weight": 488 }, { "color": "#827d00", "doubleValue": 245, "label": "245", "labelValue": "245.0", "tooltip": "Label: 245
Weight: 490.0
Value: 245.0", "type": "TreeMapNode", "weight": 490 }, { "color": "#827d00", "doubleValue": 246, "label": "246", "labelValue": "246.0", "tooltip": "Label: 246
Weight: 492.0
Value: 246.0", "type": "TreeMapNode", "weight": 492 }, { "color": "#817e00", "doubleValue": 247, "label": "247", "labelValue": "247.0", "tooltip": "Label: 247
Weight: 494.0
Value: 247.0", "type": "TreeMapNode", "weight": 494 }, { "color": "#817e00", "doubleValue": 248, "label": "248", "labelValue": "248.0", "tooltip": "Label: 248
Weight: 496.0
Value: 248.0", "type": "TreeMapNode", "weight": 496 }, { "color": "#807f00", "doubleValue": 249, "label": "249", "labelValue": "249.0", "tooltip": "Label: 249
Weight: 498.0
Value: 249.0", "type": "TreeMapNode", "weight": 498 }, { "color": "#807f00", "doubleValue": 250, "label": "250", "labelValue": "250.0", "tooltip": "Label: 250
Weight: 500.0
Value: 250.0", "type": "TreeMapNode", "weight": 500 }, { "color": "#7f8000", "doubleValue": 251, "label": "251", "labelValue": "251.0", "tooltip": "Label: 251
Weight: 502.0
Value: 251.0", "type": "TreeMapNode", "weight": 502 }, { "color": "#7f8000", "doubleValue": 252, "label": "252", "labelValue": "252.0", "tooltip": "Label: 252
Weight: 504.0
Value: 252.0", "type": "TreeMapNode", "weight": 504 }, { "color": "#7e8100", "doubleValue": 253, "label": "253", "labelValue": "253.0", "tooltip": "Label: 253
Weight: 506.0
Value: 253.0", "type": "TreeMapNode", "weight": 506 }, { "color": "#7e8100", "doubleValue": 254, "label": "254", "labelValue": "254.0", "tooltip": "Label: 254
Weight: 508.0
Value: 254.0", "type": "TreeMapNode", "weight": 508 }, { "color": "#7d8200", "doubleValue": 255, "label": "255", "labelValue": "255.0", "tooltip": "Label: 255
Weight: 510.0
Value: 255.0", "type": "TreeMapNode", "weight": 510 }, { "color": "#7d8200", "doubleValue": 256, "label": "256", "labelValue": "256.0", "tooltip": "Label: 256
Weight: 512.0
Value: 256.0", "type": "TreeMapNode", "weight": 512 }, { "color": "#7c8300", "doubleValue": 257, "label": "257", "labelValue": "257.0", "tooltip": "Label: 257
Weight: 514.0
Value: 257.0", "type": "TreeMapNode", "weight": 514 }, { "color": "#7c8300", "doubleValue": 258, "label": "258", "labelValue": "258.0", "tooltip": "Label: 258
Weight: 516.0
Value: 258.0", "type": "TreeMapNode", "weight": 516 }, { "color": "#7b8400", "doubleValue": 259, "label": "259", "labelValue": "259.0", "tooltip": "Label: 259
Weight: 518.0
Value: 259.0", "type": "TreeMapNode", "weight": 518 }, { "color": "#7b8400", "doubleValue": 260, "label": "260", "labelValue": "260.0", "tooltip": "Label: 260
Weight: 520.0
Value: 260.0", "type": "TreeMapNode", "weight": 520 }, { "color": "#7a8500", "doubleValue": 261, "label": "261", "labelValue": "261.0", "tooltip": "Label: 261
Weight: 522.0
Value: 261.0", "type": "TreeMapNode", "weight": 522 }, { "color": "#7a8500", "doubleValue": 262, "label": "262", "labelValue": "262.0", "tooltip": "Label: 262
Weight: 524.0
Value: 262.0", "type": "TreeMapNode", "weight": 524 }, { "color": "#798600", "doubleValue": 263, "label": "263", "labelValue": "263.0", "tooltip": "Label: 263
Weight: 526.0
Value: 263.0", "type": "TreeMapNode", "weight": 526 }, { "color": "#798600", "doubleValue": 264, "label": "264", "labelValue": "264.0", "tooltip": "Label: 264
Weight: 528.0
Value: 264.0", "type": "TreeMapNode", "weight": 528 }, { "color": "#788700", "doubleValue": 265, "label": "265", "labelValue": "265.0", "tooltip": "Label: 265
Weight: 530.0
Value: 265.0", "type": "TreeMapNode", "weight": 530 }, { "color": "#788700", "doubleValue": 266, "label": "266", "labelValue": "266.0", "tooltip": "Label: 266
Weight: 532.0
Value: 266.0", "type": "TreeMapNode", "weight": 532 }, { "color": "#778800", "doubleValue": 267, "label": "267", "labelValue": "267.0", "tooltip": "Label: 267
Weight: 534.0
Value: 267.0", "type": "TreeMapNode", "weight": 534 }, { "color": "#778800", "doubleValue": 268, "label": "268", "labelValue": "268.0", "tooltip": "Label: 268
Weight: 536.0
Value: 268.0", "type": "TreeMapNode", "weight": 536 }, { "color": "#768900", "doubleValue": 269, "label": "269", "labelValue": "269.0", "tooltip": "Label: 269
Weight: 538.0
Value: 269.0", "type": "TreeMapNode", "weight": 538 }, { "color": "#768900", "doubleValue": 270, "label": "270", "labelValue": "270.0", "tooltip": "Label: 270
Weight: 540.0
Value: 270.0", "type": "TreeMapNode", "weight": 540 }, { "color": "#758a00", "doubleValue": 271, "label": "271", "labelValue": "271.0", "tooltip": "Label: 271
Weight: 542.0
Value: 271.0", "type": "TreeMapNode", "weight": 542 }, { "color": "#758a00", "doubleValue": 272, "label": "272", "labelValue": "272.0", "tooltip": "Label: 272
Weight: 544.0
Value: 272.0", "type": "TreeMapNode", "weight": 544 }, { "color": "#748b00", "doubleValue": 273, "label": "273", "labelValue": "273.0", "tooltip": "Label: 273
Weight: 546.0
Value: 273.0", "type": "TreeMapNode", "weight": 546 }, { "color": "#738c00", "doubleValue": 274, "label": "274", "labelValue": "274.0", "tooltip": "Label: 274
Weight: 548.0
Value: 274.0", "type": "TreeMapNode", "weight": 548 }, { "color": "#738c00", "doubleValue": 275, "label": "275", "labelValue": "275.0", "tooltip": "Label: 275
Weight: 550.0
Value: 275.0", "type": "TreeMapNode", "weight": 550 }, { "color": "#728d00", "doubleValue": 276, "label": "276", "labelValue": "276.0", "tooltip": "Label: 276
Weight: 552.0
Value: 276.0", "type": "TreeMapNode", "weight": 552 }, { "color": "#728d00", "doubleValue": 277, "label": "277", "labelValue": "277.0", "tooltip": "Label: 277
Weight: 554.0
Value: 277.0", "type": "TreeMapNode", "weight": 554 }, { "color": "#718e00", "doubleValue": 278, "label": "278", "labelValue": "278.0", "tooltip": "Label: 278
Weight: 556.0
Value: 278.0", "type": "TreeMapNode", "weight": 556 }, { "color": "#718e00", "doubleValue": 279, "label": "279", "labelValue": "279.0", "tooltip": "Label: 279
Weight: 558.0
Value: 279.0", "type": "TreeMapNode", "weight": 558 }, { "color": "#708f00", "doubleValue": 280, "label": "280", "labelValue": "280.0", "tooltip": "Label: 280
Weight: 560.0
Value: 280.0", "type": "TreeMapNode", "weight": 560 }, { "color": "#708f00", "doubleValue": 281, "label": "281", "labelValue": "281.0", "tooltip": "Label: 281
Weight: 562.0
Value: 281.0", "type": "TreeMapNode", "weight": 562 }, { "color": "#6f9000", "doubleValue": 282, "label": "282", "labelValue": "282.0", "tooltip": "Label: 282
Weight: 564.0
Value: 282.0", "type": "TreeMapNode", "weight": 564 }, { "color": "#6f9000", "doubleValue": 283, "label": "283", "labelValue": "283.0", "tooltip": "Label: 283
Weight: 566.0
Value: 283.0", "type": "TreeMapNode", "weight": 566 }, { "color": "#6e9100", "doubleValue": 284, "label": "284", "labelValue": "284.0", "tooltip": "Label: 284
Weight: 568.0
Value: 284.0", "type": "TreeMapNode", "weight": 568 }, { "color": "#6e9100", "doubleValue": 285, "label": "285", "labelValue": "285.0", "tooltip": "Label: 285
Weight: 570.0
Value: 285.0", "type": "TreeMapNode", "weight": 570 }, { "color": "#6d9200", "doubleValue": 286, "label": "286", "labelValue": "286.0", "tooltip": "Label: 286
Weight: 572.0
Value: 286.0", "type": "TreeMapNode", "weight": 572 }, { "color": "#6d9200", "doubleValue": 287, "label": "287", "labelValue": "287.0", "tooltip": "Label: 287
Weight: 574.0
Value: 287.0", "type": "TreeMapNode", "weight": 574 }, { "color": "#6c9300", "doubleValue": 288, "label": "288", "labelValue": "288.0", "tooltip": "Label: 288
Weight: 576.0
Value: 288.0", "type": "TreeMapNode", "weight": 576 }, { "color": "#6c9300", "doubleValue": 289, "label": "289", "labelValue": "289.0", "tooltip": "Label: 289
Weight: 578.0
Value: 289.0", "type": "TreeMapNode", "weight": 578 }, { "color": "#6b9400", "doubleValue": 290, "label": "290", "labelValue": "290.0", "tooltip": "Label: 290
Weight: 580.0
Value: 290.0", "type": "TreeMapNode", "weight": 580 }, { "color": "#6b9400", "doubleValue": 291, "label": "291", "labelValue": "291.0", "tooltip": "Label: 291
Weight: 582.0
Value: 291.0", "type": "TreeMapNode", "weight": 582 }, { "color": "#6a9500", "doubleValue": 292, "label": "292", "labelValue": "292.0", "tooltip": "Label: 292
Weight: 584.0
Value: 292.0", "type": "TreeMapNode", "weight": 584 }, { "color": "#6a9500", "doubleValue": 293, "label": "293", "labelValue": "293.0", "tooltip": "Label: 293
Weight: 586.0
Value: 293.0", "type": "TreeMapNode", "weight": 586 }, { "color": "#699600", "doubleValue": 294, "label": "294", "labelValue": "294.0", "tooltip": "Label: 294
Weight: 588.0
Value: 294.0", "type": "TreeMapNode", "weight": 588 }, { "color": "#699600", "doubleValue": 295, "label": "295", "labelValue": "295.0", "tooltip": "Label: 295
Weight: 590.0
Value: 295.0", "type": "TreeMapNode", "weight": 590 }, { "color": "#689700", "doubleValue": 296, "label": "296", "labelValue": "296.0", "tooltip": "Label: 296
Weight: 592.0
Value: 296.0", "type": "TreeMapNode", "weight": 592 }, { "color": "#689700", "doubleValue": 297, "label": "297", "labelValue": "297.0", "tooltip": "Label: 297
Weight: 594.0
Value: 297.0", "type": "TreeMapNode", "weight": 594 }, { "color": "#679800", "doubleValue": 298, "label": "298", "labelValue": "298.0", "tooltip": "Label: 298
Weight: 596.0
Value: 298.0", "type": "TreeMapNode", "weight": 596 }, { "color": "#679800", "doubleValue": 299, "label": "299", "labelValue": "299.0", "tooltip": "Label: 299
Weight: 598.0
Value: 299.0", "type": "TreeMapNode", "weight": 598 }, { "color": "#669900", "doubleValue": 300, "label": "300", "labelValue": "300.0", "tooltip": "Label: 300
Weight: 600.0
Value: 300.0", "type": "TreeMapNode", "weight": 600 }, { "color": "#669900", "doubleValue": 301, "label": "301", "labelValue": "301.0", "tooltip": "Label: 301
Weight: 602.0
Value: 301.0", "type": "TreeMapNode", "weight": 602 }, { "color": "#659a00", "doubleValue": 302, "label": "302", "labelValue": "302.0", "tooltip": "Label: 302
Weight: 604.0
Value: 302.0", "type": "TreeMapNode", "weight": 604 }, { "color": "#659a00", "doubleValue": 303, "label": "303", "labelValue": "303.0", "tooltip": "Label: 303
Weight: 606.0
Value: 303.0", "type": "TreeMapNode", "weight": 606 }, { "color": "#649b00", "doubleValue": 304, "label": "304", "labelValue": "304.0", "tooltip": "Label: 304
Weight: 608.0
Value: 304.0", "type": "TreeMapNode", "weight": 608 }, { "color": "#649b00", "doubleValue": 305, "label": "305", "labelValue": "305.0", "tooltip": "Label: 305
Weight: 610.0
Value: 305.0", "type": "TreeMapNode", "weight": 610 }, { "color": "#639c00", "doubleValue": 306, "label": "306", "labelValue": "306.0", "tooltip": "Label: 306
Weight: 612.0
Value: 306.0", "type": "TreeMapNode", "weight": 612 }, { "color": "#639c00", "doubleValue": 307, "label": "307", "labelValue": "307.0", "tooltip": "Label: 307
Weight: 614.0
Value: 307.0", "type": "TreeMapNode", "weight": 614 }, { "color": "#629d00", "doubleValue": 308, "label": "308", "labelValue": "308.0", "tooltip": "Label: 308
Weight: 616.0
Value: 308.0", "type": "TreeMapNode", "weight": 616 }, { "color": "#629d00", "doubleValue": 309, "label": "309", "labelValue": "309.0", "tooltip": "Label: 309
Weight: 618.0
Value: 309.0", "type": "TreeMapNode", "weight": 618 }, { "color": "#619e00", "doubleValue": 310, "label": "310", "labelValue": "310.0", "tooltip": "Label: 310
Weight: 620.0
Value: 310.0", "type": "TreeMapNode", "weight": 620 }, { "color": "#619e00", "doubleValue": 311, "label": "311", "labelValue": "311.0", "tooltip": "Label: 311
Weight: 622.0
Value: 311.0", "type": "TreeMapNode", "weight": 622 }, { "color": "#609f00", "doubleValue": 312, "label": "312", "labelValue": "312.0", "tooltip": "Label: 312
Weight: 624.0
Value: 312.0", "type": "TreeMapNode", "weight": 624 }, { "color": "#609f00", "doubleValue": 313, "label": "313", "labelValue": "313.0", "tooltip": "Label: 313
Weight: 626.0
Value: 313.0", "type": "TreeMapNode", "weight": 626 }, { "color": "#5fa000", "doubleValue": 314, "label": "314", "labelValue": "314.0", "tooltip": "Label: 314
Weight: 628.0
Value: 314.0", "type": "TreeMapNode", "weight": 628 }, { "color": "#5fa000", "doubleValue": 315, "label": "315", "labelValue": "315.0", "tooltip": "Label: 315
Weight: 630.0
Value: 315.0", "type": "TreeMapNode", "weight": 630 }, { "color": "#5ea100", "doubleValue": 316, "label": "316", "labelValue": "316.0", "tooltip": "Label: 316
Weight: 632.0
Value: 316.0", "type": "TreeMapNode", "weight": 632 }, { "color": "#5ea100", "doubleValue": 317, "label": "317", "labelValue": "317.0", "tooltip": "Label: 317
Weight: 634.0
Value: 317.0", "type": "TreeMapNode", "weight": 634 }, { "color": "#5da200", "doubleValue": 318, "label": "318", "labelValue": "318.0", "tooltip": "Label: 318
Weight: 636.0
Value: 318.0", "type": "TreeMapNode", "weight": 636 }, { "color": "#5ca300", "doubleValue": 319, "label": "319", "labelValue": "319.0", "tooltip": "Label: 319
Weight: 638.0
Value: 319.0", "type": "TreeMapNode", "weight": 638 }, { "color": "#5ca300", "doubleValue": 320, "label": "320", "labelValue": "320.0", "tooltip": "Label: 320
Weight: 640.0
Value: 320.0", "type": "TreeMapNode", "weight": 640 }, { "color": "#5ba400", "doubleValue": 321, "label": "321", "labelValue": "321.0", "tooltip": "Label: 321
Weight: 642.0
Value: 321.0", "type": "TreeMapNode", "weight": 642 }, { "color": "#5ba400", "doubleValue": 322, "label": "322", "labelValue": "322.0", "tooltip": "Label: 322
Weight: 644.0
Value: 322.0", "type": "TreeMapNode", "weight": 644 }, { "color": "#5aa500", "doubleValue": 323, "label": "323", "labelValue": "323.0", "tooltip": "Label: 323
Weight: 646.0
Value: 323.0", "type": "TreeMapNode", "weight": 646 }, { "color": "#5aa500", "doubleValue": 324, "label": "324", "labelValue": "324.0", "tooltip": "Label: 324
Weight: 648.0
Value: 324.0", "type": "TreeMapNode", "weight": 648 }, { "color": "#59a600", "doubleValue": 325, "label": "325", "labelValue": "325.0", "tooltip": "Label: 325
Weight: 650.0
Value: 325.0", "type": "TreeMapNode", "weight": 650 }, { "color": "#59a600", "doubleValue": 326, "label": "326", "labelValue": "326.0", "tooltip": "Label: 326
Weight: 652.0
Value: 326.0", "type": "TreeMapNode", "weight": 652 }, { "color": "#58a700", "doubleValue": 327, "label": "327", "labelValue": "327.0", "tooltip": "Label: 327
Weight: 654.0
Value: 327.0", "type": "TreeMapNode", "weight": 654 }, { "color": "#58a700", "doubleValue": 328, "label": "328", "labelValue": "328.0", "tooltip": "Label: 328
Weight: 656.0
Value: 328.0", "type": "TreeMapNode", "weight": 656 }, { "color": "#57a800", "doubleValue": 329, "label": "329", "labelValue": "329.0", "tooltip": "Label: 329
Weight: 658.0
Value: 329.0", "type": "TreeMapNode", "weight": 658 }, { "color": "#57a800", "doubleValue": 330, "label": "330", "labelValue": "330.0", "tooltip": "Label: 330
Weight: 660.0
Value: 330.0", "type": "TreeMapNode", "weight": 660 }, { "color": "#56a900", "doubleValue": 331, "label": "331", "labelValue": "331.0", "tooltip": "Label: 331
Weight: 662.0
Value: 331.0", "type": "TreeMapNode", "weight": 662 }, { "color": "#56a900", "doubleValue": 332, "label": "332", "labelValue": "332.0", "tooltip": "Label: 332
Weight: 664.0
Value: 332.0", "type": "TreeMapNode", "weight": 664 }, { "color": "#55aa00", "doubleValue": 333, "label": "333", "labelValue": "333.0", "tooltip": "Label: 333
Weight: 666.0
Value: 333.0", "type": "TreeMapNode", "weight": 666 }, { "color": "#55aa00", "doubleValue": 334, "label": "334", "labelValue": "334.0", "tooltip": "Label: 334
Weight: 668.0
Value: 334.0", "type": "TreeMapNode", "weight": 668 }, { "color": "#54ab00", "doubleValue": 335, "label": "335", "labelValue": "335.0", "tooltip": "Label: 335
Weight: 670.0
Value: 335.0", "type": "TreeMapNode", "weight": 670 }, { "color": "#54ab00", "doubleValue": 336, "label": "336", "labelValue": "336.0", "tooltip": "Label: 336
Weight: 672.0
Value: 336.0", "type": "TreeMapNode", "weight": 672 }, { "color": "#53ac00", "doubleValue": 337, "label": "337", "labelValue": "337.0", "tooltip": "Label: 337
Weight: 674.0
Value: 337.0", "type": "TreeMapNode", "weight": 674 }, { "color": "#53ac00", "doubleValue": 338, "label": "338", "labelValue": "338.0", "tooltip": "Label: 338
Weight: 676.0
Value: 338.0", "type": "TreeMapNode", "weight": 676 }, { "color": "#52ad00", "doubleValue": 339, "label": "339", "labelValue": "339.0", "tooltip": "Label: 339
Weight: 678.0
Value: 339.0", "type": "TreeMapNode", "weight": 678 }, { "color": "#52ad00", "doubleValue": 340, "label": "340", "labelValue": "340.0", "tooltip": "Label: 340
Weight: 680.0
Value: 340.0", "type": "TreeMapNode", "weight": 680 }, { "color": "#51ae00", "doubleValue": 341, "label": "341", "labelValue": "341.0", "tooltip": "Label: 341
Weight: 682.0
Value: 341.0", "type": "TreeMapNode", "weight": 682 }, { "color": "#51ae00", "doubleValue": 342, "label": "342", "labelValue": "342.0", "tooltip": "Label: 342
Weight: 684.0
Value: 342.0", "type": "TreeMapNode", "weight": 684 }, { "color": "#50af00", "doubleValue": 343, "label": "343", "labelValue": "343.0", "tooltip": "Label: 343
Weight: 686.0
Value: 343.0", "type": "TreeMapNode", "weight": 686 }, { "color": "#50af00", "doubleValue": 344, "label": "344", "labelValue": "344.0", "tooltip": "Label: 344
Weight: 688.0
Value: 344.0", "type": "TreeMapNode", "weight": 688 }, { "color": "#4fb000", "doubleValue": 345, "label": "345", "labelValue": "345.0", "tooltip": "Label: 345
Weight: 690.0
Value: 345.0", "type": "TreeMapNode", "weight": 690 }, { "color": "#4fb000", "doubleValue": 346, "label": "346", "labelValue": "346.0", "tooltip": "Label: 346
Weight: 692.0
Value: 346.0", "type": "TreeMapNode", "weight": 692 }, { "color": "#4eb100", "doubleValue": 347, "label": "347", "labelValue": "347.0", "tooltip": "Label: 347
Weight: 694.0
Value: 347.0", "type": "TreeMapNode", "weight": 694 }, { "color": "#4eb100", "doubleValue": 348, "label": "348", "labelValue": "348.0", "tooltip": "Label: 348
Weight: 696.0
Value: 348.0", "type": "TreeMapNode", "weight": 696 }, { "color": "#4db200", "doubleValue": 349, "label": "349", "labelValue": "349.0", "tooltip": "Label: 349
Weight: 698.0
Value: 349.0", "type": "TreeMapNode", "weight": 698 }, { "color": "#4db200", "doubleValue": 350, "label": "350", "labelValue": "350.0", "tooltip": "Label: 350
Weight: 700.0
Value: 350.0", "type": "TreeMapNode", "weight": 700 }, { "color": "#4cb300", "doubleValue": 351, "label": "351", "labelValue": "351.0", "tooltip": "Label: 351
Weight: 702.0
Value: 351.0", "type": "TreeMapNode", "weight": 702 }, { "color": "#4cb300", "doubleValue": 352, "label": "352", "labelValue": "352.0", "tooltip": "Label: 352
Weight: 704.0
Value: 352.0", "type": "TreeMapNode", "weight": 704 }, { "color": "#4bb400", "doubleValue": 353, "label": "353", "labelValue": "353.0", "tooltip": "Label: 353
Weight: 706.0
Value: 353.0", "type": "TreeMapNode", "weight": 706 }, { "color": "#4bb400", "doubleValue": 354, "label": "354", "labelValue": "354.0", "tooltip": "Label: 354
Weight: 708.0
Value: 354.0", "type": "TreeMapNode", "weight": 708 }, { "color": "#4ab500", "doubleValue": 355, "label": "355", "labelValue": "355.0", "tooltip": "Label: 355
Weight: 710.0
Value: 355.0", "type": "TreeMapNode", "weight": 710 }, { "color": "#4ab500", "doubleValue": 356, "label": "356", "labelValue": "356.0", "tooltip": "Label: 356
Weight: 712.0
Value: 356.0", "type": "TreeMapNode", "weight": 712 }, { "color": "#49b600", "doubleValue": 357, "label": "357", "labelValue": "357.0", "tooltip": "Label: 357
Weight: 714.0
Value: 357.0", "type": "TreeMapNode", "weight": 714 }, { "color": "#49b600", "doubleValue": 358, "label": "358", "labelValue": "358.0", "tooltip": "Label: 358
Weight: 716.0
Value: 358.0", "type": "TreeMapNode", "weight": 716 }, { "color": "#48b700", "doubleValue": 359, "label": "359", "labelValue": "359.0", "tooltip": "Label: 359
Weight: 718.0
Value: 359.0", "type": "TreeMapNode", "weight": 718 }, { "color": "#48b700", "doubleValue": 360, "label": "360", "labelValue": "360.0", "tooltip": "Label: 360
Weight: 720.0
Value: 360.0", "type": "TreeMapNode", "weight": 720 }, { "color": "#47b800", "doubleValue": 361, "label": "361", "labelValue": "361.0", "tooltip": "Label: 361
Weight: 722.0
Value: 361.0", "type": "TreeMapNode", "weight": 722 }, { "color": "#47b800", "doubleValue": 362, "label": "362", "labelValue": "362.0", "tooltip": "Label: 362
Weight: 724.0
Value: 362.0", "type": "TreeMapNode", "weight": 724 }, { "color": "#46b900", "doubleValue": 363, "label": "363", "labelValue": "363.0", "tooltip": "Label: 363
Weight: 726.0
Value: 363.0", "type": "TreeMapNode", "weight": 726 }, { "color": "#45ba00", "doubleValue": 364, "label": "364", "labelValue": "364.0", "tooltip": "Label: 364
Weight: 728.0
Value: 364.0", "type": "TreeMapNode", "weight": 728 }, { "color": "#45ba00", "doubleValue": 365, "label": "365", "labelValue": "365.0", "tooltip": "Label: 365
Weight: 730.0
Value: 365.0", "type": "TreeMapNode", "weight": 730 }, { "color": "#44bb00", "doubleValue": 366, "label": "366", "labelValue": "366.0", "tooltip": "Label: 366
Weight: 732.0
Value: 366.0", "type": "TreeMapNode", "weight": 732 }, { "color": "#44bb00", "doubleValue": 367, "label": "367", "labelValue": "367.0", "tooltip": "Label: 367
Weight: 734.0
Value: 367.0", "type": "TreeMapNode", "weight": 734 }, { "color": "#43bc00", "doubleValue": 368, "label": "368", "labelValue": "368.0", "tooltip": "Label: 368
Weight: 736.0
Value: 368.0", "type": "TreeMapNode", "weight": 736 }, { "color": "#43bc00", "doubleValue": 369, "label": "369", "labelValue": "369.0", "tooltip": "Label: 369
Weight: 738.0
Value: 369.0", "type": "TreeMapNode", "weight": 738 }, { "color": "#42bd00", "doubleValue": 370, "label": "370", "labelValue": "370.0", "tooltip": "Label: 370
Weight: 740.0
Value: 370.0", "type": "TreeMapNode", "weight": 740 }, { "color": "#42bd00", "doubleValue": 371, "label": "371", "labelValue": "371.0", "tooltip": "Label: 371
Weight: 742.0
Value: 371.0", "type": "TreeMapNode", "weight": 742 }, { "color": "#41be00", "doubleValue": 372, "label": "372", "labelValue": "372.0", "tooltip": "Label: 372
Weight: 744.0
Value: 372.0", "type": "TreeMapNode", "weight": 744 }, { "color": "#41be00", "doubleValue": 373, "label": "373", "labelValue": "373.0", "tooltip": "Label: 373
Weight: 746.0
Value: 373.0", "type": "TreeMapNode", "weight": 746 }, { "color": "#40bf00", "doubleValue": 374, "label": "374", "labelValue": "374.0", "tooltip": "Label: 374
Weight: 748.0
Value: 374.0", "type": "TreeMapNode", "weight": 748 }, { "color": "#40bf00", "doubleValue": 375, "label": "375", "labelValue": "375.0", "tooltip": "Label: 375
Weight: 750.0
Value: 375.0", "type": "TreeMapNode", "weight": 750 }, { "color": "#3fc000", "doubleValue": 376, "label": "376", "labelValue": "376.0", "tooltip": "Label: 376
Weight: 752.0
Value: 376.0", "type": "TreeMapNode", "weight": 752 }, { "color": "#3fc000", "doubleValue": 377, "label": "377", "labelValue": "377.0", "tooltip": "Label: 377
Weight: 754.0
Value: 377.0", "type": "TreeMapNode", "weight": 754 }, { "color": "#3ec100", "doubleValue": 378, "label": "378", "labelValue": "378.0", "tooltip": "Label: 378
Weight: 756.0
Value: 378.0", "type": "TreeMapNode", "weight": 756 }, { "color": "#3ec100", "doubleValue": 379, "label": "379", "labelValue": "379.0", "tooltip": "Label: 379
Weight: 758.0
Value: 379.0", "type": "TreeMapNode", "weight": 758 }, { "color": "#3dc200", "doubleValue": 380, "label": "380", "labelValue": "380.0", "tooltip": "Label: 380
Weight: 760.0
Value: 380.0", "type": "TreeMapNode", "weight": 760 }, { "color": "#3dc200", "doubleValue": 381, "label": "381", "labelValue": "381.0", "tooltip": "Label: 381
Weight: 762.0
Value: 381.0", "type": "TreeMapNode", "weight": 762 }, { "color": "#3cc300", "doubleValue": 382, "label": "382", "labelValue": "382.0", "tooltip": "Label: 382
Weight: 764.0
Value: 382.0", "type": "TreeMapNode", "weight": 764 }, { "color": "#3cc300", "doubleValue": 383, "label": "383", "labelValue": "383.0", "tooltip": "Label: 383
Weight: 766.0
Value: 383.0", "type": "TreeMapNode", "weight": 766 }, { "color": "#3bc400", "doubleValue": 384, "label": "384", "labelValue": "384.0", "tooltip": "Label: 384
Weight: 768.0
Value: 384.0", "type": "TreeMapNode", "weight": 768 }, { "color": "#3bc400", "doubleValue": 385, "label": "385", "labelValue": "385.0", "tooltip": "Label: 385
Weight: 770.0
Value: 385.0", "type": "TreeMapNode", "weight": 770 }, { "color": "#3ac500", "doubleValue": 386, "label": "386", "labelValue": "386.0", "tooltip": "Label: 386
Weight: 772.0
Value: 386.0", "type": "TreeMapNode", "weight": 772 }, { "color": "#3ac500", "doubleValue": 387, "label": "387", "labelValue": "387.0", "tooltip": "Label: 387
Weight: 774.0
Value: 387.0", "type": "TreeMapNode", "weight": 774 }, { "color": "#39c600", "doubleValue": 388, "label": "388", "labelValue": "388.0", "tooltip": "Label: 388
Weight: 776.0
Value: 388.0", "type": "TreeMapNode", "weight": 776 }, { "color": "#39c600", "doubleValue": 389, "label": "389", "labelValue": "389.0", "tooltip": "Label: 389
Weight: 778.0
Value: 389.0", "type": "TreeMapNode", "weight": 778 }, { "color": "#38c700", "doubleValue": 390, "label": "390", "labelValue": "390.0", "tooltip": "Label: 390
Weight: 780.0
Value: 390.0", "type": "TreeMapNode", "weight": 780 }, { "color": "#38c700", "doubleValue": 391, "label": "391", "labelValue": "391.0", "tooltip": "Label: 391
Weight: 782.0
Value: 391.0", "type": "TreeMapNode", "weight": 782 }, { "color": "#37c800", "doubleValue": 392, "label": "392", "labelValue": "392.0", "tooltip": "Label: 392
Weight: 784.0
Value: 392.0", "type": "TreeMapNode", "weight": 784 }, { "color": "#37c800", "doubleValue": 393, "label": "393", "labelValue": "393.0", "tooltip": "Label: 393
Weight: 786.0
Value: 393.0", "type": "TreeMapNode", "weight": 786 }, { "color": "#36c900", "doubleValue": 394, "label": "394", "labelValue": "394.0", "tooltip": "Label: 394
Weight: 788.0
Value: 394.0", "type": "TreeMapNode", "weight": 788 }, { "color": "#36c900", "doubleValue": 395, "label": "395", "labelValue": "395.0", "tooltip": "Label: 395
Weight: 790.0
Value: 395.0", "type": "TreeMapNode", "weight": 790 }, { "color": "#35ca00", "doubleValue": 396, "label": "396", "labelValue": "396.0", "tooltip": "Label: 396
Weight: 792.0
Value: 396.0", "type": "TreeMapNode", "weight": 792 }, { "color": "#35ca00", "doubleValue": 397, "label": "397", "labelValue": "397.0", "tooltip": "Label: 397
Weight: 794.0
Value: 397.0", "type": "TreeMapNode", "weight": 794 }, { "color": "#34cb00", "doubleValue": 398, "label": "398", "labelValue": "398.0", "tooltip": "Label: 398
Weight: 796.0
Value: 398.0", "type": "TreeMapNode", "weight": 796 }, { "color": "#34cb00", "doubleValue": 399, "label": "399", "labelValue": "399.0", "tooltip": "Label: 399
Weight: 798.0
Value: 399.0", "type": "TreeMapNode", "weight": 798 }, { "color": "#33cc00", "doubleValue": 400, "label": "400", "labelValue": "400.0", "tooltip": "Label: 400
Weight: 800.0
Value: 400.0", "type": "TreeMapNode", "weight": 800 }, { "color": "#33cc00", "doubleValue": 401, "label": "401", "labelValue": "401.0", "tooltip": "Label: 401
Weight: 802.0
Value: 401.0", "type": "TreeMapNode", "weight": 802 }, { "color": "#32cd00", "doubleValue": 402, "label": "402", "labelValue": "402.0", "tooltip": "Label: 402
Weight: 804.0
Value: 402.0", "type": "TreeMapNode", "weight": 804 }, { "color": "#32cd00", "doubleValue": 403, "label": "403", "labelValue": "403.0", "tooltip": "Label: 403
Weight: 806.0
Value: 403.0", "type": "TreeMapNode", "weight": 806 }, { "color": "#31ce00", "doubleValue": 404, "label": "404", "labelValue": "404.0", "tooltip": "Label: 404
Weight: 808.0
Value: 404.0", "type": "TreeMapNode", "weight": 808 }, { "color": "#31ce00", "doubleValue": 405, "label": "405", "labelValue": "405.0", "tooltip": "Label: 405
Weight: 810.0
Value: 405.0", "type": "TreeMapNode", "weight": 810 }, { "color": "#30cf00", "doubleValue": 406, "label": "406", "labelValue": "406.0", "tooltip": "Label: 406
Weight: 812.0
Value: 406.0", "type": "TreeMapNode", "weight": 812 }, { "color": "#30cf00", "doubleValue": 407, "label": "407", "labelValue": "407.0", "tooltip": "Label: 407
Weight: 814.0
Value: 407.0", "type": "TreeMapNode", "weight": 814 }, { "color": "#2fd000", "doubleValue": 408, "label": "408", "labelValue": "408.0", "tooltip": "Label: 408
Weight: 816.0
Value: 408.0", "type": "TreeMapNode", "weight": 816 }, { "color": "#2fd000", "doubleValue": 409, "label": "409", "labelValue": "409.0", "tooltip": "Label: 409
Weight: 818.0
Value: 409.0", "type": "TreeMapNode", "weight": 818 }, { "color": "#2ed100", "doubleValue": 410, "label": "410", "labelValue": "410.0", "tooltip": "Label: 410
Weight: 820.0
Value: 410.0", "type": "TreeMapNode", "weight": 820 }, { "color": "#2dd200", "doubleValue": 411, "label": "411", "labelValue": "411.0", "tooltip": "Label: 411
Weight: 822.0
Value: 411.0", "type": "TreeMapNode", "weight": 822 }, { "color": "#2dd200", "doubleValue": 412, "label": "412", "labelValue": "412.0", "tooltip": "Label: 412
Weight: 824.0
Value: 412.0", "type": "TreeMapNode", "weight": 824 }, { "color": "#2cd300", "doubleValue": 413, "label": "413", "labelValue": "413.0", "tooltip": "Label: 413
Weight: 826.0
Value: 413.0", "type": "TreeMapNode", "weight": 826 }, { "color": "#2cd300", "doubleValue": 414, "label": "414", "labelValue": "414.0", "tooltip": "Label: 414
Weight: 828.0
Value: 414.0", "type": "TreeMapNode", "weight": 828 }, { "color": "#2bd400", "doubleValue": 415, "label": "415", "labelValue": "415.0", "tooltip": "Label: 415
Weight: 830.0
Value: 415.0", "type": "TreeMapNode", "weight": 830 }, { "color": "#2bd400", "doubleValue": 416, "label": "416", "labelValue": "416.0", "tooltip": "Label: 416
Weight: 832.0
Value: 416.0", "type": "TreeMapNode", "weight": 832 }, { "color": "#2ad500", "doubleValue": 417, "label": "417", "labelValue": "417.0", "tooltip": "Label: 417
Weight: 834.0
Value: 417.0", "type": "TreeMapNode", "weight": 834 }, { "color": "#2ad500", "doubleValue": 418, "label": "418", "labelValue": "418.0", "tooltip": "Label: 418
Weight: 836.0
Value: 418.0", "type": "TreeMapNode", "weight": 836 }, { "color": "#29d600", "doubleValue": 419, "label": "419", "labelValue": "419.0", "tooltip": "Label: 419
Weight: 838.0
Value: 419.0", "type": "TreeMapNode", "weight": 838 }, { "color": "#29d600", "doubleValue": 420, "label": "420", "labelValue": "420.0", "tooltip": "Label: 420
Weight: 840.0
Value: 420.0", "type": "TreeMapNode", "weight": 840 }, { "color": "#28d700", "doubleValue": 421, "label": "421", "labelValue": "421.0", "tooltip": "Label: 421
Weight: 842.0
Value: 421.0", "type": "TreeMapNode", "weight": 842 }, { "color": "#28d700", "doubleValue": 422, "label": "422", "labelValue": "422.0", "tooltip": "Label: 422
Weight: 844.0
Value: 422.0", "type": "TreeMapNode", "weight": 844 }, { "color": "#27d800", "doubleValue": 423, "label": "423", "labelValue": "423.0", "tooltip": "Label: 423
Weight: 846.0
Value: 423.0", "type": "TreeMapNode", "weight": 846 }, { "color": "#27d800", "doubleValue": 424, "label": "424", "labelValue": "424.0", "tooltip": "Label: 424
Weight: 848.0
Value: 424.0", "type": "TreeMapNode", "weight": 848 }, { "color": "#26d900", "doubleValue": 425, "label": "425", "labelValue": "425.0", "tooltip": "Label: 425
Weight: 850.0
Value: 425.0", "type": "TreeMapNode", "weight": 850 }, { "color": "#26d900", "doubleValue": 426, "label": "426", "labelValue": "426.0", "tooltip": "Label: 426
Weight: 852.0
Value: 426.0", "type": "TreeMapNode", "weight": 852 }, { "color": "#25da00", "doubleValue": 427, "label": "427", "labelValue": "427.0", "tooltip": "Label: 427
Weight: 854.0
Value: 427.0", "type": "TreeMapNode", "weight": 854 }, { "color": "#25da00", "doubleValue": 428, "label": "428", "labelValue": "428.0", "tooltip": "Label: 428
Weight: 856.0
Value: 428.0", "type": "TreeMapNode", "weight": 856 }, { "color": "#24db00", "doubleValue": 429, "label": "429", "labelValue": "429.0", "tooltip": "Label: 429
Weight: 858.0
Value: 429.0", "type": "TreeMapNode", "weight": 858 }, { "color": "#24db00", "doubleValue": 430, "label": "430", "labelValue": "430.0", "tooltip": "Label: 430
Weight: 860.0
Value: 430.0", "type": "TreeMapNode", "weight": 860 }, { "color": "#23dc00", "doubleValue": 431, "label": "431", "labelValue": "431.0", "tooltip": "Label: 431
Weight: 862.0
Value: 431.0", "type": "TreeMapNode", "weight": 862 }, { "color": "#23dc00", "doubleValue": 432, "label": "432", "labelValue": "432.0", "tooltip": "Label: 432
Weight: 864.0
Value: 432.0", "type": "TreeMapNode", "weight": 864 }, { "color": "#22dd00", "doubleValue": 433, "label": "433", "labelValue": "433.0", "tooltip": "Label: 433
Weight: 866.0
Value: 433.0", "type": "TreeMapNode", "weight": 866 }, { "color": "#22dd00", "doubleValue": 434, "label": "434", "labelValue": "434.0", "tooltip": "Label: 434
Weight: 868.0
Value: 434.0", "type": "TreeMapNode", "weight": 868 }, { "color": "#21de00", "doubleValue": 435, "label": "435", "labelValue": "435.0", "tooltip": "Label: 435
Weight: 870.0
Value: 435.0", "type": "TreeMapNode", "weight": 870 }, { "color": "#21de00", "doubleValue": 436, "label": "436", "labelValue": "436.0", "tooltip": "Label: 436
Weight: 872.0
Value: 436.0", "type": "TreeMapNode", "weight": 872 }, { "color": "#20df00", "doubleValue": 437, "label": "437", "labelValue": "437.0", "tooltip": "Label: 437
Weight: 874.0
Value: 437.0", "type": "TreeMapNode", "weight": 874 }, { "color": "#20df00", "doubleValue": 438, "label": "438", "labelValue": "438.0", "tooltip": "Label: 438
Weight: 876.0
Value: 438.0", "type": "TreeMapNode", "weight": 876 }, { "color": "#1fe000", "doubleValue": 439, "label": "439", "labelValue": "439.0", "tooltip": "Label: 439
Weight: 878.0
Value: 439.0", "type": "TreeMapNode", "weight": 878 }, { "color": "#1fe000", "doubleValue": 440, "label": "440", "labelValue": "440.0", "tooltip": "Label: 440
Weight: 880.0
Value: 440.0", "type": "TreeMapNode", "weight": 880 }, { "color": "#1ee100", "doubleValue": 441, "label": "441", "labelValue": "441.0", "tooltip": "Label: 441
Weight: 882.0
Value: 441.0", "type": "TreeMapNode", "weight": 882 }, { "color": "#1ee100", "doubleValue": 442, "label": "442", "labelValue": "442.0", "tooltip": "Label: 442
Weight: 884.0
Value: 442.0", "type": "TreeMapNode", "weight": 884 }, { "color": "#1de200", "doubleValue": 443, "label": "443", "labelValue": "443.0", "tooltip": "Label: 443
Weight: 886.0
Value: 443.0", "type": "TreeMapNode", "weight": 886 }, { "color": "#1de200", "doubleValue": 444, "label": "444", "labelValue": "444.0", "tooltip": "Label: 444
Weight: 888.0
Value: 444.0", "type": "TreeMapNode", "weight": 888 }, { "color": "#1ce300", "doubleValue": 445, "label": "445", "labelValue": "445.0", "tooltip": "Label: 445
Weight: 890.0
Value: 445.0", "type": "TreeMapNode", "weight": 890 }, { "color": "#1ce300", "doubleValue": 446, "label": "446", "labelValue": "446.0", "tooltip": "Label: 446
Weight: 892.0
Value: 446.0", "type": "TreeMapNode", "weight": 892 }, { "color": "#1be400", "doubleValue": 447, "label": "447", "labelValue": "447.0", "tooltip": "Label: 447
Weight: 894.0
Value: 447.0", "type": "TreeMapNode", "weight": 894 }, { "color": "#1be400", "doubleValue": 448, "label": "448", "labelValue": "448.0", "tooltip": "Label: 448
Weight: 896.0
Value: 448.0", "type": "TreeMapNode", "weight": 896 }, { "color": "#1ae500", "doubleValue": 449, "label": "449", "labelValue": "449.0", "tooltip": "Label: 449
Weight: 898.0
Value: 449.0", "type": "TreeMapNode", "weight": 898 }, { "color": "#1ae500", "doubleValue": 450, "label": "450", "labelValue": "450.0", "tooltip": "Label: 450
Weight: 900.0
Value: 450.0", "type": "TreeMapNode", "weight": 900 }, { "color": "#19e600", "doubleValue": 451, "label": "451", "labelValue": "451.0", "tooltip": "Label: 451
Weight: 902.0
Value: 451.0", "type": "TreeMapNode", "weight": 902 }, { "color": "#19e600", "doubleValue": 452, "label": "452", "labelValue": "452.0", "tooltip": "Label: 452
Weight: 904.0
Value: 452.0", "type": "TreeMapNode", "weight": 904 }, { "color": "#18e700", "doubleValue": 453, "label": "453", "labelValue": "453.0", "tooltip": "Label: 453
Weight: 906.0
Value: 453.0", "type": "TreeMapNode", "weight": 906 }, { "color": "#18e700", "doubleValue": 454, "label": "454", "labelValue": "454.0", "tooltip": "Label: 454
Weight: 908.0
Value: 454.0", "type": "TreeMapNode", "weight": 908 }, { "color": "#17e800", "doubleValue": 455, "label": "455", "labelValue": "455.0", "tooltip": "Label: 455
Weight: 910.0
Value: 455.0", "type": "TreeMapNode", "weight": 910 }, { "color": "#16e900", "doubleValue": 456, "label": "456", "labelValue": "456.0", "tooltip": "Label: 456
Weight: 912.0
Value: 456.0", "type": "TreeMapNode", "weight": 912 }, { "color": "#16e900", "doubleValue": 457, "label": "457", "labelValue": "457.0", "tooltip": "Label: 457
Weight: 914.0
Value: 457.0", "type": "TreeMapNode", "weight": 914 }, { "color": "#15ea00", "doubleValue": 458, "label": "458", "labelValue": "458.0", "tooltip": "Label: 458
Weight: 916.0
Value: 458.0", "type": "TreeMapNode", "weight": 916 }, { "color": "#15ea00", "doubleValue": 459, "label": "459", "labelValue": "459.0", "tooltip": "Label: 459
Weight: 918.0
Value: 459.0", "type": "TreeMapNode", "weight": 918 }, { "color": "#14eb00", "doubleValue": 460, "label": "460", "labelValue": "460.0", "tooltip": "Label: 460
Weight: 920.0
Value: 460.0", "type": "TreeMapNode", "weight": 920 }, { "color": "#14eb00", "doubleValue": 461, "label": "461", "labelValue": "461.0", "tooltip": "Label: 461
Weight: 922.0
Value: 461.0", "type": "TreeMapNode", "weight": 922 }, { "color": "#13ec00", "doubleValue": 462, "label": "462", "labelValue": "462.0", "tooltip": "Label: 462
Weight: 924.0
Value: 462.0", "type": "TreeMapNode", "weight": 924 }, { "color": "#13ec00", "doubleValue": 463, "label": "463", "labelValue": "463.0", "tooltip": "Label: 463
Weight: 926.0
Value: 463.0", "type": "TreeMapNode", "weight": 926 }, { "color": "#12ed00", "doubleValue": 464, "label": "464", "labelValue": "464.0", "tooltip": "Label: 464
Weight: 928.0
Value: 464.0", "type": "TreeMapNode", "weight": 928 }, { "color": "#12ed00", "doubleValue": 465, "label": "465", "labelValue": "465.0", "tooltip": "Label: 465
Weight: 930.0
Value: 465.0", "type": "TreeMapNode", "weight": 930 }, { "color": "#11ee00", "doubleValue": 466, "label": "466", "labelValue": "466.0", "tooltip": "Label: 466
Weight: 932.0
Value: 466.0", "type": "TreeMapNode", "weight": 932 }, { "color": "#11ee00", "doubleValue": 467, "label": "467", "labelValue": "467.0", "tooltip": "Label: 467
Weight: 934.0
Value: 467.0", "type": "TreeMapNode", "weight": 934 }, { "color": "#10ef00", "doubleValue": 468, "label": "468", "labelValue": "468.0", "tooltip": "Label: 468
Weight: 936.0
Value: 468.0", "type": "TreeMapNode", "weight": 936 }, { "color": "#10ef00", "doubleValue": 469, "label": "469", "labelValue": "469.0", "tooltip": "Label: 469
Weight: 938.0
Value: 469.0", "type": "TreeMapNode", "weight": 938 }, { "color": "#0ff000", "doubleValue": 470, "label": "470", "labelValue": "470.0", "tooltip": "Label: 470
Weight: 940.0
Value: 470.0", "type": "TreeMapNode", "weight": 940 }, { "color": "#0ff000", "doubleValue": 471, "label": "471", "labelValue": "471.0", "tooltip": "Label: 471
Weight: 942.0
Value: 471.0", "type": "TreeMapNode", "weight": 942 }, { "color": "#0ef100", "doubleValue": 472, "label": "472", "labelValue": "472.0", "tooltip": "Label: 472
Weight: 944.0
Value: 472.0", "type": "TreeMapNode", "weight": 944 }, { "color": "#0ef100", "doubleValue": 473, "label": "473", "labelValue": "473.0", "tooltip": "Label: 473
Weight: 946.0
Value: 473.0", "type": "TreeMapNode", "weight": 946 }, { "color": "#0df200", "doubleValue": 474, "label": "474", "labelValue": "474.0", "tooltip": "Label: 474
Weight: 948.0
Value: 474.0", "type": "TreeMapNode", "weight": 948 }, { "color": "#0df200", "doubleValue": 475, "label": "475", "labelValue": "475.0", "tooltip": "Label: 475
Weight: 950.0
Value: 475.0", "type": "TreeMapNode", "weight": 950 }, { "color": "#0cf300", "doubleValue": 476, "label": "476", "labelValue": "476.0", "tooltip": "Label: 476
Weight: 952.0
Value: 476.0", "type": "TreeMapNode", "weight": 952 }, { "color": "#0cf300", "doubleValue": 477, "label": "477", "labelValue": "477.0", "tooltip": "Label: 477
Weight: 954.0
Value: 477.0", "type": "TreeMapNode", "weight": 954 }, { "color": "#0bf400", "doubleValue": 478, "label": "478", "labelValue": "478.0", "tooltip": "Label: 478
Weight: 956.0
Value: 478.0", "type": "TreeMapNode", "weight": 956 }, { "color": "#0bf400", "doubleValue": 479, "label": "479", "labelValue": "479.0", "tooltip": "Label: 479
Weight: 958.0
Value: 479.0", "type": "TreeMapNode", "weight": 958 }, { "color": "#0af500", "doubleValue": 480, "label": "480", "labelValue": "480.0", "tooltip": "Label: 480
Weight: 960.0
Value: 480.0", "type": "TreeMapNode", "weight": 960 }, { "color": "#0af500", "doubleValue": 481, "label": "481", "labelValue": "481.0", "tooltip": "Label: 481
Weight: 962.0
Value: 481.0", "type": "TreeMapNode", "weight": 962 }, { "color": "#09f600", "doubleValue": 482, "label": "482", "labelValue": "482.0", "tooltip": "Label: 482
Weight: 964.0
Value: 482.0", "type": "TreeMapNode", "weight": 964 }, { "color": "#09f600", "doubleValue": 483, "label": "483", "labelValue": "483.0", "tooltip": "Label: 483
Weight: 966.0
Value: 483.0", "type": "TreeMapNode", "weight": 966 }, { "color": "#08f700", "doubleValue": 484, "label": "484", "labelValue": "484.0", "tooltip": "Label: 484
Weight: 968.0
Value: 484.0", "type": "TreeMapNode", "weight": 968 }, { "color": "#08f700", "doubleValue": 485, "label": "485", "labelValue": "485.0", "tooltip": "Label: 485
Weight: 970.0
Value: 485.0", "type": "TreeMapNode", "weight": 970 }, { "color": "#07f800", "doubleValue": 486, "label": "486", "labelValue": "486.0", "tooltip": "Label: 486
Weight: 972.0
Value: 486.0", "type": "TreeMapNode", "weight": 972 }, { "color": "#07f800", "doubleValue": 487, "label": "487", "labelValue": "487.0", "tooltip": "Label: 487
Weight: 974.0
Value: 487.0", "type": "TreeMapNode", "weight": 974 }, { "color": "#06f900", "doubleValue": 488, "label": "488", "labelValue": "488.0", "tooltip": "Label: 488
Weight: 976.0
Value: 488.0", "type": "TreeMapNode", "weight": 976 }, { "color": "#06f900", "doubleValue": 489, "label": "489", "labelValue": "489.0", "tooltip": "Label: 489
Weight: 978.0
Value: 489.0", "type": "TreeMapNode", "weight": 978 }, { "color": "#05fa00", "doubleValue": 490, "label": "490", "labelValue": "490.0", "tooltip": "Label: 490
Weight: 980.0
Value: 490.0", "type": "TreeMapNode", "weight": 980 }, { "color": "#05fa00", "doubleValue": 491, "label": "491", "labelValue": "491.0", "tooltip": "Label: 491
Weight: 982.0
Value: 491.0", "type": "TreeMapNode", "weight": 982 }, { "color": "#04fb00", "doubleValue": 492, "label": "492", "labelValue": "492.0", "tooltip": "Label: 492
Weight: 984.0
Value: 492.0", "type": "TreeMapNode", "weight": 984 }, { "color": "#04fb00", "doubleValue": 493, "label": "493", "labelValue": "493.0", "tooltip": "Label: 493
Weight: 986.0
Value: 493.0", "type": "TreeMapNode", "weight": 986 }, { "color": "#03fc00", "doubleValue": 494, "label": "494", "labelValue": "494.0", "tooltip": "Label: 494
Weight: 988.0
Value: 494.0", "type": "TreeMapNode", "weight": 988 }, { "color": "#03fc00", "doubleValue": 495, "label": "495", "labelValue": "495.0", "tooltip": "Label: 495
Weight: 990.0
Value: 495.0", "type": "TreeMapNode", "weight": 990 }, { "color": "#02fd00", "doubleValue": 496, "label": "496", "labelValue": "496.0", "tooltip": "Label: 496
Weight: 992.0
Value: 496.0", "type": "TreeMapNode", "weight": 992 }, { "color": "#02fd00", "doubleValue": 497, "label": "497", "labelValue": "497.0", "tooltip": "Label: 497
Weight: 994.0
Value: 497.0", "type": "TreeMapNode", "weight": 994 }, { "color": "#01fe00", "doubleValue": 498, "label": "498", "labelValue": "498.0", "tooltip": "Label: 498
Weight: 996.0
Value: 498.0", "type": "TreeMapNode", "weight": 996 }, { "color": "#01fe00", "doubleValue": 499, "label": "499", "labelValue": "499.0", "tooltip": "Label: 499
Weight: 998.0
Value: 499.0", "type": "TreeMapNode", "weight": 998 }, { "color": "#00ff00", "doubleValue": 500, "label": "500", "labelValue": "500.0", "tooltip": "Label: 500
Weight: 1000.0
Value: 500.0", "type": "TreeMapNode", "weight": 1000 }, { "children": [ { "color": "#ff0000", "doubleValue": 1, "label": "1", "labelValue": "1.0", "tooltip": "Label: 1
Weight: 2.0
Value: 1.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#fe0100", "doubleValue": 2, "label": "2", "labelValue": "2.0", "tooltip": "Label: 2
Weight: 4.0
Value: 2.0", "type": "TreeMapNode", "weight": 4 }, { "color": "#fe0100", "doubleValue": 3, "label": "3", "labelValue": "3.0", "tooltip": "Label: 3
Weight: 6.0
Value: 3.0", "type": "TreeMapNode", "weight": 6 }, { "color": "#fd0200", "doubleValue": 4, "label": "4", "labelValue": "4.0", "tooltip": "Label: 4
Weight: 8.0
Value: 4.0", "type": "TreeMapNode", "weight": 8 }, { "color": "#fd0200", "doubleValue": 5, "label": "5", "labelValue": "5.0", "tooltip": "Label: 5
Weight: 10.0
Value: 5.0", "type": "TreeMapNode", "weight": 10 }, { "color": "#fc0300", "doubleValue": 6, "label": "6", "labelValue": "6.0", "tooltip": "Label: 6
Weight: 12.0
Value: 6.0", "type": "TreeMapNode", "weight": 12 }, { "color": "#fc0300", "doubleValue": 7, "label": "7", "labelValue": "7.0", "tooltip": "Label: 7
Weight: 14.0
Value: 7.0", "type": "TreeMapNode", "weight": 14 }, { "color": "#fb0400", "doubleValue": 8, "label": "8", "labelValue": "8.0", "tooltip": "Label: 8
Weight: 16.0
Value: 8.0", "type": "TreeMapNode", "weight": 16 }, { "color": "#fb0400", "doubleValue": 9, "label": "9", "labelValue": "9.0", "tooltip": "Label: 9
Weight: 18.0
Value: 9.0", "type": "TreeMapNode", "weight": 18 }, { "color": "#fa0500", "doubleValue": 10, "label": "10", "labelValue": "10.0", "tooltip": "Label: 10
Weight: 20.0
Value: 10.0", "type": "TreeMapNode", "weight": 20 }, { "color": "#fa0500", "doubleValue": 11, "label": "11", "labelValue": "11.0", "tooltip": "Label: 11
Weight: 22.0
Value: 11.0", "type": "TreeMapNode", "weight": 22 }, { "color": "#f90600", "doubleValue": 12, "label": "12", "labelValue": "12.0", "tooltip": "Label: 12
Weight: 24.0
Value: 12.0", "type": "TreeMapNode", "weight": 24 }, { "color": "#f90600", "doubleValue": 13, "label": "13", "labelValue": "13.0", "tooltip": "Label: 13
Weight: 26.0
Value: 13.0", "type": "TreeMapNode", "weight": 26 }, { "color": "#f80700", "doubleValue": 14, "label": "14", "labelValue": "14.0", "tooltip": "Label: 14
Weight: 28.0
Value: 14.0", "type": "TreeMapNode", "weight": 28 }, { "color": "#f80700", "doubleValue": 15, "label": "15", "labelValue": "15.0", "tooltip": "Label: 15
Weight: 30.0
Value: 15.0", "type": "TreeMapNode", "weight": 30 }, { "color": "#f70800", "doubleValue": 16, "label": "16", "labelValue": "16.0", "tooltip": "Label: 16
Weight: 32.0
Value: 16.0", "type": "TreeMapNode", "weight": 32 }, { "color": "#f70800", "doubleValue": 17, "label": "17", "labelValue": "17.0", "tooltip": "Label: 17
Weight: 34.0
Value: 17.0", "type": "TreeMapNode", "weight": 34 }, { "color": "#f60900", "doubleValue": 18, "label": "18", "labelValue": "18.0", "tooltip": "Label: 18
Weight: 36.0
Value: 18.0", "type": "TreeMapNode", "weight": 36 }, { "color": "#f60900", "doubleValue": 19, "label": "19", "labelValue": "19.0", "tooltip": "Label: 19
Weight: 38.0
Value: 19.0", "type": "TreeMapNode", "weight": 38 }, { "color": "#f50a00", "doubleValue": 20, "label": "20", "labelValue": "20.0", "tooltip": "Label: 20
Weight: 40.0
Value: 20.0", "type": "TreeMapNode", "weight": 40 }, { "color": "#f50a00", "doubleValue": 21, "label": "21", "labelValue": "21.0", "tooltip": "Label: 21
Weight: 42.0
Value: 21.0", "type": "TreeMapNode", "weight": 42 }, { "color": "#f40b00", "doubleValue": 22, "label": "22", "labelValue": "22.0", "tooltip": "Label: 22
Weight: 44.0
Value: 22.0", "type": "TreeMapNode", "weight": 44 }, { "color": "#f40b00", "doubleValue": 23, "label": "23", "labelValue": "23.0", "tooltip": "Label: 23
Weight: 46.0
Value: 23.0", "type": "TreeMapNode", "weight": 46 }, { "color": "#f30c00", "doubleValue": 24, "label": "24", "labelValue": "24.0", "tooltip": "Label: 24
Weight: 48.0
Value: 24.0", "type": "TreeMapNode", "weight": 48 }, { "color": "#f30c00", "doubleValue": 25, "label": "25", "labelValue": "25.0", "tooltip": "Label: 25
Weight: 50.0
Value: 25.0", "type": "TreeMapNode", "weight": 50 }, { "color": "#f20d00", "doubleValue": 26, "label": "26", "labelValue": "26.0", "tooltip": "Label: 26
Weight: 52.0
Value: 26.0", "type": "TreeMapNode", "weight": 52 }, { "color": "#f20d00", "doubleValue": 27, "label": "27", "labelValue": "27.0", "tooltip": "Label: 27
Weight: 54.0
Value: 27.0", "type": "TreeMapNode", "weight": 54 }, { "color": "#f10e00", "doubleValue": 28, "label": "28", "labelValue": "28.0", "tooltip": "Label: 28
Weight: 56.0
Value: 28.0", "type": "TreeMapNode", "weight": 56 }, { "color": "#f10e00", "doubleValue": 29, "label": "29", "labelValue": "29.0", "tooltip": "Label: 29
Weight: 58.0
Value: 29.0", "type": "TreeMapNode", "weight": 58 }, { "color": "#f00f00", "doubleValue": 30, "label": "30", "labelValue": "30.0", "tooltip": "Label: 30
Weight: 60.0
Value: 30.0", "type": "TreeMapNode", "weight": 60 }, { "color": "#f00f00", "doubleValue": 31, "label": "31", "labelValue": "31.0", "tooltip": "Label: 31
Weight: 62.0
Value: 31.0", "type": "TreeMapNode", "weight": 62 }, { "color": "#ef1000", "doubleValue": 32, "label": "32", "labelValue": "32.0", "tooltip": "Label: 32
Weight: 64.0
Value: 32.0", "type": "TreeMapNode", "weight": 64 }, { "color": "#ef1000", "doubleValue": 33, "label": "33", "labelValue": "33.0", "tooltip": "Label: 33
Weight: 66.0
Value: 33.0", "type": "TreeMapNode", "weight": 66 }, { "color": "#ee1100", "doubleValue": 34, "label": "34", "labelValue": "34.0", "tooltip": "Label: 34
Weight: 68.0
Value: 34.0", "type": "TreeMapNode", "weight": 68 }, { "color": "#ee1100", "doubleValue": 35, "label": "35", "labelValue": "35.0", "tooltip": "Label: 35
Weight: 70.0
Value: 35.0", "type": "TreeMapNode", "weight": 70 }, { "color": "#ed1200", "doubleValue": 36, "label": "36", "labelValue": "36.0", "tooltip": "Label: 36
Weight: 72.0
Value: 36.0", "type": "TreeMapNode", "weight": 72 }, { "color": "#ed1200", "doubleValue": 37, "label": "37", "labelValue": "37.0", "tooltip": "Label: 37
Weight: 74.0
Value: 37.0", "type": "TreeMapNode", "weight": 74 }, { "color": "#ec1300", "doubleValue": 38, "label": "38", "labelValue": "38.0", "tooltip": "Label: 38
Weight: 76.0
Value: 38.0", "type": "TreeMapNode", "weight": 76 }, { "color": "#ec1300", "doubleValue": 39, "label": "39", "labelValue": "39.0", "tooltip": "Label: 39
Weight: 78.0
Value: 39.0", "type": "TreeMapNode", "weight": 78 }, { "color": "#eb1400", "doubleValue": 40, "label": "40", "labelValue": "40.0", "tooltip": "Label: 40
Weight: 80.0
Value: 40.0", "type": "TreeMapNode", "weight": 80 }, { "color": "#eb1400", "doubleValue": 41, "label": "41", "labelValue": "41.0", "tooltip": "Label: 41
Weight: 82.0
Value: 41.0", "type": "TreeMapNode", "weight": 82 }, { "color": "#ea1500", "doubleValue": 42, "label": "42", "labelValue": "42.0", "tooltip": "Label: 42
Weight: 84.0
Value: 42.0", "type": "TreeMapNode", "weight": 84 }, { "color": "#ea1500", "doubleValue": 43, "label": "43", "labelValue": "43.0", "tooltip": "Label: 43
Weight: 86.0
Value: 43.0", "type": "TreeMapNode", "weight": 86 }, { "color": "#e91600", "doubleValue": 44, "label": "44", "labelValue": "44.0", "tooltip": "Label: 44
Weight: 88.0
Value: 44.0", "type": "TreeMapNode", "weight": 88 }, { "color": "#e91600", "doubleValue": 45, "label": "45", "labelValue": "45.0", "tooltip": "Label: 45
Weight: 90.0
Value: 45.0", "type": "TreeMapNode", "weight": 90 }, { "color": "#e81700", "doubleValue": 46, "label": "46", "labelValue": "46.0", "tooltip": "Label: 46
Weight: 92.0
Value: 46.0", "type": "TreeMapNode", "weight": 92 }, { "color": "#e71800", "doubleValue": 47, "label": "47", "labelValue": "47.0", "tooltip": "Label: 47
Weight: 94.0
Value: 47.0", "type": "TreeMapNode", "weight": 94 }, { "color": "#e71800", "doubleValue": 48, "label": "48", "labelValue": "48.0", "tooltip": "Label: 48
Weight: 96.0
Value: 48.0", "type": "TreeMapNode", "weight": 96 }, { "color": "#e61900", "doubleValue": 49, "label": "49", "labelValue": "49.0", "tooltip": "Label: 49
Weight: 98.0
Value: 49.0", "type": "TreeMapNode", "weight": 98 }, { "color": "#e61900", "doubleValue": 50, "label": "50", "labelValue": "50.0", "tooltip": "Label: 50
Weight: 100.0
Value: 50.0", "type": "TreeMapNode", "weight": 100 }, { "color": "#e51a00", "doubleValue": 51, "label": "51", "labelValue": "51.0", "tooltip": "Label: 51
Weight: 102.0
Value: 51.0", "type": "TreeMapNode", "weight": 102 }, { "color": "#e51a00", "doubleValue": 52, "label": "52", "labelValue": "52.0", "tooltip": "Label: 52
Weight: 104.0
Value: 52.0", "type": "TreeMapNode", "weight": 104 }, { "color": "#e41b00", "doubleValue": 53, "label": "53", "labelValue": "53.0", "tooltip": "Label: 53
Weight: 106.0
Value: 53.0", "type": "TreeMapNode", "weight": 106 }, { "color": "#e41b00", "doubleValue": 54, "label": "54", "labelValue": "54.0", "tooltip": "Label: 54
Weight: 108.0
Value: 54.0", "type": "TreeMapNode", "weight": 108 }, { "color": "#e31c00", "doubleValue": 55, "label": "55", "labelValue": "55.0", "tooltip": "Label: 55
Weight: 110.0
Value: 55.0", "type": "TreeMapNode", "weight": 110 }, { "color": "#e31c00", "doubleValue": 56, "label": "56", "labelValue": "56.0", "tooltip": "Label: 56
Weight: 112.0
Value: 56.0", "type": "TreeMapNode", "weight": 112 }, { "color": "#e21d00", "doubleValue": 57, "label": "57", "labelValue": "57.0", "tooltip": "Label: 57
Weight: 114.0
Value: 57.0", "type": "TreeMapNode", "weight": 114 }, { "color": "#e21d00", "doubleValue": 58, "label": "58", "labelValue": "58.0", "tooltip": "Label: 58
Weight: 116.0
Value: 58.0", "type": "TreeMapNode", "weight": 116 }, { "color": "#e11e00", "doubleValue": 59, "label": "59", "labelValue": "59.0", "tooltip": "Label: 59
Weight: 118.0
Value: 59.0", "type": "TreeMapNode", "weight": 118 }, { "color": "#e11e00", "doubleValue": 60, "label": "60", "labelValue": "60.0", "tooltip": "Label: 60
Weight: 120.0
Value: 60.0", "type": "TreeMapNode", "weight": 120 }, { "color": "#e01f00", "doubleValue": 61, "label": "61", "labelValue": "61.0", "tooltip": "Label: 61
Weight: 122.0
Value: 61.0", "type": "TreeMapNode", "weight": 122 }, { "color": "#e01f00", "doubleValue": 62, "label": "62", "labelValue": "62.0", "tooltip": "Label: 62
Weight: 124.0
Value: 62.0", "type": "TreeMapNode", "weight": 124 }, { "color": "#df2000", "doubleValue": 63, "label": "63", "labelValue": "63.0", "tooltip": "Label: 63
Weight: 126.0
Value: 63.0", "type": "TreeMapNode", "weight": 126 }, { "color": "#df2000", "doubleValue": 64, "label": "64", "labelValue": "64.0", "tooltip": "Label: 64
Weight: 128.0
Value: 64.0", "type": "TreeMapNode", "weight": 128 }, { "color": "#de2100", "doubleValue": 65, "label": "65", "labelValue": "65.0", "tooltip": "Label: 65
Weight: 130.0
Value: 65.0", "type": "TreeMapNode", "weight": 130 }, { "color": "#de2100", "doubleValue": 66, "label": "66", "labelValue": "66.0", "tooltip": "Label: 66
Weight: 132.0
Value: 66.0", "type": "TreeMapNode", "weight": 132 }, { "color": "#dd2200", "doubleValue": 67, "label": "67", "labelValue": "67.0", "tooltip": "Label: 67
Weight: 134.0
Value: 67.0", "type": "TreeMapNode", "weight": 134 }, { "color": "#dd2200", "doubleValue": 68, "label": "68", "labelValue": "68.0", "tooltip": "Label: 68
Weight: 136.0
Value: 68.0", "type": "TreeMapNode", "weight": 136 }, { "color": "#dc2300", "doubleValue": 69, "label": "69", "labelValue": "69.0", "tooltip": "Label: 69
Weight: 138.0
Value: 69.0", "type": "TreeMapNode", "weight": 138 }, { "color": "#dc2300", "doubleValue": 70, "label": "70", "labelValue": "70.0", "tooltip": "Label: 70
Weight: 140.0
Value: 70.0", "type": "TreeMapNode", "weight": 140 }, { "color": "#db2400", "doubleValue": 71, "label": "71", "labelValue": "71.0", "tooltip": "Label: 71
Weight: 142.0
Value: 71.0", "type": "TreeMapNode", "weight": 142 }, { "color": "#db2400", "doubleValue": 72, "label": "72", "labelValue": "72.0", "tooltip": "Label: 72
Weight: 144.0
Value: 72.0", "type": "TreeMapNode", "weight": 144 }, { "color": "#da2500", "doubleValue": 73, "label": "73", "labelValue": "73.0", "tooltip": "Label: 73
Weight: 146.0
Value: 73.0", "type": "TreeMapNode", "weight": 146 }, { "color": "#da2500", "doubleValue": 74, "label": "74", "labelValue": "74.0", "tooltip": "Label: 74
Weight: 148.0
Value: 74.0", "type": "TreeMapNode", "weight": 148 }, { "color": "#d92600", "doubleValue": 75, "label": "75", "labelValue": "75.0", "tooltip": "Label: 75
Weight: 150.0
Value: 75.0", "type": "TreeMapNode", "weight": 150 }, { "color": "#d92600", "doubleValue": 76, "label": "76", "labelValue": "76.0", "tooltip": "Label: 76
Weight: 152.0
Value: 76.0", "type": "TreeMapNode", "weight": 152 }, { "color": "#d82700", "doubleValue": 77, "label": "77", "labelValue": "77.0", "tooltip": "Label: 77
Weight: 154.0
Value: 77.0", "type": "TreeMapNode", "weight": 154 }, { "color": "#d82700", "doubleValue": 78, "label": "78", "labelValue": "78.0", "tooltip": "Label: 78
Weight: 156.0
Value: 78.0", "type": "TreeMapNode", "weight": 156 }, { "color": "#d72800", "doubleValue": 79, "label": "79", "labelValue": "79.0", "tooltip": "Label: 79
Weight: 158.0
Value: 79.0", "type": "TreeMapNode", "weight": 158 }, { "color": "#d72800", "doubleValue": 80, "label": "80", "labelValue": "80.0", "tooltip": "Label: 80
Weight: 160.0
Value: 80.0", "type": "TreeMapNode", "weight": 160 }, { "color": "#d62900", "doubleValue": 81, "label": "81", "labelValue": "81.0", "tooltip": "Label: 81
Weight: 162.0
Value: 81.0", "type": "TreeMapNode", "weight": 162 }, { "color": "#d62900", "doubleValue": 82, "label": "82", "labelValue": "82.0", "tooltip": "Label: 82
Weight: 164.0
Value: 82.0", "type": "TreeMapNode", "weight": 164 }, { "color": "#d52a00", "doubleValue": 83, "label": "83", "labelValue": "83.0", "tooltip": "Label: 83
Weight: 166.0
Value: 83.0", "type": "TreeMapNode", "weight": 166 }, { "color": "#d52a00", "doubleValue": 84, "label": "84", "labelValue": "84.0", "tooltip": "Label: 84
Weight: 168.0
Value: 84.0", "type": "TreeMapNode", "weight": 168 }, { "color": "#d42b00", "doubleValue": 85, "label": "85", "labelValue": "85.0", "tooltip": "Label: 85
Weight: 170.0
Value: 85.0", "type": "TreeMapNode", "weight": 170 }, { "color": "#d42b00", "doubleValue": 86, "label": "86", "labelValue": "86.0", "tooltip": "Label: 86
Weight: 172.0
Value: 86.0", "type": "TreeMapNode", "weight": 172 }, { "color": "#d32c00", "doubleValue": 87, "label": "87", "labelValue": "87.0", "tooltip": "Label: 87
Weight: 174.0
Value: 87.0", "type": "TreeMapNode", "weight": 174 }, { "color": "#d32c00", "doubleValue": 88, "label": "88", "labelValue": "88.0", "tooltip": "Label: 88
Weight: 176.0
Value: 88.0", "type": "TreeMapNode", "weight": 176 }, { "color": "#d22d00", "doubleValue": 89, "label": "89", "labelValue": "89.0", "tooltip": "Label: 89
Weight: 178.0
Value: 89.0", "type": "TreeMapNode", "weight": 178 }, { "color": "#d22d00", "doubleValue": 90, "label": "90", "labelValue": "90.0", "tooltip": "Label: 90
Weight: 180.0
Value: 90.0", "type": "TreeMapNode", "weight": 180 }, { "color": "#d12e00", "doubleValue": 91, "label": "91", "labelValue": "91.0", "tooltip": "Label: 91
Weight: 182.0
Value: 91.0", "type": "TreeMapNode", "weight": 182 }, { "color": "#d02f00", "doubleValue": 92, "label": "92", "labelValue": "92.0", "tooltip": "Label: 92
Weight: 184.0
Value: 92.0", "type": "TreeMapNode", "weight": 184 }, { "color": "#d02f00", "doubleValue": 93, "label": "93", "labelValue": "93.0", "tooltip": "Label: 93
Weight: 186.0
Value: 93.0", "type": "TreeMapNode", "weight": 186 }, { "color": "#cf3000", "doubleValue": 94, "label": "94", "labelValue": "94.0", "tooltip": "Label: 94
Weight: 188.0
Value: 94.0", "type": "TreeMapNode", "weight": 188 }, { "color": "#cf3000", "doubleValue": 95, "label": "95", "labelValue": "95.0", "tooltip": "Label: 95
Weight: 190.0
Value: 95.0", "type": "TreeMapNode", "weight": 190 }, { "color": "#ce3100", "doubleValue": 96, "label": "96", "labelValue": "96.0", "tooltip": "Label: 96
Weight: 192.0
Value: 96.0", "type": "TreeMapNode", "weight": 192 }, { "color": "#ce3100", "doubleValue": 97, "label": "97", "labelValue": "97.0", "tooltip": "Label: 97
Weight: 194.0
Value: 97.0", "type": "TreeMapNode", "weight": 194 }, { "color": "#cd3200", "doubleValue": 98, "label": "98", "labelValue": "98.0", "tooltip": "Label: 98
Weight: 196.0
Value: 98.0", "type": "TreeMapNode", "weight": 196 }, { "color": "#cd3200", "doubleValue": 99, "label": "99", "labelValue": "99.0", "tooltip": "Label: 99
Weight: 198.0
Value: 99.0", "type": "TreeMapNode", "weight": 198 }, { "color": "#cc3300", "doubleValue": 100, "label": "100", "labelValue": "100.0", "tooltip": "Label: 100
Weight: 200.0
Value: 100.0", "type": "TreeMapNode", "weight": 200 }, { "color": "#cc3300", "doubleValue": 101, "label": "101", "labelValue": "101.0", "tooltip": "Label: 101
Weight: 202.0
Value: 101.0", "type": "TreeMapNode", "weight": 202 }, { "color": "#cb3400", "doubleValue": 102, "label": "102", "labelValue": "102.0", "tooltip": "Label: 102
Weight: 204.0
Value: 102.0", "type": "TreeMapNode", "weight": 204 }, { "color": "#cb3400", "doubleValue": 103, "label": "103", "labelValue": "103.0", "tooltip": "Label: 103
Weight: 206.0
Value: 103.0", "type": "TreeMapNode", "weight": 206 }, { "color": "#ca3500", "doubleValue": 104, "label": "104", "labelValue": "104.0", "tooltip": "Label: 104
Weight: 208.0
Value: 104.0", "type": "TreeMapNode", "weight": 208 }, { "color": "#ca3500", "doubleValue": 105, "label": "105", "labelValue": "105.0", "tooltip": "Label: 105
Weight: 210.0
Value: 105.0", "type": "TreeMapNode", "weight": 210 }, { "color": "#c93600", "doubleValue": 106, "label": "106", "labelValue": "106.0", "tooltip": "Label: 106
Weight: 212.0
Value: 106.0", "type": "TreeMapNode", "weight": 212 }, { "color": "#c93600", "doubleValue": 107, "label": "107", "labelValue": "107.0", "tooltip": "Label: 107
Weight: 214.0
Value: 107.0", "type": "TreeMapNode", "weight": 214 }, { "color": "#c83700", "doubleValue": 108, "label": "108", "labelValue": "108.0", "tooltip": "Label: 108
Weight: 216.0
Value: 108.0", "type": "TreeMapNode", "weight": 216 }, { "color": "#c83700", "doubleValue": 109, "label": "109", "labelValue": "109.0", "tooltip": "Label: 109
Weight: 218.0
Value: 109.0", "type": "TreeMapNode", "weight": 218 }, { "color": "#c73800", "doubleValue": 110, "label": "110", "labelValue": "110.0", "tooltip": "Label: 110
Weight: 220.0
Value: 110.0", "type": "TreeMapNode", "weight": 220 }, { "color": "#c73800", "doubleValue": 111, "label": "111", "labelValue": "111.0", "tooltip": "Label: 111
Weight: 222.0
Value: 111.0", "type": "TreeMapNode", "weight": 222 }, { "color": "#c63900", "doubleValue": 112, "label": "112", "labelValue": "112.0", "tooltip": "Label: 112
Weight: 224.0
Value: 112.0", "type": "TreeMapNode", "weight": 224 }, { "color": "#c63900", "doubleValue": 113, "label": "113", "labelValue": "113.0", "tooltip": "Label: 113
Weight: 226.0
Value: 113.0", "type": "TreeMapNode", "weight": 226 }, { "color": "#c53a00", "doubleValue": 114, "label": "114", "labelValue": "114.0", "tooltip": "Label: 114
Weight: 228.0
Value: 114.0", "type": "TreeMapNode", "weight": 228 }, { "color": "#c53a00", "doubleValue": 115, "label": "115", "labelValue": "115.0", "tooltip": "Label: 115
Weight: 230.0
Value: 115.0", "type": "TreeMapNode", "weight": 230 }, { "color": "#c43b00", "doubleValue": 116, "label": "116", "labelValue": "116.0", "tooltip": "Label: 116
Weight: 232.0
Value: 116.0", "type": "TreeMapNode", "weight": 232 }, { "color": "#c43b00", "doubleValue": 117, "label": "117", "labelValue": "117.0", "tooltip": "Label: 117
Weight: 234.0
Value: 117.0", "type": "TreeMapNode", "weight": 234 }, { "color": "#c33c00", "doubleValue": 118, "label": "118", "labelValue": "118.0", "tooltip": "Label: 118
Weight: 236.0
Value: 118.0", "type": "TreeMapNode", "weight": 236 }, { "color": "#c33c00", "doubleValue": 119, "label": "119", "labelValue": "119.0", "tooltip": "Label: 119
Weight: 238.0
Value: 119.0", "type": "TreeMapNode", "weight": 238 }, { "color": "#c23d00", "doubleValue": 120, "label": "120", "labelValue": "120.0", "tooltip": "Label: 120
Weight: 240.0
Value: 120.0", "type": "TreeMapNode", "weight": 240 }, { "color": "#c23d00", "doubleValue": 121, "label": "121", "labelValue": "121.0", "tooltip": "Label: 121
Weight: 242.0
Value: 121.0", "type": "TreeMapNode", "weight": 242 }, { "color": "#c13e00", "doubleValue": 122, "label": "122", "labelValue": "122.0", "tooltip": "Label: 122
Weight: 244.0
Value: 122.0", "type": "TreeMapNode", "weight": 244 }, { "color": "#c13e00", "doubleValue": 123, "label": "123", "labelValue": "123.0", "tooltip": "Label: 123
Weight: 246.0
Value: 123.0", "type": "TreeMapNode", "weight": 246 }, { "color": "#c03f00", "doubleValue": 124, "label": "124", "labelValue": "124.0", "tooltip": "Label: 124
Weight: 248.0
Value: 124.0", "type": "TreeMapNode", "weight": 248 }, { "color": "#c03f00", "doubleValue": 125, "label": "125", "labelValue": "125.0", "tooltip": "Label: 125
Weight: 250.0
Value: 125.0", "type": "TreeMapNode", "weight": 250 }, { "color": "#bf4000", "doubleValue": 126, "label": "126", "labelValue": "126.0", "tooltip": "Label: 126
Weight: 252.0
Value: 126.0", "type": "TreeMapNode", "weight": 252 }, { "color": "#bf4000", "doubleValue": 127, "label": "127", "labelValue": "127.0", "tooltip": "Label: 127
Weight: 254.0
Value: 127.0", "type": "TreeMapNode", "weight": 254 }, { "color": "#be4100", "doubleValue": 128, "label": "128", "labelValue": "128.0", "tooltip": "Label: 128
Weight: 256.0
Value: 128.0", "type": "TreeMapNode", "weight": 256 }, { "color": "#be4100", "doubleValue": 129, "label": "129", "labelValue": "129.0", "tooltip": "Label: 129
Weight: 258.0
Value: 129.0", "type": "TreeMapNode", "weight": 258 }, { "color": "#bd4200", "doubleValue": 130, "label": "130", "labelValue": "130.0", "tooltip": "Label: 130
Weight: 260.0
Value: 130.0", "type": "TreeMapNode", "weight": 260 }, { "color": "#bd4200", "doubleValue": 131, "label": "131", "labelValue": "131.0", "tooltip": "Label: 131
Weight: 262.0
Value: 131.0", "type": "TreeMapNode", "weight": 262 }, { "color": "#bc4300", "doubleValue": 132, "label": "132", "labelValue": "132.0", "tooltip": "Label: 132
Weight: 264.0
Value: 132.0", "type": "TreeMapNode", "weight": 264 }, { "color": "#bc4300", "doubleValue": 133, "label": "133", "labelValue": "133.0", "tooltip": "Label: 133
Weight: 266.0
Value: 133.0", "type": "TreeMapNode", "weight": 266 }, { "color": "#bb4400", "doubleValue": 134, "label": "134", "labelValue": "134.0", "tooltip": "Label: 134
Weight: 268.0
Value: 134.0", "type": "TreeMapNode", "weight": 268 }, { "color": "#bb4400", "doubleValue": 135, "label": "135", "labelValue": "135.0", "tooltip": "Label: 135
Weight: 270.0
Value: 135.0", "type": "TreeMapNode", "weight": 270 }, { "color": "#ba4500", "doubleValue": 136, "label": "136", "labelValue": "136.0", "tooltip": "Label: 136
Weight: 272.0
Value: 136.0", "type": "TreeMapNode", "weight": 272 }, { "color": "#ba4500", "doubleValue": 137, "label": "137", "labelValue": "137.0", "tooltip": "Label: 137
Weight: 274.0
Value: 137.0", "type": "TreeMapNode", "weight": 274 }, { "color": "#b94600", "doubleValue": 138, "label": "138", "labelValue": "138.0", "tooltip": "Label: 138
Weight: 276.0
Value: 138.0", "type": "TreeMapNode", "weight": 276 }, { "color": "#b84700", "doubleValue": 139, "label": "139", "labelValue": "139.0", "tooltip": "Label: 139
Weight: 278.0
Value: 139.0", "type": "TreeMapNode", "weight": 278 }, { "color": "#b84700", "doubleValue": 140, "label": "140", "labelValue": "140.0", "tooltip": "Label: 140
Weight: 280.0
Value: 140.0", "type": "TreeMapNode", "weight": 280 }, { "color": "#b74800", "doubleValue": 141, "label": "141", "labelValue": "141.0", "tooltip": "Label: 141
Weight: 282.0
Value: 141.0", "type": "TreeMapNode", "weight": 282 }, { "color": "#b74800", "doubleValue": 142, "label": "142", "labelValue": "142.0", "tooltip": "Label: 142
Weight: 284.0
Value: 142.0", "type": "TreeMapNode", "weight": 284 }, { "color": "#b64900", "doubleValue": 143, "label": "143", "labelValue": "143.0", "tooltip": "Label: 143
Weight: 286.0
Value: 143.0", "type": "TreeMapNode", "weight": 286 }, { "color": "#b64900", "doubleValue": 144, "label": "144", "labelValue": "144.0", "tooltip": "Label: 144
Weight: 288.0
Value: 144.0", "type": "TreeMapNode", "weight": 288 }, { "color": "#b54a00", "doubleValue": 145, "label": "145", "labelValue": "145.0", "tooltip": "Label: 145
Weight: 290.0
Value: 145.0", "type": "TreeMapNode", "weight": 290 }, { "color": "#b54a00", "doubleValue": 146, "label": "146", "labelValue": "146.0", "tooltip": "Label: 146
Weight: 292.0
Value: 146.0", "type": "TreeMapNode", "weight": 292 }, { "color": "#b44b00", "doubleValue": 147, "label": "147", "labelValue": "147.0", "tooltip": "Label: 147
Weight: 294.0
Value: 147.0", "type": "TreeMapNode", "weight": 294 }, { "color": "#b44b00", "doubleValue": 148, "label": "148", "labelValue": "148.0", "tooltip": "Label: 148
Weight: 296.0
Value: 148.0", "type": "TreeMapNode", "weight": 296 }, { "color": "#b34c00", "doubleValue": 149, "label": "149", "labelValue": "149.0", "tooltip": "Label: 149
Weight: 298.0
Value: 149.0", "type": "TreeMapNode", "weight": 298 }, { "color": "#b34c00", "doubleValue": 150, "label": "150", "labelValue": "150.0", "tooltip": "Label: 150
Weight: 300.0
Value: 150.0", "type": "TreeMapNode", "weight": 300 }, { "color": "#b24d00", "doubleValue": 151, "label": "151", "labelValue": "151.0", "tooltip": "Label: 151
Weight: 302.0
Value: 151.0", "type": "TreeMapNode", "weight": 302 }, { "color": "#b24d00", "doubleValue": 152, "label": "152", "labelValue": "152.0", "tooltip": "Label: 152
Weight: 304.0
Value: 152.0", "type": "TreeMapNode", "weight": 304 }, { "color": "#b14e00", "doubleValue": 153, "label": "153", "labelValue": "153.0", "tooltip": "Label: 153
Weight: 306.0
Value: 153.0", "type": "TreeMapNode", "weight": 306 }, { "color": "#b14e00", "doubleValue": 154, "label": "154", "labelValue": "154.0", "tooltip": "Label: 154
Weight: 308.0
Value: 154.0", "type": "TreeMapNode", "weight": 308 }, { "color": "#b04f00", "doubleValue": 155, "label": "155", "labelValue": "155.0", "tooltip": "Label: 155
Weight: 310.0
Value: 155.0", "type": "TreeMapNode", "weight": 310 }, { "color": "#b04f00", "doubleValue": 156, "label": "156", "labelValue": "156.0", "tooltip": "Label: 156
Weight: 312.0
Value: 156.0", "type": "TreeMapNode", "weight": 312 }, { "color": "#af5000", "doubleValue": 157, "label": "157", "labelValue": "157.0", "tooltip": "Label: 157
Weight: 314.0
Value: 157.0", "type": "TreeMapNode", "weight": 314 }, { "color": "#af5000", "doubleValue": 158, "label": "158", "labelValue": "158.0", "tooltip": "Label: 158
Weight: 316.0
Value: 158.0", "type": "TreeMapNode", "weight": 316 }, { "color": "#ae5100", "doubleValue": 159, "label": "159", "labelValue": "159.0", "tooltip": "Label: 159
Weight: 318.0
Value: 159.0", "type": "TreeMapNode", "weight": 318 }, { "color": "#ae5100", "doubleValue": 160, "label": "160", "labelValue": "160.0", "tooltip": "Label: 160
Weight: 320.0
Value: 160.0", "type": "TreeMapNode", "weight": 320 }, { "color": "#ad5200", "doubleValue": 161, "label": "161", "labelValue": "161.0", "tooltip": "Label: 161
Weight: 322.0
Value: 161.0", "type": "TreeMapNode", "weight": 322 }, { "color": "#ad5200", "doubleValue": 162, "label": "162", "labelValue": "162.0", "tooltip": "Label: 162
Weight: 324.0
Value: 162.0", "type": "TreeMapNode", "weight": 324 }, { "color": "#ac5300", "doubleValue": 163, "label": "163", "labelValue": "163.0", "tooltip": "Label: 163
Weight: 326.0
Value: 163.0", "type": "TreeMapNode", "weight": 326 }, { "color": "#ac5300", "doubleValue": 164, "label": "164", "labelValue": "164.0", "tooltip": "Label: 164
Weight: 328.0
Value: 164.0", "type": "TreeMapNode", "weight": 328 }, { "color": "#ab5400", "doubleValue": 165, "label": "165", "labelValue": "165.0", "tooltip": "Label: 165
Weight: 330.0
Value: 165.0", "type": "TreeMapNode", "weight": 330 }, { "color": "#ab5400", "doubleValue": 166, "label": "166", "labelValue": "166.0", "tooltip": "Label: 166
Weight: 332.0
Value: 166.0", "type": "TreeMapNode", "weight": 332 }, { "color": "#aa5500", "doubleValue": 167, "label": "167", "labelValue": "167.0", "tooltip": "Label: 167
Weight: 334.0
Value: 167.0", "type": "TreeMapNode", "weight": 334 }, { "color": "#aa5500", "doubleValue": 168, "label": "168", "labelValue": "168.0", "tooltip": "Label: 168
Weight: 336.0
Value: 168.0", "type": "TreeMapNode", "weight": 336 }, { "color": "#a95600", "doubleValue": 169, "label": "169", "labelValue": "169.0", "tooltip": "Label: 169
Weight: 338.0
Value: 169.0", "type": "TreeMapNode", "weight": 338 }, { "color": "#a95600", "doubleValue": 170, "label": "170", "labelValue": "170.0", "tooltip": "Label: 170
Weight: 340.0
Value: 170.0", "type": "TreeMapNode", "weight": 340 }, { "color": "#a85700", "doubleValue": 171, "label": "171", "labelValue": "171.0", "tooltip": "Label: 171
Weight: 342.0
Value: 171.0", "type": "TreeMapNode", "weight": 342 }, { "color": "#a85700", "doubleValue": 172, "label": "172", "labelValue": "172.0", "tooltip": "Label: 172
Weight: 344.0
Value: 172.0", "type": "TreeMapNode", "weight": 344 }, { "color": "#a75800", "doubleValue": 173, "label": "173", "labelValue": "173.0", "tooltip": "Label: 173
Weight: 346.0
Value: 173.0", "type": "TreeMapNode", "weight": 346 }, { "color": "#a75800", "doubleValue": 174, "label": "174", "labelValue": "174.0", "tooltip": "Label: 174
Weight: 348.0
Value: 174.0", "type": "TreeMapNode", "weight": 348 }, { "color": "#a65900", "doubleValue": 175, "label": "175", "labelValue": "175.0", "tooltip": "Label: 175
Weight: 350.0
Value: 175.0", "type": "TreeMapNode", "weight": 350 }, { "color": "#a65900", "doubleValue": 176, "label": "176", "labelValue": "176.0", "tooltip": "Label: 176
Weight: 352.0
Value: 176.0", "type": "TreeMapNode", "weight": 352 }, { "color": "#a55a00", "doubleValue": 177, "label": "177", "labelValue": "177.0", "tooltip": "Label: 177
Weight: 354.0
Value: 177.0", "type": "TreeMapNode", "weight": 354 }, { "color": "#a55a00", "doubleValue": 178, "label": "178", "labelValue": "178.0", "tooltip": "Label: 178
Weight: 356.0
Value: 178.0", "type": "TreeMapNode", "weight": 356 }, { "color": "#a45b00", "doubleValue": 179, "label": "179", "labelValue": "179.0", "tooltip": "Label: 179
Weight: 358.0
Value: 179.0", "type": "TreeMapNode", "weight": 358 }, { "color": "#a45b00", "doubleValue": 180, "label": "180", "labelValue": "180.0", "tooltip": "Label: 180
Weight: 360.0
Value: 180.0", "type": "TreeMapNode", "weight": 360 }, { "color": "#a35c00", "doubleValue": 181, "label": "181", "labelValue": "181.0", "tooltip": "Label: 181
Weight: 362.0
Value: 181.0", "type": "TreeMapNode", "weight": 362 }, { "color": "#a35c00", "doubleValue": 182, "label": "182", "labelValue": "182.0", "tooltip": "Label: 182
Weight: 364.0
Value: 182.0", "type": "TreeMapNode", "weight": 364 }, { "color": "#a25d00", "doubleValue": 183, "label": "183", "labelValue": "183.0", "tooltip": "Label: 183
Weight: 366.0
Value: 183.0", "type": "TreeMapNode", "weight": 366 }, { "color": "#a15e00", "doubleValue": 184, "label": "184", "labelValue": "184.0", "tooltip": "Label: 184
Weight: 368.0
Value: 184.0", "type": "TreeMapNode", "weight": 368 }, { "color": "#a15e00", "doubleValue": 185, "label": "185", "labelValue": "185.0", "tooltip": "Label: 185
Weight: 370.0
Value: 185.0", "type": "TreeMapNode", "weight": 370 }, { "color": "#a05f00", "doubleValue": 186, "label": "186", "labelValue": "186.0", "tooltip": "Label: 186
Weight: 372.0
Value: 186.0", "type": "TreeMapNode", "weight": 372 }, { "color": "#a05f00", "doubleValue": 187, "label": "187", "labelValue": "187.0", "tooltip": "Label: 187
Weight: 374.0
Value: 187.0", "type": "TreeMapNode", "weight": 374 }, { "color": "#9f6000", "doubleValue": 188, "label": "188", "labelValue": "188.0", "tooltip": "Label: 188
Weight: 376.0
Value: 188.0", "type": "TreeMapNode", "weight": 376 }, { "color": "#9f6000", "doubleValue": 189, "label": "189", "labelValue": "189.0", "tooltip": "Label: 189
Weight: 378.0
Value: 189.0", "type": "TreeMapNode", "weight": 378 }, { "color": "#9e6100", "doubleValue": 190, "label": "190", "labelValue": "190.0", "tooltip": "Label: 190
Weight: 380.0
Value: 190.0", "type": "TreeMapNode", "weight": 380 }, { "color": "#9e6100", "doubleValue": 191, "label": "191", "labelValue": "191.0", "tooltip": "Label: 191
Weight: 382.0
Value: 191.0", "type": "TreeMapNode", "weight": 382 }, { "color": "#9d6200", "doubleValue": 192, "label": "192", "labelValue": "192.0", "tooltip": "Label: 192
Weight: 384.0
Value: 192.0", "type": "TreeMapNode", "weight": 384 }, { "color": "#9d6200", "doubleValue": 193, "label": "193", "labelValue": "193.0", "tooltip": "Label: 193
Weight: 386.0
Value: 193.0", "type": "TreeMapNode", "weight": 386 }, { "color": "#9c6300", "doubleValue": 194, "label": "194", "labelValue": "194.0", "tooltip": "Label: 194
Weight: 388.0
Value: 194.0", "type": "TreeMapNode", "weight": 388 }, { "color": "#9c6300", "doubleValue": 195, "label": "195", "labelValue": "195.0", "tooltip": "Label: 195
Weight: 390.0
Value: 195.0", "type": "TreeMapNode", "weight": 390 }, { "color": "#9b6400", "doubleValue": 196, "label": "196", "labelValue": "196.0", "tooltip": "Label: 196
Weight: 392.0
Value: 196.0", "type": "TreeMapNode", "weight": 392 }, { "color": "#9b6400", "doubleValue": 197, "label": "197", "labelValue": "197.0", "tooltip": "Label: 197
Weight: 394.0
Value: 197.0", "type": "TreeMapNode", "weight": 394 }, { "color": "#9a6500", "doubleValue": 198, "label": "198", "labelValue": "198.0", "tooltip": "Label: 198
Weight: 396.0
Value: 198.0", "type": "TreeMapNode", "weight": 396 }, { "color": "#9a6500", "doubleValue": 199, "label": "199", "labelValue": "199.0", "tooltip": "Label: 199
Weight: 398.0
Value: 199.0", "type": "TreeMapNode", "weight": 398 }, { "color": "#996600", "doubleValue": 200, "label": "200", "labelValue": "200.0", "tooltip": "Label: 200
Weight: 400.0
Value: 200.0", "type": "TreeMapNode", "weight": 400 }, { "color": "#996600", "doubleValue": 201, "label": "201", "labelValue": "201.0", "tooltip": "Label: 201
Weight: 402.0
Value: 201.0", "type": "TreeMapNode", "weight": 402 }, { "color": "#986700", "doubleValue": 202, "label": "202", "labelValue": "202.0", "tooltip": "Label: 202
Weight: 404.0
Value: 202.0", "type": "TreeMapNode", "weight": 404 }, { "color": "#986700", "doubleValue": 203, "label": "203", "labelValue": "203.0", "tooltip": "Label: 203
Weight: 406.0
Value: 203.0", "type": "TreeMapNode", "weight": 406 }, { "color": "#976800", "doubleValue": 204, "label": "204", "labelValue": "204.0", "tooltip": "Label: 204
Weight: 408.0
Value: 204.0", "type": "TreeMapNode", "weight": 408 }, { "color": "#976800", "doubleValue": 205, "label": "205", "labelValue": "205.0", "tooltip": "Label: 205
Weight: 410.0
Value: 205.0", "type": "TreeMapNode", "weight": 410 }, { "color": "#966900", "doubleValue": 206, "label": "206", "labelValue": "206.0", "tooltip": "Label: 206
Weight: 412.0
Value: 206.0", "type": "TreeMapNode", "weight": 412 }, { "color": "#966900", "doubleValue": 207, "label": "207", "labelValue": "207.0", "tooltip": "Label: 207
Weight: 414.0
Value: 207.0", "type": "TreeMapNode", "weight": 414 }, { "color": "#956a00", "doubleValue": 208, "label": "208", "labelValue": "208.0", "tooltip": "Label: 208
Weight: 416.0
Value: 208.0", "type": "TreeMapNode", "weight": 416 }, { "color": "#956a00", "doubleValue": 209, "label": "209", "labelValue": "209.0", "tooltip": "Label: 209
Weight: 418.0
Value: 209.0", "type": "TreeMapNode", "weight": 418 }, { "color": "#946b00", "doubleValue": 210, "label": "210", "labelValue": "210.0", "tooltip": "Label: 210
Weight: 420.0
Value: 210.0", "type": "TreeMapNode", "weight": 420 }, { "color": "#946b00", "doubleValue": 211, "label": "211", "labelValue": "211.0", "tooltip": "Label: 211
Weight: 422.0
Value: 211.0", "type": "TreeMapNode", "weight": 422 }, { "color": "#936c00", "doubleValue": 212, "label": "212", "labelValue": "212.0", "tooltip": "Label: 212
Weight: 424.0
Value: 212.0", "type": "TreeMapNode", "weight": 424 }, { "color": "#936c00", "doubleValue": 213, "label": "213", "labelValue": "213.0", "tooltip": "Label: 213
Weight: 426.0
Value: 213.0", "type": "TreeMapNode", "weight": 426 }, { "color": "#926d00", "doubleValue": 214, "label": "214", "labelValue": "214.0", "tooltip": "Label: 214
Weight: 428.0
Value: 214.0", "type": "TreeMapNode", "weight": 428 }, { "color": "#926d00", "doubleValue": 215, "label": "215", "labelValue": "215.0", "tooltip": "Label: 215
Weight: 430.0
Value: 215.0", "type": "TreeMapNode", "weight": 430 }, { "color": "#916e00", "doubleValue": 216, "label": "216", "labelValue": "216.0", "tooltip": "Label: 216
Weight: 432.0
Value: 216.0", "type": "TreeMapNode", "weight": 432 }, { "color": "#916e00", "doubleValue": 217, "label": "217", "labelValue": "217.0", "tooltip": "Label: 217
Weight: 434.0
Value: 217.0", "type": "TreeMapNode", "weight": 434 }, { "color": "#906f00", "doubleValue": 218, "label": "218", "labelValue": "218.0", "tooltip": "Label: 218
Weight: 436.0
Value: 218.0", "type": "TreeMapNode", "weight": 436 }, { "color": "#906f00", "doubleValue": 219, "label": "219", "labelValue": "219.0", "tooltip": "Label: 219
Weight: 438.0
Value: 219.0", "type": "TreeMapNode", "weight": 438 }, { "color": "#8f7000", "doubleValue": 220, "label": "220", "labelValue": "220.0", "tooltip": "Label: 220
Weight: 440.0
Value: 220.0", "type": "TreeMapNode", "weight": 440 }, { "color": "#8f7000", "doubleValue": 221, "label": "221", "labelValue": "221.0", "tooltip": "Label: 221
Weight: 442.0
Value: 221.0", "type": "TreeMapNode", "weight": 442 }, { "color": "#8e7100", "doubleValue": 222, "label": "222", "labelValue": "222.0", "tooltip": "Label: 222
Weight: 444.0
Value: 222.0", "type": "TreeMapNode", "weight": 444 }, { "color": "#8e7100", "doubleValue": 223, "label": "223", "labelValue": "223.0", "tooltip": "Label: 223
Weight: 446.0
Value: 223.0", "type": "TreeMapNode", "weight": 446 }, { "color": "#8d7200", "doubleValue": 224, "label": "224", "labelValue": "224.0", "tooltip": "Label: 224
Weight: 448.0
Value: 224.0", "type": "TreeMapNode", "weight": 448 }, { "color": "#8d7200", "doubleValue": 225, "label": "225", "labelValue": "225.0", "tooltip": "Label: 225
Weight: 450.0
Value: 225.0", "type": "TreeMapNode", "weight": 450 }, { "color": "#8c7300", "doubleValue": 226, "label": "226", "labelValue": "226.0", "tooltip": "Label: 226
Weight: 452.0
Value: 226.0", "type": "TreeMapNode", "weight": 452 }, { "color": "#8c7300", "doubleValue": 227, "label": "227", "labelValue": "227.0", "tooltip": "Label: 227
Weight: 454.0
Value: 227.0", "type": "TreeMapNode", "weight": 454 }, { "color": "#8b7400", "doubleValue": 228, "label": "228", "labelValue": "228.0", "tooltip": "Label: 228
Weight: 456.0
Value: 228.0", "type": "TreeMapNode", "weight": 456 }, { "color": "#8a7500", "doubleValue": 229, "label": "229", "labelValue": "229.0", "tooltip": "Label: 229
Weight: 458.0
Value: 229.0", "type": "TreeMapNode", "weight": 458 }, { "color": "#8a7500", "doubleValue": 230, "label": "230", "labelValue": "230.0", "tooltip": "Label: 230
Weight: 460.0
Value: 230.0", "type": "TreeMapNode", "weight": 460 }, { "color": "#897600", "doubleValue": 231, "label": "231", "labelValue": "231.0", "tooltip": "Label: 231
Weight: 462.0
Value: 231.0", "type": "TreeMapNode", "weight": 462 }, { "color": "#897600", "doubleValue": 232, "label": "232", "labelValue": "232.0", "tooltip": "Label: 232
Weight: 464.0
Value: 232.0", "type": "TreeMapNode", "weight": 464 }, { "color": "#887700", "doubleValue": 233, "label": "233", "labelValue": "233.0", "tooltip": "Label: 233
Weight: 466.0
Value: 233.0", "type": "TreeMapNode", "weight": 466 }, { "color": "#887700", "doubleValue": 234, "label": "234", "labelValue": "234.0", "tooltip": "Label: 234
Weight: 468.0
Value: 234.0", "type": "TreeMapNode", "weight": 468 }, { "color": "#877800", "doubleValue": 235, "label": "235", "labelValue": "235.0", "tooltip": "Label: 235
Weight: 470.0
Value: 235.0", "type": "TreeMapNode", "weight": 470 }, { "color": "#877800", "doubleValue": 236, "label": "236", "labelValue": "236.0", "tooltip": "Label: 236
Weight: 472.0
Value: 236.0", "type": "TreeMapNode", "weight": 472 }, { "color": "#867900", "doubleValue": 237, "label": "237", "labelValue": "237.0", "tooltip": "Label: 237
Weight: 474.0
Value: 237.0", "type": "TreeMapNode", "weight": 474 }, { "color": "#867900", "doubleValue": 238, "label": "238", "labelValue": "238.0", "tooltip": "Label: 238
Weight: 476.0
Value: 238.0", "type": "TreeMapNode", "weight": 476 }, { "color": "#857a00", "doubleValue": 239, "label": "239", "labelValue": "239.0", "tooltip": "Label: 239
Weight: 478.0
Value: 239.0", "type": "TreeMapNode", "weight": 478 }, { "color": "#857a00", "doubleValue": 240, "label": "240", "labelValue": "240.0", "tooltip": "Label: 240
Weight: 480.0
Value: 240.0", "type": "TreeMapNode", "weight": 480 }, { "color": "#847b00", "doubleValue": 241, "label": "241", "labelValue": "241.0", "tooltip": "Label: 241
Weight: 482.0
Value: 241.0", "type": "TreeMapNode", "weight": 482 }, { "color": "#847b00", "doubleValue": 242, "label": "242", "labelValue": "242.0", "tooltip": "Label: 242
Weight: 484.0
Value: 242.0", "type": "TreeMapNode", "weight": 484 }, { "color": "#837c00", "doubleValue": 243, "label": "243", "labelValue": "243.0", "tooltip": "Label: 243
Weight: 486.0
Value: 243.0", "type": "TreeMapNode", "weight": 486 }, { "color": "#837c00", "doubleValue": 244, "label": "244", "labelValue": "244.0", "tooltip": "Label: 244
Weight: 488.0
Value: 244.0", "type": "TreeMapNode", "weight": 488 }, { "color": "#827d00", "doubleValue": 245, "label": "245", "labelValue": "245.0", "tooltip": "Label: 245
Weight: 490.0
Value: 245.0", "type": "TreeMapNode", "weight": 490 }, { "color": "#827d00", "doubleValue": 246, "label": "246", "labelValue": "246.0", "tooltip": "Label: 246
Weight: 492.0
Value: 246.0", "type": "TreeMapNode", "weight": 492 }, { "color": "#817e00", "doubleValue": 247, "label": "247", "labelValue": "247.0", "tooltip": "Label: 247
Weight: 494.0
Value: 247.0", "type": "TreeMapNode", "weight": 494 }, { "color": "#817e00", "doubleValue": 248, "label": "248", "labelValue": "248.0", "tooltip": "Label: 248
Weight: 496.0
Value: 248.0", "type": "TreeMapNode", "weight": 496 }, { "color": "#807f00", "doubleValue": 249, "label": "249", "labelValue": "249.0", "tooltip": "Label: 249
Weight: 498.0
Value: 249.0", "type": "TreeMapNode", "weight": 498 }, { "color": "#807f00", "doubleValue": 250, "label": "250", "labelValue": "250.0", "tooltip": "Label: 250
Weight: 500.0
Value: 250.0", "type": "TreeMapNode", "weight": 500 } ], "type": "TreeMapNode", "weight": 62750 } ], "type": "TreeMapNode", "weight": 313250 }, { "children": [ { "color": "#ff0000", "doubleValue": 1, "label": "1", "labelValue": "1.0", "tooltip": "Label: 1
Weight: 2.0
Value: 1.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#fe0100", "doubleValue": 2, "label": "2", "labelValue": "2.0", "tooltip": "Label: 2
Weight: 4.0
Value: 2.0", "type": "TreeMapNode", "weight": 4 }, { "color": "#fe0100", "doubleValue": 3, "label": "3", "labelValue": "3.0", "tooltip": "Label: 3
Weight: 6.0
Value: 3.0", "type": "TreeMapNode", "weight": 6 }, { "color": "#fd0200", "doubleValue": 4, "label": "4", "labelValue": "4.0", "tooltip": "Label: 4
Weight: 8.0
Value: 4.0", "type": "TreeMapNode", "weight": 8 }, { "color": "#fd0200", "doubleValue": 5, "label": "5", "labelValue": "5.0", "tooltip": "Label: 5
Weight: 10.0
Value: 5.0", "type": "TreeMapNode", "weight": 10 }, { "color": "#fc0300", "doubleValue": 6, "label": "6", "labelValue": "6.0", "tooltip": "Label: 6
Weight: 12.0
Value: 6.0", "type": "TreeMapNode", "weight": 12 }, { "color": "#fc0300", "doubleValue": 7, "label": "7", "labelValue": "7.0", "tooltip": "Label: 7
Weight: 14.0
Value: 7.0", "type": "TreeMapNode", "weight": 14 }, { "color": "#fb0400", "doubleValue": 8, "label": "8", "labelValue": "8.0", "tooltip": "Label: 8
Weight: 16.0
Value: 8.0", "type": "TreeMapNode", "weight": 16 }, { "color": "#fb0400", "doubleValue": 9, "label": "9", "labelValue": "9.0", "tooltip": "Label: 9
Weight: 18.0
Value: 9.0", "type": "TreeMapNode", "weight": 18 }, { "color": "#fa0500", "doubleValue": 10, "label": "10", "labelValue": "10.0", "tooltip": "Label: 10
Weight: 20.0
Value: 10.0", "type": "TreeMapNode", "weight": 20 }, { "color": "#fa0500", "doubleValue": 11, "label": "11", "labelValue": "11.0", "tooltip": "Label: 11
Weight: 22.0
Value: 11.0", "type": "TreeMapNode", "weight": 22 }, { "color": "#f90600", "doubleValue": 12, "label": "12", "labelValue": "12.0", "tooltip": "Label: 12
Weight: 24.0
Value: 12.0", "type": "TreeMapNode", "weight": 24 }, { "color": "#f90600", "doubleValue": 13, "label": "13", "labelValue": "13.0", "tooltip": "Label: 13
Weight: 26.0
Value: 13.0", "type": "TreeMapNode", "weight": 26 }, { "color": "#f80700", "doubleValue": 14, "label": "14", "labelValue": "14.0", "tooltip": "Label: 14
Weight: 28.0
Value: 14.0", "type": "TreeMapNode", "weight": 28 }, { "color": "#f80700", "doubleValue": 15, "label": "15", "labelValue": "15.0", "tooltip": "Label: 15
Weight: 30.0
Value: 15.0", "type": "TreeMapNode", "weight": 30 }, { "color": "#f70800", "doubleValue": 16, "label": "16", "labelValue": "16.0", "tooltip": "Label: 16
Weight: 32.0
Value: 16.0", "type": "TreeMapNode", "weight": 32 }, { "color": "#f70800", "doubleValue": 17, "label": "17", "labelValue": "17.0", "tooltip": "Label: 17
Weight: 34.0
Value: 17.0", "type": "TreeMapNode", "weight": 34 }, { "color": "#f60900", "doubleValue": 18, "label": "18", "labelValue": "18.0", "tooltip": "Label: 18
Weight: 36.0
Value: 18.0", "type": "TreeMapNode", "weight": 36 }, { "color": "#f60900", "doubleValue": 19, "label": "19", "labelValue": "19.0", "tooltip": "Label: 19
Weight: 38.0
Value: 19.0", "type": "TreeMapNode", "weight": 38 }, { "color": "#f50a00", "doubleValue": 20, "label": "20", "labelValue": "20.0", "tooltip": "Label: 20
Weight: 40.0
Value: 20.0", "type": "TreeMapNode", "weight": 40 }, { "color": "#f50a00", "doubleValue": 21, "label": "21", "labelValue": "21.0", "tooltip": "Label: 21
Weight: 42.0
Value: 21.0", "type": "TreeMapNode", "weight": 42 }, { "color": "#f40b00", "doubleValue": 22, "label": "22", "labelValue": "22.0", "tooltip": "Label: 22
Weight: 44.0
Value: 22.0", "type": "TreeMapNode", "weight": 44 }, { "color": "#f40b00", "doubleValue": 23, "label": "23", "labelValue": "23.0", "tooltip": "Label: 23
Weight: 46.0
Value: 23.0", "type": "TreeMapNode", "weight": 46 }, { "color": "#f30c00", "doubleValue": 24, "label": "24", "labelValue": "24.0", "tooltip": "Label: 24
Weight: 48.0
Value: 24.0", "type": "TreeMapNode", "weight": 48 }, { "color": "#f30c00", "doubleValue": 25, "label": "25", "labelValue": "25.0", "tooltip": "Label: 25
Weight: 50.0
Value: 25.0", "type": "TreeMapNode", "weight": 50 }, { "color": "#f20d00", "doubleValue": 26, "label": "26", "labelValue": "26.0", "tooltip": "Label: 26
Weight: 52.0
Value: 26.0", "type": "TreeMapNode", "weight": 52 }, { "color": "#f20d00", "doubleValue": 27, "label": "27", "labelValue": "27.0", "tooltip": "Label: 27
Weight: 54.0
Value: 27.0", "type": "TreeMapNode", "weight": 54 }, { "color": "#f10e00", "doubleValue": 28, "label": "28", "labelValue": "28.0", "tooltip": "Label: 28
Weight: 56.0
Value: 28.0", "type": "TreeMapNode", "weight": 56 }, { "color": "#f10e00", "doubleValue": 29, "label": "29", "labelValue": "29.0", "tooltip": "Label: 29
Weight: 58.0
Value: 29.0", "type": "TreeMapNode", "weight": 58 }, { "color": "#f00f00", "doubleValue": 30, "label": "30", "labelValue": "30.0", "tooltip": "Label: 30
Weight: 60.0
Value: 30.0", "type": "TreeMapNode", "weight": 60 }, { "color": "#f00f00", "doubleValue": 31, "label": "31", "labelValue": "31.0", "tooltip": "Label: 31
Weight: 62.0
Value: 31.0", "type": "TreeMapNode", "weight": 62 }, { "color": "#ef1000", "doubleValue": 32, "label": "32", "labelValue": "32.0", "tooltip": "Label: 32
Weight: 64.0
Value: 32.0", "type": "TreeMapNode", "weight": 64 }, { "color": "#ef1000", "doubleValue": 33, "label": "33", "labelValue": "33.0", "tooltip": "Label: 33
Weight: 66.0
Value: 33.0", "type": "TreeMapNode", "weight": 66 }, { "color": "#ee1100", "doubleValue": 34, "label": "34", "labelValue": "34.0", "tooltip": "Label: 34
Weight: 68.0
Value: 34.0", "type": "TreeMapNode", "weight": 68 }, { "color": "#ee1100", "doubleValue": 35, "label": "35", "labelValue": "35.0", "tooltip": "Label: 35
Weight: 70.0
Value: 35.0", "type": "TreeMapNode", "weight": 70 }, { "color": "#ed1200", "doubleValue": 36, "label": "36", "labelValue": "36.0", "tooltip": "Label: 36
Weight: 72.0
Value: 36.0", "type": "TreeMapNode", "weight": 72 }, { "color": "#ed1200", "doubleValue": 37, "label": "37", "labelValue": "37.0", "tooltip": "Label: 37
Weight: 74.0
Value: 37.0", "type": "TreeMapNode", "weight": 74 }, { "color": "#ec1300", "doubleValue": 38, "label": "38", "labelValue": "38.0", "tooltip": "Label: 38
Weight: 76.0
Value: 38.0", "type": "TreeMapNode", "weight": 76 }, { "color": "#ec1300", "doubleValue": 39, "label": "39", "labelValue": "39.0", "tooltip": "Label: 39
Weight: 78.0
Value: 39.0", "type": "TreeMapNode", "weight": 78 }, { "color": "#eb1400", "doubleValue": 40, "label": "40", "labelValue": "40.0", "tooltip": "Label: 40
Weight: 80.0
Value: 40.0", "type": "TreeMapNode", "weight": 80 }, { "color": "#eb1400", "doubleValue": 41, "label": "41", "labelValue": "41.0", "tooltip": "Label: 41
Weight: 82.0
Value: 41.0", "type": "TreeMapNode", "weight": 82 }, { "color": "#ea1500", "doubleValue": 42, "label": "42", "labelValue": "42.0", "tooltip": "Label: 42
Weight: 84.0
Value: 42.0", "type": "TreeMapNode", "weight": 84 }, { "color": "#ea1500", "doubleValue": 43, "label": "43", "labelValue": "43.0", "tooltip": "Label: 43
Weight: 86.0
Value: 43.0", "type": "TreeMapNode", "weight": 86 }, { "color": "#e91600", "doubleValue": 44, "label": "44", "labelValue": "44.0", "tooltip": "Label: 44
Weight: 88.0
Value: 44.0", "type": "TreeMapNode", "weight": 88 }, { "color": "#e91600", "doubleValue": 45, "label": "45", "labelValue": "45.0", "tooltip": "Label: 45
Weight: 90.0
Value: 45.0", "type": "TreeMapNode", "weight": 90 }, { "color": "#e81700", "doubleValue": 46, "label": "46", "labelValue": "46.0", "tooltip": "Label: 46
Weight: 92.0
Value: 46.0", "type": "TreeMapNode", "weight": 92 }, { "color": "#e71800", "doubleValue": 47, "label": "47", "labelValue": "47.0", "tooltip": "Label: 47
Weight: 94.0
Value: 47.0", "type": "TreeMapNode", "weight": 94 }, { "color": "#e71800", "doubleValue": 48, "label": "48", "labelValue": "48.0", "tooltip": "Label: 48
Weight: 96.0
Value: 48.0", "type": "TreeMapNode", "weight": 96 }, { "color": "#e61900", "doubleValue": 49, "label": "49", "labelValue": "49.0", "tooltip": "Label: 49
Weight: 98.0
Value: 49.0", "type": "TreeMapNode", "weight": 98 }, { "color": "#e61900", "doubleValue": 50, "label": "50", "labelValue": "50.0", "tooltip": "Label: 50
Weight: 100.0
Value: 50.0", "type": "TreeMapNode", "weight": 100 }, { "color": "#e51a00", "doubleValue": 51, "label": "51", "labelValue": "51.0", "tooltip": "Label: 51
Weight: 102.0
Value: 51.0", "type": "TreeMapNode", "weight": 102 }, { "color": "#e51a00", "doubleValue": 52, "label": "52", "labelValue": "52.0", "tooltip": "Label: 52
Weight: 104.0
Value: 52.0", "type": "TreeMapNode", "weight": 104 }, { "color": "#e41b00", "doubleValue": 53, "label": "53", "labelValue": "53.0", "tooltip": "Label: 53
Weight: 106.0
Value: 53.0", "type": "TreeMapNode", "weight": 106 }, { "color": "#e41b00", "doubleValue": 54, "label": "54", "labelValue": "54.0", "tooltip": "Label: 54
Weight: 108.0
Value: 54.0", "type": "TreeMapNode", "weight": 108 }, { "color": "#e31c00", "doubleValue": 55, "label": "55", "labelValue": "55.0", "tooltip": "Label: 55
Weight: 110.0
Value: 55.0", "type": "TreeMapNode", "weight": 110 }, { "color": "#e31c00", "doubleValue": 56, "label": "56", "labelValue": "56.0", "tooltip": "Label: 56
Weight: 112.0
Value: 56.0", "type": "TreeMapNode", "weight": 112 }, { "color": "#e21d00", "doubleValue": 57, "label": "57", "labelValue": "57.0", "tooltip": "Label: 57
Weight: 114.0
Value: 57.0", "type": "TreeMapNode", "weight": 114 }, { "color": "#e21d00", "doubleValue": 58, "label": "58", "labelValue": "58.0", "tooltip": "Label: 58
Weight: 116.0
Value: 58.0", "type": "TreeMapNode", "weight": 116 }, { "color": "#e11e00", "doubleValue": 59, "label": "59", "labelValue": "59.0", "tooltip": "Label: 59
Weight: 118.0
Value: 59.0", "type": "TreeMapNode", "weight": 118 }, { "color": "#e11e00", "doubleValue": 60, "label": "60", "labelValue": "60.0", "tooltip": "Label: 60
Weight: 120.0
Value: 60.0", "type": "TreeMapNode", "weight": 120 }, { "color": "#e01f00", "doubleValue": 61, "label": "61", "labelValue": "61.0", "tooltip": "Label: 61
Weight: 122.0
Value: 61.0", "type": "TreeMapNode", "weight": 122 }, { "color": "#e01f00", "doubleValue": 62, "label": "62", "labelValue": "62.0", "tooltip": "Label: 62
Weight: 124.0
Value: 62.0", "type": "TreeMapNode", "weight": 124 }, { "color": "#df2000", "doubleValue": 63, "label": "63", "labelValue": "63.0", "tooltip": "Label: 63
Weight: 126.0
Value: 63.0", "type": "TreeMapNode", "weight": 126 }, { "color": "#df2000", "doubleValue": 64, "label": "64", "labelValue": "64.0", "tooltip": "Label: 64
Weight: 128.0
Value: 64.0", "type": "TreeMapNode", "weight": 128 }, { "color": "#de2100", "doubleValue": 65, "label": "65", "labelValue": "65.0", "tooltip": "Label: 65
Weight: 130.0
Value: 65.0", "type": "TreeMapNode", "weight": 130 }, { "color": "#de2100", "doubleValue": 66, "label": "66", "labelValue": "66.0", "tooltip": "Label: 66
Weight: 132.0
Value: 66.0", "type": "TreeMapNode", "weight": 132 }, { "color": "#dd2200", "doubleValue": 67, "label": "67", "labelValue": "67.0", "tooltip": "Label: 67
Weight: 134.0
Value: 67.0", "type": "TreeMapNode", "weight": 134 }, { "color": "#dd2200", "doubleValue": 68, "label": "68", "labelValue": "68.0", "tooltip": "Label: 68
Weight: 136.0
Value: 68.0", "type": "TreeMapNode", "weight": 136 }, { "color": "#dc2300", "doubleValue": 69, "label": "69", "labelValue": "69.0", "tooltip": "Label: 69
Weight: 138.0
Value: 69.0", "type": "TreeMapNode", "weight": 138 }, { "color": "#dc2300", "doubleValue": 70, "label": "70", "labelValue": "70.0", "tooltip": "Label: 70
Weight: 140.0
Value: 70.0", "type": "TreeMapNode", "weight": 140 }, { "color": "#db2400", "doubleValue": 71, "label": "71", "labelValue": "71.0", "tooltip": "Label: 71
Weight: 142.0
Value: 71.0", "type": "TreeMapNode", "weight": 142 }, { "color": "#db2400", "doubleValue": 72, "label": "72", "labelValue": "72.0", "tooltip": "Label: 72
Weight: 144.0
Value: 72.0", "type": "TreeMapNode", "weight": 144 }, { "color": "#da2500", "doubleValue": 73, "label": "73", "labelValue": "73.0", "tooltip": "Label: 73
Weight: 146.0
Value: 73.0", "type": "TreeMapNode", "weight": 146 }, { "color": "#da2500", "doubleValue": 74, "label": "74", "labelValue": "74.0", "tooltip": "Label: 74
Weight: 148.0
Value: 74.0", "type": "TreeMapNode", "weight": 148 }, { "color": "#d92600", "doubleValue": 75, "label": "75", "labelValue": "75.0", "tooltip": "Label: 75
Weight: 150.0
Value: 75.0", "type": "TreeMapNode", "weight": 150 }, { "color": "#d92600", "doubleValue": 76, "label": "76", "labelValue": "76.0", "tooltip": "Label: 76
Weight: 152.0
Value: 76.0", "type": "TreeMapNode", "weight": 152 }, { "color": "#d82700", "doubleValue": 77, "label": "77", "labelValue": "77.0", "tooltip": "Label: 77
Weight: 154.0
Value: 77.0", "type": "TreeMapNode", "weight": 154 }, { "color": "#d82700", "doubleValue": 78, "label": "78", "labelValue": "78.0", "tooltip": "Label: 78
Weight: 156.0
Value: 78.0", "type": "TreeMapNode", "weight": 156 }, { "color": "#d72800", "doubleValue": 79, "label": "79", "labelValue": "79.0", "tooltip": "Label: 79
Weight: 158.0
Value: 79.0", "type": "TreeMapNode", "weight": 158 }, { "color": "#d72800", "doubleValue": 80, "label": "80", "labelValue": "80.0", "tooltip": "Label: 80
Weight: 160.0
Value: 80.0", "type": "TreeMapNode", "weight": 160 }, { "color": "#d62900", "doubleValue": 81, "label": "81", "labelValue": "81.0", "tooltip": "Label: 81
Weight: 162.0
Value: 81.0", "type": "TreeMapNode", "weight": 162 }, { "color": "#d62900", "doubleValue": 82, "label": "82", "labelValue": "82.0", "tooltip": "Label: 82
Weight: 164.0
Value: 82.0", "type": "TreeMapNode", "weight": 164 }, { "color": "#d52a00", "doubleValue": 83, "label": "83", "labelValue": "83.0", "tooltip": "Label: 83
Weight: 166.0
Value: 83.0", "type": "TreeMapNode", "weight": 166 }, { "color": "#d52a00", "doubleValue": 84, "label": "84", "labelValue": "84.0", "tooltip": "Label: 84
Weight: 168.0
Value: 84.0", "type": "TreeMapNode", "weight": 168 }, { "color": "#d42b00", "doubleValue": 85, "label": "85", "labelValue": "85.0", "tooltip": "Label: 85
Weight: 170.0
Value: 85.0", "type": "TreeMapNode", "weight": 170 }, { "color": "#d42b00", "doubleValue": 86, "label": "86", "labelValue": "86.0", "tooltip": "Label: 86
Weight: 172.0
Value: 86.0", "type": "TreeMapNode", "weight": 172 }, { "color": "#d32c00", "doubleValue": 87, "label": "87", "labelValue": "87.0", "tooltip": "Label: 87
Weight: 174.0
Value: 87.0", "type": "TreeMapNode", "weight": 174 }, { "color": "#d32c00", "doubleValue": 88, "label": "88", "labelValue": "88.0", "tooltip": "Label: 88
Weight: 176.0
Value: 88.0", "type": "TreeMapNode", "weight": 176 }, { "color": "#d22d00", "doubleValue": 89, "label": "89", "labelValue": "89.0", "tooltip": "Label: 89
Weight: 178.0
Value: 89.0", "type": "TreeMapNode", "weight": 178 }, { "color": "#d22d00", "doubleValue": 90, "label": "90", "labelValue": "90.0", "tooltip": "Label: 90
Weight: 180.0
Value: 90.0", "type": "TreeMapNode", "weight": 180 }, { "color": "#d12e00", "doubleValue": 91, "label": "91", "labelValue": "91.0", "tooltip": "Label: 91
Weight: 182.0
Value: 91.0", "type": "TreeMapNode", "weight": 182 }, { "color": "#d02f00", "doubleValue": 92, "label": "92", "labelValue": "92.0", "tooltip": "Label: 92
Weight: 184.0
Value: 92.0", "type": "TreeMapNode", "weight": 184 }, { "color": "#d02f00", "doubleValue": 93, "label": "93", "labelValue": "93.0", "tooltip": "Label: 93
Weight: 186.0
Value: 93.0", "type": "TreeMapNode", "weight": 186 }, { "color": "#cf3000", "doubleValue": 94, "label": "94", "labelValue": "94.0", "tooltip": "Label: 94
Weight: 188.0
Value: 94.0", "type": "TreeMapNode", "weight": 188 }, { "color": "#cf3000", "doubleValue": 95, "label": "95", "labelValue": "95.0", "tooltip": "Label: 95
Weight: 190.0
Value: 95.0", "type": "TreeMapNode", "weight": 190 }, { "color": "#ce3100", "doubleValue": 96, "label": "96", "labelValue": "96.0", "tooltip": "Label: 96
Weight: 192.0
Value: 96.0", "type": "TreeMapNode", "weight": 192 }, { "color": "#ce3100", "doubleValue": 97, "label": "97", "labelValue": "97.0", "tooltip": "Label: 97
Weight: 194.0
Value: 97.0", "type": "TreeMapNode", "weight": 194 }, { "color": "#cd3200", "doubleValue": 98, "label": "98", "labelValue": "98.0", "tooltip": "Label: 98
Weight: 196.0
Value: 98.0", "type": "TreeMapNode", "weight": 196 }, { "color": "#cd3200", "doubleValue": 99, "label": "99", "labelValue": "99.0", "tooltip": "Label: 99
Weight: 198.0
Value: 99.0", "type": "TreeMapNode", "weight": 198 }, { "color": "#cc3300", "doubleValue": 100, "label": "100", "labelValue": "100.0", "tooltip": "Label: 100
Weight: 200.0
Value: 100.0", "type": "TreeMapNode", "weight": 200 }, { "color": "#cc3300", "doubleValue": 101, "label": "101", "labelValue": "101.0", "tooltip": "Label: 101
Weight: 202.0
Value: 101.0", "type": "TreeMapNode", "weight": 202 }, { "color": "#cb3400", "doubleValue": 102, "label": "102", "labelValue": "102.0", "tooltip": "Label: 102
Weight: 204.0
Value: 102.0", "type": "TreeMapNode", "weight": 204 }, { "color": "#cb3400", "doubleValue": 103, "label": "103", "labelValue": "103.0", "tooltip": "Label: 103
Weight: 206.0
Value: 103.0", "type": "TreeMapNode", "weight": 206 }, { "color": "#ca3500", "doubleValue": 104, "label": "104", "labelValue": "104.0", "tooltip": "Label: 104
Weight: 208.0
Value: 104.0", "type": "TreeMapNode", "weight": 208 }, { "color": "#ca3500", "doubleValue": 105, "label": "105", "labelValue": "105.0", "tooltip": "Label: 105
Weight: 210.0
Value: 105.0", "type": "TreeMapNode", "weight": 210 }, { "color": "#c93600", "doubleValue": 106, "label": "106", "labelValue": "106.0", "tooltip": "Label: 106
Weight: 212.0
Value: 106.0", "type": "TreeMapNode", "weight": 212 }, { "color": "#c93600", "doubleValue": 107, "label": "107", "labelValue": "107.0", "tooltip": "Label: 107
Weight: 214.0
Value: 107.0", "type": "TreeMapNode", "weight": 214 }, { "color": "#c83700", "doubleValue": 108, "label": "108", "labelValue": "108.0", "tooltip": "Label: 108
Weight: 216.0
Value: 108.0", "type": "TreeMapNode", "weight": 216 }, { "color": "#c83700", "doubleValue": 109, "label": "109", "labelValue": "109.0", "tooltip": "Label: 109
Weight: 218.0
Value: 109.0", "type": "TreeMapNode", "weight": 218 }, { "color": "#c73800", "doubleValue": 110, "label": "110", "labelValue": "110.0", "tooltip": "Label: 110
Weight: 220.0
Value: 110.0", "type": "TreeMapNode", "weight": 220 }, { "color": "#c73800", "doubleValue": 111, "label": "111", "labelValue": "111.0", "tooltip": "Label: 111
Weight: 222.0
Value: 111.0", "type": "TreeMapNode", "weight": 222 }, { "color": "#c63900", "doubleValue": 112, "label": "112", "labelValue": "112.0", "tooltip": "Label: 112
Weight: 224.0
Value: 112.0", "type": "TreeMapNode", "weight": 224 }, { "color": "#c63900", "doubleValue": 113, "label": "113", "labelValue": "113.0", "tooltip": "Label: 113
Weight: 226.0
Value: 113.0", "type": "TreeMapNode", "weight": 226 }, { "color": "#c53a00", "doubleValue": 114, "label": "114", "labelValue": "114.0", "tooltip": "Label: 114
Weight: 228.0
Value: 114.0", "type": "TreeMapNode", "weight": 228 }, { "color": "#c53a00", "doubleValue": 115, "label": "115", "labelValue": "115.0", "tooltip": "Label: 115
Weight: 230.0
Value: 115.0", "type": "TreeMapNode", "weight": 230 }, { "color": "#c43b00", "doubleValue": 116, "label": "116", "labelValue": "116.0", "tooltip": "Label: 116
Weight: 232.0
Value: 116.0", "type": "TreeMapNode", "weight": 232 }, { "color": "#c43b00", "doubleValue": 117, "label": "117", "labelValue": "117.0", "tooltip": "Label: 117
Weight: 234.0
Value: 117.0", "type": "TreeMapNode", "weight": 234 }, { "color": "#c33c00", "doubleValue": 118, "label": "118", "labelValue": "118.0", "tooltip": "Label: 118
Weight: 236.0
Value: 118.0", "type": "TreeMapNode", "weight": 236 }, { "color": "#c33c00", "doubleValue": 119, "label": "119", "labelValue": "119.0", "tooltip": "Label: 119
Weight: 238.0
Value: 119.0", "type": "TreeMapNode", "weight": 238 }, { "color": "#c23d00", "doubleValue": 120, "label": "120", "labelValue": "120.0", "tooltip": "Label: 120
Weight: 240.0
Value: 120.0", "type": "TreeMapNode", "weight": 240 }, { "color": "#c23d00", "doubleValue": 121, "label": "121", "labelValue": "121.0", "tooltip": "Label: 121
Weight: 242.0
Value: 121.0", "type": "TreeMapNode", "weight": 242 }, { "color": "#c13e00", "doubleValue": 122, "label": "122", "labelValue": "122.0", "tooltip": "Label: 122
Weight: 244.0
Value: 122.0", "type": "TreeMapNode", "weight": 244 }, { "color": "#c13e00", "doubleValue": 123, "label": "123", "labelValue": "123.0", "tooltip": "Label: 123
Weight: 246.0
Value: 123.0", "type": "TreeMapNode", "weight": 246 }, { "color": "#c03f00", "doubleValue": 124, "label": "124", "labelValue": "124.0", "tooltip": "Label: 124
Weight: 248.0
Value: 124.0", "type": "TreeMapNode", "weight": 248 }, { "color": "#c03f00", "doubleValue": 125, "label": "125", "labelValue": "125.0", "tooltip": "Label: 125
Weight: 250.0
Value: 125.0", "type": "TreeMapNode", "weight": 250 }, { "color": "#bf4000", "doubleValue": 126, "label": "126", "labelValue": "126.0", "tooltip": "Label: 126
Weight: 252.0
Value: 126.0", "type": "TreeMapNode", "weight": 252 }, { "color": "#bf4000", "doubleValue": 127, "label": "127", "labelValue": "127.0", "tooltip": "Label: 127
Weight: 254.0
Value: 127.0", "type": "TreeMapNode", "weight": 254 }, { "color": "#be4100", "doubleValue": 128, "label": "128", "labelValue": "128.0", "tooltip": "Label: 128
Weight: 256.0
Value: 128.0", "type": "TreeMapNode", "weight": 256 }, { "color": "#be4100", "doubleValue": 129, "label": "129", "labelValue": "129.0", "tooltip": "Label: 129
Weight: 258.0
Value: 129.0", "type": "TreeMapNode", "weight": 258 }, { "color": "#bd4200", "doubleValue": 130, "label": "130", "labelValue": "130.0", "tooltip": "Label: 130
Weight: 260.0
Value: 130.0", "type": "TreeMapNode", "weight": 260 }, { "color": "#bd4200", "doubleValue": 131, "label": "131", "labelValue": "131.0", "tooltip": "Label: 131
Weight: 262.0
Value: 131.0", "type": "TreeMapNode", "weight": 262 }, { "color": "#bc4300", "doubleValue": 132, "label": "132", "labelValue": "132.0", "tooltip": "Label: 132
Weight: 264.0
Value: 132.0", "type": "TreeMapNode", "weight": 264 }, { "color": "#bc4300", "doubleValue": 133, "label": "133", "labelValue": "133.0", "tooltip": "Label: 133
Weight: 266.0
Value: 133.0", "type": "TreeMapNode", "weight": 266 }, { "color": "#bb4400", "doubleValue": 134, "label": "134", "labelValue": "134.0", "tooltip": "Label: 134
Weight: 268.0
Value: 134.0", "type": "TreeMapNode", "weight": 268 }, { "color": "#bb4400", "doubleValue": 135, "label": "135", "labelValue": "135.0", "tooltip": "Label: 135
Weight: 270.0
Value: 135.0", "type": "TreeMapNode", "weight": 270 }, { "color": "#ba4500", "doubleValue": 136, "label": "136", "labelValue": "136.0", "tooltip": "Label: 136
Weight: 272.0
Value: 136.0", "type": "TreeMapNode", "weight": 272 }, { "color": "#ba4500", "doubleValue": 137, "label": "137", "labelValue": "137.0", "tooltip": "Label: 137
Weight: 274.0
Value: 137.0", "type": "TreeMapNode", "weight": 274 }, { "color": "#b94600", "doubleValue": 138, "label": "138", "labelValue": "138.0", "tooltip": "Label: 138
Weight: 276.0
Value: 138.0", "type": "TreeMapNode", "weight": 276 }, { "color": "#b84700", "doubleValue": 139, "label": "139", "labelValue": "139.0", "tooltip": "Label: 139
Weight: 278.0
Value: 139.0", "type": "TreeMapNode", "weight": 278 }, { "color": "#b84700", "doubleValue": 140, "label": "140", "labelValue": "140.0", "tooltip": "Label: 140
Weight: 280.0
Value: 140.0", "type": "TreeMapNode", "weight": 280 }, { "color": "#b74800", "doubleValue": 141, "label": "141", "labelValue": "141.0", "tooltip": "Label: 141
Weight: 282.0
Value: 141.0", "type": "TreeMapNode", "weight": 282 }, { "color": "#b74800", "doubleValue": 142, "label": "142", "labelValue": "142.0", "tooltip": "Label: 142
Weight: 284.0
Value: 142.0", "type": "TreeMapNode", "weight": 284 }, { "color": "#b64900", "doubleValue": 143, "label": "143", "labelValue": "143.0", "tooltip": "Label: 143
Weight: 286.0
Value: 143.0", "type": "TreeMapNode", "weight": 286 }, { "color": "#b64900", "doubleValue": 144, "label": "144", "labelValue": "144.0", "tooltip": "Label: 144
Weight: 288.0
Value: 144.0", "type": "TreeMapNode", "weight": 288 }, { "color": "#b54a00", "doubleValue": 145, "label": "145", "labelValue": "145.0", "tooltip": "Label: 145
Weight: 290.0
Value: 145.0", "type": "TreeMapNode", "weight": 290 }, { "color": "#b54a00", "doubleValue": 146, "label": "146", "labelValue": "146.0", "tooltip": "Label: 146
Weight: 292.0
Value: 146.0", "type": "TreeMapNode", "weight": 292 }, { "color": "#b44b00", "doubleValue": 147, "label": "147", "labelValue": "147.0", "tooltip": "Label: 147
Weight: 294.0
Value: 147.0", "type": "TreeMapNode", "weight": 294 }, { "color": "#b44b00", "doubleValue": 148, "label": "148", "labelValue": "148.0", "tooltip": "Label: 148
Weight: 296.0
Value: 148.0", "type": "TreeMapNode", "weight": 296 }, { "color": "#b34c00", "doubleValue": 149, "label": "149", "labelValue": "149.0", "tooltip": "Label: 149
Weight: 298.0
Value: 149.0", "type": "TreeMapNode", "weight": 298 }, { "color": "#b34c00", "doubleValue": 150, "label": "150", "labelValue": "150.0", "tooltip": "Label: 150
Weight: 300.0
Value: 150.0", "type": "TreeMapNode", "weight": 300 }, { "color": "#b24d00", "doubleValue": 151, "label": "151", "labelValue": "151.0", "tooltip": "Label: 151
Weight: 302.0
Value: 151.0", "type": "TreeMapNode", "weight": 302 }, { "color": "#b24d00", "doubleValue": 152, "label": "152", "labelValue": "152.0", "tooltip": "Label: 152
Weight: 304.0
Value: 152.0", "type": "TreeMapNode", "weight": 304 }, { "color": "#b14e00", "doubleValue": 153, "label": "153", "labelValue": "153.0", "tooltip": "Label: 153
Weight: 306.0
Value: 153.0", "type": "TreeMapNode", "weight": 306 }, { "color": "#b14e00", "doubleValue": 154, "label": "154", "labelValue": "154.0", "tooltip": "Label: 154
Weight: 308.0
Value: 154.0", "type": "TreeMapNode", "weight": 308 }, { "color": "#b04f00", "doubleValue": 155, "label": "155", "labelValue": "155.0", "tooltip": "Label: 155
Weight: 310.0
Value: 155.0", "type": "TreeMapNode", "weight": 310 }, { "color": "#b04f00", "doubleValue": 156, "label": "156", "labelValue": "156.0", "tooltip": "Label: 156
Weight: 312.0
Value: 156.0", "type": "TreeMapNode", "weight": 312 }, { "color": "#af5000", "doubleValue": 157, "label": "157", "labelValue": "157.0", "tooltip": "Label: 157
Weight: 314.0
Value: 157.0", "type": "TreeMapNode", "weight": 314 }, { "color": "#af5000", "doubleValue": 158, "label": "158", "labelValue": "158.0", "tooltip": "Label: 158
Weight: 316.0
Value: 158.0", "type": "TreeMapNode", "weight": 316 }, { "color": "#ae5100", "doubleValue": 159, "label": "159", "labelValue": "159.0", "tooltip": "Label: 159
Weight: 318.0
Value: 159.0", "type": "TreeMapNode", "weight": 318 }, { "color": "#ae5100", "doubleValue": 160, "label": "160", "labelValue": "160.0", "tooltip": "Label: 160
Weight: 320.0
Value: 160.0", "type": "TreeMapNode", "weight": 320 }, { "color": "#ad5200", "doubleValue": 161, "label": "161", "labelValue": "161.0", "tooltip": "Label: 161
Weight: 322.0
Value: 161.0", "type": "TreeMapNode", "weight": 322 }, { "color": "#ad5200", "doubleValue": 162, "label": "162", "labelValue": "162.0", "tooltip": "Label: 162
Weight: 324.0
Value: 162.0", "type": "TreeMapNode", "weight": 324 }, { "color": "#ac5300", "doubleValue": 163, "label": "163", "labelValue": "163.0", "tooltip": "Label: 163
Weight: 326.0
Value: 163.0", "type": "TreeMapNode", "weight": 326 }, { "color": "#ac5300", "doubleValue": 164, "label": "164", "labelValue": "164.0", "tooltip": "Label: 164
Weight: 328.0
Value: 164.0", "type": "TreeMapNode", "weight": 328 }, { "color": "#ab5400", "doubleValue": 165, "label": "165", "labelValue": "165.0", "tooltip": "Label: 165
Weight: 330.0
Value: 165.0", "type": "TreeMapNode", "weight": 330 }, { "color": "#ab5400", "doubleValue": 166, "label": "166", "labelValue": "166.0", "tooltip": "Label: 166
Weight: 332.0
Value: 166.0", "type": "TreeMapNode", "weight": 332 }, { "color": "#aa5500", "doubleValue": 167, "label": "167", "labelValue": "167.0", "tooltip": "Label: 167
Weight: 334.0
Value: 167.0", "type": "TreeMapNode", "weight": 334 }, { "color": "#aa5500", "doubleValue": 168, "label": "168", "labelValue": "168.0", "tooltip": "Label: 168
Weight: 336.0
Value: 168.0", "type": "TreeMapNode", "weight": 336 }, { "color": "#a95600", "doubleValue": 169, "label": "169", "labelValue": "169.0", "tooltip": "Label: 169
Weight: 338.0
Value: 169.0", "type": "TreeMapNode", "weight": 338 }, { "color": "#a95600", "doubleValue": 170, "label": "170", "labelValue": "170.0", "tooltip": "Label: 170
Weight: 340.0
Value: 170.0", "type": "TreeMapNode", "weight": 340 }, { "color": "#a85700", "doubleValue": 171, "label": "171", "labelValue": "171.0", "tooltip": "Label: 171
Weight: 342.0
Value: 171.0", "type": "TreeMapNode", "weight": 342 }, { "color": "#a85700", "doubleValue": 172, "label": "172", "labelValue": "172.0", "tooltip": "Label: 172
Weight: 344.0
Value: 172.0", "type": "TreeMapNode", "weight": 344 }, { "color": "#a75800", "doubleValue": 173, "label": "173", "labelValue": "173.0", "tooltip": "Label: 173
Weight: 346.0
Value: 173.0", "type": "TreeMapNode", "weight": 346 }, { "color": "#a75800", "doubleValue": 174, "label": "174", "labelValue": "174.0", "tooltip": "Label: 174
Weight: 348.0
Value: 174.0", "type": "TreeMapNode", "weight": 348 }, { "color": "#a65900", "doubleValue": 175, "label": "175", "labelValue": "175.0", "tooltip": "Label: 175
Weight: 350.0
Value: 175.0", "type": "TreeMapNode", "weight": 350 }, { "color": "#a65900", "doubleValue": 176, "label": "176", "labelValue": "176.0", "tooltip": "Label: 176
Weight: 352.0
Value: 176.0", "type": "TreeMapNode", "weight": 352 }, { "color": "#a55a00", "doubleValue": 177, "label": "177", "labelValue": "177.0", "tooltip": "Label: 177
Weight: 354.0
Value: 177.0", "type": "TreeMapNode", "weight": 354 }, { "color": "#a55a00", "doubleValue": 178, "label": "178", "labelValue": "178.0", "tooltip": "Label: 178
Weight: 356.0
Value: 178.0", "type": "TreeMapNode", "weight": 356 }, { "color": "#a45b00", "doubleValue": 179, "label": "179", "labelValue": "179.0", "tooltip": "Label: 179
Weight: 358.0
Value: 179.0", "type": "TreeMapNode", "weight": 358 }, { "color": "#a45b00", "doubleValue": 180, "label": "180", "labelValue": "180.0", "tooltip": "Label: 180
Weight: 360.0
Value: 180.0", "type": "TreeMapNode", "weight": 360 }, { "color": "#a35c00", "doubleValue": 181, "label": "181", "labelValue": "181.0", "tooltip": "Label: 181
Weight: 362.0
Value: 181.0", "type": "TreeMapNode", "weight": 362 }, { "color": "#a35c00", "doubleValue": 182, "label": "182", "labelValue": "182.0", "tooltip": "Label: 182
Weight: 364.0
Value: 182.0", "type": "TreeMapNode", "weight": 364 }, { "color": "#a25d00", "doubleValue": 183, "label": "183", "labelValue": "183.0", "tooltip": "Label: 183
Weight: 366.0
Value: 183.0", "type": "TreeMapNode", "weight": 366 }, { "color": "#a15e00", "doubleValue": 184, "label": "184", "labelValue": "184.0", "tooltip": "Label: 184
Weight: 368.0
Value: 184.0", "type": "TreeMapNode", "weight": 368 }, { "color": "#a15e00", "doubleValue": 185, "label": "185", "labelValue": "185.0", "tooltip": "Label: 185
Weight: 370.0
Value: 185.0", "type": "TreeMapNode", "weight": 370 }, { "color": "#a05f00", "doubleValue": 186, "label": "186", "labelValue": "186.0", "tooltip": "Label: 186
Weight: 372.0
Value: 186.0", "type": "TreeMapNode", "weight": 372 }, { "color": "#a05f00", "doubleValue": 187, "label": "187", "labelValue": "187.0", "tooltip": "Label: 187
Weight: 374.0
Value: 187.0", "type": "TreeMapNode", "weight": 374 }, { "color": "#9f6000", "doubleValue": 188, "label": "188", "labelValue": "188.0", "tooltip": "Label: 188
Weight: 376.0
Value: 188.0", "type": "TreeMapNode", "weight": 376 }, { "color": "#9f6000", "doubleValue": 189, "label": "189", "labelValue": "189.0", "tooltip": "Label: 189
Weight: 378.0
Value: 189.0", "type": "TreeMapNode", "weight": 378 }, { "color": "#9e6100", "doubleValue": 190, "label": "190", "labelValue": "190.0", "tooltip": "Label: 190
Weight: 380.0
Value: 190.0", "type": "TreeMapNode", "weight": 380 }, { "color": "#9e6100", "doubleValue": 191, "label": "191", "labelValue": "191.0", "tooltip": "Label: 191
Weight: 382.0
Value: 191.0", "type": "TreeMapNode", "weight": 382 }, { "color": "#9d6200", "doubleValue": 192, "label": "192", "labelValue": "192.0", "tooltip": "Label: 192
Weight: 384.0
Value: 192.0", "type": "TreeMapNode", "weight": 384 }, { "color": "#9d6200", "doubleValue": 193, "label": "193", "labelValue": "193.0", "tooltip": "Label: 193
Weight: 386.0
Value: 193.0", "type": "TreeMapNode", "weight": 386 }, { "color": "#9c6300", "doubleValue": 194, "label": "194", "labelValue": "194.0", "tooltip": "Label: 194
Weight: 388.0
Value: 194.0", "type": "TreeMapNode", "weight": 388 }, { "color": "#9c6300", "doubleValue": 195, "label": "195", "labelValue": "195.0", "tooltip": "Label: 195
Weight: 390.0
Value: 195.0", "type": "TreeMapNode", "weight": 390 }, { "color": "#9b6400", "doubleValue": 196, "label": "196", "labelValue": "196.0", "tooltip": "Label: 196
Weight: 392.0
Value: 196.0", "type": "TreeMapNode", "weight": 392 }, { "color": "#9b6400", "doubleValue": 197, "label": "197", "labelValue": "197.0", "tooltip": "Label: 197
Weight: 394.0
Value: 197.0", "type": "TreeMapNode", "weight": 394 }, { "color": "#9a6500", "doubleValue": 198, "label": "198", "labelValue": "198.0", "tooltip": "Label: 198
Weight: 396.0
Value: 198.0", "type": "TreeMapNode", "weight": 396 }, { "color": "#9a6500", "doubleValue": 199, "label": "199", "labelValue": "199.0", "tooltip": "Label: 199
Weight: 398.0
Value: 199.0", "type": "TreeMapNode", "weight": 398 }, { "color": "#996600", "doubleValue": 200, "label": "200", "labelValue": "200.0", "tooltip": "Label: 200
Weight: 400.0
Value: 200.0", "type": "TreeMapNode", "weight": 400 }, { "color": "#996600", "doubleValue": 201, "label": "201", "labelValue": "201.0", "tooltip": "Label: 201
Weight: 402.0
Value: 201.0", "type": "TreeMapNode", "weight": 402 }, { "color": "#986700", "doubleValue": 202, "label": "202", "labelValue": "202.0", "tooltip": "Label: 202
Weight: 404.0
Value: 202.0", "type": "TreeMapNode", "weight": 404 }, { "color": "#986700", "doubleValue": 203, "label": "203", "labelValue": "203.0", "tooltip": "Label: 203
Weight: 406.0
Value: 203.0", "type": "TreeMapNode", "weight": 406 }, { "color": "#976800", "doubleValue": 204, "label": "204", "labelValue": "204.0", "tooltip": "Label: 204
Weight: 408.0
Value: 204.0", "type": "TreeMapNode", "weight": 408 }, { "color": "#976800", "doubleValue": 205, "label": "205", "labelValue": "205.0", "tooltip": "Label: 205
Weight: 410.0
Value: 205.0", "type": "TreeMapNode", "weight": 410 }, { "color": "#966900", "doubleValue": 206, "label": "206", "labelValue": "206.0", "tooltip": "Label: 206
Weight: 412.0
Value: 206.0", "type": "TreeMapNode", "weight": 412 }, { "color": "#966900", "doubleValue": 207, "label": "207", "labelValue": "207.0", "tooltip": "Label: 207
Weight: 414.0
Value: 207.0", "type": "TreeMapNode", "weight": 414 }, { "color": "#956a00", "doubleValue": 208, "label": "208", "labelValue": "208.0", "tooltip": "Label: 208
Weight: 416.0
Value: 208.0", "type": "TreeMapNode", "weight": 416 }, { "color": "#956a00", "doubleValue": 209, "label": "209", "labelValue": "209.0", "tooltip": "Label: 209
Weight: 418.0
Value: 209.0", "type": "TreeMapNode", "weight": 418 }, { "color": "#946b00", "doubleValue": 210, "label": "210", "labelValue": "210.0", "tooltip": "Label: 210
Weight: 420.0
Value: 210.0", "type": "TreeMapNode", "weight": 420 }, { "color": "#946b00", "doubleValue": 211, "label": "211", "labelValue": "211.0", "tooltip": "Label: 211
Weight: 422.0
Value: 211.0", "type": "TreeMapNode", "weight": 422 }, { "color": "#936c00", "doubleValue": 212, "label": "212", "labelValue": "212.0", "tooltip": "Label: 212
Weight: 424.0
Value: 212.0", "type": "TreeMapNode", "weight": 424 }, { "color": "#936c00", "doubleValue": 213, "label": "213", "labelValue": "213.0", "tooltip": "Label: 213
Weight: 426.0
Value: 213.0", "type": "TreeMapNode", "weight": 426 }, { "color": "#926d00", "doubleValue": 214, "label": "214", "labelValue": "214.0", "tooltip": "Label: 214
Weight: 428.0
Value: 214.0", "type": "TreeMapNode", "weight": 428 }, { "color": "#926d00", "doubleValue": 215, "label": "215", "labelValue": "215.0", "tooltip": "Label: 215
Weight: 430.0
Value: 215.0", "type": "TreeMapNode", "weight": 430 }, { "color": "#916e00", "doubleValue": 216, "label": "216", "labelValue": "216.0", "tooltip": "Label: 216
Weight: 432.0
Value: 216.0", "type": "TreeMapNode", "weight": 432 }, { "color": "#916e00", "doubleValue": 217, "label": "217", "labelValue": "217.0", "tooltip": "Label: 217
Weight: 434.0
Value: 217.0", "type": "TreeMapNode", "weight": 434 }, { "color": "#906f00", "doubleValue": 218, "label": "218", "labelValue": "218.0", "tooltip": "Label: 218
Weight: 436.0
Value: 218.0", "type": "TreeMapNode", "weight": 436 }, { "color": "#906f00", "doubleValue": 219, "label": "219", "labelValue": "219.0", "tooltip": "Label: 219
Weight: 438.0
Value: 219.0", "type": "TreeMapNode", "weight": 438 }, { "color": "#8f7000", "doubleValue": 220, "label": "220", "labelValue": "220.0", "tooltip": "Label: 220
Weight: 440.0
Value: 220.0", "type": "TreeMapNode", "weight": 440 }, { "color": "#8f7000", "doubleValue": 221, "label": "221", "labelValue": "221.0", "tooltip": "Label: 221
Weight: 442.0
Value: 221.0", "type": "TreeMapNode", "weight": 442 }, { "color": "#8e7100", "doubleValue": 222, "label": "222", "labelValue": "222.0", "tooltip": "Label: 222
Weight: 444.0
Value: 222.0", "type": "TreeMapNode", "weight": 444 }, { "color": "#8e7100", "doubleValue": 223, "label": "223", "labelValue": "223.0", "tooltip": "Label: 223
Weight: 446.0
Value: 223.0", "type": "TreeMapNode", "weight": 446 }, { "color": "#8d7200", "doubleValue": 224, "label": "224", "labelValue": "224.0", "tooltip": "Label: 224
Weight: 448.0
Value: 224.0", "type": "TreeMapNode", "weight": 448 }, { "color": "#8d7200", "doubleValue": 225, "label": "225", "labelValue": "225.0", "tooltip": "Label: 225
Weight: 450.0
Value: 225.0", "type": "TreeMapNode", "weight": 450 }, { "color": "#8c7300", "doubleValue": 226, "label": "226", "labelValue": "226.0", "tooltip": "Label: 226
Weight: 452.0
Value: 226.0", "type": "TreeMapNode", "weight": 452 }, { "color": "#8c7300", "doubleValue": 227, "label": "227", "labelValue": "227.0", "tooltip": "Label: 227
Weight: 454.0
Value: 227.0", "type": "TreeMapNode", "weight": 454 }, { "color": "#8b7400", "doubleValue": 228, "label": "228", "labelValue": "228.0", "tooltip": "Label: 228
Weight: 456.0
Value: 228.0", "type": "TreeMapNode", "weight": 456 }, { "color": "#8a7500", "doubleValue": 229, "label": "229", "labelValue": "229.0", "tooltip": "Label: 229
Weight: 458.0
Value: 229.0", "type": "TreeMapNode", "weight": 458 }, { "color": "#8a7500", "doubleValue": 230, "label": "230", "labelValue": "230.0", "tooltip": "Label: 230
Weight: 460.0
Value: 230.0", "type": "TreeMapNode", "weight": 460 }, { "color": "#897600", "doubleValue": 231, "label": "231", "labelValue": "231.0", "tooltip": "Label: 231
Weight: 462.0
Value: 231.0", "type": "TreeMapNode", "weight": 462 }, { "color": "#897600", "doubleValue": 232, "label": "232", "labelValue": "232.0", "tooltip": "Label: 232
Weight: 464.0
Value: 232.0", "type": "TreeMapNode", "weight": 464 }, { "color": "#887700", "doubleValue": 233, "label": "233", "labelValue": "233.0", "tooltip": "Label: 233
Weight: 466.0
Value: 233.0", "type": "TreeMapNode", "weight": 466 }, { "color": "#887700", "doubleValue": 234, "label": "234", "labelValue": "234.0", "tooltip": "Label: 234
Weight: 468.0
Value: 234.0", "type": "TreeMapNode", "weight": 468 }, { "color": "#877800", "doubleValue": 235, "label": "235", "labelValue": "235.0", "tooltip": "Label: 235
Weight: 470.0
Value: 235.0", "type": "TreeMapNode", "weight": 470 }, { "color": "#877800", "doubleValue": 236, "label": "236", "labelValue": "236.0", "tooltip": "Label: 236
Weight: 472.0
Value: 236.0", "type": "TreeMapNode", "weight": 472 }, { "color": "#867900", "doubleValue": 237, "label": "237", "labelValue": "237.0", "tooltip": "Label: 237
Weight: 474.0
Value: 237.0", "type": "TreeMapNode", "weight": 474 }, { "color": "#867900", "doubleValue": 238, "label": "238", "labelValue": "238.0", "tooltip": "Label: 238
Weight: 476.0
Value: 238.0", "type": "TreeMapNode", "weight": 476 }, { "color": "#857a00", "doubleValue": 239, "label": "239", "labelValue": "239.0", "tooltip": "Label: 239
Weight: 478.0
Value: 239.0", "type": "TreeMapNode", "weight": 478 }, { "color": "#857a00", "doubleValue": 240, "label": "240", "labelValue": "240.0", "tooltip": "Label: 240
Weight: 480.0
Value: 240.0", "type": "TreeMapNode", "weight": 480 }, { "color": "#847b00", "doubleValue": 241, "label": "241", "labelValue": "241.0", "tooltip": "Label: 241
Weight: 482.0
Value: 241.0", "type": "TreeMapNode", "weight": 482 }, { "color": "#847b00", "doubleValue": 242, "label": "242", "labelValue": "242.0", "tooltip": "Label: 242
Weight: 484.0
Value: 242.0", "type": "TreeMapNode", "weight": 484 }, { "color": "#837c00", "doubleValue": 243, "label": "243", "labelValue": "243.0", "tooltip": "Label: 243
Weight: 486.0
Value: 243.0", "type": "TreeMapNode", "weight": 486 }, { "color": "#837c00", "doubleValue": 244, "label": "244", "labelValue": "244.0", "tooltip": "Label: 244
Weight: 488.0
Value: 244.0", "type": "TreeMapNode", "weight": 488 }, { "color": "#827d00", "doubleValue": 245, "label": "245", "labelValue": "245.0", "tooltip": "Label: 245
Weight: 490.0
Value: 245.0", "type": "TreeMapNode", "weight": 490 }, { "color": "#827d00", "doubleValue": 246, "label": "246", "labelValue": "246.0", "tooltip": "Label: 246
Weight: 492.0
Value: 246.0", "type": "TreeMapNode", "weight": 492 }, { "color": "#817e00", "doubleValue": 247, "label": "247", "labelValue": "247.0", "tooltip": "Label: 247
Weight: 494.0
Value: 247.0", "type": "TreeMapNode", "weight": 494 }, { "color": "#817e00", "doubleValue": 248, "label": "248", "labelValue": "248.0", "tooltip": "Label: 248
Weight: 496.0
Value: 248.0", "type": "TreeMapNode", "weight": 496 }, { "color": "#807f00", "doubleValue": 249, "label": "249", "labelValue": "249.0", "tooltip": "Label: 249
Weight: 498.0
Value: 249.0", "type": "TreeMapNode", "weight": 498 }, { "color": "#807f00", "doubleValue": 250, "label": "250", "labelValue": "250.0", "tooltip": "Label: 250
Weight: 500.0
Value: 250.0", "type": "TreeMapNode", "weight": 500 }, { "color": "#7f8000", "doubleValue": 251, "label": "251", "labelValue": "251.0", "tooltip": "Label: 251
Weight: 502.0
Value: 251.0", "type": "TreeMapNode", "weight": 502 }, { "color": "#7f8000", "doubleValue": 252, "label": "252", "labelValue": "252.0", "tooltip": "Label: 252
Weight: 504.0
Value: 252.0", "type": "TreeMapNode", "weight": 504 }, { "color": "#7e8100", "doubleValue": 253, "label": "253", "labelValue": "253.0", "tooltip": "Label: 253
Weight: 506.0
Value: 253.0", "type": "TreeMapNode", "weight": 506 }, { "color": "#7e8100", "doubleValue": 254, "label": "254", "labelValue": "254.0", "tooltip": "Label: 254
Weight: 508.0
Value: 254.0", "type": "TreeMapNode", "weight": 508 }, { "color": "#7d8200", "doubleValue": 255, "label": "255", "labelValue": "255.0", "tooltip": "Label: 255
Weight: 510.0
Value: 255.0", "type": "TreeMapNode", "weight": 510 }, { "color": "#7d8200", "doubleValue": 256, "label": "256", "labelValue": "256.0", "tooltip": "Label: 256
Weight: 512.0
Value: 256.0", "type": "TreeMapNode", "weight": 512 }, { "color": "#7c8300", "doubleValue": 257, "label": "257", "labelValue": "257.0", "tooltip": "Label: 257
Weight: 514.0
Value: 257.0", "type": "TreeMapNode", "weight": 514 }, { "color": "#7c8300", "doubleValue": 258, "label": "258", "labelValue": "258.0", "tooltip": "Label: 258
Weight: 516.0
Value: 258.0", "type": "TreeMapNode", "weight": 516 }, { "color": "#7b8400", "doubleValue": 259, "label": "259", "labelValue": "259.0", "tooltip": "Label: 259
Weight: 518.0
Value: 259.0", "type": "TreeMapNode", "weight": 518 }, { "color": "#7b8400", "doubleValue": 260, "label": "260", "labelValue": "260.0", "tooltip": "Label: 260
Weight: 520.0
Value: 260.0", "type": "TreeMapNode", "weight": 520 }, { "color": "#7a8500", "doubleValue": 261, "label": "261", "labelValue": "261.0", "tooltip": "Label: 261
Weight: 522.0
Value: 261.0", "type": "TreeMapNode", "weight": 522 }, { "color": "#7a8500", "doubleValue": 262, "label": "262", "labelValue": "262.0", "tooltip": "Label: 262
Weight: 524.0
Value: 262.0", "type": "TreeMapNode", "weight": 524 }, { "color": "#798600", "doubleValue": 263, "label": "263", "labelValue": "263.0", "tooltip": "Label: 263
Weight: 526.0
Value: 263.0", "type": "TreeMapNode", "weight": 526 }, { "color": "#798600", "doubleValue": 264, "label": "264", "labelValue": "264.0", "tooltip": "Label: 264
Weight: 528.0
Value: 264.0", "type": "TreeMapNode", "weight": 528 }, { "color": "#788700", "doubleValue": 265, "label": "265", "labelValue": "265.0", "tooltip": "Label: 265
Weight: 530.0
Value: 265.0", "type": "TreeMapNode", "weight": 530 }, { "color": "#788700", "doubleValue": 266, "label": "266", "labelValue": "266.0", "tooltip": "Label: 266
Weight: 532.0
Value: 266.0", "type": "TreeMapNode", "weight": 532 }, { "color": "#778800", "doubleValue": 267, "label": "267", "labelValue": "267.0", "tooltip": "Label: 267
Weight: 534.0
Value: 267.0", "type": "TreeMapNode", "weight": 534 }, { "color": "#778800", "doubleValue": 268, "label": "268", "labelValue": "268.0", "tooltip": "Label: 268
Weight: 536.0
Value: 268.0", "type": "TreeMapNode", "weight": 536 }, { "color": "#768900", "doubleValue": 269, "label": "269", "labelValue": "269.0", "tooltip": "Label: 269
Weight: 538.0
Value: 269.0", "type": "TreeMapNode", "weight": 538 }, { "color": "#768900", "doubleValue": 270, "label": "270", "labelValue": "270.0", "tooltip": "Label: 270
Weight: 540.0
Value: 270.0", "type": "TreeMapNode", "weight": 540 }, { "color": "#758a00", "doubleValue": 271, "label": "271", "labelValue": "271.0", "tooltip": "Label: 271
Weight: 542.0
Value: 271.0", "type": "TreeMapNode", "weight": 542 }, { "color": "#758a00", "doubleValue": 272, "label": "272", "labelValue": "272.0", "tooltip": "Label: 272
Weight: 544.0
Value: 272.0", "type": "TreeMapNode", "weight": 544 }, { "color": "#748b00", "doubleValue": 273, "label": "273", "labelValue": "273.0", "tooltip": "Label: 273
Weight: 546.0
Value: 273.0", "type": "TreeMapNode", "weight": 546 }, { "color": "#738c00", "doubleValue": 274, "label": "274", "labelValue": "274.0", "tooltip": "Label: 274
Weight: 548.0
Value: 274.0", "type": "TreeMapNode", "weight": 548 }, { "color": "#738c00", "doubleValue": 275, "label": "275", "labelValue": "275.0", "tooltip": "Label: 275
Weight: 550.0
Value: 275.0", "type": "TreeMapNode", "weight": 550 }, { "color": "#728d00", "doubleValue": 276, "label": "276", "labelValue": "276.0", "tooltip": "Label: 276
Weight: 552.0
Value: 276.0", "type": "TreeMapNode", "weight": 552 }, { "color": "#728d00", "doubleValue": 277, "label": "277", "labelValue": "277.0", "tooltip": "Label: 277
Weight: 554.0
Value: 277.0", "type": "TreeMapNode", "weight": 554 }, { "color": "#718e00", "doubleValue": 278, "label": "278", "labelValue": "278.0", "tooltip": "Label: 278
Weight: 556.0
Value: 278.0", "type": "TreeMapNode", "weight": 556 }, { "color": "#718e00", "doubleValue": 279, "label": "279", "labelValue": "279.0", "tooltip": "Label: 279
Weight: 558.0
Value: 279.0", "type": "TreeMapNode", "weight": 558 }, { "color": "#708f00", "doubleValue": 280, "label": "280", "labelValue": "280.0", "tooltip": "Label: 280
Weight: 560.0
Value: 280.0", "type": "TreeMapNode", "weight": 560 }, { "color": "#708f00", "doubleValue": 281, "label": "281", "labelValue": "281.0", "tooltip": "Label: 281
Weight: 562.0
Value: 281.0", "type": "TreeMapNode", "weight": 562 }, { "color": "#6f9000", "doubleValue": 282, "label": "282", "labelValue": "282.0", "tooltip": "Label: 282
Weight: 564.0
Value: 282.0", "type": "TreeMapNode", "weight": 564 }, { "color": "#6f9000", "doubleValue": 283, "label": "283", "labelValue": "283.0", "tooltip": "Label: 283
Weight: 566.0
Value: 283.0", "type": "TreeMapNode", "weight": 566 }, { "color": "#6e9100", "doubleValue": 284, "label": "284", "labelValue": "284.0", "tooltip": "Label: 284
Weight: 568.0
Value: 284.0", "type": "TreeMapNode", "weight": 568 }, { "color": "#6e9100", "doubleValue": 285, "label": "285", "labelValue": "285.0", "tooltip": "Label: 285
Weight: 570.0
Value: 285.0", "type": "TreeMapNode", "weight": 570 }, { "color": "#6d9200", "doubleValue": 286, "label": "286", "labelValue": "286.0", "tooltip": "Label: 286
Weight: 572.0
Value: 286.0", "type": "TreeMapNode", "weight": 572 }, { "color": "#6d9200", "doubleValue": 287, "label": "287", "labelValue": "287.0", "tooltip": "Label: 287
Weight: 574.0
Value: 287.0", "type": "TreeMapNode", "weight": 574 }, { "color": "#6c9300", "doubleValue": 288, "label": "288", "labelValue": "288.0", "tooltip": "Label: 288
Weight: 576.0
Value: 288.0", "type": "TreeMapNode", "weight": 576 }, { "color": "#6c9300", "doubleValue": 289, "label": "289", "labelValue": "289.0", "tooltip": "Label: 289
Weight: 578.0
Value: 289.0", "type": "TreeMapNode", "weight": 578 }, { "color": "#6b9400", "doubleValue": 290, "label": "290", "labelValue": "290.0", "tooltip": "Label: 290
Weight: 580.0
Value: 290.0", "type": "TreeMapNode", "weight": 580 }, { "color": "#6b9400", "doubleValue": 291, "label": "291", "labelValue": "291.0", "tooltip": "Label: 291
Weight: 582.0
Value: 291.0", "type": "TreeMapNode", "weight": 582 }, { "color": "#6a9500", "doubleValue": 292, "label": "292", "labelValue": "292.0", "tooltip": "Label: 292
Weight: 584.0
Value: 292.0", "type": "TreeMapNode", "weight": 584 }, { "color": "#6a9500", "doubleValue": 293, "label": "293", "labelValue": "293.0", "tooltip": "Label: 293
Weight: 586.0
Value: 293.0", "type": "TreeMapNode", "weight": 586 }, { "color": "#699600", "doubleValue": 294, "label": "294", "labelValue": "294.0", "tooltip": "Label: 294
Weight: 588.0
Value: 294.0", "type": "TreeMapNode", "weight": 588 }, { "color": "#699600", "doubleValue": 295, "label": "295", "labelValue": "295.0", "tooltip": "Label: 295
Weight: 590.0
Value: 295.0", "type": "TreeMapNode", "weight": 590 }, { "color": "#689700", "doubleValue": 296, "label": "296", "labelValue": "296.0", "tooltip": "Label: 296
Weight: 592.0
Value: 296.0", "type": "TreeMapNode", "weight": 592 }, { "color": "#689700", "doubleValue": 297, "label": "297", "labelValue": "297.0", "tooltip": "Label: 297
Weight: 594.0
Value: 297.0", "type": "TreeMapNode", "weight": 594 }, { "color": "#679800", "doubleValue": 298, "label": "298", "labelValue": "298.0", "tooltip": "Label: 298
Weight: 596.0
Value: 298.0", "type": "TreeMapNode", "weight": 596 }, { "color": "#679800", "doubleValue": 299, "label": "299", "labelValue": "299.0", "tooltip": "Label: 299
Weight: 598.0
Value: 299.0", "type": "TreeMapNode", "weight": 598 }, { "color": "#669900", "doubleValue": 300, "label": "300", "labelValue": "300.0", "tooltip": "Label: 300
Weight: 600.0
Value: 300.0", "type": "TreeMapNode", "weight": 600 }, { "color": "#669900", "doubleValue": 301, "label": "301", "labelValue": "301.0", "tooltip": "Label: 301
Weight: 602.0
Value: 301.0", "type": "TreeMapNode", "weight": 602 }, { "color": "#659a00", "doubleValue": 302, "label": "302", "labelValue": "302.0", "tooltip": "Label: 302
Weight: 604.0
Value: 302.0", "type": "TreeMapNode", "weight": 604 }, { "color": "#659a00", "doubleValue": 303, "label": "303", "labelValue": "303.0", "tooltip": "Label: 303
Weight: 606.0
Value: 303.0", "type": "TreeMapNode", "weight": 606 }, { "color": "#649b00", "doubleValue": 304, "label": "304", "labelValue": "304.0", "tooltip": "Label: 304
Weight: 608.0
Value: 304.0", "type": "TreeMapNode", "weight": 608 }, { "color": "#649b00", "doubleValue": 305, "label": "305", "labelValue": "305.0", "tooltip": "Label: 305
Weight: 610.0
Value: 305.0", "type": "TreeMapNode", "weight": 610 }, { "color": "#639c00", "doubleValue": 306, "label": "306", "labelValue": "306.0", "tooltip": "Label: 306
Weight: 612.0
Value: 306.0", "type": "TreeMapNode", "weight": 612 }, { "color": "#639c00", "doubleValue": 307, "label": "307", "labelValue": "307.0", "tooltip": "Label: 307
Weight: 614.0
Value: 307.0", "type": "TreeMapNode", "weight": 614 }, { "color": "#629d00", "doubleValue": 308, "label": "308", "labelValue": "308.0", "tooltip": "Label: 308
Weight: 616.0
Value: 308.0", "type": "TreeMapNode", "weight": 616 }, { "color": "#629d00", "doubleValue": 309, "label": "309", "labelValue": "309.0", "tooltip": "Label: 309
Weight: 618.0
Value: 309.0", "type": "TreeMapNode", "weight": 618 }, { "color": "#619e00", "doubleValue": 310, "label": "310", "labelValue": "310.0", "tooltip": "Label: 310
Weight: 620.0
Value: 310.0", "type": "TreeMapNode", "weight": 620 }, { "color": "#619e00", "doubleValue": 311, "label": "311", "labelValue": "311.0", "tooltip": "Label: 311
Weight: 622.0
Value: 311.0", "type": "TreeMapNode", "weight": 622 }, { "color": "#609f00", "doubleValue": 312, "label": "312", "labelValue": "312.0", "tooltip": "Label: 312
Weight: 624.0
Value: 312.0", "type": "TreeMapNode", "weight": 624 }, { "color": "#609f00", "doubleValue": 313, "label": "313", "labelValue": "313.0", "tooltip": "Label: 313
Weight: 626.0
Value: 313.0", "type": "TreeMapNode", "weight": 626 }, { "color": "#5fa000", "doubleValue": 314, "label": "314", "labelValue": "314.0", "tooltip": "Label: 314
Weight: 628.0
Value: 314.0", "type": "TreeMapNode", "weight": 628 }, { "color": "#5fa000", "doubleValue": 315, "label": "315", "labelValue": "315.0", "tooltip": "Label: 315
Weight: 630.0
Value: 315.0", "type": "TreeMapNode", "weight": 630 }, { "color": "#5ea100", "doubleValue": 316, "label": "316", "labelValue": "316.0", "tooltip": "Label: 316
Weight: 632.0
Value: 316.0", "type": "TreeMapNode", "weight": 632 }, { "color": "#5ea100", "doubleValue": 317, "label": "317", "labelValue": "317.0", "tooltip": "Label: 317
Weight: 634.0
Value: 317.0", "type": "TreeMapNode", "weight": 634 }, { "color": "#5da200", "doubleValue": 318, "label": "318", "labelValue": "318.0", "tooltip": "Label: 318
Weight: 636.0
Value: 318.0", "type": "TreeMapNode", "weight": 636 }, { "color": "#5ca300", "doubleValue": 319, "label": "319", "labelValue": "319.0", "tooltip": "Label: 319
Weight: 638.0
Value: 319.0", "type": "TreeMapNode", "weight": 638 }, { "color": "#5ca300", "doubleValue": 320, "label": "320", "labelValue": "320.0", "tooltip": "Label: 320
Weight: 640.0
Value: 320.0", "type": "TreeMapNode", "weight": 640 }, { "color": "#5ba400", "doubleValue": 321, "label": "321", "labelValue": "321.0", "tooltip": "Label: 321
Weight: 642.0
Value: 321.0", "type": "TreeMapNode", "weight": 642 }, { "color": "#5ba400", "doubleValue": 322, "label": "322", "labelValue": "322.0", "tooltip": "Label: 322
Weight: 644.0
Value: 322.0", "type": "TreeMapNode", "weight": 644 }, { "color": "#5aa500", "doubleValue": 323, "label": "323", "labelValue": "323.0", "tooltip": "Label: 323
Weight: 646.0
Value: 323.0", "type": "TreeMapNode", "weight": 646 }, { "color": "#5aa500", "doubleValue": 324, "label": "324", "labelValue": "324.0", "tooltip": "Label: 324
Weight: 648.0
Value: 324.0", "type": "TreeMapNode", "weight": 648 }, { "color": "#59a600", "doubleValue": 325, "label": "325", "labelValue": "325.0", "tooltip": "Label: 325
Weight: 650.0
Value: 325.0", "type": "TreeMapNode", "weight": 650 }, { "color": "#59a600", "doubleValue": 326, "label": "326", "labelValue": "326.0", "tooltip": "Label: 326
Weight: 652.0
Value: 326.0", "type": "TreeMapNode", "weight": 652 }, { "color": "#58a700", "doubleValue": 327, "label": "327", "labelValue": "327.0", "tooltip": "Label: 327
Weight: 654.0
Value: 327.0", "type": "TreeMapNode", "weight": 654 }, { "color": "#58a700", "doubleValue": 328, "label": "328", "labelValue": "328.0", "tooltip": "Label: 328
Weight: 656.0
Value: 328.0", "type": "TreeMapNode", "weight": 656 }, { "color": "#57a800", "doubleValue": 329, "label": "329", "labelValue": "329.0", "tooltip": "Label: 329
Weight: 658.0
Value: 329.0", "type": "TreeMapNode", "weight": 658 }, { "color": "#57a800", "doubleValue": 330, "label": "330", "labelValue": "330.0", "tooltip": "Label: 330
Weight: 660.0
Value: 330.0", "type": "TreeMapNode", "weight": 660 }, { "color": "#56a900", "doubleValue": 331, "label": "331", "labelValue": "331.0", "tooltip": "Label: 331
Weight: 662.0
Value: 331.0", "type": "TreeMapNode", "weight": 662 }, { "color": "#56a900", "doubleValue": 332, "label": "332", "labelValue": "332.0", "tooltip": "Label: 332
Weight: 664.0
Value: 332.0", "type": "TreeMapNode", "weight": 664 }, { "color": "#55aa00", "doubleValue": 333, "label": "333", "labelValue": "333.0", "tooltip": "Label: 333
Weight: 666.0
Value: 333.0", "type": "TreeMapNode", "weight": 666 }, { "color": "#55aa00", "doubleValue": 334, "label": "334", "labelValue": "334.0", "tooltip": "Label: 334
Weight: 668.0
Value: 334.0", "type": "TreeMapNode", "weight": 668 }, { "color": "#54ab00", "doubleValue": 335, "label": "335", "labelValue": "335.0", "tooltip": "Label: 335
Weight: 670.0
Value: 335.0", "type": "TreeMapNode", "weight": 670 }, { "color": "#54ab00", "doubleValue": 336, "label": "336", "labelValue": "336.0", "tooltip": "Label: 336
Weight: 672.0
Value: 336.0", "type": "TreeMapNode", "weight": 672 }, { "color": "#53ac00", "doubleValue": 337, "label": "337", "labelValue": "337.0", "tooltip": "Label: 337
Weight: 674.0
Value: 337.0", "type": "TreeMapNode", "weight": 674 }, { "color": "#53ac00", "doubleValue": 338, "label": "338", "labelValue": "338.0", "tooltip": "Label: 338
Weight: 676.0
Value: 338.0", "type": "TreeMapNode", "weight": 676 }, { "color": "#52ad00", "doubleValue": 339, "label": "339", "labelValue": "339.0", "tooltip": "Label: 339
Weight: 678.0
Value: 339.0", "type": "TreeMapNode", "weight": 678 }, { "color": "#52ad00", "doubleValue": 340, "label": "340", "labelValue": "340.0", "tooltip": "Label: 340
Weight: 680.0
Value: 340.0", "type": "TreeMapNode", "weight": 680 }, { "color": "#51ae00", "doubleValue": 341, "label": "341", "labelValue": "341.0", "tooltip": "Label: 341
Weight: 682.0
Value: 341.0", "type": "TreeMapNode", "weight": 682 }, { "color": "#51ae00", "doubleValue": 342, "label": "342", "labelValue": "342.0", "tooltip": "Label: 342
Weight: 684.0
Value: 342.0", "type": "TreeMapNode", "weight": 684 }, { "color": "#50af00", "doubleValue": 343, "label": "343", "labelValue": "343.0", "tooltip": "Label: 343
Weight: 686.0
Value: 343.0", "type": "TreeMapNode", "weight": 686 }, { "color": "#50af00", "doubleValue": 344, "label": "344", "labelValue": "344.0", "tooltip": "Label: 344
Weight: 688.0
Value: 344.0", "type": "TreeMapNode", "weight": 688 }, { "color": "#4fb000", "doubleValue": 345, "label": "345", "labelValue": "345.0", "tooltip": "Label: 345
Weight: 690.0
Value: 345.0", "type": "TreeMapNode", "weight": 690 }, { "color": "#4fb000", "doubleValue": 346, "label": "346", "labelValue": "346.0", "tooltip": "Label: 346
Weight: 692.0
Value: 346.0", "type": "TreeMapNode", "weight": 692 }, { "color": "#4eb100", "doubleValue": 347, "label": "347", "labelValue": "347.0", "tooltip": "Label: 347
Weight: 694.0
Value: 347.0", "type": "TreeMapNode", "weight": 694 }, { "color": "#4eb100", "doubleValue": 348, "label": "348", "labelValue": "348.0", "tooltip": "Label: 348
Weight: 696.0
Value: 348.0", "type": "TreeMapNode", "weight": 696 }, { "color": "#4db200", "doubleValue": 349, "label": "349", "labelValue": "349.0", "tooltip": "Label: 349
Weight: 698.0
Value: 349.0", "type": "TreeMapNode", "weight": 698 }, { "color": "#4db200", "doubleValue": 350, "label": "350", "labelValue": "350.0", "tooltip": "Label: 350
Weight: 700.0
Value: 350.0", "type": "TreeMapNode", "weight": 700 }, { "color": "#4cb300", "doubleValue": 351, "label": "351", "labelValue": "351.0", "tooltip": "Label: 351
Weight: 702.0
Value: 351.0", "type": "TreeMapNode", "weight": 702 }, { "color": "#4cb300", "doubleValue": 352, "label": "352", "labelValue": "352.0", "tooltip": "Label: 352
Weight: 704.0
Value: 352.0", "type": "TreeMapNode", "weight": 704 }, { "color": "#4bb400", "doubleValue": 353, "label": "353", "labelValue": "353.0", "tooltip": "Label: 353
Weight: 706.0
Value: 353.0", "type": "TreeMapNode", "weight": 706 }, { "color": "#4bb400", "doubleValue": 354, "label": "354", "labelValue": "354.0", "tooltip": "Label: 354
Weight: 708.0
Value: 354.0", "type": "TreeMapNode", "weight": 708 }, { "color": "#4ab500", "doubleValue": 355, "label": "355", "labelValue": "355.0", "tooltip": "Label: 355
Weight: 710.0
Value: 355.0", "type": "TreeMapNode", "weight": 710 }, { "color": "#4ab500", "doubleValue": 356, "label": "356", "labelValue": "356.0", "tooltip": "Label: 356
Weight: 712.0
Value: 356.0", "type": "TreeMapNode", "weight": 712 }, { "color": "#49b600", "doubleValue": 357, "label": "357", "labelValue": "357.0", "tooltip": "Label: 357
Weight: 714.0
Value: 357.0", "type": "TreeMapNode", "weight": 714 }, { "color": "#49b600", "doubleValue": 358, "label": "358", "labelValue": "358.0", "tooltip": "Label: 358
Weight: 716.0
Value: 358.0", "type": "TreeMapNode", "weight": 716 }, { "color": "#48b700", "doubleValue": 359, "label": "359", "labelValue": "359.0", "tooltip": "Label: 359
Weight: 718.0
Value: 359.0", "type": "TreeMapNode", "weight": 718 }, { "color": "#48b700", "doubleValue": 360, "label": "360", "labelValue": "360.0", "tooltip": "Label: 360
Weight: 720.0
Value: 360.0", "type": "TreeMapNode", "weight": 720 }, { "color": "#47b800", "doubleValue": 361, "label": "361", "labelValue": "361.0", "tooltip": "Label: 361
Weight: 722.0
Value: 361.0", "type": "TreeMapNode", "weight": 722 }, { "color": "#47b800", "doubleValue": 362, "label": "362", "labelValue": "362.0", "tooltip": "Label: 362
Weight: 724.0
Value: 362.0", "type": "TreeMapNode", "weight": 724 }, { "color": "#46b900", "doubleValue": 363, "label": "363", "labelValue": "363.0", "tooltip": "Label: 363
Weight: 726.0
Value: 363.0", "type": "TreeMapNode", "weight": 726 }, { "color": "#45ba00", "doubleValue": 364, "label": "364", "labelValue": "364.0", "tooltip": "Label: 364
Weight: 728.0
Value: 364.0", "type": "TreeMapNode", "weight": 728 }, { "color": "#45ba00", "doubleValue": 365, "label": "365", "labelValue": "365.0", "tooltip": "Label: 365
Weight: 730.0
Value: 365.0", "type": "TreeMapNode", "weight": 730 }, { "color": "#44bb00", "doubleValue": 366, "label": "366", "labelValue": "366.0", "tooltip": "Label: 366
Weight: 732.0
Value: 366.0", "type": "TreeMapNode", "weight": 732 }, { "color": "#44bb00", "doubleValue": 367, "label": "367", "labelValue": "367.0", "tooltip": "Label: 367
Weight: 734.0
Value: 367.0", "type": "TreeMapNode", "weight": 734 }, { "color": "#43bc00", "doubleValue": 368, "label": "368", "labelValue": "368.0", "tooltip": "Label: 368
Weight: 736.0
Value: 368.0", "type": "TreeMapNode", "weight": 736 }, { "color": "#43bc00", "doubleValue": 369, "label": "369", "labelValue": "369.0", "tooltip": "Label: 369
Weight: 738.0
Value: 369.0", "type": "TreeMapNode", "weight": 738 }, { "color": "#42bd00", "doubleValue": 370, "label": "370", "labelValue": "370.0", "tooltip": "Label: 370
Weight: 740.0
Value: 370.0", "type": "TreeMapNode", "weight": 740 }, { "color": "#42bd00", "doubleValue": 371, "label": "371", "labelValue": "371.0", "tooltip": "Label: 371
Weight: 742.0
Value: 371.0", "type": "TreeMapNode", "weight": 742 }, { "color": "#41be00", "doubleValue": 372, "label": "372", "labelValue": "372.0", "tooltip": "Label: 372
Weight: 744.0
Value: 372.0", "type": "TreeMapNode", "weight": 744 }, { "color": "#41be00", "doubleValue": 373, "label": "373", "labelValue": "373.0", "tooltip": "Label: 373
Weight: 746.0
Value: 373.0", "type": "TreeMapNode", "weight": 746 }, { "color": "#40bf00", "doubleValue": 374, "label": "374", "labelValue": "374.0", "tooltip": "Label: 374
Weight: 748.0
Value: 374.0", "type": "TreeMapNode", "weight": 748 }, { "color": "#40bf00", "doubleValue": 375, "label": "375", "labelValue": "375.0", "tooltip": "Label: 375
Weight: 750.0
Value: 375.0", "type": "TreeMapNode", "weight": 750 }, { "color": "#3fc000", "doubleValue": 376, "label": "376", "labelValue": "376.0", "tooltip": "Label: 376
Weight: 752.0
Value: 376.0", "type": "TreeMapNode", "weight": 752 }, { "color": "#3fc000", "doubleValue": 377, "label": "377", "labelValue": "377.0", "tooltip": "Label: 377
Weight: 754.0
Value: 377.0", "type": "TreeMapNode", "weight": 754 }, { "color": "#3ec100", "doubleValue": 378, "label": "378", "labelValue": "378.0", "tooltip": "Label: 378
Weight: 756.0
Value: 378.0", "type": "TreeMapNode", "weight": 756 }, { "color": "#3ec100", "doubleValue": 379, "label": "379", "labelValue": "379.0", "tooltip": "Label: 379
Weight: 758.0
Value: 379.0", "type": "TreeMapNode", "weight": 758 }, { "color": "#3dc200", "doubleValue": 380, "label": "380", "labelValue": "380.0", "tooltip": "Label: 380
Weight: 760.0
Value: 380.0", "type": "TreeMapNode", "weight": 760 }, { "color": "#3dc200", "doubleValue": 381, "label": "381", "labelValue": "381.0", "tooltip": "Label: 381
Weight: 762.0
Value: 381.0", "type": "TreeMapNode", "weight": 762 }, { "color": "#3cc300", "doubleValue": 382, "label": "382", "labelValue": "382.0", "tooltip": "Label: 382
Weight: 764.0
Value: 382.0", "type": "TreeMapNode", "weight": 764 }, { "color": "#3cc300", "doubleValue": 383, "label": "383", "labelValue": "383.0", "tooltip": "Label: 383
Weight: 766.0
Value: 383.0", "type": "TreeMapNode", "weight": 766 }, { "color": "#3bc400", "doubleValue": 384, "label": "384", "labelValue": "384.0", "tooltip": "Label: 384
Weight: 768.0
Value: 384.0", "type": "TreeMapNode", "weight": 768 }, { "color": "#3bc400", "doubleValue": 385, "label": "385", "labelValue": "385.0", "tooltip": "Label: 385
Weight: 770.0
Value: 385.0", "type": "TreeMapNode", "weight": 770 }, { "color": "#3ac500", "doubleValue": 386, "label": "386", "labelValue": "386.0", "tooltip": "Label: 386
Weight: 772.0
Value: 386.0", "type": "TreeMapNode", "weight": 772 }, { "color": "#3ac500", "doubleValue": 387, "label": "387", "labelValue": "387.0", "tooltip": "Label: 387
Weight: 774.0
Value: 387.0", "type": "TreeMapNode", "weight": 774 }, { "color": "#39c600", "doubleValue": 388, "label": "388", "labelValue": "388.0", "tooltip": "Label: 388
Weight: 776.0
Value: 388.0", "type": "TreeMapNode", "weight": 776 }, { "color": "#39c600", "doubleValue": 389, "label": "389", "labelValue": "389.0", "tooltip": "Label: 389
Weight: 778.0
Value: 389.0", "type": "TreeMapNode", "weight": 778 }, { "color": "#38c700", "doubleValue": 390, "label": "390", "labelValue": "390.0", "tooltip": "Label: 390
Weight: 780.0
Value: 390.0", "type": "TreeMapNode", "weight": 780 }, { "color": "#38c700", "doubleValue": 391, "label": "391", "labelValue": "391.0", "tooltip": "Label: 391
Weight: 782.0
Value: 391.0", "type": "TreeMapNode", "weight": 782 }, { "color": "#37c800", "doubleValue": 392, "label": "392", "labelValue": "392.0", "tooltip": "Label: 392
Weight: 784.0
Value: 392.0", "type": "TreeMapNode", "weight": 784 }, { "color": "#37c800", "doubleValue": 393, "label": "393", "labelValue": "393.0", "tooltip": "Label: 393
Weight: 786.0
Value: 393.0", "type": "TreeMapNode", "weight": 786 }, { "color": "#36c900", "doubleValue": 394, "label": "394", "labelValue": "394.0", "tooltip": "Label: 394
Weight: 788.0
Value: 394.0", "type": "TreeMapNode", "weight": 788 }, { "color": "#36c900", "doubleValue": 395, "label": "395", "labelValue": "395.0", "tooltip": "Label: 395
Weight: 790.0
Value: 395.0", "type": "TreeMapNode", "weight": 790 }, { "color": "#35ca00", "doubleValue": 396, "label": "396", "labelValue": "396.0", "tooltip": "Label: 396
Weight: 792.0
Value: 396.0", "type": "TreeMapNode", "weight": 792 }, { "color": "#35ca00", "doubleValue": 397, "label": "397", "labelValue": "397.0", "tooltip": "Label: 397
Weight: 794.0
Value: 397.0", "type": "TreeMapNode", "weight": 794 }, { "color": "#34cb00", "doubleValue": 398, "label": "398", "labelValue": "398.0", "tooltip": "Label: 398
Weight: 796.0
Value: 398.0", "type": "TreeMapNode", "weight": 796 }, { "color": "#34cb00", "doubleValue": 399, "label": "399", "labelValue": "399.0", "tooltip": "Label: 399
Weight: 798.0
Value: 399.0", "type": "TreeMapNode", "weight": 798 }, { "color": "#33cc00", "doubleValue": 400, "label": "400", "labelValue": "400.0", "tooltip": "Label: 400
Weight: 800.0
Value: 400.0", "type": "TreeMapNode", "weight": 800 }, { "color": "#33cc00", "doubleValue": 401, "label": "401", "labelValue": "401.0", "tooltip": "Label: 401
Weight: 802.0
Value: 401.0", "type": "TreeMapNode", "weight": 802 }, { "color": "#32cd00", "doubleValue": 402, "label": "402", "labelValue": "402.0", "tooltip": "Label: 402
Weight: 804.0
Value: 402.0", "type": "TreeMapNode", "weight": 804 }, { "color": "#32cd00", "doubleValue": 403, "label": "403", "labelValue": "403.0", "tooltip": "Label: 403
Weight: 806.0
Value: 403.0", "type": "TreeMapNode", "weight": 806 }, { "color": "#31ce00", "doubleValue": 404, "label": "404", "labelValue": "404.0", "tooltip": "Label: 404
Weight: 808.0
Value: 404.0", "type": "TreeMapNode", "weight": 808 }, { "color": "#31ce00", "doubleValue": 405, "label": "405", "labelValue": "405.0", "tooltip": "Label: 405
Weight: 810.0
Value: 405.0", "type": "TreeMapNode", "weight": 810 }, { "color": "#30cf00", "doubleValue": 406, "label": "406", "labelValue": "406.0", "tooltip": "Label: 406
Weight: 812.0
Value: 406.0", "type": "TreeMapNode", "weight": 812 }, { "color": "#30cf00", "doubleValue": 407, "label": "407", "labelValue": "407.0", "tooltip": "Label: 407
Weight: 814.0
Value: 407.0", "type": "TreeMapNode", "weight": 814 }, { "color": "#2fd000", "doubleValue": 408, "label": "408", "labelValue": "408.0", "tooltip": "Label: 408
Weight: 816.0
Value: 408.0", "type": "TreeMapNode", "weight": 816 }, { "color": "#2fd000", "doubleValue": 409, "label": "409", "labelValue": "409.0", "tooltip": "Label: 409
Weight: 818.0
Value: 409.0", "type": "TreeMapNode", "weight": 818 }, { "color": "#2ed100", "doubleValue": 410, "label": "410", "labelValue": "410.0", "tooltip": "Label: 410
Weight: 820.0
Value: 410.0", "type": "TreeMapNode", "weight": 820 }, { "color": "#2dd200", "doubleValue": 411, "label": "411", "labelValue": "411.0", "tooltip": "Label: 411
Weight: 822.0
Value: 411.0", "type": "TreeMapNode", "weight": 822 }, { "color": "#2dd200", "doubleValue": 412, "label": "412", "labelValue": "412.0", "tooltip": "Label: 412
Weight: 824.0
Value: 412.0", "type": "TreeMapNode", "weight": 824 }, { "color": "#2cd300", "doubleValue": 413, "label": "413", "labelValue": "413.0", "tooltip": "Label: 413
Weight: 826.0
Value: 413.0", "type": "TreeMapNode", "weight": 826 }, { "color": "#2cd300", "doubleValue": 414, "label": "414", "labelValue": "414.0", "tooltip": "Label: 414
Weight: 828.0
Value: 414.0", "type": "TreeMapNode", "weight": 828 }, { "color": "#2bd400", "doubleValue": 415, "label": "415", "labelValue": "415.0", "tooltip": "Label: 415
Weight: 830.0
Value: 415.0", "type": "TreeMapNode", "weight": 830 }, { "color": "#2bd400", "doubleValue": 416, "label": "416", "labelValue": "416.0", "tooltip": "Label: 416
Weight: 832.0
Value: 416.0", "type": "TreeMapNode", "weight": 832 }, { "color": "#2ad500", "doubleValue": 417, "label": "417", "labelValue": "417.0", "tooltip": "Label: 417
Weight: 834.0
Value: 417.0", "type": "TreeMapNode", "weight": 834 }, { "color": "#2ad500", "doubleValue": 418, "label": "418", "labelValue": "418.0", "tooltip": "Label: 418
Weight: 836.0
Value: 418.0", "type": "TreeMapNode", "weight": 836 }, { "color": "#29d600", "doubleValue": 419, "label": "419", "labelValue": "419.0", "tooltip": "Label: 419
Weight: 838.0
Value: 419.0", "type": "TreeMapNode", "weight": 838 }, { "color": "#29d600", "doubleValue": 420, "label": "420", "labelValue": "420.0", "tooltip": "Label: 420
Weight: 840.0
Value: 420.0", "type": "TreeMapNode", "weight": 840 }, { "color": "#28d700", "doubleValue": 421, "label": "421", "labelValue": "421.0", "tooltip": "Label: 421
Weight: 842.0
Value: 421.0", "type": "TreeMapNode", "weight": 842 }, { "color": "#28d700", "doubleValue": 422, "label": "422", "labelValue": "422.0", "tooltip": "Label: 422
Weight: 844.0
Value: 422.0", "type": "TreeMapNode", "weight": 844 }, { "color": "#27d800", "doubleValue": 423, "label": "423", "labelValue": "423.0", "tooltip": "Label: 423
Weight: 846.0
Value: 423.0", "type": "TreeMapNode", "weight": 846 }, { "color": "#27d800", "doubleValue": 424, "label": "424", "labelValue": "424.0", "tooltip": "Label: 424
Weight: 848.0
Value: 424.0", "type": "TreeMapNode", "weight": 848 }, { "color": "#26d900", "doubleValue": 425, "label": "425", "labelValue": "425.0", "tooltip": "Label: 425
Weight: 850.0
Value: 425.0", "type": "TreeMapNode", "weight": 850 }, { "color": "#26d900", "doubleValue": 426, "label": "426", "labelValue": "426.0", "tooltip": "Label: 426
Weight: 852.0
Value: 426.0", "type": "TreeMapNode", "weight": 852 }, { "color": "#25da00", "doubleValue": 427, "label": "427", "labelValue": "427.0", "tooltip": "Label: 427
Weight: 854.0
Value: 427.0", "type": "TreeMapNode", "weight": 854 }, { "color": "#25da00", "doubleValue": 428, "label": "428", "labelValue": "428.0", "tooltip": "Label: 428
Weight: 856.0
Value: 428.0", "type": "TreeMapNode", "weight": 856 }, { "color": "#24db00", "doubleValue": 429, "label": "429", "labelValue": "429.0", "tooltip": "Label: 429
Weight: 858.0
Value: 429.0", "type": "TreeMapNode", "weight": 858 }, { "color": "#24db00", "doubleValue": 430, "label": "430", "labelValue": "430.0", "tooltip": "Label: 430
Weight: 860.0
Value: 430.0", "type": "TreeMapNode", "weight": 860 }, { "color": "#23dc00", "doubleValue": 431, "label": "431", "labelValue": "431.0", "tooltip": "Label: 431
Weight: 862.0
Value: 431.0", "type": "TreeMapNode", "weight": 862 }, { "color": "#23dc00", "doubleValue": 432, "label": "432", "labelValue": "432.0", "tooltip": "Label: 432
Weight: 864.0
Value: 432.0", "type": "TreeMapNode", "weight": 864 }, { "color": "#22dd00", "doubleValue": 433, "label": "433", "labelValue": "433.0", "tooltip": "Label: 433
Weight: 866.0
Value: 433.0", "type": "TreeMapNode", "weight": 866 }, { "color": "#22dd00", "doubleValue": 434, "label": "434", "labelValue": "434.0", "tooltip": "Label: 434
Weight: 868.0
Value: 434.0", "type": "TreeMapNode", "weight": 868 }, { "color": "#21de00", "doubleValue": 435, "label": "435", "labelValue": "435.0", "tooltip": "Label: 435
Weight: 870.0
Value: 435.0", "type": "TreeMapNode", "weight": 870 }, { "color": "#21de00", "doubleValue": 436, "label": "436", "labelValue": "436.0", "tooltip": "Label: 436
Weight: 872.0
Value: 436.0", "type": "TreeMapNode", "weight": 872 }, { "color": "#20df00", "doubleValue": 437, "label": "437", "labelValue": "437.0", "tooltip": "Label: 437
Weight: 874.0
Value: 437.0", "type": "TreeMapNode", "weight": 874 }, { "color": "#20df00", "doubleValue": 438, "label": "438", "labelValue": "438.0", "tooltip": "Label: 438
Weight: 876.0
Value: 438.0", "type": "TreeMapNode", "weight": 876 }, { "color": "#1fe000", "doubleValue": 439, "label": "439", "labelValue": "439.0", "tooltip": "Label: 439
Weight: 878.0
Value: 439.0", "type": "TreeMapNode", "weight": 878 }, { "color": "#1fe000", "doubleValue": 440, "label": "440", "labelValue": "440.0", "tooltip": "Label: 440
Weight: 880.0
Value: 440.0", "type": "TreeMapNode", "weight": 880 }, { "color": "#1ee100", "doubleValue": 441, "label": "441", "labelValue": "441.0", "tooltip": "Label: 441
Weight: 882.0
Value: 441.0", "type": "TreeMapNode", "weight": 882 }, { "color": "#1ee100", "doubleValue": 442, "label": "442", "labelValue": "442.0", "tooltip": "Label: 442
Weight: 884.0
Value: 442.0", "type": "TreeMapNode", "weight": 884 }, { "color": "#1de200", "doubleValue": 443, "label": "443", "labelValue": "443.0", "tooltip": "Label: 443
Weight: 886.0
Value: 443.0", "type": "TreeMapNode", "weight": 886 }, { "color": "#1de200", "doubleValue": 444, "label": "444", "labelValue": "444.0", "tooltip": "Label: 444
Weight: 888.0
Value: 444.0", "type": "TreeMapNode", "weight": 888 }, { "color": "#1ce300", "doubleValue": 445, "label": "445", "labelValue": "445.0", "tooltip": "Label: 445
Weight: 890.0
Value: 445.0", "type": "TreeMapNode", "weight": 890 }, { "color": "#1ce300", "doubleValue": 446, "label": "446", "labelValue": "446.0", "tooltip": "Label: 446
Weight: 892.0
Value: 446.0", "type": "TreeMapNode", "weight": 892 }, { "color": "#1be400", "doubleValue": 447, "label": "447", "labelValue": "447.0", "tooltip": "Label: 447
Weight: 894.0
Value: 447.0", "type": "TreeMapNode", "weight": 894 }, { "color": "#1be400", "doubleValue": 448, "label": "448", "labelValue": "448.0", "tooltip": "Label: 448
Weight: 896.0
Value: 448.0", "type": "TreeMapNode", "weight": 896 }, { "color": "#1ae500", "doubleValue": 449, "label": "449", "labelValue": "449.0", "tooltip": "Label: 449
Weight: 898.0
Value: 449.0", "type": "TreeMapNode", "weight": 898 }, { "color": "#1ae500", "doubleValue": 450, "label": "450", "labelValue": "450.0", "tooltip": "Label: 450
Weight: 900.0
Value: 450.0", "type": "TreeMapNode", "weight": 900 }, { "color": "#19e600", "doubleValue": 451, "label": "451", "labelValue": "451.0", "tooltip": "Label: 451
Weight: 902.0
Value: 451.0", "type": "TreeMapNode", "weight": 902 }, { "color": "#19e600", "doubleValue": 452, "label": "452", "labelValue": "452.0", "tooltip": "Label: 452
Weight: 904.0
Value: 452.0", "type": "TreeMapNode", "weight": 904 }, { "color": "#18e700", "doubleValue": 453, "label": "453", "labelValue": "453.0", "tooltip": "Label: 453
Weight: 906.0
Value: 453.0", "type": "TreeMapNode", "weight": 906 }, { "color": "#18e700", "doubleValue": 454, "label": "454", "labelValue": "454.0", "tooltip": "Label: 454
Weight: 908.0
Value: 454.0", "type": "TreeMapNode", "weight": 908 }, { "color": "#17e800", "doubleValue": 455, "label": "455", "labelValue": "455.0", "tooltip": "Label: 455
Weight: 910.0
Value: 455.0", "type": "TreeMapNode", "weight": 910 }, { "color": "#16e900", "doubleValue": 456, "label": "456", "labelValue": "456.0", "tooltip": "Label: 456
Weight: 912.0
Value: 456.0", "type": "TreeMapNode", "weight": 912 }, { "color": "#16e900", "doubleValue": 457, "label": "457", "labelValue": "457.0", "tooltip": "Label: 457
Weight: 914.0
Value: 457.0", "type": "TreeMapNode", "weight": 914 }, { "color": "#15ea00", "doubleValue": 458, "label": "458", "labelValue": "458.0", "tooltip": "Label: 458
Weight: 916.0
Value: 458.0", "type": "TreeMapNode", "weight": 916 }, { "color": "#15ea00", "doubleValue": 459, "label": "459", "labelValue": "459.0", "tooltip": "Label: 459
Weight: 918.0
Value: 459.0", "type": "TreeMapNode", "weight": 918 }, { "color": "#14eb00", "doubleValue": 460, "label": "460", "labelValue": "460.0", "tooltip": "Label: 460
Weight: 920.0
Value: 460.0", "type": "TreeMapNode", "weight": 920 }, { "color": "#14eb00", "doubleValue": 461, "label": "461", "labelValue": "461.0", "tooltip": "Label: 461
Weight: 922.0
Value: 461.0", "type": "TreeMapNode", "weight": 922 }, { "color": "#13ec00", "doubleValue": 462, "label": "462", "labelValue": "462.0", "tooltip": "Label: 462
Weight: 924.0
Value: 462.0", "type": "TreeMapNode", "weight": 924 }, { "color": "#13ec00", "doubleValue": 463, "label": "463", "labelValue": "463.0", "tooltip": "Label: 463
Weight: 926.0
Value: 463.0", "type": "TreeMapNode", "weight": 926 }, { "color": "#12ed00", "doubleValue": 464, "label": "464", "labelValue": "464.0", "tooltip": "Label: 464
Weight: 928.0
Value: 464.0", "type": "TreeMapNode", "weight": 928 }, { "color": "#12ed00", "doubleValue": 465, "label": "465", "labelValue": "465.0", "tooltip": "Label: 465
Weight: 930.0
Value: 465.0", "type": "TreeMapNode", "weight": 930 }, { "color": "#11ee00", "doubleValue": 466, "label": "466", "labelValue": "466.0", "tooltip": "Label: 466
Weight: 932.0
Value: 466.0", "type": "TreeMapNode", "weight": 932 }, { "color": "#11ee00", "doubleValue": 467, "label": "467", "labelValue": "467.0", "tooltip": "Label: 467
Weight: 934.0
Value: 467.0", "type": "TreeMapNode", "weight": 934 }, { "color": "#10ef00", "doubleValue": 468, "label": "468", "labelValue": "468.0", "tooltip": "Label: 468
Weight: 936.0
Value: 468.0", "type": "TreeMapNode", "weight": 936 }, { "color": "#10ef00", "doubleValue": 469, "label": "469", "labelValue": "469.0", "tooltip": "Label: 469
Weight: 938.0
Value: 469.0", "type": "TreeMapNode", "weight": 938 }, { "color": "#0ff000", "doubleValue": 470, "label": "470", "labelValue": "470.0", "tooltip": "Label: 470
Weight: 940.0
Value: 470.0", "type": "TreeMapNode", "weight": 940 }, { "color": "#0ff000", "doubleValue": 471, "label": "471", "labelValue": "471.0", "tooltip": "Label: 471
Weight: 942.0
Value: 471.0", "type": "TreeMapNode", "weight": 942 }, { "color": "#0ef100", "doubleValue": 472, "label": "472", "labelValue": "472.0", "tooltip": "Label: 472
Weight: 944.0
Value: 472.0", "type": "TreeMapNode", "weight": 944 }, { "color": "#0ef100", "doubleValue": 473, "label": "473", "labelValue": "473.0", "tooltip": "Label: 473
Weight: 946.0
Value: 473.0", "type": "TreeMapNode", "weight": 946 }, { "color": "#0df200", "doubleValue": 474, "label": "474", "labelValue": "474.0", "tooltip": "Label: 474
Weight: 948.0
Value: 474.0", "type": "TreeMapNode", "weight": 948 }, { "color": "#0df200", "doubleValue": 475, "label": "475", "labelValue": "475.0", "tooltip": "Label: 475
Weight: 950.0
Value: 475.0", "type": "TreeMapNode", "weight": 950 }, { "color": "#0cf300", "doubleValue": 476, "label": "476", "labelValue": "476.0", "tooltip": "Label: 476
Weight: 952.0
Value: 476.0", "type": "TreeMapNode", "weight": 952 }, { "color": "#0cf300", "doubleValue": 477, "label": "477", "labelValue": "477.0", "tooltip": "Label: 477
Weight: 954.0
Value: 477.0", "type": "TreeMapNode", "weight": 954 }, { "color": "#0bf400", "doubleValue": 478, "label": "478", "labelValue": "478.0", "tooltip": "Label: 478
Weight: 956.0
Value: 478.0", "type": "TreeMapNode", "weight": 956 }, { "color": "#0bf400", "doubleValue": 479, "label": "479", "labelValue": "479.0", "tooltip": "Label: 479
Weight: 958.0
Value: 479.0", "type": "TreeMapNode", "weight": 958 }, { "color": "#0af500", "doubleValue": 480, "label": "480", "labelValue": "480.0", "tooltip": "Label: 480
Weight: 960.0
Value: 480.0", "type": "TreeMapNode", "weight": 960 }, { "color": "#0af500", "doubleValue": 481, "label": "481", "labelValue": "481.0", "tooltip": "Label: 481
Weight: 962.0
Value: 481.0", "type": "TreeMapNode", "weight": 962 }, { "color": "#09f600", "doubleValue": 482, "label": "482", "labelValue": "482.0", "tooltip": "Label: 482
Weight: 964.0
Value: 482.0", "type": "TreeMapNode", "weight": 964 }, { "color": "#09f600", "doubleValue": 483, "label": "483", "labelValue": "483.0", "tooltip": "Label: 483
Weight: 966.0
Value: 483.0", "type": "TreeMapNode", "weight": 966 }, { "color": "#08f700", "doubleValue": 484, "label": "484", "labelValue": "484.0", "tooltip": "Label: 484
Weight: 968.0
Value: 484.0", "type": "TreeMapNode", "weight": 968 }, { "color": "#08f700", "doubleValue": 485, "label": "485", "labelValue": "485.0", "tooltip": "Label: 485
Weight: 970.0
Value: 485.0", "type": "TreeMapNode", "weight": 970 }, { "color": "#07f800", "doubleValue": 486, "label": "486", "labelValue": "486.0", "tooltip": "Label: 486
Weight: 972.0
Value: 486.0", "type": "TreeMapNode", "weight": 972 }, { "color": "#07f800", "doubleValue": 487, "label": "487", "labelValue": "487.0", "tooltip": "Label: 487
Weight: 974.0
Value: 487.0", "type": "TreeMapNode", "weight": 974 }, { "color": "#06f900", "doubleValue": 488, "label": "488", "labelValue": "488.0", "tooltip": "Label: 488
Weight: 976.0
Value: 488.0", "type": "TreeMapNode", "weight": 976 }, { "color": "#06f900", "doubleValue": 489, "label": "489", "labelValue": "489.0", "tooltip": "Label: 489
Weight: 978.0
Value: 489.0", "type": "TreeMapNode", "weight": 978 }, { "color": "#05fa00", "doubleValue": 490, "label": "490", "labelValue": "490.0", "tooltip": "Label: 490
Weight: 980.0
Value: 490.0", "type": "TreeMapNode", "weight": 980 }, { "color": "#05fa00", "doubleValue": 491, "label": "491", "labelValue": "491.0", "tooltip": "Label: 491
Weight: 982.0
Value: 491.0", "type": "TreeMapNode", "weight": 982 }, { "color": "#04fb00", "doubleValue": 492, "label": "492", "labelValue": "492.0", "tooltip": "Label: 492
Weight: 984.0
Value: 492.0", "type": "TreeMapNode", "weight": 984 }, { "color": "#04fb00", "doubleValue": 493, "label": "493", "labelValue": "493.0", "tooltip": "Label: 493
Weight: 986.0
Value: 493.0", "type": "TreeMapNode", "weight": 986 }, { "color": "#03fc00", "doubleValue": 494, "label": "494", "labelValue": "494.0", "tooltip": "Label: 494
Weight: 988.0
Value: 494.0", "type": "TreeMapNode", "weight": 988 }, { "color": "#03fc00", "doubleValue": 495, "label": "495", "labelValue": "495.0", "tooltip": "Label: 495
Weight: 990.0
Value: 495.0", "type": "TreeMapNode", "weight": 990 }, { "color": "#02fd00", "doubleValue": 496, "label": "496", "labelValue": "496.0", "tooltip": "Label: 496
Weight: 992.0
Value: 496.0", "type": "TreeMapNode", "weight": 992 }, { "color": "#02fd00", "doubleValue": 497, "label": "497", "labelValue": "497.0", "tooltip": "Label: 497
Weight: 994.0
Value: 497.0", "type": "TreeMapNode", "weight": 994 }, { "color": "#01fe00", "doubleValue": 498, "label": "498", "labelValue": "498.0", "tooltip": "Label: 498
Weight: 996.0
Value: 498.0", "type": "TreeMapNode", "weight": 996 }, { "color": "#01fe00", "doubleValue": 499, "label": "499", "labelValue": "499.0", "tooltip": "Label: 499
Weight: 998.0
Value: 499.0", "type": "TreeMapNode", "weight": 998 }, { "color": "#00ff00", "doubleValue": 500, "label": "500", "labelValue": "500.0", "tooltip": "Label: 500
Weight: 1000.0
Value: 500.0", "type": "TreeMapNode", "weight": 1000 }, { "children": [ { "color": "#ff0000", "doubleValue": 1, "label": "1", "labelValue": "1.0", "tooltip": "Label: 1
Weight: 2.0
Value: 1.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#fe0100", "doubleValue": 2, "label": "2", "labelValue": "2.0", "tooltip": "Label: 2
Weight: 4.0
Value: 2.0", "type": "TreeMapNode", "weight": 4 }, { "color": "#fe0100", "doubleValue": 3, "label": "3", "labelValue": "3.0", "tooltip": "Label: 3
Weight: 6.0
Value: 3.0", "type": "TreeMapNode", "weight": 6 }, { "color": "#fd0200", "doubleValue": 4, "label": "4", "labelValue": "4.0", "tooltip": "Label: 4
Weight: 8.0
Value: 4.0", "type": "TreeMapNode", "weight": 8 }, { "color": "#fd0200", "doubleValue": 5, "label": "5", "labelValue": "5.0", "tooltip": "Label: 5
Weight: 10.0
Value: 5.0", "type": "TreeMapNode", "weight": 10 }, { "color": "#fc0300", "doubleValue": 6, "label": "6", "labelValue": "6.0", "tooltip": "Label: 6
Weight: 12.0
Value: 6.0", "type": "TreeMapNode", "weight": 12 }, { "color": "#fc0300", "doubleValue": 7, "label": "7", "labelValue": "7.0", "tooltip": "Label: 7
Weight: 14.0
Value: 7.0", "type": "TreeMapNode", "weight": 14 }, { "color": "#fb0400", "doubleValue": 8, "label": "8", "labelValue": "8.0", "tooltip": "Label: 8
Weight: 16.0
Value: 8.0", "type": "TreeMapNode", "weight": 16 }, { "color": "#fb0400", "doubleValue": 9, "label": "9", "labelValue": "9.0", "tooltip": "Label: 9
Weight: 18.0
Value: 9.0", "type": "TreeMapNode", "weight": 18 }, { "color": "#fa0500", "doubleValue": 10, "label": "10", "labelValue": "10.0", "tooltip": "Label: 10
Weight: 20.0
Value: 10.0", "type": "TreeMapNode", "weight": 20 }, { "color": "#fa0500", "doubleValue": 11, "label": "11", "labelValue": "11.0", "tooltip": "Label: 11
Weight: 22.0
Value: 11.0", "type": "TreeMapNode", "weight": 22 }, { "color": "#f90600", "doubleValue": 12, "label": "12", "labelValue": "12.0", "tooltip": "Label: 12
Weight: 24.0
Value: 12.0", "type": "TreeMapNode", "weight": 24 }, { "color": "#f90600", "doubleValue": 13, "label": "13", "labelValue": "13.0", "tooltip": "Label: 13
Weight: 26.0
Value: 13.0", "type": "TreeMapNode", "weight": 26 }, { "color": "#f80700", "doubleValue": 14, "label": "14", "labelValue": "14.0", "tooltip": "Label: 14
Weight: 28.0
Value: 14.0", "type": "TreeMapNode", "weight": 28 }, { "color": "#f80700", "doubleValue": 15, "label": "15", "labelValue": "15.0", "tooltip": "Label: 15
Weight: 30.0
Value: 15.0", "type": "TreeMapNode", "weight": 30 }, { "color": "#f70800", "doubleValue": 16, "label": "16", "labelValue": "16.0", "tooltip": "Label: 16
Weight: 32.0
Value: 16.0", "type": "TreeMapNode", "weight": 32 }, { "color": "#f70800", "doubleValue": 17, "label": "17", "labelValue": "17.0", "tooltip": "Label: 17
Weight: 34.0
Value: 17.0", "type": "TreeMapNode", "weight": 34 }, { "color": "#f60900", "doubleValue": 18, "label": "18", "labelValue": "18.0", "tooltip": "Label: 18
Weight: 36.0
Value: 18.0", "type": "TreeMapNode", "weight": 36 }, { "color": "#f60900", "doubleValue": 19, "label": "19", "labelValue": "19.0", "tooltip": "Label: 19
Weight: 38.0
Value: 19.0", "type": "TreeMapNode", "weight": 38 }, { "color": "#f50a00", "doubleValue": 20, "label": "20", "labelValue": "20.0", "tooltip": "Label: 20
Weight: 40.0
Value: 20.0", "type": "TreeMapNode", "weight": 40 }, { "color": "#f50a00", "doubleValue": 21, "label": "21", "labelValue": "21.0", "tooltip": "Label: 21
Weight: 42.0
Value: 21.0", "type": "TreeMapNode", "weight": 42 }, { "color": "#f40b00", "doubleValue": 22, "label": "22", "labelValue": "22.0", "tooltip": "Label: 22
Weight: 44.0
Value: 22.0", "type": "TreeMapNode", "weight": 44 }, { "color": "#f40b00", "doubleValue": 23, "label": "23", "labelValue": "23.0", "tooltip": "Label: 23
Weight: 46.0
Value: 23.0", "type": "TreeMapNode", "weight": 46 }, { "color": "#f30c00", "doubleValue": 24, "label": "24", "labelValue": "24.0", "tooltip": "Label: 24
Weight: 48.0
Value: 24.0", "type": "TreeMapNode", "weight": 48 }, { "color": "#f30c00", "doubleValue": 25, "label": "25", "labelValue": "25.0", "tooltip": "Label: 25
Weight: 50.0
Value: 25.0", "type": "TreeMapNode", "weight": 50 }, { "color": "#f20d00", "doubleValue": 26, "label": "26", "labelValue": "26.0", "tooltip": "Label: 26
Weight: 52.0
Value: 26.0", "type": "TreeMapNode", "weight": 52 }, { "color": "#f20d00", "doubleValue": 27, "label": "27", "labelValue": "27.0", "tooltip": "Label: 27
Weight: 54.0
Value: 27.0", "type": "TreeMapNode", "weight": 54 }, { "color": "#f10e00", "doubleValue": 28, "label": "28", "labelValue": "28.0", "tooltip": "Label: 28
Weight: 56.0
Value: 28.0", "type": "TreeMapNode", "weight": 56 }, { "color": "#f10e00", "doubleValue": 29, "label": "29", "labelValue": "29.0", "tooltip": "Label: 29
Weight: 58.0
Value: 29.0", "type": "TreeMapNode", "weight": 58 }, { "color": "#f00f00", "doubleValue": 30, "label": "30", "labelValue": "30.0", "tooltip": "Label: 30
Weight: 60.0
Value: 30.0", "type": "TreeMapNode", "weight": 60 }, { "color": "#f00f00", "doubleValue": 31, "label": "31", "labelValue": "31.0", "tooltip": "Label: 31
Weight: 62.0
Value: 31.0", "type": "TreeMapNode", "weight": 62 }, { "color": "#ef1000", "doubleValue": 32, "label": "32", "labelValue": "32.0", "tooltip": "Label: 32
Weight: 64.0
Value: 32.0", "type": "TreeMapNode", "weight": 64 }, { "color": "#ef1000", "doubleValue": 33, "label": "33", "labelValue": "33.0", "tooltip": "Label: 33
Weight: 66.0
Value: 33.0", "type": "TreeMapNode", "weight": 66 }, { "color": "#ee1100", "doubleValue": 34, "label": "34", "labelValue": "34.0", "tooltip": "Label: 34
Weight: 68.0
Value: 34.0", "type": "TreeMapNode", "weight": 68 }, { "color": "#ee1100", "doubleValue": 35, "label": "35", "labelValue": "35.0", "tooltip": "Label: 35
Weight: 70.0
Value: 35.0", "type": "TreeMapNode", "weight": 70 }, { "color": "#ed1200", "doubleValue": 36, "label": "36", "labelValue": "36.0", "tooltip": "Label: 36
Weight: 72.0
Value: 36.0", "type": "TreeMapNode", "weight": 72 }, { "color": "#ed1200", "doubleValue": 37, "label": "37", "labelValue": "37.0", "tooltip": "Label: 37
Weight: 74.0
Value: 37.0", "type": "TreeMapNode", "weight": 74 }, { "color": "#ec1300", "doubleValue": 38, "label": "38", "labelValue": "38.0", "tooltip": "Label: 38
Weight: 76.0
Value: 38.0", "type": "TreeMapNode", "weight": 76 }, { "color": "#ec1300", "doubleValue": 39, "label": "39", "labelValue": "39.0", "tooltip": "Label: 39
Weight: 78.0
Value: 39.0", "type": "TreeMapNode", "weight": 78 }, { "color": "#eb1400", "doubleValue": 40, "label": "40", "labelValue": "40.0", "tooltip": "Label: 40
Weight: 80.0
Value: 40.0", "type": "TreeMapNode", "weight": 80 }, { "color": "#eb1400", "doubleValue": 41, "label": "41", "labelValue": "41.0", "tooltip": "Label: 41
Weight: 82.0
Value: 41.0", "type": "TreeMapNode", "weight": 82 }, { "color": "#ea1500", "doubleValue": 42, "label": "42", "labelValue": "42.0", "tooltip": "Label: 42
Weight: 84.0
Value: 42.0", "type": "TreeMapNode", "weight": 84 }, { "color": "#ea1500", "doubleValue": 43, "label": "43", "labelValue": "43.0", "tooltip": "Label: 43
Weight: 86.0
Value: 43.0", "type": "TreeMapNode", "weight": 86 }, { "color": "#e91600", "doubleValue": 44, "label": "44", "labelValue": "44.0", "tooltip": "Label: 44
Weight: 88.0
Value: 44.0", "type": "TreeMapNode", "weight": 88 }, { "color": "#e91600", "doubleValue": 45, "label": "45", "labelValue": "45.0", "tooltip": "Label: 45
Weight: 90.0
Value: 45.0", "type": "TreeMapNode", "weight": 90 }, { "color": "#e81700", "doubleValue": 46, "label": "46", "labelValue": "46.0", "tooltip": "Label: 46
Weight: 92.0
Value: 46.0", "type": "TreeMapNode", "weight": 92 }, { "color": "#e71800", "doubleValue": 47, "label": "47", "labelValue": "47.0", "tooltip": "Label: 47
Weight: 94.0
Value: 47.0", "type": "TreeMapNode", "weight": 94 }, { "color": "#e71800", "doubleValue": 48, "label": "48", "labelValue": "48.0", "tooltip": "Label: 48
Weight: 96.0
Value: 48.0", "type": "TreeMapNode", "weight": 96 }, { "color": "#e61900", "doubleValue": 49, "label": "49", "labelValue": "49.0", "tooltip": "Label: 49
Weight: 98.0
Value: 49.0", "type": "TreeMapNode", "weight": 98 }, { "color": "#e61900", "doubleValue": 50, "label": "50", "labelValue": "50.0", "tooltip": "Label: 50
Weight: 100.0
Value: 50.0", "type": "TreeMapNode", "weight": 100 }, { "color": "#e51a00", "doubleValue": 51, "label": "51", "labelValue": "51.0", "tooltip": "Label: 51
Weight: 102.0
Value: 51.0", "type": "TreeMapNode", "weight": 102 }, { "color": "#e51a00", "doubleValue": 52, "label": "52", "labelValue": "52.0", "tooltip": "Label: 52
Weight: 104.0
Value: 52.0", "type": "TreeMapNode", "weight": 104 }, { "color": "#e41b00", "doubleValue": 53, "label": "53", "labelValue": "53.0", "tooltip": "Label: 53
Weight: 106.0
Value: 53.0", "type": "TreeMapNode", "weight": 106 }, { "color": "#e41b00", "doubleValue": 54, "label": "54", "labelValue": "54.0", "tooltip": "Label: 54
Weight: 108.0
Value: 54.0", "type": "TreeMapNode", "weight": 108 }, { "color": "#e31c00", "doubleValue": 55, "label": "55", "labelValue": "55.0", "tooltip": "Label: 55
Weight: 110.0
Value: 55.0", "type": "TreeMapNode", "weight": 110 }, { "color": "#e31c00", "doubleValue": 56, "label": "56", "labelValue": "56.0", "tooltip": "Label: 56
Weight: 112.0
Value: 56.0", "type": "TreeMapNode", "weight": 112 }, { "color": "#e21d00", "doubleValue": 57, "label": "57", "labelValue": "57.0", "tooltip": "Label: 57
Weight: 114.0
Value: 57.0", "type": "TreeMapNode", "weight": 114 }, { "color": "#e21d00", "doubleValue": 58, "label": "58", "labelValue": "58.0", "tooltip": "Label: 58
Weight: 116.0
Value: 58.0", "type": "TreeMapNode", "weight": 116 }, { "color": "#e11e00", "doubleValue": 59, "label": "59", "labelValue": "59.0", "tooltip": "Label: 59
Weight: 118.0
Value: 59.0", "type": "TreeMapNode", "weight": 118 }, { "color": "#e11e00", "doubleValue": 60, "label": "60", "labelValue": "60.0", "tooltip": "Label: 60
Weight: 120.0
Value: 60.0", "type": "TreeMapNode", "weight": 120 }, { "color": "#e01f00", "doubleValue": 61, "label": "61", "labelValue": "61.0", "tooltip": "Label: 61
Weight: 122.0
Value: 61.0", "type": "TreeMapNode", "weight": 122 }, { "color": "#e01f00", "doubleValue": 62, "label": "62", "labelValue": "62.0", "tooltip": "Label: 62
Weight: 124.0
Value: 62.0", "type": "TreeMapNode", "weight": 124 }, { "color": "#df2000", "doubleValue": 63, "label": "63", "labelValue": "63.0", "tooltip": "Label: 63
Weight: 126.0
Value: 63.0", "type": "TreeMapNode", "weight": 126 }, { "color": "#df2000", "doubleValue": 64, "label": "64", "labelValue": "64.0", "tooltip": "Label: 64
Weight: 128.0
Value: 64.0", "type": "TreeMapNode", "weight": 128 }, { "color": "#de2100", "doubleValue": 65, "label": "65", "labelValue": "65.0", "tooltip": "Label: 65
Weight: 130.0
Value: 65.0", "type": "TreeMapNode", "weight": 130 }, { "color": "#de2100", "doubleValue": 66, "label": "66", "labelValue": "66.0", "tooltip": "Label: 66
Weight: 132.0
Value: 66.0", "type": "TreeMapNode", "weight": 132 }, { "color": "#dd2200", "doubleValue": 67, "label": "67", "labelValue": "67.0", "tooltip": "Label: 67
Weight: 134.0
Value: 67.0", "type": "TreeMapNode", "weight": 134 }, { "color": "#dd2200", "doubleValue": 68, "label": "68", "labelValue": "68.0", "tooltip": "Label: 68
Weight: 136.0
Value: 68.0", "type": "TreeMapNode", "weight": 136 }, { "color": "#dc2300", "doubleValue": 69, "label": "69", "labelValue": "69.0", "tooltip": "Label: 69
Weight: 138.0
Value: 69.0", "type": "TreeMapNode", "weight": 138 }, { "color": "#dc2300", "doubleValue": 70, "label": "70", "labelValue": "70.0", "tooltip": "Label: 70
Weight: 140.0
Value: 70.0", "type": "TreeMapNode", "weight": 140 }, { "color": "#db2400", "doubleValue": 71, "label": "71", "labelValue": "71.0", "tooltip": "Label: 71
Weight: 142.0
Value: 71.0", "type": "TreeMapNode", "weight": 142 }, { "color": "#db2400", "doubleValue": 72, "label": "72", "labelValue": "72.0", "tooltip": "Label: 72
Weight: 144.0
Value: 72.0", "type": "TreeMapNode", "weight": 144 }, { "color": "#da2500", "doubleValue": 73, "label": "73", "labelValue": "73.0", "tooltip": "Label: 73
Weight: 146.0
Value: 73.0", "type": "TreeMapNode", "weight": 146 }, { "color": "#da2500", "doubleValue": 74, "label": "74", "labelValue": "74.0", "tooltip": "Label: 74
Weight: 148.0
Value: 74.0", "type": "TreeMapNode", "weight": 148 }, { "color": "#d92600", "doubleValue": 75, "label": "75", "labelValue": "75.0", "tooltip": "Label: 75
Weight: 150.0
Value: 75.0", "type": "TreeMapNode", "weight": 150 }, { "color": "#d92600", "doubleValue": 76, "label": "76", "labelValue": "76.0", "tooltip": "Label: 76
Weight: 152.0
Value: 76.0", "type": "TreeMapNode", "weight": 152 }, { "color": "#d82700", "doubleValue": 77, "label": "77", "labelValue": "77.0", "tooltip": "Label: 77
Weight: 154.0
Value: 77.0", "type": "TreeMapNode", "weight": 154 }, { "color": "#d82700", "doubleValue": 78, "label": "78", "labelValue": "78.0", "tooltip": "Label: 78
Weight: 156.0
Value: 78.0", "type": "TreeMapNode", "weight": 156 }, { "color": "#d72800", "doubleValue": 79, "label": "79", "labelValue": "79.0", "tooltip": "Label: 79
Weight: 158.0
Value: 79.0", "type": "TreeMapNode", "weight": 158 }, { "color": "#d72800", "doubleValue": 80, "label": "80", "labelValue": "80.0", "tooltip": "Label: 80
Weight: 160.0
Value: 80.0", "type": "TreeMapNode", "weight": 160 }, { "color": "#d62900", "doubleValue": 81, "label": "81", "labelValue": "81.0", "tooltip": "Label: 81
Weight: 162.0
Value: 81.0", "type": "TreeMapNode", "weight": 162 }, { "color": "#d62900", "doubleValue": 82, "label": "82", "labelValue": "82.0", "tooltip": "Label: 82
Weight: 164.0
Value: 82.0", "type": "TreeMapNode", "weight": 164 }, { "color": "#d52a00", "doubleValue": 83, "label": "83", "labelValue": "83.0", "tooltip": "Label: 83
Weight: 166.0
Value: 83.0", "type": "TreeMapNode", "weight": 166 }, { "color": "#d52a00", "doubleValue": 84, "label": "84", "labelValue": "84.0", "tooltip": "Label: 84
Weight: 168.0
Value: 84.0", "type": "TreeMapNode", "weight": 168 }, { "color": "#d42b00", "doubleValue": 85, "label": "85", "labelValue": "85.0", "tooltip": "Label: 85
Weight: 170.0
Value: 85.0", "type": "TreeMapNode", "weight": 170 }, { "color": "#d42b00", "doubleValue": 86, "label": "86", "labelValue": "86.0", "tooltip": "Label: 86
Weight: 172.0
Value: 86.0", "type": "TreeMapNode", "weight": 172 }, { "color": "#d32c00", "doubleValue": 87, "label": "87", "labelValue": "87.0", "tooltip": "Label: 87
Weight: 174.0
Value: 87.0", "type": "TreeMapNode", "weight": 174 }, { "color": "#d32c00", "doubleValue": 88, "label": "88", "labelValue": "88.0", "tooltip": "Label: 88
Weight: 176.0
Value: 88.0", "type": "TreeMapNode", "weight": 176 }, { "color": "#d22d00", "doubleValue": 89, "label": "89", "labelValue": "89.0", "tooltip": "Label: 89
Weight: 178.0
Value: 89.0", "type": "TreeMapNode", "weight": 178 }, { "color": "#d22d00", "doubleValue": 90, "label": "90", "labelValue": "90.0", "tooltip": "Label: 90
Weight: 180.0
Value: 90.0", "type": "TreeMapNode", "weight": 180 }, { "color": "#d12e00", "doubleValue": 91, "label": "91", "labelValue": "91.0", "tooltip": "Label: 91
Weight: 182.0
Value: 91.0", "type": "TreeMapNode", "weight": 182 }, { "color": "#d02f00", "doubleValue": 92, "label": "92", "labelValue": "92.0", "tooltip": "Label: 92
Weight: 184.0
Value: 92.0", "type": "TreeMapNode", "weight": 184 }, { "color": "#d02f00", "doubleValue": 93, "label": "93", "labelValue": "93.0", "tooltip": "Label: 93
Weight: 186.0
Value: 93.0", "type": "TreeMapNode", "weight": 186 }, { "color": "#cf3000", "doubleValue": 94, "label": "94", "labelValue": "94.0", "tooltip": "Label: 94
Weight: 188.0
Value: 94.0", "type": "TreeMapNode", "weight": 188 }, { "color": "#cf3000", "doubleValue": 95, "label": "95", "labelValue": "95.0", "tooltip": "Label: 95
Weight: 190.0
Value: 95.0", "type": "TreeMapNode", "weight": 190 }, { "color": "#ce3100", "doubleValue": 96, "label": "96", "labelValue": "96.0", "tooltip": "Label: 96
Weight: 192.0
Value: 96.0", "type": "TreeMapNode", "weight": 192 }, { "color": "#ce3100", "doubleValue": 97, "label": "97", "labelValue": "97.0", "tooltip": "Label: 97
Weight: 194.0
Value: 97.0", "type": "TreeMapNode", "weight": 194 }, { "color": "#cd3200", "doubleValue": 98, "label": "98", "labelValue": "98.0", "tooltip": "Label: 98
Weight: 196.0
Value: 98.0", "type": "TreeMapNode", "weight": 196 }, { "color": "#cd3200", "doubleValue": 99, "label": "99", "labelValue": "99.0", "tooltip": "Label: 99
Weight: 198.0
Value: 99.0", "type": "TreeMapNode", "weight": 198 }, { "color": "#cc3300", "doubleValue": 100, "label": "100", "labelValue": "100.0", "tooltip": "Label: 100
Weight: 200.0
Value: 100.0", "type": "TreeMapNode", "weight": 200 }, { "color": "#cc3300", "doubleValue": 101, "label": "101", "labelValue": "101.0", "tooltip": "Label: 101
Weight: 202.0
Value: 101.0", "type": "TreeMapNode", "weight": 202 }, { "color": "#cb3400", "doubleValue": 102, "label": "102", "labelValue": "102.0", "tooltip": "Label: 102
Weight: 204.0
Value: 102.0", "type": "TreeMapNode", "weight": 204 }, { "color": "#cb3400", "doubleValue": 103, "label": "103", "labelValue": "103.0", "tooltip": "Label: 103
Weight: 206.0
Value: 103.0", "type": "TreeMapNode", "weight": 206 }, { "color": "#ca3500", "doubleValue": 104, "label": "104", "labelValue": "104.0", "tooltip": "Label: 104
Weight: 208.0
Value: 104.0", "type": "TreeMapNode", "weight": 208 }, { "color": "#ca3500", "doubleValue": 105, "label": "105", "labelValue": "105.0", "tooltip": "Label: 105
Weight: 210.0
Value: 105.0", "type": "TreeMapNode", "weight": 210 }, { "color": "#c93600", "doubleValue": 106, "label": "106", "labelValue": "106.0", "tooltip": "Label: 106
Weight: 212.0
Value: 106.0", "type": "TreeMapNode", "weight": 212 }, { "color": "#c93600", "doubleValue": 107, "label": "107", "labelValue": "107.0", "tooltip": "Label: 107
Weight: 214.0
Value: 107.0", "type": "TreeMapNode", "weight": 214 }, { "color": "#c83700", "doubleValue": 108, "label": "108", "labelValue": "108.0", "tooltip": "Label: 108
Weight: 216.0
Value: 108.0", "type": "TreeMapNode", "weight": 216 }, { "color": "#c83700", "doubleValue": 109, "label": "109", "labelValue": "109.0", "tooltip": "Label: 109
Weight: 218.0
Value: 109.0", "type": "TreeMapNode", "weight": 218 }, { "color": "#c73800", "doubleValue": 110, "label": "110", "labelValue": "110.0", "tooltip": "Label: 110
Weight: 220.0
Value: 110.0", "type": "TreeMapNode", "weight": 220 }, { "color": "#c73800", "doubleValue": 111, "label": "111", "labelValue": "111.0", "tooltip": "Label: 111
Weight: 222.0
Value: 111.0", "type": "TreeMapNode", "weight": 222 }, { "color": "#c63900", "doubleValue": 112, "label": "112", "labelValue": "112.0", "tooltip": "Label: 112
Weight: 224.0
Value: 112.0", "type": "TreeMapNode", "weight": 224 }, { "color": "#c63900", "doubleValue": 113, "label": "113", "labelValue": "113.0", "tooltip": "Label: 113
Weight: 226.0
Value: 113.0", "type": "TreeMapNode", "weight": 226 }, { "color": "#c53a00", "doubleValue": 114, "label": "114", "labelValue": "114.0", "tooltip": "Label: 114
Weight: 228.0
Value: 114.0", "type": "TreeMapNode", "weight": 228 }, { "color": "#c53a00", "doubleValue": 115, "label": "115", "labelValue": "115.0", "tooltip": "Label: 115
Weight: 230.0
Value: 115.0", "type": "TreeMapNode", "weight": 230 }, { "color": "#c43b00", "doubleValue": 116, "label": "116", "labelValue": "116.0", "tooltip": "Label: 116
Weight: 232.0
Value: 116.0", "type": "TreeMapNode", "weight": 232 }, { "color": "#c43b00", "doubleValue": 117, "label": "117", "labelValue": "117.0", "tooltip": "Label: 117
Weight: 234.0
Value: 117.0", "type": "TreeMapNode", "weight": 234 }, { "color": "#c33c00", "doubleValue": 118, "label": "118", "labelValue": "118.0", "tooltip": "Label: 118
Weight: 236.0
Value: 118.0", "type": "TreeMapNode", "weight": 236 }, { "color": "#c33c00", "doubleValue": 119, "label": "119", "labelValue": "119.0", "tooltip": "Label: 119
Weight: 238.0
Value: 119.0", "type": "TreeMapNode", "weight": 238 }, { "color": "#c23d00", "doubleValue": 120, "label": "120", "labelValue": "120.0", "tooltip": "Label: 120
Weight: 240.0
Value: 120.0", "type": "TreeMapNode", "weight": 240 }, { "color": "#c23d00", "doubleValue": 121, "label": "121", "labelValue": "121.0", "tooltip": "Label: 121
Weight: 242.0
Value: 121.0", "type": "TreeMapNode", "weight": 242 }, { "color": "#c13e00", "doubleValue": 122, "label": "122", "labelValue": "122.0", "tooltip": "Label: 122
Weight: 244.0
Value: 122.0", "type": "TreeMapNode", "weight": 244 }, { "color": "#c13e00", "doubleValue": 123, "label": "123", "labelValue": "123.0", "tooltip": "Label: 123
Weight: 246.0
Value: 123.0", "type": "TreeMapNode", "weight": 246 }, { "color": "#c03f00", "doubleValue": 124, "label": "124", "labelValue": "124.0", "tooltip": "Label: 124
Weight: 248.0
Value: 124.0", "type": "TreeMapNode", "weight": 248 }, { "color": "#c03f00", "doubleValue": 125, "label": "125", "labelValue": "125.0", "tooltip": "Label: 125
Weight: 250.0
Value: 125.0", "type": "TreeMapNode", "weight": 250 }, { "color": "#bf4000", "doubleValue": 126, "label": "126", "labelValue": "126.0", "tooltip": "Label: 126
Weight: 252.0
Value: 126.0", "type": "TreeMapNode", "weight": 252 }, { "color": "#bf4000", "doubleValue": 127, "label": "127", "labelValue": "127.0", "tooltip": "Label: 127
Weight: 254.0
Value: 127.0", "type": "TreeMapNode", "weight": 254 }, { "color": "#be4100", "doubleValue": 128, "label": "128", "labelValue": "128.0", "tooltip": "Label: 128
Weight: 256.0
Value: 128.0", "type": "TreeMapNode", "weight": 256 }, { "color": "#be4100", "doubleValue": 129, "label": "129", "labelValue": "129.0", "tooltip": "Label: 129
Weight: 258.0
Value: 129.0", "type": "TreeMapNode", "weight": 258 }, { "color": "#bd4200", "doubleValue": 130, "label": "130", "labelValue": "130.0", "tooltip": "Label: 130
Weight: 260.0
Value: 130.0", "type": "TreeMapNode", "weight": 260 }, { "color": "#bd4200", "doubleValue": 131, "label": "131", "labelValue": "131.0", "tooltip": "Label: 131
Weight: 262.0
Value: 131.0", "type": "TreeMapNode", "weight": 262 }, { "color": "#bc4300", "doubleValue": 132, "label": "132", "labelValue": "132.0", "tooltip": "Label: 132
Weight: 264.0
Value: 132.0", "type": "TreeMapNode", "weight": 264 }, { "color": "#bc4300", "doubleValue": 133, "label": "133", "labelValue": "133.0", "tooltip": "Label: 133
Weight: 266.0
Value: 133.0", "type": "TreeMapNode", "weight": 266 }, { "color": "#bb4400", "doubleValue": 134, "label": "134", "labelValue": "134.0", "tooltip": "Label: 134
Weight: 268.0
Value: 134.0", "type": "TreeMapNode", "weight": 268 }, { "color": "#bb4400", "doubleValue": 135, "label": "135", "labelValue": "135.0", "tooltip": "Label: 135
Weight: 270.0
Value: 135.0", "type": "TreeMapNode", "weight": 270 }, { "color": "#ba4500", "doubleValue": 136, "label": "136", "labelValue": "136.0", "tooltip": "Label: 136
Weight: 272.0
Value: 136.0", "type": "TreeMapNode", "weight": 272 }, { "color": "#ba4500", "doubleValue": 137, "label": "137", "labelValue": "137.0", "tooltip": "Label: 137
Weight: 274.0
Value: 137.0", "type": "TreeMapNode", "weight": 274 }, { "color": "#b94600", "doubleValue": 138, "label": "138", "labelValue": "138.0", "tooltip": "Label: 138
Weight: 276.0
Value: 138.0", "type": "TreeMapNode", "weight": 276 }, { "color": "#b84700", "doubleValue": 139, "label": "139", "labelValue": "139.0", "tooltip": "Label: 139
Weight: 278.0
Value: 139.0", "type": "TreeMapNode", "weight": 278 }, { "color": "#b84700", "doubleValue": 140, "label": "140", "labelValue": "140.0", "tooltip": "Label: 140
Weight: 280.0
Value: 140.0", "type": "TreeMapNode", "weight": 280 }, { "color": "#b74800", "doubleValue": 141, "label": "141", "labelValue": "141.0", "tooltip": "Label: 141
Weight: 282.0
Value: 141.0", "type": "TreeMapNode", "weight": 282 }, { "color": "#b74800", "doubleValue": 142, "label": "142", "labelValue": "142.0", "tooltip": "Label: 142
Weight: 284.0
Value: 142.0", "type": "TreeMapNode", "weight": 284 }, { "color": "#b64900", "doubleValue": 143, "label": "143", "labelValue": "143.0", "tooltip": "Label: 143
Weight: 286.0
Value: 143.0", "type": "TreeMapNode", "weight": 286 }, { "color": "#b64900", "doubleValue": 144, "label": "144", "labelValue": "144.0", "tooltip": "Label: 144
Weight: 288.0
Value: 144.0", "type": "TreeMapNode", "weight": 288 }, { "color": "#b54a00", "doubleValue": 145, "label": "145", "labelValue": "145.0", "tooltip": "Label: 145
Weight: 290.0
Value: 145.0", "type": "TreeMapNode", "weight": 290 }, { "color": "#b54a00", "doubleValue": 146, "label": "146", "labelValue": "146.0", "tooltip": "Label: 146
Weight: 292.0
Value: 146.0", "type": "TreeMapNode", "weight": 292 }, { "color": "#b44b00", "doubleValue": 147, "label": "147", "labelValue": "147.0", "tooltip": "Label: 147
Weight: 294.0
Value: 147.0", "type": "TreeMapNode", "weight": 294 }, { "color": "#b44b00", "doubleValue": 148, "label": "148", "labelValue": "148.0", "tooltip": "Label: 148
Weight: 296.0
Value: 148.0", "type": "TreeMapNode", "weight": 296 }, { "color": "#b34c00", "doubleValue": 149, "label": "149", "labelValue": "149.0", "tooltip": "Label: 149
Weight: 298.0
Value: 149.0", "type": "TreeMapNode", "weight": 298 }, { "color": "#b34c00", "doubleValue": 150, "label": "150", "labelValue": "150.0", "tooltip": "Label: 150
Weight: 300.0
Value: 150.0", "type": "TreeMapNode", "weight": 300 }, { "color": "#b24d00", "doubleValue": 151, "label": "151", "labelValue": "151.0", "tooltip": "Label: 151
Weight: 302.0
Value: 151.0", "type": "TreeMapNode", "weight": 302 }, { "color": "#b24d00", "doubleValue": 152, "label": "152", "labelValue": "152.0", "tooltip": "Label: 152
Weight: 304.0
Value: 152.0", "type": "TreeMapNode", "weight": 304 }, { "color": "#b14e00", "doubleValue": 153, "label": "153", "labelValue": "153.0", "tooltip": "Label: 153
Weight: 306.0
Value: 153.0", "type": "TreeMapNode", "weight": 306 }, { "color": "#b14e00", "doubleValue": 154, "label": "154", "labelValue": "154.0", "tooltip": "Label: 154
Weight: 308.0
Value: 154.0", "type": "TreeMapNode", "weight": 308 }, { "color": "#b04f00", "doubleValue": 155, "label": "155", "labelValue": "155.0", "tooltip": "Label: 155
Weight: 310.0
Value: 155.0", "type": "TreeMapNode", "weight": 310 }, { "color": "#b04f00", "doubleValue": 156, "label": "156", "labelValue": "156.0", "tooltip": "Label: 156
Weight: 312.0
Value: 156.0", "type": "TreeMapNode", "weight": 312 }, { "color": "#af5000", "doubleValue": 157, "label": "157", "labelValue": "157.0", "tooltip": "Label: 157
Weight: 314.0
Value: 157.0", "type": "TreeMapNode", "weight": 314 }, { "color": "#af5000", "doubleValue": 158, "label": "158", "labelValue": "158.0", "tooltip": "Label: 158
Weight: 316.0
Value: 158.0", "type": "TreeMapNode", "weight": 316 }, { "color": "#ae5100", "doubleValue": 159, "label": "159", "labelValue": "159.0", "tooltip": "Label: 159
Weight: 318.0
Value: 159.0", "type": "TreeMapNode", "weight": 318 }, { "color": "#ae5100", "doubleValue": 160, "label": "160", "labelValue": "160.0", "tooltip": "Label: 160
Weight: 320.0
Value: 160.0", "type": "TreeMapNode", "weight": 320 }, { "color": "#ad5200", "doubleValue": 161, "label": "161", "labelValue": "161.0", "tooltip": "Label: 161
Weight: 322.0
Value: 161.0", "type": "TreeMapNode", "weight": 322 }, { "color": "#ad5200", "doubleValue": 162, "label": "162", "labelValue": "162.0", "tooltip": "Label: 162
Weight: 324.0
Value: 162.0", "type": "TreeMapNode", "weight": 324 }, { "color": "#ac5300", "doubleValue": 163, "label": "163", "labelValue": "163.0", "tooltip": "Label: 163
Weight: 326.0
Value: 163.0", "type": "TreeMapNode", "weight": 326 }, { "color": "#ac5300", "doubleValue": 164, "label": "164", "labelValue": "164.0", "tooltip": "Label: 164
Weight: 328.0
Value: 164.0", "type": "TreeMapNode", "weight": 328 }, { "color": "#ab5400", "doubleValue": 165, "label": "165", "labelValue": "165.0", "tooltip": "Label: 165
Weight: 330.0
Value: 165.0", "type": "TreeMapNode", "weight": 330 }, { "color": "#ab5400", "doubleValue": 166, "label": "166", "labelValue": "166.0", "tooltip": "Label: 166
Weight: 332.0
Value: 166.0", "type": "TreeMapNode", "weight": 332 }, { "color": "#aa5500", "doubleValue": 167, "label": "167", "labelValue": "167.0", "tooltip": "Label: 167
Weight: 334.0
Value: 167.0", "type": "TreeMapNode", "weight": 334 }, { "color": "#aa5500", "doubleValue": 168, "label": "168", "labelValue": "168.0", "tooltip": "Label: 168
Weight: 336.0
Value: 168.0", "type": "TreeMapNode", "weight": 336 }, { "color": "#a95600", "doubleValue": 169, "label": "169", "labelValue": "169.0", "tooltip": "Label: 169
Weight: 338.0
Value: 169.0", "type": "TreeMapNode", "weight": 338 }, { "color": "#a95600", "doubleValue": 170, "label": "170", "labelValue": "170.0", "tooltip": "Label: 170
Weight: 340.0
Value: 170.0", "type": "TreeMapNode", "weight": 340 }, { "color": "#a85700", "doubleValue": 171, "label": "171", "labelValue": "171.0", "tooltip": "Label: 171
Weight: 342.0
Value: 171.0", "type": "TreeMapNode", "weight": 342 }, { "color": "#a85700", "doubleValue": 172, "label": "172", "labelValue": "172.0", "tooltip": "Label: 172
Weight: 344.0
Value: 172.0", "type": "TreeMapNode", "weight": 344 }, { "color": "#a75800", "doubleValue": 173, "label": "173", "labelValue": "173.0", "tooltip": "Label: 173
Weight: 346.0
Value: 173.0", "type": "TreeMapNode", "weight": 346 }, { "color": "#a75800", "doubleValue": 174, "label": "174", "labelValue": "174.0", "tooltip": "Label: 174
Weight: 348.0
Value: 174.0", "type": "TreeMapNode", "weight": 348 }, { "color": "#a65900", "doubleValue": 175, "label": "175", "labelValue": "175.0", "tooltip": "Label: 175
Weight: 350.0
Value: 175.0", "type": "TreeMapNode", "weight": 350 }, { "color": "#a65900", "doubleValue": 176, "label": "176", "labelValue": "176.0", "tooltip": "Label: 176
Weight: 352.0
Value: 176.0", "type": "TreeMapNode", "weight": 352 }, { "color": "#a55a00", "doubleValue": 177, "label": "177", "labelValue": "177.0", "tooltip": "Label: 177
Weight: 354.0
Value: 177.0", "type": "TreeMapNode", "weight": 354 }, { "color": "#a55a00", "doubleValue": 178, "label": "178", "labelValue": "178.0", "tooltip": "Label: 178
Weight: 356.0
Value: 178.0", "type": "TreeMapNode", "weight": 356 }, { "color": "#a45b00", "doubleValue": 179, "label": "179", "labelValue": "179.0", "tooltip": "Label: 179
Weight: 358.0
Value: 179.0", "type": "TreeMapNode", "weight": 358 }, { "color": "#a45b00", "doubleValue": 180, "label": "180", "labelValue": "180.0", "tooltip": "Label: 180
Weight: 360.0
Value: 180.0", "type": "TreeMapNode", "weight": 360 }, { "color": "#a35c00", "doubleValue": 181, "label": "181", "labelValue": "181.0", "tooltip": "Label: 181
Weight: 362.0
Value: 181.0", "type": "TreeMapNode", "weight": 362 }, { "color": "#a35c00", "doubleValue": 182, "label": "182", "labelValue": "182.0", "tooltip": "Label: 182
Weight: 364.0
Value: 182.0", "type": "TreeMapNode", "weight": 364 }, { "color": "#a25d00", "doubleValue": 183, "label": "183", "labelValue": "183.0", "tooltip": "Label: 183
Weight: 366.0
Value: 183.0", "type": "TreeMapNode", "weight": 366 }, { "color": "#a15e00", "doubleValue": 184, "label": "184", "labelValue": "184.0", "tooltip": "Label: 184
Weight: 368.0
Value: 184.0", "type": "TreeMapNode", "weight": 368 }, { "color": "#a15e00", "doubleValue": 185, "label": "185", "labelValue": "185.0", "tooltip": "Label: 185
Weight: 370.0
Value: 185.0", "type": "TreeMapNode", "weight": 370 }, { "color": "#a05f00", "doubleValue": 186, "label": "186", "labelValue": "186.0", "tooltip": "Label: 186
Weight: 372.0
Value: 186.0", "type": "TreeMapNode", "weight": 372 }, { "color": "#a05f00", "doubleValue": 187, "label": "187", "labelValue": "187.0", "tooltip": "Label: 187
Weight: 374.0
Value: 187.0", "type": "TreeMapNode", "weight": 374 }, { "color": "#9f6000", "doubleValue": 188, "label": "188", "labelValue": "188.0", "tooltip": "Label: 188
Weight: 376.0
Value: 188.0", "type": "TreeMapNode", "weight": 376 }, { "color": "#9f6000", "doubleValue": 189, "label": "189", "labelValue": "189.0", "tooltip": "Label: 189
Weight: 378.0
Value: 189.0", "type": "TreeMapNode", "weight": 378 }, { "color": "#9e6100", "doubleValue": 190, "label": "190", "labelValue": "190.0", "tooltip": "Label: 190
Weight: 380.0
Value: 190.0", "type": "TreeMapNode", "weight": 380 }, { "color": "#9e6100", "doubleValue": 191, "label": "191", "labelValue": "191.0", "tooltip": "Label: 191
Weight: 382.0
Value: 191.0", "type": "TreeMapNode", "weight": 382 }, { "color": "#9d6200", "doubleValue": 192, "label": "192", "labelValue": "192.0", "tooltip": "Label: 192
Weight: 384.0
Value: 192.0", "type": "TreeMapNode", "weight": 384 }, { "color": "#9d6200", "doubleValue": 193, "label": "193", "labelValue": "193.0", "tooltip": "Label: 193
Weight: 386.0
Value: 193.0", "type": "TreeMapNode", "weight": 386 }, { "color": "#9c6300", "doubleValue": 194, "label": "194", "labelValue": "194.0", "tooltip": "Label: 194
Weight: 388.0
Value: 194.0", "type": "TreeMapNode", "weight": 388 }, { "color": "#9c6300", "doubleValue": 195, "label": "195", "labelValue": "195.0", "tooltip": "Label: 195
Weight: 390.0
Value: 195.0", "type": "TreeMapNode", "weight": 390 }, { "color": "#9b6400", "doubleValue": 196, "label": "196", "labelValue": "196.0", "tooltip": "Label: 196
Weight: 392.0
Value: 196.0", "type": "TreeMapNode", "weight": 392 }, { "color": "#9b6400", "doubleValue": 197, "label": "197", "labelValue": "197.0", "tooltip": "Label: 197
Weight: 394.0
Value: 197.0", "type": "TreeMapNode", "weight": 394 }, { "color": "#9a6500", "doubleValue": 198, "label": "198", "labelValue": "198.0", "tooltip": "Label: 198
Weight: 396.0
Value: 198.0", "type": "TreeMapNode", "weight": 396 }, { "color": "#9a6500", "doubleValue": 199, "label": "199", "labelValue": "199.0", "tooltip": "Label: 199
Weight: 398.0
Value: 199.0", "type": "TreeMapNode", "weight": 398 }, { "color": "#996600", "doubleValue": 200, "label": "200", "labelValue": "200.0", "tooltip": "Label: 200
Weight: 400.0
Value: 200.0", "type": "TreeMapNode", "weight": 400 }, { "color": "#996600", "doubleValue": 201, "label": "201", "labelValue": "201.0", "tooltip": "Label: 201
Weight: 402.0
Value: 201.0", "type": "TreeMapNode", "weight": 402 }, { "color": "#986700", "doubleValue": 202, "label": "202", "labelValue": "202.0", "tooltip": "Label: 202
Weight: 404.0
Value: 202.0", "type": "TreeMapNode", "weight": 404 }, { "color": "#986700", "doubleValue": 203, "label": "203", "labelValue": "203.0", "tooltip": "Label: 203
Weight: 406.0
Value: 203.0", "type": "TreeMapNode", "weight": 406 }, { "color": "#976800", "doubleValue": 204, "label": "204", "labelValue": "204.0", "tooltip": "Label: 204
Weight: 408.0
Value: 204.0", "type": "TreeMapNode", "weight": 408 }, { "color": "#976800", "doubleValue": 205, "label": "205", "labelValue": "205.0", "tooltip": "Label: 205
Weight: 410.0
Value: 205.0", "type": "TreeMapNode", "weight": 410 }, { "color": "#966900", "doubleValue": 206, "label": "206", "labelValue": "206.0", "tooltip": "Label: 206
Weight: 412.0
Value: 206.0", "type": "TreeMapNode", "weight": 412 }, { "color": "#966900", "doubleValue": 207, "label": "207", "labelValue": "207.0", "tooltip": "Label: 207
Weight: 414.0
Value: 207.0", "type": "TreeMapNode", "weight": 414 }, { "color": "#956a00", "doubleValue": 208, "label": "208", "labelValue": "208.0", "tooltip": "Label: 208
Weight: 416.0
Value: 208.0", "type": "TreeMapNode", "weight": 416 }, { "color": "#956a00", "doubleValue": 209, "label": "209", "labelValue": "209.0", "tooltip": "Label: 209
Weight: 418.0
Value: 209.0", "type": "TreeMapNode", "weight": 418 }, { "color": "#946b00", "doubleValue": 210, "label": "210", "labelValue": "210.0", "tooltip": "Label: 210
Weight: 420.0
Value: 210.0", "type": "TreeMapNode", "weight": 420 }, { "color": "#946b00", "doubleValue": 211, "label": "211", "labelValue": "211.0", "tooltip": "Label: 211
Weight: 422.0
Value: 211.0", "type": "TreeMapNode", "weight": 422 }, { "color": "#936c00", "doubleValue": 212, "label": "212", "labelValue": "212.0", "tooltip": "Label: 212
Weight: 424.0
Value: 212.0", "type": "TreeMapNode", "weight": 424 }, { "color": "#936c00", "doubleValue": 213, "label": "213", "labelValue": "213.0", "tooltip": "Label: 213
Weight: 426.0
Value: 213.0", "type": "TreeMapNode", "weight": 426 }, { "color": "#926d00", "doubleValue": 214, "label": "214", "labelValue": "214.0", "tooltip": "Label: 214
Weight: 428.0
Value: 214.0", "type": "TreeMapNode", "weight": 428 }, { "color": "#926d00", "doubleValue": 215, "label": "215", "labelValue": "215.0", "tooltip": "Label: 215
Weight: 430.0
Value: 215.0", "type": "TreeMapNode", "weight": 430 }, { "color": "#916e00", "doubleValue": 216, "label": "216", "labelValue": "216.0", "tooltip": "Label: 216
Weight: 432.0
Value: 216.0", "type": "TreeMapNode", "weight": 432 }, { "color": "#916e00", "doubleValue": 217, "label": "217", "labelValue": "217.0", "tooltip": "Label: 217
Weight: 434.0
Value: 217.0", "type": "TreeMapNode", "weight": 434 }, { "color": "#906f00", "doubleValue": 218, "label": "218", "labelValue": "218.0", "tooltip": "Label: 218
Weight: 436.0
Value: 218.0", "type": "TreeMapNode", "weight": 436 }, { "color": "#906f00", "doubleValue": 219, "label": "219", "labelValue": "219.0", "tooltip": "Label: 219
Weight: 438.0
Value: 219.0", "type": "TreeMapNode", "weight": 438 }, { "color": "#8f7000", "doubleValue": 220, "label": "220", "labelValue": "220.0", "tooltip": "Label: 220
Weight: 440.0
Value: 220.0", "type": "TreeMapNode", "weight": 440 }, { "color": "#8f7000", "doubleValue": 221, "label": "221", "labelValue": "221.0", "tooltip": "Label: 221
Weight: 442.0
Value: 221.0", "type": "TreeMapNode", "weight": 442 }, { "color": "#8e7100", "doubleValue": 222, "label": "222", "labelValue": "222.0", "tooltip": "Label: 222
Weight: 444.0
Value: 222.0", "type": "TreeMapNode", "weight": 444 }, { "color": "#8e7100", "doubleValue": 223, "label": "223", "labelValue": "223.0", "tooltip": "Label: 223
Weight: 446.0
Value: 223.0", "type": "TreeMapNode", "weight": 446 }, { "color": "#8d7200", "doubleValue": 224, "label": "224", "labelValue": "224.0", "tooltip": "Label: 224
Weight: 448.0
Value: 224.0", "type": "TreeMapNode", "weight": 448 }, { "color": "#8d7200", "doubleValue": 225, "label": "225", "labelValue": "225.0", "tooltip": "Label: 225
Weight: 450.0
Value: 225.0", "type": "TreeMapNode", "weight": 450 }, { "color": "#8c7300", "doubleValue": 226, "label": "226", "labelValue": "226.0", "tooltip": "Label: 226
Weight: 452.0
Value: 226.0", "type": "TreeMapNode", "weight": 452 }, { "color": "#8c7300", "doubleValue": 227, "label": "227", "labelValue": "227.0", "tooltip": "Label: 227
Weight: 454.0
Value: 227.0", "type": "TreeMapNode", "weight": 454 }, { "color": "#8b7400", "doubleValue": 228, "label": "228", "labelValue": "228.0", "tooltip": "Label: 228
Weight: 456.0
Value: 228.0", "type": "TreeMapNode", "weight": 456 }, { "color": "#8a7500", "doubleValue": 229, "label": "229", "labelValue": "229.0", "tooltip": "Label: 229
Weight: 458.0
Value: 229.0", "type": "TreeMapNode", "weight": 458 }, { "color": "#8a7500", "doubleValue": 230, "label": "230", "labelValue": "230.0", "tooltip": "Label: 230
Weight: 460.0
Value: 230.0", "type": "TreeMapNode", "weight": 460 }, { "color": "#897600", "doubleValue": 231, "label": "231", "labelValue": "231.0", "tooltip": "Label: 231
Weight: 462.0
Value: 231.0", "type": "TreeMapNode", "weight": 462 }, { "color": "#897600", "doubleValue": 232, "label": "232", "labelValue": "232.0", "tooltip": "Label: 232
Weight: 464.0
Value: 232.0", "type": "TreeMapNode", "weight": 464 }, { "color": "#887700", "doubleValue": 233, "label": "233", "labelValue": "233.0", "tooltip": "Label: 233
Weight: 466.0
Value: 233.0", "type": "TreeMapNode", "weight": 466 }, { "color": "#887700", "doubleValue": 234, "label": "234", "labelValue": "234.0", "tooltip": "Label: 234
Weight: 468.0
Value: 234.0", "type": "TreeMapNode", "weight": 468 }, { "color": "#877800", "doubleValue": 235, "label": "235", "labelValue": "235.0", "tooltip": "Label: 235
Weight: 470.0
Value: 235.0", "type": "TreeMapNode", "weight": 470 }, { "color": "#877800", "doubleValue": 236, "label": "236", "labelValue": "236.0", "tooltip": "Label: 236
Weight: 472.0
Value: 236.0", "type": "TreeMapNode", "weight": 472 }, { "color": "#867900", "doubleValue": 237, "label": "237", "labelValue": "237.0", "tooltip": "Label: 237
Weight: 474.0
Value: 237.0", "type": "TreeMapNode", "weight": 474 }, { "color": "#867900", "doubleValue": 238, "label": "238", "labelValue": "238.0", "tooltip": "Label: 238
Weight: 476.0
Value: 238.0", "type": "TreeMapNode", "weight": 476 }, { "color": "#857a00", "doubleValue": 239, "label": "239", "labelValue": "239.0", "tooltip": "Label: 239
Weight: 478.0
Value: 239.0", "type": "TreeMapNode", "weight": 478 }, { "color": "#857a00", "doubleValue": 240, "label": "240", "labelValue": "240.0", "tooltip": "Label: 240
Weight: 480.0
Value: 240.0", "type": "TreeMapNode", "weight": 480 }, { "color": "#847b00", "doubleValue": 241, "label": "241", "labelValue": "241.0", "tooltip": "Label: 241
Weight: 482.0
Value: 241.0", "type": "TreeMapNode", "weight": 482 }, { "color": "#847b00", "doubleValue": 242, "label": "242", "labelValue": "242.0", "tooltip": "Label: 242
Weight: 484.0
Value: 242.0", "type": "TreeMapNode", "weight": 484 }, { "color": "#837c00", "doubleValue": 243, "label": "243", "labelValue": "243.0", "tooltip": "Label: 243
Weight: 486.0
Value: 243.0", "type": "TreeMapNode", "weight": 486 }, { "color": "#837c00", "doubleValue": 244, "label": "244", "labelValue": "244.0", "tooltip": "Label: 244
Weight: 488.0
Value: 244.0", "type": "TreeMapNode", "weight": 488 }, { "color": "#827d00", "doubleValue": 245, "label": "245", "labelValue": "245.0", "tooltip": "Label: 245
Weight: 490.0
Value: 245.0", "type": "TreeMapNode", "weight": 490 }, { "color": "#827d00", "doubleValue": 246, "label": "246", "labelValue": "246.0", "tooltip": "Label: 246
Weight: 492.0
Value: 246.0", "type": "TreeMapNode", "weight": 492 }, { "color": "#817e00", "doubleValue": 247, "label": "247", "labelValue": "247.0", "tooltip": "Label: 247
Weight: 494.0
Value: 247.0", "type": "TreeMapNode", "weight": 494 }, { "color": "#817e00", "doubleValue": 248, "label": "248", "labelValue": "248.0", "tooltip": "Label: 248
Weight: 496.0
Value: 248.0", "type": "TreeMapNode", "weight": 496 }, { "color": "#807f00", "doubleValue": 249, "label": "249", "labelValue": "249.0", "tooltip": "Label: 249
Weight: 498.0
Value: 249.0", "type": "TreeMapNode", "weight": 498 }, { "color": "#807f00", "doubleValue": 250, "label": "250", "labelValue": "250.0", "tooltip": "Label: 250
Weight: 500.0
Value: 250.0", "type": "TreeMapNode", "weight": 500 } ], "type": "TreeMapNode", "weight": 62750 } ], "type": "TreeMapNode", "weight": 313250 } ], "type": "TreeMapNode", "weight": 626500 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "ac9172c4-0ca7-415e-8178-0af60913e75d": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "Mode.DICE", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#21578d", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "011", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "012", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "013", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "020", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "021", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "022", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "023", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "024", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "030", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "031", "type": "TreeMapNode", "weight": 2 }, { "color": "#8c1d17", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "032", "type": "TreeMapNode", "weight": 3 }, { "color": "#8c1d17", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "033", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#968236", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "04", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "mode": "dice", "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "c09f4f08-027b-47cb-be41-ac12a45db2e0": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "GradientColorProvider with overrides colours", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#c0c0c0", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "Label: 011
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#c0c0c0", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "Label: 012
Weight: 2.0
Value: 1.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#c0c0c0", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "Label: 013
Weight: 3.0
Value: 1.0", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#a0a0a0", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "Label: 020
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#c0c0c0", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "Label: 021
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#c0c0c0", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "Label: 022
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#c0c0c0", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "Label: 023
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#a0a0a0", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "Label: 024
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#a0a0a0", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "Label: 030
Weight: 1.0
Value: 2.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#a0a0a0", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "Label: 031
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#a0a0a0", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "Label: 032
Weight: 3.0
Value: 2.0", "type": "TreeMapNode", "weight": 3 }, { "color": "#a0a0a0", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "Label: 033
Weight: 4.0
Value: 2.0", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#404040", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "Label: 04
Weight: 6.0
Value: 5.0", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "c48b4633-24e4-4a69-b0cd-e9023068c3c6": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "Mode.SLICE", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#21578d", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "011", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "012", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "013", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "020", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "021", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "022", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "023", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "024", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "030", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "031", "type": "TreeMapNode", "weight": 2 }, { "color": "#8c1d17", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "032", "type": "TreeMapNode", "weight": 3 }, { "color": "#8c1d17", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "033", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#968236", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "04", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "mode": "slice", "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "cf1abcd8-dda1-4e04-a935-875b2aab0d39": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "RandomColorProvider with different colours", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#ff0000", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "Label: 011
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#ff0000", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "Label: 012
Weight: 2.0
Value: 1.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#ff0000", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "Label: 013
Weight: 3.0
Value: 1.0", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#00ff00", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "Label: 020
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#ff0000", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "Label: 021
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#ff0000", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "Label: 022
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#ff0000", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "Label: 023
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#00ff00", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "Label: 024
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#00ff00", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "Label: 030
Weight: 1.0
Value: 2.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#00ff00", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "Label: 031
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#00ff00", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "Label: 032
Weight: 3.0
Value: 2.0", "type": "TreeMapNode", "weight": 3 }, { "color": "#00ff00", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "Label: 033
Weight: 4.0
Value: 2.0", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#0000ff", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "Label: 04
Weight: 6.0
Value: 5.0", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "d0a236f9-d590-4ede-b8b5-00deb8fdd082": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "GradientColorProvider with default colours", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#ff0000", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "Label: 011
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#ff0000", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "Label: 012
Weight: 2.0
Value: 1.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#ff0000", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "Label: 013
Weight: 3.0
Value: 1.0", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#bf4000", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "Label: 020
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#ff0000", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "Label: 021
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#ff0000", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "Label: 022
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#ff0000", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "Label: 023
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#bf4000", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "Label: 024
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#bf4000", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "Label: 030
Weight: 1.0
Value: 2.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#bf4000", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "Label: 031
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#bf4000", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "Label: 032
Weight: 3.0
Value: 2.0", "type": "TreeMapNode", "weight": 3 }, { "color": "#bf4000", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "Label: 033
Weight: 4.0
Value: 2.0", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#00ff00", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "Label: 04
Weight: 6.0
Value: 5.0", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "d626debb-5dfe-4979-a377-e3b9d4798138": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "RandomColorProvider with different colours", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#ff0000", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "Label: 011
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#ff0000", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "Label: 012
Weight: 2.0
Value: 1.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#ff0000", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "Label: 013
Weight: 3.0
Value: 1.0", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#00ff00", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "Label: 020
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#ff0000", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "Label: 021
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#ff0000", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "Label: 022
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#ff0000", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "Label: 023
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#00ff00", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "Label: 024
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#00ff00", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "Label: 030
Weight: 1.0
Value: 2.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#00ff00", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "Label: 031
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#00ff00", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "Label: 032
Weight: 3.0
Value: 2.0", "type": "TreeMapNode", "weight": 3 }, { "color": "#00ff00", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "Label: 033
Weight: 4.0
Value: 2.0", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#0000ff", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "Label: 04
Weight: 6.0
Value: 5.0", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "e0d4e2b2-4ccf-4a9c-b003-2b4144c9b735": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "Big TreeMap chart (1500 entities)", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#ff0000", "doubleValue": 1, "label": "1", "labelValue": "1.0", "tooltip": "Label: 1
Weight: 2.0
Value: 1.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#fe0100", "doubleValue": 2, "label": "2", "labelValue": "2.0", "tooltip": "Label: 2
Weight: 4.0
Value: 2.0", "type": "TreeMapNode", "weight": 4 }, { "color": "#fe0100", "doubleValue": 3, "label": "3", "labelValue": "3.0", "tooltip": "Label: 3
Weight: 6.0
Value: 3.0", "type": "TreeMapNode", "weight": 6 }, { "color": "#fd0200", "doubleValue": 4, "label": "4", "labelValue": "4.0", "tooltip": "Label: 4
Weight: 8.0
Value: 4.0", "type": "TreeMapNode", "weight": 8 }, { "color": "#fd0200", "doubleValue": 5, "label": "5", "labelValue": "5.0", "tooltip": "Label: 5
Weight: 10.0
Value: 5.0", "type": "TreeMapNode", "weight": 10 }, { "color": "#fc0300", "doubleValue": 6, "label": "6", "labelValue": "6.0", "tooltip": "Label: 6
Weight: 12.0
Value: 6.0", "type": "TreeMapNode", "weight": 12 }, { "color": "#fc0300", "doubleValue": 7, "label": "7", "labelValue": "7.0", "tooltip": "Label: 7
Weight: 14.0
Value: 7.0", "type": "TreeMapNode", "weight": 14 }, { "color": "#fb0400", "doubleValue": 8, "label": "8", "labelValue": "8.0", "tooltip": "Label: 8
Weight: 16.0
Value: 8.0", "type": "TreeMapNode", "weight": 16 }, { "color": "#fb0400", "doubleValue": 9, "label": "9", "labelValue": "9.0", "tooltip": "Label: 9
Weight: 18.0
Value: 9.0", "type": "TreeMapNode", "weight": 18 }, { "color": "#fa0500", "doubleValue": 10, "label": "10", "labelValue": "10.0", "tooltip": "Label: 10
Weight: 20.0
Value: 10.0", "type": "TreeMapNode", "weight": 20 }, { "color": "#fa0500", "doubleValue": 11, "label": "11", "labelValue": "11.0", "tooltip": "Label: 11
Weight: 22.0
Value: 11.0", "type": "TreeMapNode", "weight": 22 }, { "color": "#f90600", "doubleValue": 12, "label": "12", "labelValue": "12.0", "tooltip": "Label: 12
Weight: 24.0
Value: 12.0", "type": "TreeMapNode", "weight": 24 }, { "color": "#f90600", "doubleValue": 13, "label": "13", "labelValue": "13.0", "tooltip": "Label: 13
Weight: 26.0
Value: 13.0", "type": "TreeMapNode", "weight": 26 }, { "color": "#f80700", "doubleValue": 14, "label": "14", "labelValue": "14.0", "tooltip": "Label: 14
Weight: 28.0
Value: 14.0", "type": "TreeMapNode", "weight": 28 }, { "color": "#f80700", "doubleValue": 15, "label": "15", "labelValue": "15.0", "tooltip": "Label: 15
Weight: 30.0
Value: 15.0", "type": "TreeMapNode", "weight": 30 }, { "color": "#f70800", "doubleValue": 16, "label": "16", "labelValue": "16.0", "tooltip": "Label: 16
Weight: 32.0
Value: 16.0", "type": "TreeMapNode", "weight": 32 }, { "color": "#f70800", "doubleValue": 17, "label": "17", "labelValue": "17.0", "tooltip": "Label: 17
Weight: 34.0
Value: 17.0", "type": "TreeMapNode", "weight": 34 }, { "color": "#f60900", "doubleValue": 18, "label": "18", "labelValue": "18.0", "tooltip": "Label: 18
Weight: 36.0
Value: 18.0", "type": "TreeMapNode", "weight": 36 }, { "color": "#f60900", "doubleValue": 19, "label": "19", "labelValue": "19.0", "tooltip": "Label: 19
Weight: 38.0
Value: 19.0", "type": "TreeMapNode", "weight": 38 }, { "color": "#f50a00", "doubleValue": 20, "label": "20", "labelValue": "20.0", "tooltip": "Label: 20
Weight: 40.0
Value: 20.0", "type": "TreeMapNode", "weight": 40 }, { "color": "#f50a00", "doubleValue": 21, "label": "21", "labelValue": "21.0", "tooltip": "Label: 21
Weight: 42.0
Value: 21.0", "type": "TreeMapNode", "weight": 42 }, { "color": "#f40b00", "doubleValue": 22, "label": "22", "labelValue": "22.0", "tooltip": "Label: 22
Weight: 44.0
Value: 22.0", "type": "TreeMapNode", "weight": 44 }, { "color": "#f40b00", "doubleValue": 23, "label": "23", "labelValue": "23.0", "tooltip": "Label: 23
Weight: 46.0
Value: 23.0", "type": "TreeMapNode", "weight": 46 }, { "color": "#f30c00", "doubleValue": 24, "label": "24", "labelValue": "24.0", "tooltip": "Label: 24
Weight: 48.0
Value: 24.0", "type": "TreeMapNode", "weight": 48 }, { "color": "#f30c00", "doubleValue": 25, "label": "25", "labelValue": "25.0", "tooltip": "Label: 25
Weight: 50.0
Value: 25.0", "type": "TreeMapNode", "weight": 50 }, { "color": "#f20d00", "doubleValue": 26, "label": "26", "labelValue": "26.0", "tooltip": "Label: 26
Weight: 52.0
Value: 26.0", "type": "TreeMapNode", "weight": 52 }, { "color": "#f20d00", "doubleValue": 27, "label": "27", "labelValue": "27.0", "tooltip": "Label: 27
Weight: 54.0
Value: 27.0", "type": "TreeMapNode", "weight": 54 }, { "color": "#f10e00", "doubleValue": 28, "label": "28", "labelValue": "28.0", "tooltip": "Label: 28
Weight: 56.0
Value: 28.0", "type": "TreeMapNode", "weight": 56 }, { "color": "#f10e00", "doubleValue": 29, "label": "29", "labelValue": "29.0", "tooltip": "Label: 29
Weight: 58.0
Value: 29.0", "type": "TreeMapNode", "weight": 58 }, { "color": "#f00f00", "doubleValue": 30, "label": "30", "labelValue": "30.0", "tooltip": "Label: 30
Weight: 60.0
Value: 30.0", "type": "TreeMapNode", "weight": 60 }, { "color": "#f00f00", "doubleValue": 31, "label": "31", "labelValue": "31.0", "tooltip": "Label: 31
Weight: 62.0
Value: 31.0", "type": "TreeMapNode", "weight": 62 }, { "color": "#ef1000", "doubleValue": 32, "label": "32", "labelValue": "32.0", "tooltip": "Label: 32
Weight: 64.0
Value: 32.0", "type": "TreeMapNode", "weight": 64 }, { "color": "#ef1000", "doubleValue": 33, "label": "33", "labelValue": "33.0", "tooltip": "Label: 33
Weight: 66.0
Value: 33.0", "type": "TreeMapNode", "weight": 66 }, { "color": "#ee1100", "doubleValue": 34, "label": "34", "labelValue": "34.0", "tooltip": "Label: 34
Weight: 68.0
Value: 34.0", "type": "TreeMapNode", "weight": 68 }, { "color": "#ee1100", "doubleValue": 35, "label": "35", "labelValue": "35.0", "tooltip": "Label: 35
Weight: 70.0
Value: 35.0", "type": "TreeMapNode", "weight": 70 }, { "color": "#ed1200", "doubleValue": 36, "label": "36", "labelValue": "36.0", "tooltip": "Label: 36
Weight: 72.0
Value: 36.0", "type": "TreeMapNode", "weight": 72 }, { "color": "#ed1200", "doubleValue": 37, "label": "37", "labelValue": "37.0", "tooltip": "Label: 37
Weight: 74.0
Value: 37.0", "type": "TreeMapNode", "weight": 74 }, { "color": "#ec1300", "doubleValue": 38, "label": "38", "labelValue": "38.0", "tooltip": "Label: 38
Weight: 76.0
Value: 38.0", "type": "TreeMapNode", "weight": 76 }, { "color": "#ec1300", "doubleValue": 39, "label": "39", "labelValue": "39.0", "tooltip": "Label: 39
Weight: 78.0
Value: 39.0", "type": "TreeMapNode", "weight": 78 }, { "color": "#eb1400", "doubleValue": 40, "label": "40", "labelValue": "40.0", "tooltip": "Label: 40
Weight: 80.0
Value: 40.0", "type": "TreeMapNode", "weight": 80 }, { "color": "#eb1400", "doubleValue": 41, "label": "41", "labelValue": "41.0", "tooltip": "Label: 41
Weight: 82.0
Value: 41.0", "type": "TreeMapNode", "weight": 82 }, { "color": "#ea1500", "doubleValue": 42, "label": "42", "labelValue": "42.0", "tooltip": "Label: 42
Weight: 84.0
Value: 42.0", "type": "TreeMapNode", "weight": 84 }, { "color": "#ea1500", "doubleValue": 43, "label": "43", "labelValue": "43.0", "tooltip": "Label: 43
Weight: 86.0
Value: 43.0", "type": "TreeMapNode", "weight": 86 }, { "color": "#e91600", "doubleValue": 44, "label": "44", "labelValue": "44.0", "tooltip": "Label: 44
Weight: 88.0
Value: 44.0", "type": "TreeMapNode", "weight": 88 }, { "color": "#e91600", "doubleValue": 45, "label": "45", "labelValue": "45.0", "tooltip": "Label: 45
Weight: 90.0
Value: 45.0", "type": "TreeMapNode", "weight": 90 }, { "color": "#e81700", "doubleValue": 46, "label": "46", "labelValue": "46.0", "tooltip": "Label: 46
Weight: 92.0
Value: 46.0", "type": "TreeMapNode", "weight": 92 }, { "color": "#e71800", "doubleValue": 47, "label": "47", "labelValue": "47.0", "tooltip": "Label: 47
Weight: 94.0
Value: 47.0", "type": "TreeMapNode", "weight": 94 }, { "color": "#e71800", "doubleValue": 48, "label": "48", "labelValue": "48.0", "tooltip": "Label: 48
Weight: 96.0
Value: 48.0", "type": "TreeMapNode", "weight": 96 }, { "color": "#e61900", "doubleValue": 49, "label": "49", "labelValue": "49.0", "tooltip": "Label: 49
Weight: 98.0
Value: 49.0", "type": "TreeMapNode", "weight": 98 }, { "color": "#e61900", "doubleValue": 50, "label": "50", "labelValue": "50.0", "tooltip": "Label: 50
Weight: 100.0
Value: 50.0", "type": "TreeMapNode", "weight": 100 }, { "color": "#e51a00", "doubleValue": 51, "label": "51", "labelValue": "51.0", "tooltip": "Label: 51
Weight: 102.0
Value: 51.0", "type": "TreeMapNode", "weight": 102 }, { "color": "#e51a00", "doubleValue": 52, "label": "52", "labelValue": "52.0", "tooltip": "Label: 52
Weight: 104.0
Value: 52.0", "type": "TreeMapNode", "weight": 104 }, { "color": "#e41b00", "doubleValue": 53, "label": "53", "labelValue": "53.0", "tooltip": "Label: 53
Weight: 106.0
Value: 53.0", "type": "TreeMapNode", "weight": 106 }, { "color": "#e41b00", "doubleValue": 54, "label": "54", "labelValue": "54.0", "tooltip": "Label: 54
Weight: 108.0
Value: 54.0", "type": "TreeMapNode", "weight": 108 }, { "color": "#e31c00", "doubleValue": 55, "label": "55", "labelValue": "55.0", "tooltip": "Label: 55
Weight: 110.0
Value: 55.0", "type": "TreeMapNode", "weight": 110 }, { "color": "#e31c00", "doubleValue": 56, "label": "56", "labelValue": "56.0", "tooltip": "Label: 56
Weight: 112.0
Value: 56.0", "type": "TreeMapNode", "weight": 112 }, { "color": "#e21d00", "doubleValue": 57, "label": "57", "labelValue": "57.0", "tooltip": "Label: 57
Weight: 114.0
Value: 57.0", "type": "TreeMapNode", "weight": 114 }, { "color": "#e21d00", "doubleValue": 58, "label": "58", "labelValue": "58.0", "tooltip": "Label: 58
Weight: 116.0
Value: 58.0", "type": "TreeMapNode", "weight": 116 }, { "color": "#e11e00", "doubleValue": 59, "label": "59", "labelValue": "59.0", "tooltip": "Label: 59
Weight: 118.0
Value: 59.0", "type": "TreeMapNode", "weight": 118 }, { "color": "#e11e00", "doubleValue": 60, "label": "60", "labelValue": "60.0", "tooltip": "Label: 60
Weight: 120.0
Value: 60.0", "type": "TreeMapNode", "weight": 120 }, { "color": "#e01f00", "doubleValue": 61, "label": "61", "labelValue": "61.0", "tooltip": "Label: 61
Weight: 122.0
Value: 61.0", "type": "TreeMapNode", "weight": 122 }, { "color": "#e01f00", "doubleValue": 62, "label": "62", "labelValue": "62.0", "tooltip": "Label: 62
Weight: 124.0
Value: 62.0", "type": "TreeMapNode", "weight": 124 }, { "color": "#df2000", "doubleValue": 63, "label": "63", "labelValue": "63.0", "tooltip": "Label: 63
Weight: 126.0
Value: 63.0", "type": "TreeMapNode", "weight": 126 }, { "color": "#df2000", "doubleValue": 64, "label": "64", "labelValue": "64.0", "tooltip": "Label: 64
Weight: 128.0
Value: 64.0", "type": "TreeMapNode", "weight": 128 }, { "color": "#de2100", "doubleValue": 65, "label": "65", "labelValue": "65.0", "tooltip": "Label: 65
Weight: 130.0
Value: 65.0", "type": "TreeMapNode", "weight": 130 }, { "color": "#de2100", "doubleValue": 66, "label": "66", "labelValue": "66.0", "tooltip": "Label: 66
Weight: 132.0
Value: 66.0", "type": "TreeMapNode", "weight": 132 }, { "color": "#dd2200", "doubleValue": 67, "label": "67", "labelValue": "67.0", "tooltip": "Label: 67
Weight: 134.0
Value: 67.0", "type": "TreeMapNode", "weight": 134 }, { "color": "#dd2200", "doubleValue": 68, "label": "68", "labelValue": "68.0", "tooltip": "Label: 68
Weight: 136.0
Value: 68.0", "type": "TreeMapNode", "weight": 136 }, { "color": "#dc2300", "doubleValue": 69, "label": "69", "labelValue": "69.0", "tooltip": "Label: 69
Weight: 138.0
Value: 69.0", "type": "TreeMapNode", "weight": 138 }, { "color": "#dc2300", "doubleValue": 70, "label": "70", "labelValue": "70.0", "tooltip": "Label: 70
Weight: 140.0
Value: 70.0", "type": "TreeMapNode", "weight": 140 }, { "color": "#db2400", "doubleValue": 71, "label": "71", "labelValue": "71.0", "tooltip": "Label: 71
Weight: 142.0
Value: 71.0", "type": "TreeMapNode", "weight": 142 }, { "color": "#db2400", "doubleValue": 72, "label": "72", "labelValue": "72.0", "tooltip": "Label: 72
Weight: 144.0
Value: 72.0", "type": "TreeMapNode", "weight": 144 }, { "color": "#da2500", "doubleValue": 73, "label": "73", "labelValue": "73.0", "tooltip": "Label: 73
Weight: 146.0
Value: 73.0", "type": "TreeMapNode", "weight": 146 }, { "color": "#da2500", "doubleValue": 74, "label": "74", "labelValue": "74.0", "tooltip": "Label: 74
Weight: 148.0
Value: 74.0", "type": "TreeMapNode", "weight": 148 }, { "color": "#d92600", "doubleValue": 75, "label": "75", "labelValue": "75.0", "tooltip": "Label: 75
Weight: 150.0
Value: 75.0", "type": "TreeMapNode", "weight": 150 }, { "color": "#d92600", "doubleValue": 76, "label": "76", "labelValue": "76.0", "tooltip": "Label: 76
Weight: 152.0
Value: 76.0", "type": "TreeMapNode", "weight": 152 }, { "color": "#d82700", "doubleValue": 77, "label": "77", "labelValue": "77.0", "tooltip": "Label: 77
Weight: 154.0
Value: 77.0", "type": "TreeMapNode", "weight": 154 }, { "color": "#d82700", "doubleValue": 78, "label": "78", "labelValue": "78.0", "tooltip": "Label: 78
Weight: 156.0
Value: 78.0", "type": "TreeMapNode", "weight": 156 }, { "color": "#d72800", "doubleValue": 79, "label": "79", "labelValue": "79.0", "tooltip": "Label: 79
Weight: 158.0
Value: 79.0", "type": "TreeMapNode", "weight": 158 }, { "color": "#d72800", "doubleValue": 80, "label": "80", "labelValue": "80.0", "tooltip": "Label: 80
Weight: 160.0
Value: 80.0", "type": "TreeMapNode", "weight": 160 }, { "color": "#d62900", "doubleValue": 81, "label": "81", "labelValue": "81.0", "tooltip": "Label: 81
Weight: 162.0
Value: 81.0", "type": "TreeMapNode", "weight": 162 }, { "color": "#d62900", "doubleValue": 82, "label": "82", "labelValue": "82.0", "tooltip": "Label: 82
Weight: 164.0
Value: 82.0", "type": "TreeMapNode", "weight": 164 }, { "color": "#d52a00", "doubleValue": 83, "label": "83", "labelValue": "83.0", "tooltip": "Label: 83
Weight: 166.0
Value: 83.0", "type": "TreeMapNode", "weight": 166 }, { "color": "#d52a00", "doubleValue": 84, "label": "84", "labelValue": "84.0", "tooltip": "Label: 84
Weight: 168.0
Value: 84.0", "type": "TreeMapNode", "weight": 168 }, { "color": "#d42b00", "doubleValue": 85, "label": "85", "labelValue": "85.0", "tooltip": "Label: 85
Weight: 170.0
Value: 85.0", "type": "TreeMapNode", "weight": 170 }, { "color": "#d42b00", "doubleValue": 86, "label": "86", "labelValue": "86.0", "tooltip": "Label: 86
Weight: 172.0
Value: 86.0", "type": "TreeMapNode", "weight": 172 }, { "color": "#d32c00", "doubleValue": 87, "label": "87", "labelValue": "87.0", "tooltip": "Label: 87
Weight: 174.0
Value: 87.0", "type": "TreeMapNode", "weight": 174 }, { "color": "#d32c00", "doubleValue": 88, "label": "88", "labelValue": "88.0", "tooltip": "Label: 88
Weight: 176.0
Value: 88.0", "type": "TreeMapNode", "weight": 176 }, { "color": "#d22d00", "doubleValue": 89, "label": "89", "labelValue": "89.0", "tooltip": "Label: 89
Weight: 178.0
Value: 89.0", "type": "TreeMapNode", "weight": 178 }, { "color": "#d22d00", "doubleValue": 90, "label": "90", "labelValue": "90.0", "tooltip": "Label: 90
Weight: 180.0
Value: 90.0", "type": "TreeMapNode", "weight": 180 }, { "color": "#d12e00", "doubleValue": 91, "label": "91", "labelValue": "91.0", "tooltip": "Label: 91
Weight: 182.0
Value: 91.0", "type": "TreeMapNode", "weight": 182 }, { "color": "#d02f00", "doubleValue": 92, "label": "92", "labelValue": "92.0", "tooltip": "Label: 92
Weight: 184.0
Value: 92.0", "type": "TreeMapNode", "weight": 184 }, { "color": "#d02f00", "doubleValue": 93, "label": "93", "labelValue": "93.0", "tooltip": "Label: 93
Weight: 186.0
Value: 93.0", "type": "TreeMapNode", "weight": 186 }, { "color": "#cf3000", "doubleValue": 94, "label": "94", "labelValue": "94.0", "tooltip": "Label: 94
Weight: 188.0
Value: 94.0", "type": "TreeMapNode", "weight": 188 }, { "color": "#cf3000", "doubleValue": 95, "label": "95", "labelValue": "95.0", "tooltip": "Label: 95
Weight: 190.0
Value: 95.0", "type": "TreeMapNode", "weight": 190 }, { "color": "#ce3100", "doubleValue": 96, "label": "96", "labelValue": "96.0", "tooltip": "Label: 96
Weight: 192.0
Value: 96.0", "type": "TreeMapNode", "weight": 192 }, { "color": "#ce3100", "doubleValue": 97, "label": "97", "labelValue": "97.0", "tooltip": "Label: 97
Weight: 194.0
Value: 97.0", "type": "TreeMapNode", "weight": 194 }, { "color": "#cd3200", "doubleValue": 98, "label": "98", "labelValue": "98.0", "tooltip": "Label: 98
Weight: 196.0
Value: 98.0", "type": "TreeMapNode", "weight": 196 }, { "color": "#cd3200", "doubleValue": 99, "label": "99", "labelValue": "99.0", "tooltip": "Label: 99
Weight: 198.0
Value: 99.0", "type": "TreeMapNode", "weight": 198 }, { "color": "#cc3300", "doubleValue": 100, "label": "100", "labelValue": "100.0", "tooltip": "Label: 100
Weight: 200.0
Value: 100.0", "type": "TreeMapNode", "weight": 200 }, { "color": "#cc3300", "doubleValue": 101, "label": "101", "labelValue": "101.0", "tooltip": "Label: 101
Weight: 202.0
Value: 101.0", "type": "TreeMapNode", "weight": 202 }, { "color": "#cb3400", "doubleValue": 102, "label": "102", "labelValue": "102.0", "tooltip": "Label: 102
Weight: 204.0
Value: 102.0", "type": "TreeMapNode", "weight": 204 }, { "color": "#cb3400", "doubleValue": 103, "label": "103", "labelValue": "103.0", "tooltip": "Label: 103
Weight: 206.0
Value: 103.0", "type": "TreeMapNode", "weight": 206 }, { "color": "#ca3500", "doubleValue": 104, "label": "104", "labelValue": "104.0", "tooltip": "Label: 104
Weight: 208.0
Value: 104.0", "type": "TreeMapNode", "weight": 208 }, { "color": "#ca3500", "doubleValue": 105, "label": "105", "labelValue": "105.0", "tooltip": "Label: 105
Weight: 210.0
Value: 105.0", "type": "TreeMapNode", "weight": 210 }, { "color": "#c93600", "doubleValue": 106, "label": "106", "labelValue": "106.0", "tooltip": "Label: 106
Weight: 212.0
Value: 106.0", "type": "TreeMapNode", "weight": 212 }, { "color": "#c93600", "doubleValue": 107, "label": "107", "labelValue": "107.0", "tooltip": "Label: 107
Weight: 214.0
Value: 107.0", "type": "TreeMapNode", "weight": 214 }, { "color": "#c83700", "doubleValue": 108, "label": "108", "labelValue": "108.0", "tooltip": "Label: 108
Weight: 216.0
Value: 108.0", "type": "TreeMapNode", "weight": 216 }, { "color": "#c83700", "doubleValue": 109, "label": "109", "labelValue": "109.0", "tooltip": "Label: 109
Weight: 218.0
Value: 109.0", "type": "TreeMapNode", "weight": 218 }, { "color": "#c73800", "doubleValue": 110, "label": "110", "labelValue": "110.0", "tooltip": "Label: 110
Weight: 220.0
Value: 110.0", "type": "TreeMapNode", "weight": 220 }, { "color": "#c73800", "doubleValue": 111, "label": "111", "labelValue": "111.0", "tooltip": "Label: 111
Weight: 222.0
Value: 111.0", "type": "TreeMapNode", "weight": 222 }, { "color": "#c63900", "doubleValue": 112, "label": "112", "labelValue": "112.0", "tooltip": "Label: 112
Weight: 224.0
Value: 112.0", "type": "TreeMapNode", "weight": 224 }, { "color": "#c63900", "doubleValue": 113, "label": "113", "labelValue": "113.0", "tooltip": "Label: 113
Weight: 226.0
Value: 113.0", "type": "TreeMapNode", "weight": 226 }, { "color": "#c53a00", "doubleValue": 114, "label": "114", "labelValue": "114.0", "tooltip": "Label: 114
Weight: 228.0
Value: 114.0", "type": "TreeMapNode", "weight": 228 }, { "color": "#c53a00", "doubleValue": 115, "label": "115", "labelValue": "115.0", "tooltip": "Label: 115
Weight: 230.0
Value: 115.0", "type": "TreeMapNode", "weight": 230 }, { "color": "#c43b00", "doubleValue": 116, "label": "116", "labelValue": "116.0", "tooltip": "Label: 116
Weight: 232.0
Value: 116.0", "type": "TreeMapNode", "weight": 232 }, { "color": "#c43b00", "doubleValue": 117, "label": "117", "labelValue": "117.0", "tooltip": "Label: 117
Weight: 234.0
Value: 117.0", "type": "TreeMapNode", "weight": 234 }, { "color": "#c33c00", "doubleValue": 118, "label": "118", "labelValue": "118.0", "tooltip": "Label: 118
Weight: 236.0
Value: 118.0", "type": "TreeMapNode", "weight": 236 }, { "color": "#c33c00", "doubleValue": 119, "label": "119", "labelValue": "119.0", "tooltip": "Label: 119
Weight: 238.0
Value: 119.0", "type": "TreeMapNode", "weight": 238 }, { "color": "#c23d00", "doubleValue": 120, "label": "120", "labelValue": "120.0", "tooltip": "Label: 120
Weight: 240.0
Value: 120.0", "type": "TreeMapNode", "weight": 240 }, { "color": "#c23d00", "doubleValue": 121, "label": "121", "labelValue": "121.0", "tooltip": "Label: 121
Weight: 242.0
Value: 121.0", "type": "TreeMapNode", "weight": 242 }, { "color": "#c13e00", "doubleValue": 122, "label": "122", "labelValue": "122.0", "tooltip": "Label: 122
Weight: 244.0
Value: 122.0", "type": "TreeMapNode", "weight": 244 }, { "color": "#c13e00", "doubleValue": 123, "label": "123", "labelValue": "123.0", "tooltip": "Label: 123
Weight: 246.0
Value: 123.0", "type": "TreeMapNode", "weight": 246 }, { "color": "#c03f00", "doubleValue": 124, "label": "124", "labelValue": "124.0", "tooltip": "Label: 124
Weight: 248.0
Value: 124.0", "type": "TreeMapNode", "weight": 248 }, { "color": "#c03f00", "doubleValue": 125, "label": "125", "labelValue": "125.0", "tooltip": "Label: 125
Weight: 250.0
Value: 125.0", "type": "TreeMapNode", "weight": 250 }, { "color": "#bf4000", "doubleValue": 126, "label": "126", "labelValue": "126.0", "tooltip": "Label: 126
Weight: 252.0
Value: 126.0", "type": "TreeMapNode", "weight": 252 }, { "color": "#bf4000", "doubleValue": 127, "label": "127", "labelValue": "127.0", "tooltip": "Label: 127
Weight: 254.0
Value: 127.0", "type": "TreeMapNode", "weight": 254 }, { "color": "#be4100", "doubleValue": 128, "label": "128", "labelValue": "128.0", "tooltip": "Label: 128
Weight: 256.0
Value: 128.0", "type": "TreeMapNode", "weight": 256 }, { "color": "#be4100", "doubleValue": 129, "label": "129", "labelValue": "129.0", "tooltip": "Label: 129
Weight: 258.0
Value: 129.0", "type": "TreeMapNode", "weight": 258 }, { "color": "#bd4200", "doubleValue": 130, "label": "130", "labelValue": "130.0", "tooltip": "Label: 130
Weight: 260.0
Value: 130.0", "type": "TreeMapNode", "weight": 260 }, { "color": "#bd4200", "doubleValue": 131, "label": "131", "labelValue": "131.0", "tooltip": "Label: 131
Weight: 262.0
Value: 131.0", "type": "TreeMapNode", "weight": 262 }, { "color": "#bc4300", "doubleValue": 132, "label": "132", "labelValue": "132.0", "tooltip": "Label: 132
Weight: 264.0
Value: 132.0", "type": "TreeMapNode", "weight": 264 }, { "color": "#bc4300", "doubleValue": 133, "label": "133", "labelValue": "133.0", "tooltip": "Label: 133
Weight: 266.0
Value: 133.0", "type": "TreeMapNode", "weight": 266 }, { "color": "#bb4400", "doubleValue": 134, "label": "134", "labelValue": "134.0", "tooltip": "Label: 134
Weight: 268.0
Value: 134.0", "type": "TreeMapNode", "weight": 268 }, { "color": "#bb4400", "doubleValue": 135, "label": "135", "labelValue": "135.0", "tooltip": "Label: 135
Weight: 270.0
Value: 135.0", "type": "TreeMapNode", "weight": 270 }, { "color": "#ba4500", "doubleValue": 136, "label": "136", "labelValue": "136.0", "tooltip": "Label: 136
Weight: 272.0
Value: 136.0", "type": "TreeMapNode", "weight": 272 }, { "color": "#ba4500", "doubleValue": 137, "label": "137", "labelValue": "137.0", "tooltip": "Label: 137
Weight: 274.0
Value: 137.0", "type": "TreeMapNode", "weight": 274 }, { "color": "#b94600", "doubleValue": 138, "label": "138", "labelValue": "138.0", "tooltip": "Label: 138
Weight: 276.0
Value: 138.0", "type": "TreeMapNode", "weight": 276 }, { "color": "#b84700", "doubleValue": 139, "label": "139", "labelValue": "139.0", "tooltip": "Label: 139
Weight: 278.0
Value: 139.0", "type": "TreeMapNode", "weight": 278 }, { "color": "#b84700", "doubleValue": 140, "label": "140", "labelValue": "140.0", "tooltip": "Label: 140
Weight: 280.0
Value: 140.0", "type": "TreeMapNode", "weight": 280 }, { "color": "#b74800", "doubleValue": 141, "label": "141", "labelValue": "141.0", "tooltip": "Label: 141
Weight: 282.0
Value: 141.0", "type": "TreeMapNode", "weight": 282 }, { "color": "#b74800", "doubleValue": 142, "label": "142", "labelValue": "142.0", "tooltip": "Label: 142
Weight: 284.0
Value: 142.0", "type": "TreeMapNode", "weight": 284 }, { "color": "#b64900", "doubleValue": 143, "label": "143", "labelValue": "143.0", "tooltip": "Label: 143
Weight: 286.0
Value: 143.0", "type": "TreeMapNode", "weight": 286 }, { "color": "#b64900", "doubleValue": 144, "label": "144", "labelValue": "144.0", "tooltip": "Label: 144
Weight: 288.0
Value: 144.0", "type": "TreeMapNode", "weight": 288 }, { "color": "#b54a00", "doubleValue": 145, "label": "145", "labelValue": "145.0", "tooltip": "Label: 145
Weight: 290.0
Value: 145.0", "type": "TreeMapNode", "weight": 290 }, { "color": "#b54a00", "doubleValue": 146, "label": "146", "labelValue": "146.0", "tooltip": "Label: 146
Weight: 292.0
Value: 146.0", "type": "TreeMapNode", "weight": 292 }, { "color": "#b44b00", "doubleValue": 147, "label": "147", "labelValue": "147.0", "tooltip": "Label: 147
Weight: 294.0
Value: 147.0", "type": "TreeMapNode", "weight": 294 }, { "color": "#b44b00", "doubleValue": 148, "label": "148", "labelValue": "148.0", "tooltip": "Label: 148
Weight: 296.0
Value: 148.0", "type": "TreeMapNode", "weight": 296 }, { "color": "#b34c00", "doubleValue": 149, "label": "149", "labelValue": "149.0", "tooltip": "Label: 149
Weight: 298.0
Value: 149.0", "type": "TreeMapNode", "weight": 298 }, { "color": "#b34c00", "doubleValue": 150, "label": "150", "labelValue": "150.0", "tooltip": "Label: 150
Weight: 300.0
Value: 150.0", "type": "TreeMapNode", "weight": 300 }, { "color": "#b24d00", "doubleValue": 151, "label": "151", "labelValue": "151.0", "tooltip": "Label: 151
Weight: 302.0
Value: 151.0", "type": "TreeMapNode", "weight": 302 }, { "color": "#b24d00", "doubleValue": 152, "label": "152", "labelValue": "152.0", "tooltip": "Label: 152
Weight: 304.0
Value: 152.0", "type": "TreeMapNode", "weight": 304 }, { "color": "#b14e00", "doubleValue": 153, "label": "153", "labelValue": "153.0", "tooltip": "Label: 153
Weight: 306.0
Value: 153.0", "type": "TreeMapNode", "weight": 306 }, { "color": "#b14e00", "doubleValue": 154, "label": "154", "labelValue": "154.0", "tooltip": "Label: 154
Weight: 308.0
Value: 154.0", "type": "TreeMapNode", "weight": 308 }, { "color": "#b04f00", "doubleValue": 155, "label": "155", "labelValue": "155.0", "tooltip": "Label: 155
Weight: 310.0
Value: 155.0", "type": "TreeMapNode", "weight": 310 }, { "color": "#b04f00", "doubleValue": 156, "label": "156", "labelValue": "156.0", "tooltip": "Label: 156
Weight: 312.0
Value: 156.0", "type": "TreeMapNode", "weight": 312 }, { "color": "#af5000", "doubleValue": 157, "label": "157", "labelValue": "157.0", "tooltip": "Label: 157
Weight: 314.0
Value: 157.0", "type": "TreeMapNode", "weight": 314 }, { "color": "#af5000", "doubleValue": 158, "label": "158", "labelValue": "158.0", "tooltip": "Label: 158
Weight: 316.0
Value: 158.0", "type": "TreeMapNode", "weight": 316 }, { "color": "#ae5100", "doubleValue": 159, "label": "159", "labelValue": "159.0", "tooltip": "Label: 159
Weight: 318.0
Value: 159.0", "type": "TreeMapNode", "weight": 318 }, { "color": "#ae5100", "doubleValue": 160, "label": "160", "labelValue": "160.0", "tooltip": "Label: 160
Weight: 320.0
Value: 160.0", "type": "TreeMapNode", "weight": 320 }, { "color": "#ad5200", "doubleValue": 161, "label": "161", "labelValue": "161.0", "tooltip": "Label: 161
Weight: 322.0
Value: 161.0", "type": "TreeMapNode", "weight": 322 }, { "color": "#ad5200", "doubleValue": 162, "label": "162", "labelValue": "162.0", "tooltip": "Label: 162
Weight: 324.0
Value: 162.0", "type": "TreeMapNode", "weight": 324 }, { "color": "#ac5300", "doubleValue": 163, "label": "163", "labelValue": "163.0", "tooltip": "Label: 163
Weight: 326.0
Value: 163.0", "type": "TreeMapNode", "weight": 326 }, { "color": "#ac5300", "doubleValue": 164, "label": "164", "labelValue": "164.0", "tooltip": "Label: 164
Weight: 328.0
Value: 164.0", "type": "TreeMapNode", "weight": 328 }, { "color": "#ab5400", "doubleValue": 165, "label": "165", "labelValue": "165.0", "tooltip": "Label: 165
Weight: 330.0
Value: 165.0", "type": "TreeMapNode", "weight": 330 }, { "color": "#ab5400", "doubleValue": 166, "label": "166", "labelValue": "166.0", "tooltip": "Label: 166
Weight: 332.0
Value: 166.0", "type": "TreeMapNode", "weight": 332 }, { "color": "#aa5500", "doubleValue": 167, "label": "167", "labelValue": "167.0", "tooltip": "Label: 167
Weight: 334.0
Value: 167.0", "type": "TreeMapNode", "weight": 334 }, { "color": "#aa5500", "doubleValue": 168, "label": "168", "labelValue": "168.0", "tooltip": "Label: 168
Weight: 336.0
Value: 168.0", "type": "TreeMapNode", "weight": 336 }, { "color": "#a95600", "doubleValue": 169, "label": "169", "labelValue": "169.0", "tooltip": "Label: 169
Weight: 338.0
Value: 169.0", "type": "TreeMapNode", "weight": 338 }, { "color": "#a95600", "doubleValue": 170, "label": "170", "labelValue": "170.0", "tooltip": "Label: 170
Weight: 340.0
Value: 170.0", "type": "TreeMapNode", "weight": 340 }, { "color": "#a85700", "doubleValue": 171, "label": "171", "labelValue": "171.0", "tooltip": "Label: 171
Weight: 342.0
Value: 171.0", "type": "TreeMapNode", "weight": 342 }, { "color": "#a85700", "doubleValue": 172, "label": "172", "labelValue": "172.0", "tooltip": "Label: 172
Weight: 344.0
Value: 172.0", "type": "TreeMapNode", "weight": 344 }, { "color": "#a75800", "doubleValue": 173, "label": "173", "labelValue": "173.0", "tooltip": "Label: 173
Weight: 346.0
Value: 173.0", "type": "TreeMapNode", "weight": 346 }, { "color": "#a75800", "doubleValue": 174, "label": "174", "labelValue": "174.0", "tooltip": "Label: 174
Weight: 348.0
Value: 174.0", "type": "TreeMapNode", "weight": 348 }, { "color": "#a65900", "doubleValue": 175, "label": "175", "labelValue": "175.0", "tooltip": "Label: 175
Weight: 350.0
Value: 175.0", "type": "TreeMapNode", "weight": 350 }, { "color": "#a65900", "doubleValue": 176, "label": "176", "labelValue": "176.0", "tooltip": "Label: 176
Weight: 352.0
Value: 176.0", "type": "TreeMapNode", "weight": 352 }, { "color": "#a55a00", "doubleValue": 177, "label": "177", "labelValue": "177.0", "tooltip": "Label: 177
Weight: 354.0
Value: 177.0", "type": "TreeMapNode", "weight": 354 }, { "color": "#a55a00", "doubleValue": 178, "label": "178", "labelValue": "178.0", "tooltip": "Label: 178
Weight: 356.0
Value: 178.0", "type": "TreeMapNode", "weight": 356 }, { "color": "#a45b00", "doubleValue": 179, "label": "179", "labelValue": "179.0", "tooltip": "Label: 179
Weight: 358.0
Value: 179.0", "type": "TreeMapNode", "weight": 358 }, { "color": "#a45b00", "doubleValue": 180, "label": "180", "labelValue": "180.0", "tooltip": "Label: 180
Weight: 360.0
Value: 180.0", "type": "TreeMapNode", "weight": 360 }, { "color": "#a35c00", "doubleValue": 181, "label": "181", "labelValue": "181.0", "tooltip": "Label: 181
Weight: 362.0
Value: 181.0", "type": "TreeMapNode", "weight": 362 }, { "color": "#a35c00", "doubleValue": 182, "label": "182", "labelValue": "182.0", "tooltip": "Label: 182
Weight: 364.0
Value: 182.0", "type": "TreeMapNode", "weight": 364 }, { "color": "#a25d00", "doubleValue": 183, "label": "183", "labelValue": "183.0", "tooltip": "Label: 183
Weight: 366.0
Value: 183.0", "type": "TreeMapNode", "weight": 366 }, { "color": "#a15e00", "doubleValue": 184, "label": "184", "labelValue": "184.0", "tooltip": "Label: 184
Weight: 368.0
Value: 184.0", "type": "TreeMapNode", "weight": 368 }, { "color": "#a15e00", "doubleValue": 185, "label": "185", "labelValue": "185.0", "tooltip": "Label: 185
Weight: 370.0
Value: 185.0", "type": "TreeMapNode", "weight": 370 }, { "color": "#a05f00", "doubleValue": 186, "label": "186", "labelValue": "186.0", "tooltip": "Label: 186
Weight: 372.0
Value: 186.0", "type": "TreeMapNode", "weight": 372 }, { "color": "#a05f00", "doubleValue": 187, "label": "187", "labelValue": "187.0", "tooltip": "Label: 187
Weight: 374.0
Value: 187.0", "type": "TreeMapNode", "weight": 374 }, { "color": "#9f6000", "doubleValue": 188, "label": "188", "labelValue": "188.0", "tooltip": "Label: 188
Weight: 376.0
Value: 188.0", "type": "TreeMapNode", "weight": 376 }, { "color": "#9f6000", "doubleValue": 189, "label": "189", "labelValue": "189.0", "tooltip": "Label: 189
Weight: 378.0
Value: 189.0", "type": "TreeMapNode", "weight": 378 }, { "color": "#9e6100", "doubleValue": 190, "label": "190", "labelValue": "190.0", "tooltip": "Label: 190
Weight: 380.0
Value: 190.0", "type": "TreeMapNode", "weight": 380 }, { "color": "#9e6100", "doubleValue": 191, "label": "191", "labelValue": "191.0", "tooltip": "Label: 191
Weight: 382.0
Value: 191.0", "type": "TreeMapNode", "weight": 382 }, { "color": "#9d6200", "doubleValue": 192, "label": "192", "labelValue": "192.0", "tooltip": "Label: 192
Weight: 384.0
Value: 192.0", "type": "TreeMapNode", "weight": 384 }, { "color": "#9d6200", "doubleValue": 193, "label": "193", "labelValue": "193.0", "tooltip": "Label: 193
Weight: 386.0
Value: 193.0", "type": "TreeMapNode", "weight": 386 }, { "color": "#9c6300", "doubleValue": 194, "label": "194", "labelValue": "194.0", "tooltip": "Label: 194
Weight: 388.0
Value: 194.0", "type": "TreeMapNode", "weight": 388 }, { "color": "#9c6300", "doubleValue": 195, "label": "195", "labelValue": "195.0", "tooltip": "Label: 195
Weight: 390.0
Value: 195.0", "type": "TreeMapNode", "weight": 390 }, { "color": "#9b6400", "doubleValue": 196, "label": "196", "labelValue": "196.0", "tooltip": "Label: 196
Weight: 392.0
Value: 196.0", "type": "TreeMapNode", "weight": 392 }, { "color": "#9b6400", "doubleValue": 197, "label": "197", "labelValue": "197.0", "tooltip": "Label: 197
Weight: 394.0
Value: 197.0", "type": "TreeMapNode", "weight": 394 }, { "color": "#9a6500", "doubleValue": 198, "label": "198", "labelValue": "198.0", "tooltip": "Label: 198
Weight: 396.0
Value: 198.0", "type": "TreeMapNode", "weight": 396 }, { "color": "#9a6500", "doubleValue": 199, "label": "199", "labelValue": "199.0", "tooltip": "Label: 199
Weight: 398.0
Value: 199.0", "type": "TreeMapNode", "weight": 398 }, { "color": "#996600", "doubleValue": 200, "label": "200", "labelValue": "200.0", "tooltip": "Label: 200
Weight: 400.0
Value: 200.0", "type": "TreeMapNode", "weight": 400 }, { "color": "#996600", "doubleValue": 201, "label": "201", "labelValue": "201.0", "tooltip": "Label: 201
Weight: 402.0
Value: 201.0", "type": "TreeMapNode", "weight": 402 }, { "color": "#986700", "doubleValue": 202, "label": "202", "labelValue": "202.0", "tooltip": "Label: 202
Weight: 404.0
Value: 202.0", "type": "TreeMapNode", "weight": 404 }, { "color": "#986700", "doubleValue": 203, "label": "203", "labelValue": "203.0", "tooltip": "Label: 203
Weight: 406.0
Value: 203.0", "type": "TreeMapNode", "weight": 406 }, { "color": "#976800", "doubleValue": 204, "label": "204", "labelValue": "204.0", "tooltip": "Label: 204
Weight: 408.0
Value: 204.0", "type": "TreeMapNode", "weight": 408 }, { "color": "#976800", "doubleValue": 205, "label": "205", "labelValue": "205.0", "tooltip": "Label: 205
Weight: 410.0
Value: 205.0", "type": "TreeMapNode", "weight": 410 }, { "color": "#966900", "doubleValue": 206, "label": "206", "labelValue": "206.0", "tooltip": "Label: 206
Weight: 412.0
Value: 206.0", "type": "TreeMapNode", "weight": 412 }, { "color": "#966900", "doubleValue": 207, "label": "207", "labelValue": "207.0", "tooltip": "Label: 207
Weight: 414.0
Value: 207.0", "type": "TreeMapNode", "weight": 414 }, { "color": "#956a00", "doubleValue": 208, "label": "208", "labelValue": "208.0", "tooltip": "Label: 208
Weight: 416.0
Value: 208.0", "type": "TreeMapNode", "weight": 416 }, { "color": "#956a00", "doubleValue": 209, "label": "209", "labelValue": "209.0", "tooltip": "Label: 209
Weight: 418.0
Value: 209.0", "type": "TreeMapNode", "weight": 418 }, { "color": "#946b00", "doubleValue": 210, "label": "210", "labelValue": "210.0", "tooltip": "Label: 210
Weight: 420.0
Value: 210.0", "type": "TreeMapNode", "weight": 420 }, { "color": "#946b00", "doubleValue": 211, "label": "211", "labelValue": "211.0", "tooltip": "Label: 211
Weight: 422.0
Value: 211.0", "type": "TreeMapNode", "weight": 422 }, { "color": "#936c00", "doubleValue": 212, "label": "212", "labelValue": "212.0", "tooltip": "Label: 212
Weight: 424.0
Value: 212.0", "type": "TreeMapNode", "weight": 424 }, { "color": "#936c00", "doubleValue": 213, "label": "213", "labelValue": "213.0", "tooltip": "Label: 213
Weight: 426.0
Value: 213.0", "type": "TreeMapNode", "weight": 426 }, { "color": "#926d00", "doubleValue": 214, "label": "214", "labelValue": "214.0", "tooltip": "Label: 214
Weight: 428.0
Value: 214.0", "type": "TreeMapNode", "weight": 428 }, { "color": "#926d00", "doubleValue": 215, "label": "215", "labelValue": "215.0", "tooltip": "Label: 215
Weight: 430.0
Value: 215.0", "type": "TreeMapNode", "weight": 430 }, { "color": "#916e00", "doubleValue": 216, "label": "216", "labelValue": "216.0", "tooltip": "Label: 216
Weight: 432.0
Value: 216.0", "type": "TreeMapNode", "weight": 432 }, { "color": "#916e00", "doubleValue": 217, "label": "217", "labelValue": "217.0", "tooltip": "Label: 217
Weight: 434.0
Value: 217.0", "type": "TreeMapNode", "weight": 434 }, { "color": "#906f00", "doubleValue": 218, "label": "218", "labelValue": "218.0", "tooltip": "Label: 218
Weight: 436.0
Value: 218.0", "type": "TreeMapNode", "weight": 436 }, { "color": "#906f00", "doubleValue": 219, "label": "219", "labelValue": "219.0", "tooltip": "Label: 219
Weight: 438.0
Value: 219.0", "type": "TreeMapNode", "weight": 438 }, { "color": "#8f7000", "doubleValue": 220, "label": "220", "labelValue": "220.0", "tooltip": "Label: 220
Weight: 440.0
Value: 220.0", "type": "TreeMapNode", "weight": 440 }, { "color": "#8f7000", "doubleValue": 221, "label": "221", "labelValue": "221.0", "tooltip": "Label: 221
Weight: 442.0
Value: 221.0", "type": "TreeMapNode", "weight": 442 }, { "color": "#8e7100", "doubleValue": 222, "label": "222", "labelValue": "222.0", "tooltip": "Label: 222
Weight: 444.0
Value: 222.0", "type": "TreeMapNode", "weight": 444 }, { "color": "#8e7100", "doubleValue": 223, "label": "223", "labelValue": "223.0", "tooltip": "Label: 223
Weight: 446.0
Value: 223.0", "type": "TreeMapNode", "weight": 446 }, { "color": "#8d7200", "doubleValue": 224, "label": "224", "labelValue": "224.0", "tooltip": "Label: 224
Weight: 448.0
Value: 224.0", "type": "TreeMapNode", "weight": 448 }, { "color": "#8d7200", "doubleValue": 225, "label": "225", "labelValue": "225.0", "tooltip": "Label: 225
Weight: 450.0
Value: 225.0", "type": "TreeMapNode", "weight": 450 }, { "color": "#8c7300", "doubleValue": 226, "label": "226", "labelValue": "226.0", "tooltip": "Label: 226
Weight: 452.0
Value: 226.0", "type": "TreeMapNode", "weight": 452 }, { "color": "#8c7300", "doubleValue": 227, "label": "227", "labelValue": "227.0", "tooltip": "Label: 227
Weight: 454.0
Value: 227.0", "type": "TreeMapNode", "weight": 454 }, { "color": "#8b7400", "doubleValue": 228, "label": "228", "labelValue": "228.0", "tooltip": "Label: 228
Weight: 456.0
Value: 228.0", "type": "TreeMapNode", "weight": 456 }, { "color": "#8a7500", "doubleValue": 229, "label": "229", "labelValue": "229.0", "tooltip": "Label: 229
Weight: 458.0
Value: 229.0", "type": "TreeMapNode", "weight": 458 }, { "color": "#8a7500", "doubleValue": 230, "label": "230", "labelValue": "230.0", "tooltip": "Label: 230
Weight: 460.0
Value: 230.0", "type": "TreeMapNode", "weight": 460 }, { "color": "#897600", "doubleValue": 231, "label": "231", "labelValue": "231.0", "tooltip": "Label: 231
Weight: 462.0
Value: 231.0", "type": "TreeMapNode", "weight": 462 }, { "color": "#897600", "doubleValue": 232, "label": "232", "labelValue": "232.0", "tooltip": "Label: 232
Weight: 464.0
Value: 232.0", "type": "TreeMapNode", "weight": 464 }, { "color": "#887700", "doubleValue": 233, "label": "233", "labelValue": "233.0", "tooltip": "Label: 233
Weight: 466.0
Value: 233.0", "type": "TreeMapNode", "weight": 466 }, { "color": "#887700", "doubleValue": 234, "label": "234", "labelValue": "234.0", "tooltip": "Label: 234
Weight: 468.0
Value: 234.0", "type": "TreeMapNode", "weight": 468 }, { "color": "#877800", "doubleValue": 235, "label": "235", "labelValue": "235.0", "tooltip": "Label: 235
Weight: 470.0
Value: 235.0", "type": "TreeMapNode", "weight": 470 }, { "color": "#877800", "doubleValue": 236, "label": "236", "labelValue": "236.0", "tooltip": "Label: 236
Weight: 472.0
Value: 236.0", "type": "TreeMapNode", "weight": 472 }, { "color": "#867900", "doubleValue": 237, "label": "237", "labelValue": "237.0", "tooltip": "Label: 237
Weight: 474.0
Value: 237.0", "type": "TreeMapNode", "weight": 474 }, { "color": "#867900", "doubleValue": 238, "label": "238", "labelValue": "238.0", "tooltip": "Label: 238
Weight: 476.0
Value: 238.0", "type": "TreeMapNode", "weight": 476 }, { "color": "#857a00", "doubleValue": 239, "label": "239", "labelValue": "239.0", "tooltip": "Label: 239
Weight: 478.0
Value: 239.0", "type": "TreeMapNode", "weight": 478 }, { "color": "#857a00", "doubleValue": 240, "label": "240", "labelValue": "240.0", "tooltip": "Label: 240
Weight: 480.0
Value: 240.0", "type": "TreeMapNode", "weight": 480 }, { "color": "#847b00", "doubleValue": 241, "label": "241", "labelValue": "241.0", "tooltip": "Label: 241
Weight: 482.0
Value: 241.0", "type": "TreeMapNode", "weight": 482 }, { "color": "#847b00", "doubleValue": 242, "label": "242", "labelValue": "242.0", "tooltip": "Label: 242
Weight: 484.0
Value: 242.0", "type": "TreeMapNode", "weight": 484 }, { "color": "#837c00", "doubleValue": 243, "label": "243", "labelValue": "243.0", "tooltip": "Label: 243
Weight: 486.0
Value: 243.0", "type": "TreeMapNode", "weight": 486 }, { "color": "#837c00", "doubleValue": 244, "label": "244", "labelValue": "244.0", "tooltip": "Label: 244
Weight: 488.0
Value: 244.0", "type": "TreeMapNode", "weight": 488 }, { "color": "#827d00", "doubleValue": 245, "label": "245", "labelValue": "245.0", "tooltip": "Label: 245
Weight: 490.0
Value: 245.0", "type": "TreeMapNode", "weight": 490 }, { "color": "#827d00", "doubleValue": 246, "label": "246", "labelValue": "246.0", "tooltip": "Label: 246
Weight: 492.0
Value: 246.0", "type": "TreeMapNode", "weight": 492 }, { "color": "#817e00", "doubleValue": 247, "label": "247", "labelValue": "247.0", "tooltip": "Label: 247
Weight: 494.0
Value: 247.0", "type": "TreeMapNode", "weight": 494 }, { "color": "#817e00", "doubleValue": 248, "label": "248", "labelValue": "248.0", "tooltip": "Label: 248
Weight: 496.0
Value: 248.0", "type": "TreeMapNode", "weight": 496 }, { "color": "#807f00", "doubleValue": 249, "label": "249", "labelValue": "249.0", "tooltip": "Label: 249
Weight: 498.0
Value: 249.0", "type": "TreeMapNode", "weight": 498 }, { "color": "#807f00", "doubleValue": 250, "label": "250", "labelValue": "250.0", "tooltip": "Label: 250
Weight: 500.0
Value: 250.0", "type": "TreeMapNode", "weight": 500 }, { "color": "#7f8000", "doubleValue": 251, "label": "251", "labelValue": "251.0", "tooltip": "Label: 251
Weight: 502.0
Value: 251.0", "type": "TreeMapNode", "weight": 502 }, { "color": "#7f8000", "doubleValue": 252, "label": "252", "labelValue": "252.0", "tooltip": "Label: 252
Weight: 504.0
Value: 252.0", "type": "TreeMapNode", "weight": 504 }, { "color": "#7e8100", "doubleValue": 253, "label": "253", "labelValue": "253.0", "tooltip": "Label: 253
Weight: 506.0
Value: 253.0", "type": "TreeMapNode", "weight": 506 }, { "color": "#7e8100", "doubleValue": 254, "label": "254", "labelValue": "254.0", "tooltip": "Label: 254
Weight: 508.0
Value: 254.0", "type": "TreeMapNode", "weight": 508 }, { "color": "#7d8200", "doubleValue": 255, "label": "255", "labelValue": "255.0", "tooltip": "Label: 255
Weight: 510.0
Value: 255.0", "type": "TreeMapNode", "weight": 510 }, { "color": "#7d8200", "doubleValue": 256, "label": "256", "labelValue": "256.0", "tooltip": "Label: 256
Weight: 512.0
Value: 256.0", "type": "TreeMapNode", "weight": 512 }, { "color": "#7c8300", "doubleValue": 257, "label": "257", "labelValue": "257.0", "tooltip": "Label: 257
Weight: 514.0
Value: 257.0", "type": "TreeMapNode", "weight": 514 }, { "color": "#7c8300", "doubleValue": 258, "label": "258", "labelValue": "258.0", "tooltip": "Label: 258
Weight: 516.0
Value: 258.0", "type": "TreeMapNode", "weight": 516 }, { "color": "#7b8400", "doubleValue": 259, "label": "259", "labelValue": "259.0", "tooltip": "Label: 259
Weight: 518.0
Value: 259.0", "type": "TreeMapNode", "weight": 518 }, { "color": "#7b8400", "doubleValue": 260, "label": "260", "labelValue": "260.0", "tooltip": "Label: 260
Weight: 520.0
Value: 260.0", "type": "TreeMapNode", "weight": 520 }, { "color": "#7a8500", "doubleValue": 261, "label": "261", "labelValue": "261.0", "tooltip": "Label: 261
Weight: 522.0
Value: 261.0", "type": "TreeMapNode", "weight": 522 }, { "color": "#7a8500", "doubleValue": 262, "label": "262", "labelValue": "262.0", "tooltip": "Label: 262
Weight: 524.0
Value: 262.0", "type": "TreeMapNode", "weight": 524 }, { "color": "#798600", "doubleValue": 263, "label": "263", "labelValue": "263.0", "tooltip": "Label: 263
Weight: 526.0
Value: 263.0", "type": "TreeMapNode", "weight": 526 }, { "color": "#798600", "doubleValue": 264, "label": "264", "labelValue": "264.0", "tooltip": "Label: 264
Weight: 528.0
Value: 264.0", "type": "TreeMapNode", "weight": 528 }, { "color": "#788700", "doubleValue": 265, "label": "265", "labelValue": "265.0", "tooltip": "Label: 265
Weight: 530.0
Value: 265.0", "type": "TreeMapNode", "weight": 530 }, { "color": "#788700", "doubleValue": 266, "label": "266", "labelValue": "266.0", "tooltip": "Label: 266
Weight: 532.0
Value: 266.0", "type": "TreeMapNode", "weight": 532 }, { "color": "#778800", "doubleValue": 267, "label": "267", "labelValue": "267.0", "tooltip": "Label: 267
Weight: 534.0
Value: 267.0", "type": "TreeMapNode", "weight": 534 }, { "color": "#778800", "doubleValue": 268, "label": "268", "labelValue": "268.0", "tooltip": "Label: 268
Weight: 536.0
Value: 268.0", "type": "TreeMapNode", "weight": 536 }, { "color": "#768900", "doubleValue": 269, "label": "269", "labelValue": "269.0", "tooltip": "Label: 269
Weight: 538.0
Value: 269.0", "type": "TreeMapNode", "weight": 538 }, { "color": "#768900", "doubleValue": 270, "label": "270", "labelValue": "270.0", "tooltip": "Label: 270
Weight: 540.0
Value: 270.0", "type": "TreeMapNode", "weight": 540 }, { "color": "#758a00", "doubleValue": 271, "label": "271", "labelValue": "271.0", "tooltip": "Label: 271
Weight: 542.0
Value: 271.0", "type": "TreeMapNode", "weight": 542 }, { "color": "#758a00", "doubleValue": 272, "label": "272", "labelValue": "272.0", "tooltip": "Label: 272
Weight: 544.0
Value: 272.0", "type": "TreeMapNode", "weight": 544 }, { "color": "#748b00", "doubleValue": 273, "label": "273", "labelValue": "273.0", "tooltip": "Label: 273
Weight: 546.0
Value: 273.0", "type": "TreeMapNode", "weight": 546 }, { "color": "#738c00", "doubleValue": 274, "label": "274", "labelValue": "274.0", "tooltip": "Label: 274
Weight: 548.0
Value: 274.0", "type": "TreeMapNode", "weight": 548 }, { "color": "#738c00", "doubleValue": 275, "label": "275", "labelValue": "275.0", "tooltip": "Label: 275
Weight: 550.0
Value: 275.0", "type": "TreeMapNode", "weight": 550 }, { "color": "#728d00", "doubleValue": 276, "label": "276", "labelValue": "276.0", "tooltip": "Label: 276
Weight: 552.0
Value: 276.0", "type": "TreeMapNode", "weight": 552 }, { "color": "#728d00", "doubleValue": 277, "label": "277", "labelValue": "277.0", "tooltip": "Label: 277
Weight: 554.0
Value: 277.0", "type": "TreeMapNode", "weight": 554 }, { "color": "#718e00", "doubleValue": 278, "label": "278", "labelValue": "278.0", "tooltip": "Label: 278
Weight: 556.0
Value: 278.0", "type": "TreeMapNode", "weight": 556 }, { "color": "#718e00", "doubleValue": 279, "label": "279", "labelValue": "279.0", "tooltip": "Label: 279
Weight: 558.0
Value: 279.0", "type": "TreeMapNode", "weight": 558 }, { "color": "#708f00", "doubleValue": 280, "label": "280", "labelValue": "280.0", "tooltip": "Label: 280
Weight: 560.0
Value: 280.0", "type": "TreeMapNode", "weight": 560 }, { "color": "#708f00", "doubleValue": 281, "label": "281", "labelValue": "281.0", "tooltip": "Label: 281
Weight: 562.0
Value: 281.0", "type": "TreeMapNode", "weight": 562 }, { "color": "#6f9000", "doubleValue": 282, "label": "282", "labelValue": "282.0", "tooltip": "Label: 282
Weight: 564.0
Value: 282.0", "type": "TreeMapNode", "weight": 564 }, { "color": "#6f9000", "doubleValue": 283, "label": "283", "labelValue": "283.0", "tooltip": "Label: 283
Weight: 566.0
Value: 283.0", "type": "TreeMapNode", "weight": 566 }, { "color": "#6e9100", "doubleValue": 284, "label": "284", "labelValue": "284.0", "tooltip": "Label: 284
Weight: 568.0
Value: 284.0", "type": "TreeMapNode", "weight": 568 }, { "color": "#6e9100", "doubleValue": 285, "label": "285", "labelValue": "285.0", "tooltip": "Label: 285
Weight: 570.0
Value: 285.0", "type": "TreeMapNode", "weight": 570 }, { "color": "#6d9200", "doubleValue": 286, "label": "286", "labelValue": "286.0", "tooltip": "Label: 286
Weight: 572.0
Value: 286.0", "type": "TreeMapNode", "weight": 572 }, { "color": "#6d9200", "doubleValue": 287, "label": "287", "labelValue": "287.0", "tooltip": "Label: 287
Weight: 574.0
Value: 287.0", "type": "TreeMapNode", "weight": 574 }, { "color": "#6c9300", "doubleValue": 288, "label": "288", "labelValue": "288.0", "tooltip": "Label: 288
Weight: 576.0
Value: 288.0", "type": "TreeMapNode", "weight": 576 }, { "color": "#6c9300", "doubleValue": 289, "label": "289", "labelValue": "289.0", "tooltip": "Label: 289
Weight: 578.0
Value: 289.0", "type": "TreeMapNode", "weight": 578 }, { "color": "#6b9400", "doubleValue": 290, "label": "290", "labelValue": "290.0", "tooltip": "Label: 290
Weight: 580.0
Value: 290.0", "type": "TreeMapNode", "weight": 580 }, { "color": "#6b9400", "doubleValue": 291, "label": "291", "labelValue": "291.0", "tooltip": "Label: 291
Weight: 582.0
Value: 291.0", "type": "TreeMapNode", "weight": 582 }, { "color": "#6a9500", "doubleValue": 292, "label": "292", "labelValue": "292.0", "tooltip": "Label: 292
Weight: 584.0
Value: 292.0", "type": "TreeMapNode", "weight": 584 }, { "color": "#6a9500", "doubleValue": 293, "label": "293", "labelValue": "293.0", "tooltip": "Label: 293
Weight: 586.0
Value: 293.0", "type": "TreeMapNode", "weight": 586 }, { "color": "#699600", "doubleValue": 294, "label": "294", "labelValue": "294.0", "tooltip": "Label: 294
Weight: 588.0
Value: 294.0", "type": "TreeMapNode", "weight": 588 }, { "color": "#699600", "doubleValue": 295, "label": "295", "labelValue": "295.0", "tooltip": "Label: 295
Weight: 590.0
Value: 295.0", "type": "TreeMapNode", "weight": 590 }, { "color": "#689700", "doubleValue": 296, "label": "296", "labelValue": "296.0", "tooltip": "Label: 296
Weight: 592.0
Value: 296.0", "type": "TreeMapNode", "weight": 592 }, { "color": "#689700", "doubleValue": 297, "label": "297", "labelValue": "297.0", "tooltip": "Label: 297
Weight: 594.0
Value: 297.0", "type": "TreeMapNode", "weight": 594 }, { "color": "#679800", "doubleValue": 298, "label": "298", "labelValue": "298.0", "tooltip": "Label: 298
Weight: 596.0
Value: 298.0", "type": "TreeMapNode", "weight": 596 }, { "color": "#679800", "doubleValue": 299, "label": "299", "labelValue": "299.0", "tooltip": "Label: 299
Weight: 598.0
Value: 299.0", "type": "TreeMapNode", "weight": 598 }, { "color": "#669900", "doubleValue": 300, "label": "300", "labelValue": "300.0", "tooltip": "Label: 300
Weight: 600.0
Value: 300.0", "type": "TreeMapNode", "weight": 600 }, { "color": "#669900", "doubleValue": 301, "label": "301", "labelValue": "301.0", "tooltip": "Label: 301
Weight: 602.0
Value: 301.0", "type": "TreeMapNode", "weight": 602 }, { "color": "#659a00", "doubleValue": 302, "label": "302", "labelValue": "302.0", "tooltip": "Label: 302
Weight: 604.0
Value: 302.0", "type": "TreeMapNode", "weight": 604 }, { "color": "#659a00", "doubleValue": 303, "label": "303", "labelValue": "303.0", "tooltip": "Label: 303
Weight: 606.0
Value: 303.0", "type": "TreeMapNode", "weight": 606 }, { "color": "#649b00", "doubleValue": 304, "label": "304", "labelValue": "304.0", "tooltip": "Label: 304
Weight: 608.0
Value: 304.0", "type": "TreeMapNode", "weight": 608 }, { "color": "#649b00", "doubleValue": 305, "label": "305", "labelValue": "305.0", "tooltip": "Label: 305
Weight: 610.0
Value: 305.0", "type": "TreeMapNode", "weight": 610 }, { "color": "#639c00", "doubleValue": 306, "label": "306", "labelValue": "306.0", "tooltip": "Label: 306
Weight: 612.0
Value: 306.0", "type": "TreeMapNode", "weight": 612 }, { "color": "#639c00", "doubleValue": 307, "label": "307", "labelValue": "307.0", "tooltip": "Label: 307
Weight: 614.0
Value: 307.0", "type": "TreeMapNode", "weight": 614 }, { "color": "#629d00", "doubleValue": 308, "label": "308", "labelValue": "308.0", "tooltip": "Label: 308
Weight: 616.0
Value: 308.0", "type": "TreeMapNode", "weight": 616 }, { "color": "#629d00", "doubleValue": 309, "label": "309", "labelValue": "309.0", "tooltip": "Label: 309
Weight: 618.0
Value: 309.0", "type": "TreeMapNode", "weight": 618 }, { "color": "#619e00", "doubleValue": 310, "label": "310", "labelValue": "310.0", "tooltip": "Label: 310
Weight: 620.0
Value: 310.0", "type": "TreeMapNode", "weight": 620 }, { "color": "#619e00", "doubleValue": 311, "label": "311", "labelValue": "311.0", "tooltip": "Label: 311
Weight: 622.0
Value: 311.0", "type": "TreeMapNode", "weight": 622 }, { "color": "#609f00", "doubleValue": 312, "label": "312", "labelValue": "312.0", "tooltip": "Label: 312
Weight: 624.0
Value: 312.0", "type": "TreeMapNode", "weight": 624 }, { "color": "#609f00", "doubleValue": 313, "label": "313", "labelValue": "313.0", "tooltip": "Label: 313
Weight: 626.0
Value: 313.0", "type": "TreeMapNode", "weight": 626 }, { "color": "#5fa000", "doubleValue": 314, "label": "314", "labelValue": "314.0", "tooltip": "Label: 314
Weight: 628.0
Value: 314.0", "type": "TreeMapNode", "weight": 628 }, { "color": "#5fa000", "doubleValue": 315, "label": "315", "labelValue": "315.0", "tooltip": "Label: 315
Weight: 630.0
Value: 315.0", "type": "TreeMapNode", "weight": 630 }, { "color": "#5ea100", "doubleValue": 316, "label": "316", "labelValue": "316.0", "tooltip": "Label: 316
Weight: 632.0
Value: 316.0", "type": "TreeMapNode", "weight": 632 }, { "color": "#5ea100", "doubleValue": 317, "label": "317", "labelValue": "317.0", "tooltip": "Label: 317
Weight: 634.0
Value: 317.0", "type": "TreeMapNode", "weight": 634 }, { "color": "#5da200", "doubleValue": 318, "label": "318", "labelValue": "318.0", "tooltip": "Label: 318
Weight: 636.0
Value: 318.0", "type": "TreeMapNode", "weight": 636 }, { "color": "#5ca300", "doubleValue": 319, "label": "319", "labelValue": "319.0", "tooltip": "Label: 319
Weight: 638.0
Value: 319.0", "type": "TreeMapNode", "weight": 638 }, { "color": "#5ca300", "doubleValue": 320, "label": "320", "labelValue": "320.0", "tooltip": "Label: 320
Weight: 640.0
Value: 320.0", "type": "TreeMapNode", "weight": 640 }, { "color": "#5ba400", "doubleValue": 321, "label": "321", "labelValue": "321.0", "tooltip": "Label: 321
Weight: 642.0
Value: 321.0", "type": "TreeMapNode", "weight": 642 }, { "color": "#5ba400", "doubleValue": 322, "label": "322", "labelValue": "322.0", "tooltip": "Label: 322
Weight: 644.0
Value: 322.0", "type": "TreeMapNode", "weight": 644 }, { "color": "#5aa500", "doubleValue": 323, "label": "323", "labelValue": "323.0", "tooltip": "Label: 323
Weight: 646.0
Value: 323.0", "type": "TreeMapNode", "weight": 646 }, { "color": "#5aa500", "doubleValue": 324, "label": "324", "labelValue": "324.0", "tooltip": "Label: 324
Weight: 648.0
Value: 324.0", "type": "TreeMapNode", "weight": 648 }, { "color": "#59a600", "doubleValue": 325, "label": "325", "labelValue": "325.0", "tooltip": "Label: 325
Weight: 650.0
Value: 325.0", "type": "TreeMapNode", "weight": 650 }, { "color": "#59a600", "doubleValue": 326, "label": "326", "labelValue": "326.0", "tooltip": "Label: 326
Weight: 652.0
Value: 326.0", "type": "TreeMapNode", "weight": 652 }, { "color": "#58a700", "doubleValue": 327, "label": "327", "labelValue": "327.0", "tooltip": "Label: 327
Weight: 654.0
Value: 327.0", "type": "TreeMapNode", "weight": 654 }, { "color": "#58a700", "doubleValue": 328, "label": "328", "labelValue": "328.0", "tooltip": "Label: 328
Weight: 656.0
Value: 328.0", "type": "TreeMapNode", "weight": 656 }, { "color": "#57a800", "doubleValue": 329, "label": "329", "labelValue": "329.0", "tooltip": "Label: 329
Weight: 658.0
Value: 329.0", "type": "TreeMapNode", "weight": 658 }, { "color": "#57a800", "doubleValue": 330, "label": "330", "labelValue": "330.0", "tooltip": "Label: 330
Weight: 660.0
Value: 330.0", "type": "TreeMapNode", "weight": 660 }, { "color": "#56a900", "doubleValue": 331, "label": "331", "labelValue": "331.0", "tooltip": "Label: 331
Weight: 662.0
Value: 331.0", "type": "TreeMapNode", "weight": 662 }, { "color": "#56a900", "doubleValue": 332, "label": "332", "labelValue": "332.0", "tooltip": "Label: 332
Weight: 664.0
Value: 332.0", "type": "TreeMapNode", "weight": 664 }, { "color": "#55aa00", "doubleValue": 333, "label": "333", "labelValue": "333.0", "tooltip": "Label: 333
Weight: 666.0
Value: 333.0", "type": "TreeMapNode", "weight": 666 }, { "color": "#55aa00", "doubleValue": 334, "label": "334", "labelValue": "334.0", "tooltip": "Label: 334
Weight: 668.0
Value: 334.0", "type": "TreeMapNode", "weight": 668 }, { "color": "#54ab00", "doubleValue": 335, "label": "335", "labelValue": "335.0", "tooltip": "Label: 335
Weight: 670.0
Value: 335.0", "type": "TreeMapNode", "weight": 670 }, { "color": "#54ab00", "doubleValue": 336, "label": "336", "labelValue": "336.0", "tooltip": "Label: 336
Weight: 672.0
Value: 336.0", "type": "TreeMapNode", "weight": 672 }, { "color": "#53ac00", "doubleValue": 337, "label": "337", "labelValue": "337.0", "tooltip": "Label: 337
Weight: 674.0
Value: 337.0", "type": "TreeMapNode", "weight": 674 }, { "color": "#53ac00", "doubleValue": 338, "label": "338", "labelValue": "338.0", "tooltip": "Label: 338
Weight: 676.0
Value: 338.0", "type": "TreeMapNode", "weight": 676 }, { "color": "#52ad00", "doubleValue": 339, "label": "339", "labelValue": "339.0", "tooltip": "Label: 339
Weight: 678.0
Value: 339.0", "type": "TreeMapNode", "weight": 678 }, { "color": "#52ad00", "doubleValue": 340, "label": "340", "labelValue": "340.0", "tooltip": "Label: 340
Weight: 680.0
Value: 340.0", "type": "TreeMapNode", "weight": 680 }, { "color": "#51ae00", "doubleValue": 341, "label": "341", "labelValue": "341.0", "tooltip": "Label: 341
Weight: 682.0
Value: 341.0", "type": "TreeMapNode", "weight": 682 }, { "color": "#51ae00", "doubleValue": 342, "label": "342", "labelValue": "342.0", "tooltip": "Label: 342
Weight: 684.0
Value: 342.0", "type": "TreeMapNode", "weight": 684 }, { "color": "#50af00", "doubleValue": 343, "label": "343", "labelValue": "343.0", "tooltip": "Label: 343
Weight: 686.0
Value: 343.0", "type": "TreeMapNode", "weight": 686 }, { "color": "#50af00", "doubleValue": 344, "label": "344", "labelValue": "344.0", "tooltip": "Label: 344
Weight: 688.0
Value: 344.0", "type": "TreeMapNode", "weight": 688 }, { "color": "#4fb000", "doubleValue": 345, "label": "345", "labelValue": "345.0", "tooltip": "Label: 345
Weight: 690.0
Value: 345.0", "type": "TreeMapNode", "weight": 690 }, { "color": "#4fb000", "doubleValue": 346, "label": "346", "labelValue": "346.0", "tooltip": "Label: 346
Weight: 692.0
Value: 346.0", "type": "TreeMapNode", "weight": 692 }, { "color": "#4eb100", "doubleValue": 347, "label": "347", "labelValue": "347.0", "tooltip": "Label: 347
Weight: 694.0
Value: 347.0", "type": "TreeMapNode", "weight": 694 }, { "color": "#4eb100", "doubleValue": 348, "label": "348", "labelValue": "348.0", "tooltip": "Label: 348
Weight: 696.0
Value: 348.0", "type": "TreeMapNode", "weight": 696 }, { "color": "#4db200", "doubleValue": 349, "label": "349", "labelValue": "349.0", "tooltip": "Label: 349
Weight: 698.0
Value: 349.0", "type": "TreeMapNode", "weight": 698 }, { "color": "#4db200", "doubleValue": 350, "label": "350", "labelValue": "350.0", "tooltip": "Label: 350
Weight: 700.0
Value: 350.0", "type": "TreeMapNode", "weight": 700 }, { "color": "#4cb300", "doubleValue": 351, "label": "351", "labelValue": "351.0", "tooltip": "Label: 351
Weight: 702.0
Value: 351.0", "type": "TreeMapNode", "weight": 702 }, { "color": "#4cb300", "doubleValue": 352, "label": "352", "labelValue": "352.0", "tooltip": "Label: 352
Weight: 704.0
Value: 352.0", "type": "TreeMapNode", "weight": 704 }, { "color": "#4bb400", "doubleValue": 353, "label": "353", "labelValue": "353.0", "tooltip": "Label: 353
Weight: 706.0
Value: 353.0", "type": "TreeMapNode", "weight": 706 }, { "color": "#4bb400", "doubleValue": 354, "label": "354", "labelValue": "354.0", "tooltip": "Label: 354
Weight: 708.0
Value: 354.0", "type": "TreeMapNode", "weight": 708 }, { "color": "#4ab500", "doubleValue": 355, "label": "355", "labelValue": "355.0", "tooltip": "Label: 355
Weight: 710.0
Value: 355.0", "type": "TreeMapNode", "weight": 710 }, { "color": "#4ab500", "doubleValue": 356, "label": "356", "labelValue": "356.0", "tooltip": "Label: 356
Weight: 712.0
Value: 356.0", "type": "TreeMapNode", "weight": 712 }, { "color": "#49b600", "doubleValue": 357, "label": "357", "labelValue": "357.0", "tooltip": "Label: 357
Weight: 714.0
Value: 357.0", "type": "TreeMapNode", "weight": 714 }, { "color": "#49b600", "doubleValue": 358, "label": "358", "labelValue": "358.0", "tooltip": "Label: 358
Weight: 716.0
Value: 358.0", "type": "TreeMapNode", "weight": 716 }, { "color": "#48b700", "doubleValue": 359, "label": "359", "labelValue": "359.0", "tooltip": "Label: 359
Weight: 718.0
Value: 359.0", "type": "TreeMapNode", "weight": 718 }, { "color": "#48b700", "doubleValue": 360, "label": "360", "labelValue": "360.0", "tooltip": "Label: 360
Weight: 720.0
Value: 360.0", "type": "TreeMapNode", "weight": 720 }, { "color": "#47b800", "doubleValue": 361, "label": "361", "labelValue": "361.0", "tooltip": "Label: 361
Weight: 722.0
Value: 361.0", "type": "TreeMapNode", "weight": 722 }, { "color": "#47b800", "doubleValue": 362, "label": "362", "labelValue": "362.0", "tooltip": "Label: 362
Weight: 724.0
Value: 362.0", "type": "TreeMapNode", "weight": 724 }, { "color": "#46b900", "doubleValue": 363, "label": "363", "labelValue": "363.0", "tooltip": "Label: 363
Weight: 726.0
Value: 363.0", "type": "TreeMapNode", "weight": 726 }, { "color": "#45ba00", "doubleValue": 364, "label": "364", "labelValue": "364.0", "tooltip": "Label: 364
Weight: 728.0
Value: 364.0", "type": "TreeMapNode", "weight": 728 }, { "color": "#45ba00", "doubleValue": 365, "label": "365", "labelValue": "365.0", "tooltip": "Label: 365
Weight: 730.0
Value: 365.0", "type": "TreeMapNode", "weight": 730 }, { "color": "#44bb00", "doubleValue": 366, "label": "366", "labelValue": "366.0", "tooltip": "Label: 366
Weight: 732.0
Value: 366.0", "type": "TreeMapNode", "weight": 732 }, { "color": "#44bb00", "doubleValue": 367, "label": "367", "labelValue": "367.0", "tooltip": "Label: 367
Weight: 734.0
Value: 367.0", "type": "TreeMapNode", "weight": 734 }, { "color": "#43bc00", "doubleValue": 368, "label": "368", "labelValue": "368.0", "tooltip": "Label: 368
Weight: 736.0
Value: 368.0", "type": "TreeMapNode", "weight": 736 }, { "color": "#43bc00", "doubleValue": 369, "label": "369", "labelValue": "369.0", "tooltip": "Label: 369
Weight: 738.0
Value: 369.0", "type": "TreeMapNode", "weight": 738 }, { "color": "#42bd00", "doubleValue": 370, "label": "370", "labelValue": "370.0", "tooltip": "Label: 370
Weight: 740.0
Value: 370.0", "type": "TreeMapNode", "weight": 740 }, { "color": "#42bd00", "doubleValue": 371, "label": "371", "labelValue": "371.0", "tooltip": "Label: 371
Weight: 742.0
Value: 371.0", "type": "TreeMapNode", "weight": 742 }, { "color": "#41be00", "doubleValue": 372, "label": "372", "labelValue": "372.0", "tooltip": "Label: 372
Weight: 744.0
Value: 372.0", "type": "TreeMapNode", "weight": 744 }, { "color": "#41be00", "doubleValue": 373, "label": "373", "labelValue": "373.0", "tooltip": "Label: 373
Weight: 746.0
Value: 373.0", "type": "TreeMapNode", "weight": 746 }, { "color": "#40bf00", "doubleValue": 374, "label": "374", "labelValue": "374.0", "tooltip": "Label: 374
Weight: 748.0
Value: 374.0", "type": "TreeMapNode", "weight": 748 }, { "color": "#40bf00", "doubleValue": 375, "label": "375", "labelValue": "375.0", "tooltip": "Label: 375
Weight: 750.0
Value: 375.0", "type": "TreeMapNode", "weight": 750 }, { "color": "#3fc000", "doubleValue": 376, "label": "376", "labelValue": "376.0", "tooltip": "Label: 376
Weight: 752.0
Value: 376.0", "type": "TreeMapNode", "weight": 752 }, { "color": "#3fc000", "doubleValue": 377, "label": "377", "labelValue": "377.0", "tooltip": "Label: 377
Weight: 754.0
Value: 377.0", "type": "TreeMapNode", "weight": 754 }, { "color": "#3ec100", "doubleValue": 378, "label": "378", "labelValue": "378.0", "tooltip": "Label: 378
Weight: 756.0
Value: 378.0", "type": "TreeMapNode", "weight": 756 }, { "color": "#3ec100", "doubleValue": 379, "label": "379", "labelValue": "379.0", "tooltip": "Label: 379
Weight: 758.0
Value: 379.0", "type": "TreeMapNode", "weight": 758 }, { "color": "#3dc200", "doubleValue": 380, "label": "380", "labelValue": "380.0", "tooltip": "Label: 380
Weight: 760.0
Value: 380.0", "type": "TreeMapNode", "weight": 760 }, { "color": "#3dc200", "doubleValue": 381, "label": "381", "labelValue": "381.0", "tooltip": "Label: 381
Weight: 762.0
Value: 381.0", "type": "TreeMapNode", "weight": 762 }, { "color": "#3cc300", "doubleValue": 382, "label": "382", "labelValue": "382.0", "tooltip": "Label: 382
Weight: 764.0
Value: 382.0", "type": "TreeMapNode", "weight": 764 }, { "color": "#3cc300", "doubleValue": 383, "label": "383", "labelValue": "383.0", "tooltip": "Label: 383
Weight: 766.0
Value: 383.0", "type": "TreeMapNode", "weight": 766 }, { "color": "#3bc400", "doubleValue": 384, "label": "384", "labelValue": "384.0", "tooltip": "Label: 384
Weight: 768.0
Value: 384.0", "type": "TreeMapNode", "weight": 768 }, { "color": "#3bc400", "doubleValue": 385, "label": "385", "labelValue": "385.0", "tooltip": "Label: 385
Weight: 770.0
Value: 385.0", "type": "TreeMapNode", "weight": 770 }, { "color": "#3ac500", "doubleValue": 386, "label": "386", "labelValue": "386.0", "tooltip": "Label: 386
Weight: 772.0
Value: 386.0", "type": "TreeMapNode", "weight": 772 }, { "color": "#3ac500", "doubleValue": 387, "label": "387", "labelValue": "387.0", "tooltip": "Label: 387
Weight: 774.0
Value: 387.0", "type": "TreeMapNode", "weight": 774 }, { "color": "#39c600", "doubleValue": 388, "label": "388", "labelValue": "388.0", "tooltip": "Label: 388
Weight: 776.0
Value: 388.0", "type": "TreeMapNode", "weight": 776 }, { "color": "#39c600", "doubleValue": 389, "label": "389", "labelValue": "389.0", "tooltip": "Label: 389
Weight: 778.0
Value: 389.0", "type": "TreeMapNode", "weight": 778 }, { "color": "#38c700", "doubleValue": 390, "label": "390", "labelValue": "390.0", "tooltip": "Label: 390
Weight: 780.0
Value: 390.0", "type": "TreeMapNode", "weight": 780 }, { "color": "#38c700", "doubleValue": 391, "label": "391", "labelValue": "391.0", "tooltip": "Label: 391
Weight: 782.0
Value: 391.0", "type": "TreeMapNode", "weight": 782 }, { "color": "#37c800", "doubleValue": 392, "label": "392", "labelValue": "392.0", "tooltip": "Label: 392
Weight: 784.0
Value: 392.0", "type": "TreeMapNode", "weight": 784 }, { "color": "#37c800", "doubleValue": 393, "label": "393", "labelValue": "393.0", "tooltip": "Label: 393
Weight: 786.0
Value: 393.0", "type": "TreeMapNode", "weight": 786 }, { "color": "#36c900", "doubleValue": 394, "label": "394", "labelValue": "394.0", "tooltip": "Label: 394
Weight: 788.0
Value: 394.0", "type": "TreeMapNode", "weight": 788 }, { "color": "#36c900", "doubleValue": 395, "label": "395", "labelValue": "395.0", "tooltip": "Label: 395
Weight: 790.0
Value: 395.0", "type": "TreeMapNode", "weight": 790 }, { "color": "#35ca00", "doubleValue": 396, "label": "396", "labelValue": "396.0", "tooltip": "Label: 396
Weight: 792.0
Value: 396.0", "type": "TreeMapNode", "weight": 792 }, { "color": "#35ca00", "doubleValue": 397, "label": "397", "labelValue": "397.0", "tooltip": "Label: 397
Weight: 794.0
Value: 397.0", "type": "TreeMapNode", "weight": 794 }, { "color": "#34cb00", "doubleValue": 398, "label": "398", "labelValue": "398.0", "tooltip": "Label: 398
Weight: 796.0
Value: 398.0", "type": "TreeMapNode", "weight": 796 }, { "color": "#34cb00", "doubleValue": 399, "label": "399", "labelValue": "399.0", "tooltip": "Label: 399
Weight: 798.0
Value: 399.0", "type": "TreeMapNode", "weight": 798 }, { "color": "#33cc00", "doubleValue": 400, "label": "400", "labelValue": "400.0", "tooltip": "Label: 400
Weight: 800.0
Value: 400.0", "type": "TreeMapNode", "weight": 800 }, { "color": "#33cc00", "doubleValue": 401, "label": "401", "labelValue": "401.0", "tooltip": "Label: 401
Weight: 802.0
Value: 401.0", "type": "TreeMapNode", "weight": 802 }, { "color": "#32cd00", "doubleValue": 402, "label": "402", "labelValue": "402.0", "tooltip": "Label: 402
Weight: 804.0
Value: 402.0", "type": "TreeMapNode", "weight": 804 }, { "color": "#32cd00", "doubleValue": 403, "label": "403", "labelValue": "403.0", "tooltip": "Label: 403
Weight: 806.0
Value: 403.0", "type": "TreeMapNode", "weight": 806 }, { "color": "#31ce00", "doubleValue": 404, "label": "404", "labelValue": "404.0", "tooltip": "Label: 404
Weight: 808.0
Value: 404.0", "type": "TreeMapNode", "weight": 808 }, { "color": "#31ce00", "doubleValue": 405, "label": "405", "labelValue": "405.0", "tooltip": "Label: 405
Weight: 810.0
Value: 405.0", "type": "TreeMapNode", "weight": 810 }, { "color": "#30cf00", "doubleValue": 406, "label": "406", "labelValue": "406.0", "tooltip": "Label: 406
Weight: 812.0
Value: 406.0", "type": "TreeMapNode", "weight": 812 }, { "color": "#30cf00", "doubleValue": 407, "label": "407", "labelValue": "407.0", "tooltip": "Label: 407
Weight: 814.0
Value: 407.0", "type": "TreeMapNode", "weight": 814 }, { "color": "#2fd000", "doubleValue": 408, "label": "408", "labelValue": "408.0", "tooltip": "Label: 408
Weight: 816.0
Value: 408.0", "type": "TreeMapNode", "weight": 816 }, { "color": "#2fd000", "doubleValue": 409, "label": "409", "labelValue": "409.0", "tooltip": "Label: 409
Weight: 818.0
Value: 409.0", "type": "TreeMapNode", "weight": 818 }, { "color": "#2ed100", "doubleValue": 410, "label": "410", "labelValue": "410.0", "tooltip": "Label: 410
Weight: 820.0
Value: 410.0", "type": "TreeMapNode", "weight": 820 }, { "color": "#2dd200", "doubleValue": 411, "label": "411", "labelValue": "411.0", "tooltip": "Label: 411
Weight: 822.0
Value: 411.0", "type": "TreeMapNode", "weight": 822 }, { "color": "#2dd200", "doubleValue": 412, "label": "412", "labelValue": "412.0", "tooltip": "Label: 412
Weight: 824.0
Value: 412.0", "type": "TreeMapNode", "weight": 824 }, { "color": "#2cd300", "doubleValue": 413, "label": "413", "labelValue": "413.0", "tooltip": "Label: 413
Weight: 826.0
Value: 413.0", "type": "TreeMapNode", "weight": 826 }, { "color": "#2cd300", "doubleValue": 414, "label": "414", "labelValue": "414.0", "tooltip": "Label: 414
Weight: 828.0
Value: 414.0", "type": "TreeMapNode", "weight": 828 }, { "color": "#2bd400", "doubleValue": 415, "label": "415", "labelValue": "415.0", "tooltip": "Label: 415
Weight: 830.0
Value: 415.0", "type": "TreeMapNode", "weight": 830 }, { "color": "#2bd400", "doubleValue": 416, "label": "416", "labelValue": "416.0", "tooltip": "Label: 416
Weight: 832.0
Value: 416.0", "type": "TreeMapNode", "weight": 832 }, { "color": "#2ad500", "doubleValue": 417, "label": "417", "labelValue": "417.0", "tooltip": "Label: 417
Weight: 834.0
Value: 417.0", "type": "TreeMapNode", "weight": 834 }, { "color": "#2ad500", "doubleValue": 418, "label": "418", "labelValue": "418.0", "tooltip": "Label: 418
Weight: 836.0
Value: 418.0", "type": "TreeMapNode", "weight": 836 }, { "color": "#29d600", "doubleValue": 419, "label": "419", "labelValue": "419.0", "tooltip": "Label: 419
Weight: 838.0
Value: 419.0", "type": "TreeMapNode", "weight": 838 }, { "color": "#29d600", "doubleValue": 420, "label": "420", "labelValue": "420.0", "tooltip": "Label: 420
Weight: 840.0
Value: 420.0", "type": "TreeMapNode", "weight": 840 }, { "color": "#28d700", "doubleValue": 421, "label": "421", "labelValue": "421.0", "tooltip": "Label: 421
Weight: 842.0
Value: 421.0", "type": "TreeMapNode", "weight": 842 }, { "color": "#28d700", "doubleValue": 422, "label": "422", "labelValue": "422.0", "tooltip": "Label: 422
Weight: 844.0
Value: 422.0", "type": "TreeMapNode", "weight": 844 }, { "color": "#27d800", "doubleValue": 423, "label": "423", "labelValue": "423.0", "tooltip": "Label: 423
Weight: 846.0
Value: 423.0", "type": "TreeMapNode", "weight": 846 }, { "color": "#27d800", "doubleValue": 424, "label": "424", "labelValue": "424.0", "tooltip": "Label: 424
Weight: 848.0
Value: 424.0", "type": "TreeMapNode", "weight": 848 }, { "color": "#26d900", "doubleValue": 425, "label": "425", "labelValue": "425.0", "tooltip": "Label: 425
Weight: 850.0
Value: 425.0", "type": "TreeMapNode", "weight": 850 }, { "color": "#26d900", "doubleValue": 426, "label": "426", "labelValue": "426.0", "tooltip": "Label: 426
Weight: 852.0
Value: 426.0", "type": "TreeMapNode", "weight": 852 }, { "color": "#25da00", "doubleValue": 427, "label": "427", "labelValue": "427.0", "tooltip": "Label: 427
Weight: 854.0
Value: 427.0", "type": "TreeMapNode", "weight": 854 }, { "color": "#25da00", "doubleValue": 428, "label": "428", "labelValue": "428.0", "tooltip": "Label: 428
Weight: 856.0
Value: 428.0", "type": "TreeMapNode", "weight": 856 }, { "color": "#24db00", "doubleValue": 429, "label": "429", "labelValue": "429.0", "tooltip": "Label: 429
Weight: 858.0
Value: 429.0", "type": "TreeMapNode", "weight": 858 }, { "color": "#24db00", "doubleValue": 430, "label": "430", "labelValue": "430.0", "tooltip": "Label: 430
Weight: 860.0
Value: 430.0", "type": "TreeMapNode", "weight": 860 }, { "color": "#23dc00", "doubleValue": 431, "label": "431", "labelValue": "431.0", "tooltip": "Label: 431
Weight: 862.0
Value: 431.0", "type": "TreeMapNode", "weight": 862 }, { "color": "#23dc00", "doubleValue": 432, "label": "432", "labelValue": "432.0", "tooltip": "Label: 432
Weight: 864.0
Value: 432.0", "type": "TreeMapNode", "weight": 864 }, { "color": "#22dd00", "doubleValue": 433, "label": "433", "labelValue": "433.0", "tooltip": "Label: 433
Weight: 866.0
Value: 433.0", "type": "TreeMapNode", "weight": 866 }, { "color": "#22dd00", "doubleValue": 434, "label": "434", "labelValue": "434.0", "tooltip": "Label: 434
Weight: 868.0
Value: 434.0", "type": "TreeMapNode", "weight": 868 }, { "color": "#21de00", "doubleValue": 435, "label": "435", "labelValue": "435.0", "tooltip": "Label: 435
Weight: 870.0
Value: 435.0", "type": "TreeMapNode", "weight": 870 }, { "color": "#21de00", "doubleValue": 436, "label": "436", "labelValue": "436.0", "tooltip": "Label: 436
Weight: 872.0
Value: 436.0", "type": "TreeMapNode", "weight": 872 }, { "color": "#20df00", "doubleValue": 437, "label": "437", "labelValue": "437.0", "tooltip": "Label: 437
Weight: 874.0
Value: 437.0", "type": "TreeMapNode", "weight": 874 }, { "color": "#20df00", "doubleValue": 438, "label": "438", "labelValue": "438.0", "tooltip": "Label: 438
Weight: 876.0
Value: 438.0", "type": "TreeMapNode", "weight": 876 }, { "color": "#1fe000", "doubleValue": 439, "label": "439", "labelValue": "439.0", "tooltip": "Label: 439
Weight: 878.0
Value: 439.0", "type": "TreeMapNode", "weight": 878 }, { "color": "#1fe000", "doubleValue": 440, "label": "440", "labelValue": "440.0", "tooltip": "Label: 440
Weight: 880.0
Value: 440.0", "type": "TreeMapNode", "weight": 880 }, { "color": "#1ee100", "doubleValue": 441, "label": "441", "labelValue": "441.0", "tooltip": "Label: 441
Weight: 882.0
Value: 441.0", "type": "TreeMapNode", "weight": 882 }, { "color": "#1ee100", "doubleValue": 442, "label": "442", "labelValue": "442.0", "tooltip": "Label: 442
Weight: 884.0
Value: 442.0", "type": "TreeMapNode", "weight": 884 }, { "color": "#1de200", "doubleValue": 443, "label": "443", "labelValue": "443.0", "tooltip": "Label: 443
Weight: 886.0
Value: 443.0", "type": "TreeMapNode", "weight": 886 }, { "color": "#1de200", "doubleValue": 444, "label": "444", "labelValue": "444.0", "tooltip": "Label: 444
Weight: 888.0
Value: 444.0", "type": "TreeMapNode", "weight": 888 }, { "color": "#1ce300", "doubleValue": 445, "label": "445", "labelValue": "445.0", "tooltip": "Label: 445
Weight: 890.0
Value: 445.0", "type": "TreeMapNode", "weight": 890 }, { "color": "#1ce300", "doubleValue": 446, "label": "446", "labelValue": "446.0", "tooltip": "Label: 446
Weight: 892.0
Value: 446.0", "type": "TreeMapNode", "weight": 892 }, { "color": "#1be400", "doubleValue": 447, "label": "447", "labelValue": "447.0", "tooltip": "Label: 447
Weight: 894.0
Value: 447.0", "type": "TreeMapNode", "weight": 894 }, { "color": "#1be400", "doubleValue": 448, "label": "448", "labelValue": "448.0", "tooltip": "Label: 448
Weight: 896.0
Value: 448.0", "type": "TreeMapNode", "weight": 896 }, { "color": "#1ae500", "doubleValue": 449, "label": "449", "labelValue": "449.0", "tooltip": "Label: 449
Weight: 898.0
Value: 449.0", "type": "TreeMapNode", "weight": 898 }, { "color": "#1ae500", "doubleValue": 450, "label": "450", "labelValue": "450.0", "tooltip": "Label: 450
Weight: 900.0
Value: 450.0", "type": "TreeMapNode", "weight": 900 }, { "color": "#19e600", "doubleValue": 451, "label": "451", "labelValue": "451.0", "tooltip": "Label: 451
Weight: 902.0
Value: 451.0", "type": "TreeMapNode", "weight": 902 }, { "color": "#19e600", "doubleValue": 452, "label": "452", "labelValue": "452.0", "tooltip": "Label: 452
Weight: 904.0
Value: 452.0", "type": "TreeMapNode", "weight": 904 }, { "color": "#18e700", "doubleValue": 453, "label": "453", "labelValue": "453.0", "tooltip": "Label: 453
Weight: 906.0
Value: 453.0", "type": "TreeMapNode", "weight": 906 }, { "color": "#18e700", "doubleValue": 454, "label": "454", "labelValue": "454.0", "tooltip": "Label: 454
Weight: 908.0
Value: 454.0", "type": "TreeMapNode", "weight": 908 }, { "color": "#17e800", "doubleValue": 455, "label": "455", "labelValue": "455.0", "tooltip": "Label: 455
Weight: 910.0
Value: 455.0", "type": "TreeMapNode", "weight": 910 }, { "color": "#16e900", "doubleValue": 456, "label": "456", "labelValue": "456.0", "tooltip": "Label: 456
Weight: 912.0
Value: 456.0", "type": "TreeMapNode", "weight": 912 }, { "color": "#16e900", "doubleValue": 457, "label": "457", "labelValue": "457.0", "tooltip": "Label: 457
Weight: 914.0
Value: 457.0", "type": "TreeMapNode", "weight": 914 }, { "color": "#15ea00", "doubleValue": 458, "label": "458", "labelValue": "458.0", "tooltip": "Label: 458
Weight: 916.0
Value: 458.0", "type": "TreeMapNode", "weight": 916 }, { "color": "#15ea00", "doubleValue": 459, "label": "459", "labelValue": "459.0", "tooltip": "Label: 459
Weight: 918.0
Value: 459.0", "type": "TreeMapNode", "weight": 918 }, { "color": "#14eb00", "doubleValue": 460, "label": "460", "labelValue": "460.0", "tooltip": "Label: 460
Weight: 920.0
Value: 460.0", "type": "TreeMapNode", "weight": 920 }, { "color": "#14eb00", "doubleValue": 461, "label": "461", "labelValue": "461.0", "tooltip": "Label: 461
Weight: 922.0
Value: 461.0", "type": "TreeMapNode", "weight": 922 }, { "color": "#13ec00", "doubleValue": 462, "label": "462", "labelValue": "462.0", "tooltip": "Label: 462
Weight: 924.0
Value: 462.0", "type": "TreeMapNode", "weight": 924 }, { "color": "#13ec00", "doubleValue": 463, "label": "463", "labelValue": "463.0", "tooltip": "Label: 463
Weight: 926.0
Value: 463.0", "type": "TreeMapNode", "weight": 926 }, { "color": "#12ed00", "doubleValue": 464, "label": "464", "labelValue": "464.0", "tooltip": "Label: 464
Weight: 928.0
Value: 464.0", "type": "TreeMapNode", "weight": 928 }, { "color": "#12ed00", "doubleValue": 465, "label": "465", "labelValue": "465.0", "tooltip": "Label: 465
Weight: 930.0
Value: 465.0", "type": "TreeMapNode", "weight": 930 }, { "color": "#11ee00", "doubleValue": 466, "label": "466", "labelValue": "466.0", "tooltip": "Label: 466
Weight: 932.0
Value: 466.0", "type": "TreeMapNode", "weight": 932 }, { "color": "#11ee00", "doubleValue": 467, "label": "467", "labelValue": "467.0", "tooltip": "Label: 467
Weight: 934.0
Value: 467.0", "type": "TreeMapNode", "weight": 934 }, { "color": "#10ef00", "doubleValue": 468, "label": "468", "labelValue": "468.0", "tooltip": "Label: 468
Weight: 936.0
Value: 468.0", "type": "TreeMapNode", "weight": 936 }, { "color": "#10ef00", "doubleValue": 469, "label": "469", "labelValue": "469.0", "tooltip": "Label: 469
Weight: 938.0
Value: 469.0", "type": "TreeMapNode", "weight": 938 }, { "color": "#0ff000", "doubleValue": 470, "label": "470", "labelValue": "470.0", "tooltip": "Label: 470
Weight: 940.0
Value: 470.0", "type": "TreeMapNode", "weight": 940 }, { "color": "#0ff000", "doubleValue": 471, "label": "471", "labelValue": "471.0", "tooltip": "Label: 471
Weight: 942.0
Value: 471.0", "type": "TreeMapNode", "weight": 942 }, { "color": "#0ef100", "doubleValue": 472, "label": "472", "labelValue": "472.0", "tooltip": "Label: 472
Weight: 944.0
Value: 472.0", "type": "TreeMapNode", "weight": 944 }, { "color": "#0ef100", "doubleValue": 473, "label": "473", "labelValue": "473.0", "tooltip": "Label: 473
Weight: 946.0
Value: 473.0", "type": "TreeMapNode", "weight": 946 }, { "color": "#0df200", "doubleValue": 474, "label": "474", "labelValue": "474.0", "tooltip": "Label: 474
Weight: 948.0
Value: 474.0", "type": "TreeMapNode", "weight": 948 }, { "color": "#0df200", "doubleValue": 475, "label": "475", "labelValue": "475.0", "tooltip": "Label: 475
Weight: 950.0
Value: 475.0", "type": "TreeMapNode", "weight": 950 }, { "color": "#0cf300", "doubleValue": 476, "label": "476", "labelValue": "476.0", "tooltip": "Label: 476
Weight: 952.0
Value: 476.0", "type": "TreeMapNode", "weight": 952 }, { "color": "#0cf300", "doubleValue": 477, "label": "477", "labelValue": "477.0", "tooltip": "Label: 477
Weight: 954.0
Value: 477.0", "type": "TreeMapNode", "weight": 954 }, { "color": "#0bf400", "doubleValue": 478, "label": "478", "labelValue": "478.0", "tooltip": "Label: 478
Weight: 956.0
Value: 478.0", "type": "TreeMapNode", "weight": 956 }, { "color": "#0bf400", "doubleValue": 479, "label": "479", "labelValue": "479.0", "tooltip": "Label: 479
Weight: 958.0
Value: 479.0", "type": "TreeMapNode", "weight": 958 }, { "color": "#0af500", "doubleValue": 480, "label": "480", "labelValue": "480.0", "tooltip": "Label: 480
Weight: 960.0
Value: 480.0", "type": "TreeMapNode", "weight": 960 }, { "color": "#0af500", "doubleValue": 481, "label": "481", "labelValue": "481.0", "tooltip": "Label: 481
Weight: 962.0
Value: 481.0", "type": "TreeMapNode", "weight": 962 }, { "color": "#09f600", "doubleValue": 482, "label": "482", "labelValue": "482.0", "tooltip": "Label: 482
Weight: 964.0
Value: 482.0", "type": "TreeMapNode", "weight": 964 }, { "color": "#09f600", "doubleValue": 483, "label": "483", "labelValue": "483.0", "tooltip": "Label: 483
Weight: 966.0
Value: 483.0", "type": "TreeMapNode", "weight": 966 }, { "color": "#08f700", "doubleValue": 484, "label": "484", "labelValue": "484.0", "tooltip": "Label: 484
Weight: 968.0
Value: 484.0", "type": "TreeMapNode", "weight": 968 }, { "color": "#08f700", "doubleValue": 485, "label": "485", "labelValue": "485.0", "tooltip": "Label: 485
Weight: 970.0
Value: 485.0", "type": "TreeMapNode", "weight": 970 }, { "color": "#07f800", "doubleValue": 486, "label": "486", "labelValue": "486.0", "tooltip": "Label: 486
Weight: 972.0
Value: 486.0", "type": "TreeMapNode", "weight": 972 }, { "color": "#07f800", "doubleValue": 487, "label": "487", "labelValue": "487.0", "tooltip": "Label: 487
Weight: 974.0
Value: 487.0", "type": "TreeMapNode", "weight": 974 }, { "color": "#06f900", "doubleValue": 488, "label": "488", "labelValue": "488.0", "tooltip": "Label: 488
Weight: 976.0
Value: 488.0", "type": "TreeMapNode", "weight": 976 }, { "color": "#06f900", "doubleValue": 489, "label": "489", "labelValue": "489.0", "tooltip": "Label: 489
Weight: 978.0
Value: 489.0", "type": "TreeMapNode", "weight": 978 }, { "color": "#05fa00", "doubleValue": 490, "label": "490", "labelValue": "490.0", "tooltip": "Label: 490
Weight: 980.0
Value: 490.0", "type": "TreeMapNode", "weight": 980 }, { "color": "#05fa00", "doubleValue": 491, "label": "491", "labelValue": "491.0", "tooltip": "Label: 491
Weight: 982.0
Value: 491.0", "type": "TreeMapNode", "weight": 982 }, { "color": "#04fb00", "doubleValue": 492, "label": "492", "labelValue": "492.0", "tooltip": "Label: 492
Weight: 984.0
Value: 492.0", "type": "TreeMapNode", "weight": 984 }, { "color": "#04fb00", "doubleValue": 493, "label": "493", "labelValue": "493.0", "tooltip": "Label: 493
Weight: 986.0
Value: 493.0", "type": "TreeMapNode", "weight": 986 }, { "color": "#03fc00", "doubleValue": 494, "label": "494", "labelValue": "494.0", "tooltip": "Label: 494
Weight: 988.0
Value: 494.0", "type": "TreeMapNode", "weight": 988 }, { "color": "#03fc00", "doubleValue": 495, "label": "495", "labelValue": "495.0", "tooltip": "Label: 495
Weight: 990.0
Value: 495.0", "type": "TreeMapNode", "weight": 990 }, { "color": "#02fd00", "doubleValue": 496, "label": "496", "labelValue": "496.0", "tooltip": "Label: 496
Weight: 992.0
Value: 496.0", "type": "TreeMapNode", "weight": 992 }, { "color": "#02fd00", "doubleValue": 497, "label": "497", "labelValue": "497.0", "tooltip": "Label: 497
Weight: 994.0
Value: 497.0", "type": "TreeMapNode", "weight": 994 }, { "color": "#01fe00", "doubleValue": 498, "label": "498", "labelValue": "498.0", "tooltip": "Label: 498
Weight: 996.0
Value: 498.0", "type": "TreeMapNode", "weight": 996 }, { "color": "#01fe00", "doubleValue": 499, "label": "499", "labelValue": "499.0", "tooltip": "Label: 499
Weight: 998.0
Value: 499.0", "type": "TreeMapNode", "weight": 998 }, { "color": "#00ff00", "doubleValue": 500, "label": "500", "labelValue": "500.0", "tooltip": "Label: 500
Weight: 1000.0
Value: 500.0", "type": "TreeMapNode", "weight": 1000 }, { "children": [ { "color": "#ff0000", "doubleValue": 1, "label": "1", "labelValue": "1.0", "tooltip": "Label: 1
Weight: 2.0
Value: 1.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#fe0100", "doubleValue": 2, "label": "2", "labelValue": "2.0", "tooltip": "Label: 2
Weight: 4.0
Value: 2.0", "type": "TreeMapNode", "weight": 4 }, { "color": "#fe0100", "doubleValue": 3, "label": "3", "labelValue": "3.0", "tooltip": "Label: 3
Weight: 6.0
Value: 3.0", "type": "TreeMapNode", "weight": 6 }, { "color": "#fd0200", "doubleValue": 4, "label": "4", "labelValue": "4.0", "tooltip": "Label: 4
Weight: 8.0
Value: 4.0", "type": "TreeMapNode", "weight": 8 }, { "color": "#fd0200", "doubleValue": 5, "label": "5", "labelValue": "5.0", "tooltip": "Label: 5
Weight: 10.0
Value: 5.0", "type": "TreeMapNode", "weight": 10 }, { "color": "#fc0300", "doubleValue": 6, "label": "6", "labelValue": "6.0", "tooltip": "Label: 6
Weight: 12.0
Value: 6.0", "type": "TreeMapNode", "weight": 12 }, { "color": "#fc0300", "doubleValue": 7, "label": "7", "labelValue": "7.0", "tooltip": "Label: 7
Weight: 14.0
Value: 7.0", "type": "TreeMapNode", "weight": 14 }, { "color": "#fb0400", "doubleValue": 8, "label": "8", "labelValue": "8.0", "tooltip": "Label: 8
Weight: 16.0
Value: 8.0", "type": "TreeMapNode", "weight": 16 }, { "color": "#fb0400", "doubleValue": 9, "label": "9", "labelValue": "9.0", "tooltip": "Label: 9
Weight: 18.0
Value: 9.0", "type": "TreeMapNode", "weight": 18 }, { "color": "#fa0500", "doubleValue": 10, "label": "10", "labelValue": "10.0", "tooltip": "Label: 10
Weight: 20.0
Value: 10.0", "type": "TreeMapNode", "weight": 20 }, { "color": "#fa0500", "doubleValue": 11, "label": "11", "labelValue": "11.0", "tooltip": "Label: 11
Weight: 22.0
Value: 11.0", "type": "TreeMapNode", "weight": 22 }, { "color": "#f90600", "doubleValue": 12, "label": "12", "labelValue": "12.0", "tooltip": "Label: 12
Weight: 24.0
Value: 12.0", "type": "TreeMapNode", "weight": 24 }, { "color": "#f90600", "doubleValue": 13, "label": "13", "labelValue": "13.0", "tooltip": "Label: 13
Weight: 26.0
Value: 13.0", "type": "TreeMapNode", "weight": 26 }, { "color": "#f80700", "doubleValue": 14, "label": "14", "labelValue": "14.0", "tooltip": "Label: 14
Weight: 28.0
Value: 14.0", "type": "TreeMapNode", "weight": 28 }, { "color": "#f80700", "doubleValue": 15, "label": "15", "labelValue": "15.0", "tooltip": "Label: 15
Weight: 30.0
Value: 15.0", "type": "TreeMapNode", "weight": 30 }, { "color": "#f70800", "doubleValue": 16, "label": "16", "labelValue": "16.0", "tooltip": "Label: 16
Weight: 32.0
Value: 16.0", "type": "TreeMapNode", "weight": 32 }, { "color": "#f70800", "doubleValue": 17, "label": "17", "labelValue": "17.0", "tooltip": "Label: 17
Weight: 34.0
Value: 17.0", "type": "TreeMapNode", "weight": 34 }, { "color": "#f60900", "doubleValue": 18, "label": "18", "labelValue": "18.0", "tooltip": "Label: 18
Weight: 36.0
Value: 18.0", "type": "TreeMapNode", "weight": 36 }, { "color": "#f60900", "doubleValue": 19, "label": "19", "labelValue": "19.0", "tooltip": "Label: 19
Weight: 38.0
Value: 19.0", "type": "TreeMapNode", "weight": 38 }, { "color": "#f50a00", "doubleValue": 20, "label": "20", "labelValue": "20.0", "tooltip": "Label: 20
Weight: 40.0
Value: 20.0", "type": "TreeMapNode", "weight": 40 }, { "color": "#f50a00", "doubleValue": 21, "label": "21", "labelValue": "21.0", "tooltip": "Label: 21
Weight: 42.0
Value: 21.0", "type": "TreeMapNode", "weight": 42 }, { "color": "#f40b00", "doubleValue": 22, "label": "22", "labelValue": "22.0", "tooltip": "Label: 22
Weight: 44.0
Value: 22.0", "type": "TreeMapNode", "weight": 44 }, { "color": "#f40b00", "doubleValue": 23, "label": "23", "labelValue": "23.0", "tooltip": "Label: 23
Weight: 46.0
Value: 23.0", "type": "TreeMapNode", "weight": 46 }, { "color": "#f30c00", "doubleValue": 24, "label": "24", "labelValue": "24.0", "tooltip": "Label: 24
Weight: 48.0
Value: 24.0", "type": "TreeMapNode", "weight": 48 }, { "color": "#f30c00", "doubleValue": 25, "label": "25", "labelValue": "25.0", "tooltip": "Label: 25
Weight: 50.0
Value: 25.0", "type": "TreeMapNode", "weight": 50 }, { "color": "#f20d00", "doubleValue": 26, "label": "26", "labelValue": "26.0", "tooltip": "Label: 26
Weight: 52.0
Value: 26.0", "type": "TreeMapNode", "weight": 52 }, { "color": "#f20d00", "doubleValue": 27, "label": "27", "labelValue": "27.0", "tooltip": "Label: 27
Weight: 54.0
Value: 27.0", "type": "TreeMapNode", "weight": 54 }, { "color": "#f10e00", "doubleValue": 28, "label": "28", "labelValue": "28.0", "tooltip": "Label: 28
Weight: 56.0
Value: 28.0", "type": "TreeMapNode", "weight": 56 }, { "color": "#f10e00", "doubleValue": 29, "label": "29", "labelValue": "29.0", "tooltip": "Label: 29
Weight: 58.0
Value: 29.0", "type": "TreeMapNode", "weight": 58 }, { "color": "#f00f00", "doubleValue": 30, "label": "30", "labelValue": "30.0", "tooltip": "Label: 30
Weight: 60.0
Value: 30.0", "type": "TreeMapNode", "weight": 60 }, { "color": "#f00f00", "doubleValue": 31, "label": "31", "labelValue": "31.0", "tooltip": "Label: 31
Weight: 62.0
Value: 31.0", "type": "TreeMapNode", "weight": 62 }, { "color": "#ef1000", "doubleValue": 32, "label": "32", "labelValue": "32.0", "tooltip": "Label: 32
Weight: 64.0
Value: 32.0", "type": "TreeMapNode", "weight": 64 }, { "color": "#ef1000", "doubleValue": 33, "label": "33", "labelValue": "33.0", "tooltip": "Label: 33
Weight: 66.0
Value: 33.0", "type": "TreeMapNode", "weight": 66 }, { "color": "#ee1100", "doubleValue": 34, "label": "34", "labelValue": "34.0", "tooltip": "Label: 34
Weight: 68.0
Value: 34.0", "type": "TreeMapNode", "weight": 68 }, { "color": "#ee1100", "doubleValue": 35, "label": "35", "labelValue": "35.0", "tooltip": "Label: 35
Weight: 70.0
Value: 35.0", "type": "TreeMapNode", "weight": 70 }, { "color": "#ed1200", "doubleValue": 36, "label": "36", "labelValue": "36.0", "tooltip": "Label: 36
Weight: 72.0
Value: 36.0", "type": "TreeMapNode", "weight": 72 }, { "color": "#ed1200", "doubleValue": 37, "label": "37", "labelValue": "37.0", "tooltip": "Label: 37
Weight: 74.0
Value: 37.0", "type": "TreeMapNode", "weight": 74 }, { "color": "#ec1300", "doubleValue": 38, "label": "38", "labelValue": "38.0", "tooltip": "Label: 38
Weight: 76.0
Value: 38.0", "type": "TreeMapNode", "weight": 76 }, { "color": "#ec1300", "doubleValue": 39, "label": "39", "labelValue": "39.0", "tooltip": "Label: 39
Weight: 78.0
Value: 39.0", "type": "TreeMapNode", "weight": 78 }, { "color": "#eb1400", "doubleValue": 40, "label": "40", "labelValue": "40.0", "tooltip": "Label: 40
Weight: 80.0
Value: 40.0", "type": "TreeMapNode", "weight": 80 }, { "color": "#eb1400", "doubleValue": 41, "label": "41", "labelValue": "41.0", "tooltip": "Label: 41
Weight: 82.0
Value: 41.0", "type": "TreeMapNode", "weight": 82 }, { "color": "#ea1500", "doubleValue": 42, "label": "42", "labelValue": "42.0", "tooltip": "Label: 42
Weight: 84.0
Value: 42.0", "type": "TreeMapNode", "weight": 84 }, { "color": "#ea1500", "doubleValue": 43, "label": "43", "labelValue": "43.0", "tooltip": "Label: 43
Weight: 86.0
Value: 43.0", "type": "TreeMapNode", "weight": 86 }, { "color": "#e91600", "doubleValue": 44, "label": "44", "labelValue": "44.0", "tooltip": "Label: 44
Weight: 88.0
Value: 44.0", "type": "TreeMapNode", "weight": 88 }, { "color": "#e91600", "doubleValue": 45, "label": "45", "labelValue": "45.0", "tooltip": "Label: 45
Weight: 90.0
Value: 45.0", "type": "TreeMapNode", "weight": 90 }, { "color": "#e81700", "doubleValue": 46, "label": "46", "labelValue": "46.0", "tooltip": "Label: 46
Weight: 92.0
Value: 46.0", "type": "TreeMapNode", "weight": 92 }, { "color": "#e71800", "doubleValue": 47, "label": "47", "labelValue": "47.0", "tooltip": "Label: 47
Weight: 94.0
Value: 47.0", "type": "TreeMapNode", "weight": 94 }, { "color": "#e71800", "doubleValue": 48, "label": "48", "labelValue": "48.0", "tooltip": "Label: 48
Weight: 96.0
Value: 48.0", "type": "TreeMapNode", "weight": 96 }, { "color": "#e61900", "doubleValue": 49, "label": "49", "labelValue": "49.0", "tooltip": "Label: 49
Weight: 98.0
Value: 49.0", "type": "TreeMapNode", "weight": 98 }, { "color": "#e61900", "doubleValue": 50, "label": "50", "labelValue": "50.0", "tooltip": "Label: 50
Weight: 100.0
Value: 50.0", "type": "TreeMapNode", "weight": 100 }, { "color": "#e51a00", "doubleValue": 51, "label": "51", "labelValue": "51.0", "tooltip": "Label: 51
Weight: 102.0
Value: 51.0", "type": "TreeMapNode", "weight": 102 }, { "color": "#e51a00", "doubleValue": 52, "label": "52", "labelValue": "52.0", "tooltip": "Label: 52
Weight: 104.0
Value: 52.0", "type": "TreeMapNode", "weight": 104 }, { "color": "#e41b00", "doubleValue": 53, "label": "53", "labelValue": "53.0", "tooltip": "Label: 53
Weight: 106.0
Value: 53.0", "type": "TreeMapNode", "weight": 106 }, { "color": "#e41b00", "doubleValue": 54, "label": "54", "labelValue": "54.0", "tooltip": "Label: 54
Weight: 108.0
Value: 54.0", "type": "TreeMapNode", "weight": 108 }, { "color": "#e31c00", "doubleValue": 55, "label": "55", "labelValue": "55.0", "tooltip": "Label: 55
Weight: 110.0
Value: 55.0", "type": "TreeMapNode", "weight": 110 }, { "color": "#e31c00", "doubleValue": 56, "label": "56", "labelValue": "56.0", "tooltip": "Label: 56
Weight: 112.0
Value: 56.0", "type": "TreeMapNode", "weight": 112 }, { "color": "#e21d00", "doubleValue": 57, "label": "57", "labelValue": "57.0", "tooltip": "Label: 57
Weight: 114.0
Value: 57.0", "type": "TreeMapNode", "weight": 114 }, { "color": "#e21d00", "doubleValue": 58, "label": "58", "labelValue": "58.0", "tooltip": "Label: 58
Weight: 116.0
Value: 58.0", "type": "TreeMapNode", "weight": 116 }, { "color": "#e11e00", "doubleValue": 59, "label": "59", "labelValue": "59.0", "tooltip": "Label: 59
Weight: 118.0
Value: 59.0", "type": "TreeMapNode", "weight": 118 }, { "color": "#e11e00", "doubleValue": 60, "label": "60", "labelValue": "60.0", "tooltip": "Label: 60
Weight: 120.0
Value: 60.0", "type": "TreeMapNode", "weight": 120 }, { "color": "#e01f00", "doubleValue": 61, "label": "61", "labelValue": "61.0", "tooltip": "Label: 61
Weight: 122.0
Value: 61.0", "type": "TreeMapNode", "weight": 122 }, { "color": "#e01f00", "doubleValue": 62, "label": "62", "labelValue": "62.0", "tooltip": "Label: 62
Weight: 124.0
Value: 62.0", "type": "TreeMapNode", "weight": 124 }, { "color": "#df2000", "doubleValue": 63, "label": "63", "labelValue": "63.0", "tooltip": "Label: 63
Weight: 126.0
Value: 63.0", "type": "TreeMapNode", "weight": 126 }, { "color": "#df2000", "doubleValue": 64, "label": "64", "labelValue": "64.0", "tooltip": "Label: 64
Weight: 128.0
Value: 64.0", "type": "TreeMapNode", "weight": 128 }, { "color": "#de2100", "doubleValue": 65, "label": "65", "labelValue": "65.0", "tooltip": "Label: 65
Weight: 130.0
Value: 65.0", "type": "TreeMapNode", "weight": 130 }, { "color": "#de2100", "doubleValue": 66, "label": "66", "labelValue": "66.0", "tooltip": "Label: 66
Weight: 132.0
Value: 66.0", "type": "TreeMapNode", "weight": 132 }, { "color": "#dd2200", "doubleValue": 67, "label": "67", "labelValue": "67.0", "tooltip": "Label: 67
Weight: 134.0
Value: 67.0", "type": "TreeMapNode", "weight": 134 }, { "color": "#dd2200", "doubleValue": 68, "label": "68", "labelValue": "68.0", "tooltip": "Label: 68
Weight: 136.0
Value: 68.0", "type": "TreeMapNode", "weight": 136 }, { "color": "#dc2300", "doubleValue": 69, "label": "69", "labelValue": "69.0", "tooltip": "Label: 69
Weight: 138.0
Value: 69.0", "type": "TreeMapNode", "weight": 138 }, { "color": "#dc2300", "doubleValue": 70, "label": "70", "labelValue": "70.0", "tooltip": "Label: 70
Weight: 140.0
Value: 70.0", "type": "TreeMapNode", "weight": 140 }, { "color": "#db2400", "doubleValue": 71, "label": "71", "labelValue": "71.0", "tooltip": "Label: 71
Weight: 142.0
Value: 71.0", "type": "TreeMapNode", "weight": 142 }, { "color": "#db2400", "doubleValue": 72, "label": "72", "labelValue": "72.0", "tooltip": "Label: 72
Weight: 144.0
Value: 72.0", "type": "TreeMapNode", "weight": 144 }, { "color": "#da2500", "doubleValue": 73, "label": "73", "labelValue": "73.0", "tooltip": "Label: 73
Weight: 146.0
Value: 73.0", "type": "TreeMapNode", "weight": 146 }, { "color": "#da2500", "doubleValue": 74, "label": "74", "labelValue": "74.0", "tooltip": "Label: 74
Weight: 148.0
Value: 74.0", "type": "TreeMapNode", "weight": 148 }, { "color": "#d92600", "doubleValue": 75, "label": "75", "labelValue": "75.0", "tooltip": "Label: 75
Weight: 150.0
Value: 75.0", "type": "TreeMapNode", "weight": 150 }, { "color": "#d92600", "doubleValue": 76, "label": "76", "labelValue": "76.0", "tooltip": "Label: 76
Weight: 152.0
Value: 76.0", "type": "TreeMapNode", "weight": 152 }, { "color": "#d82700", "doubleValue": 77, "label": "77", "labelValue": "77.0", "tooltip": "Label: 77
Weight: 154.0
Value: 77.0", "type": "TreeMapNode", "weight": 154 }, { "color": "#d82700", "doubleValue": 78, "label": "78", "labelValue": "78.0", "tooltip": "Label: 78
Weight: 156.0
Value: 78.0", "type": "TreeMapNode", "weight": 156 }, { "color": "#d72800", "doubleValue": 79, "label": "79", "labelValue": "79.0", "tooltip": "Label: 79
Weight: 158.0
Value: 79.0", "type": "TreeMapNode", "weight": 158 }, { "color": "#d72800", "doubleValue": 80, "label": "80", "labelValue": "80.0", "tooltip": "Label: 80
Weight: 160.0
Value: 80.0", "type": "TreeMapNode", "weight": 160 }, { "color": "#d62900", "doubleValue": 81, "label": "81", "labelValue": "81.0", "tooltip": "Label: 81
Weight: 162.0
Value: 81.0", "type": "TreeMapNode", "weight": 162 }, { "color": "#d62900", "doubleValue": 82, "label": "82", "labelValue": "82.0", "tooltip": "Label: 82
Weight: 164.0
Value: 82.0", "type": "TreeMapNode", "weight": 164 }, { "color": "#d52a00", "doubleValue": 83, "label": "83", "labelValue": "83.0", "tooltip": "Label: 83
Weight: 166.0
Value: 83.0", "type": "TreeMapNode", "weight": 166 }, { "color": "#d52a00", "doubleValue": 84, "label": "84", "labelValue": "84.0", "tooltip": "Label: 84
Weight: 168.0
Value: 84.0", "type": "TreeMapNode", "weight": 168 }, { "color": "#d42b00", "doubleValue": 85, "label": "85", "labelValue": "85.0", "tooltip": "Label: 85
Weight: 170.0
Value: 85.0", "type": "TreeMapNode", "weight": 170 }, { "color": "#d42b00", "doubleValue": 86, "label": "86", "labelValue": "86.0", "tooltip": "Label: 86
Weight: 172.0
Value: 86.0", "type": "TreeMapNode", "weight": 172 }, { "color": "#d32c00", "doubleValue": 87, "label": "87", "labelValue": "87.0", "tooltip": "Label: 87
Weight: 174.0
Value: 87.0", "type": "TreeMapNode", "weight": 174 }, { "color": "#d32c00", "doubleValue": 88, "label": "88", "labelValue": "88.0", "tooltip": "Label: 88
Weight: 176.0
Value: 88.0", "type": "TreeMapNode", "weight": 176 }, { "color": "#d22d00", "doubleValue": 89, "label": "89", "labelValue": "89.0", "tooltip": "Label: 89
Weight: 178.0
Value: 89.0", "type": "TreeMapNode", "weight": 178 }, { "color": "#d22d00", "doubleValue": 90, "label": "90", "labelValue": "90.0", "tooltip": "Label: 90
Weight: 180.0
Value: 90.0", "type": "TreeMapNode", "weight": 180 }, { "color": "#d12e00", "doubleValue": 91, "label": "91", "labelValue": "91.0", "tooltip": "Label: 91
Weight: 182.0
Value: 91.0", "type": "TreeMapNode", "weight": 182 }, { "color": "#d02f00", "doubleValue": 92, "label": "92", "labelValue": "92.0", "tooltip": "Label: 92
Weight: 184.0
Value: 92.0", "type": "TreeMapNode", "weight": 184 }, { "color": "#d02f00", "doubleValue": 93, "label": "93", "labelValue": "93.0", "tooltip": "Label: 93
Weight: 186.0
Value: 93.0", "type": "TreeMapNode", "weight": 186 }, { "color": "#cf3000", "doubleValue": 94, "label": "94", "labelValue": "94.0", "tooltip": "Label: 94
Weight: 188.0
Value: 94.0", "type": "TreeMapNode", "weight": 188 }, { "color": "#cf3000", "doubleValue": 95, "label": "95", "labelValue": "95.0", "tooltip": "Label: 95
Weight: 190.0
Value: 95.0", "type": "TreeMapNode", "weight": 190 }, { "color": "#ce3100", "doubleValue": 96, "label": "96", "labelValue": "96.0", "tooltip": "Label: 96
Weight: 192.0
Value: 96.0", "type": "TreeMapNode", "weight": 192 }, { "color": "#ce3100", "doubleValue": 97, "label": "97", "labelValue": "97.0", "tooltip": "Label: 97
Weight: 194.0
Value: 97.0", "type": "TreeMapNode", "weight": 194 }, { "color": "#cd3200", "doubleValue": 98, "label": "98", "labelValue": "98.0", "tooltip": "Label: 98
Weight: 196.0
Value: 98.0", "type": "TreeMapNode", "weight": 196 }, { "color": "#cd3200", "doubleValue": 99, "label": "99", "labelValue": "99.0", "tooltip": "Label: 99
Weight: 198.0
Value: 99.0", "type": "TreeMapNode", "weight": 198 }, { "color": "#cc3300", "doubleValue": 100, "label": "100", "labelValue": "100.0", "tooltip": "Label: 100
Weight: 200.0
Value: 100.0", "type": "TreeMapNode", "weight": 200 }, { "color": "#cc3300", "doubleValue": 101, "label": "101", "labelValue": "101.0", "tooltip": "Label: 101
Weight: 202.0
Value: 101.0", "type": "TreeMapNode", "weight": 202 }, { "color": "#cb3400", "doubleValue": 102, "label": "102", "labelValue": "102.0", "tooltip": "Label: 102
Weight: 204.0
Value: 102.0", "type": "TreeMapNode", "weight": 204 }, { "color": "#cb3400", "doubleValue": 103, "label": "103", "labelValue": "103.0", "tooltip": "Label: 103
Weight: 206.0
Value: 103.0", "type": "TreeMapNode", "weight": 206 }, { "color": "#ca3500", "doubleValue": 104, "label": "104", "labelValue": "104.0", "tooltip": "Label: 104
Weight: 208.0
Value: 104.0", "type": "TreeMapNode", "weight": 208 }, { "color": "#ca3500", "doubleValue": 105, "label": "105", "labelValue": "105.0", "tooltip": "Label: 105
Weight: 210.0
Value: 105.0", "type": "TreeMapNode", "weight": 210 }, { "color": "#c93600", "doubleValue": 106, "label": "106", "labelValue": "106.0", "tooltip": "Label: 106
Weight: 212.0
Value: 106.0", "type": "TreeMapNode", "weight": 212 }, { "color": "#c93600", "doubleValue": 107, "label": "107", "labelValue": "107.0", "tooltip": "Label: 107
Weight: 214.0
Value: 107.0", "type": "TreeMapNode", "weight": 214 }, { "color": "#c83700", "doubleValue": 108, "label": "108", "labelValue": "108.0", "tooltip": "Label: 108
Weight: 216.0
Value: 108.0", "type": "TreeMapNode", "weight": 216 }, { "color": "#c83700", "doubleValue": 109, "label": "109", "labelValue": "109.0", "tooltip": "Label: 109
Weight: 218.0
Value: 109.0", "type": "TreeMapNode", "weight": 218 }, { "color": "#c73800", "doubleValue": 110, "label": "110", "labelValue": "110.0", "tooltip": "Label: 110
Weight: 220.0
Value: 110.0", "type": "TreeMapNode", "weight": 220 }, { "color": "#c73800", "doubleValue": 111, "label": "111", "labelValue": "111.0", "tooltip": "Label: 111
Weight: 222.0
Value: 111.0", "type": "TreeMapNode", "weight": 222 }, { "color": "#c63900", "doubleValue": 112, "label": "112", "labelValue": "112.0", "tooltip": "Label: 112
Weight: 224.0
Value: 112.0", "type": "TreeMapNode", "weight": 224 }, { "color": "#c63900", "doubleValue": 113, "label": "113", "labelValue": "113.0", "tooltip": "Label: 113
Weight: 226.0
Value: 113.0", "type": "TreeMapNode", "weight": 226 }, { "color": "#c53a00", "doubleValue": 114, "label": "114", "labelValue": "114.0", "tooltip": "Label: 114
Weight: 228.0
Value: 114.0", "type": "TreeMapNode", "weight": 228 }, { "color": "#c53a00", "doubleValue": 115, "label": "115", "labelValue": "115.0", "tooltip": "Label: 115
Weight: 230.0
Value: 115.0", "type": "TreeMapNode", "weight": 230 }, { "color": "#c43b00", "doubleValue": 116, "label": "116", "labelValue": "116.0", "tooltip": "Label: 116
Weight: 232.0
Value: 116.0", "type": "TreeMapNode", "weight": 232 }, { "color": "#c43b00", "doubleValue": 117, "label": "117", "labelValue": "117.0", "tooltip": "Label: 117
Weight: 234.0
Value: 117.0", "type": "TreeMapNode", "weight": 234 }, { "color": "#c33c00", "doubleValue": 118, "label": "118", "labelValue": "118.0", "tooltip": "Label: 118
Weight: 236.0
Value: 118.0", "type": "TreeMapNode", "weight": 236 }, { "color": "#c33c00", "doubleValue": 119, "label": "119", "labelValue": "119.0", "tooltip": "Label: 119
Weight: 238.0
Value: 119.0", "type": "TreeMapNode", "weight": 238 }, { "color": "#c23d00", "doubleValue": 120, "label": "120", "labelValue": "120.0", "tooltip": "Label: 120
Weight: 240.0
Value: 120.0", "type": "TreeMapNode", "weight": 240 }, { "color": "#c23d00", "doubleValue": 121, "label": "121", "labelValue": "121.0", "tooltip": "Label: 121
Weight: 242.0
Value: 121.0", "type": "TreeMapNode", "weight": 242 }, { "color": "#c13e00", "doubleValue": 122, "label": "122", "labelValue": "122.0", "tooltip": "Label: 122
Weight: 244.0
Value: 122.0", "type": "TreeMapNode", "weight": 244 }, { "color": "#c13e00", "doubleValue": 123, "label": "123", "labelValue": "123.0", "tooltip": "Label: 123
Weight: 246.0
Value: 123.0", "type": "TreeMapNode", "weight": 246 }, { "color": "#c03f00", "doubleValue": 124, "label": "124", "labelValue": "124.0", "tooltip": "Label: 124
Weight: 248.0
Value: 124.0", "type": "TreeMapNode", "weight": 248 }, { "color": "#c03f00", "doubleValue": 125, "label": "125", "labelValue": "125.0", "tooltip": "Label: 125
Weight: 250.0
Value: 125.0", "type": "TreeMapNode", "weight": 250 }, { "color": "#bf4000", "doubleValue": 126, "label": "126", "labelValue": "126.0", "tooltip": "Label: 126
Weight: 252.0
Value: 126.0", "type": "TreeMapNode", "weight": 252 }, { "color": "#bf4000", "doubleValue": 127, "label": "127", "labelValue": "127.0", "tooltip": "Label: 127
Weight: 254.0
Value: 127.0", "type": "TreeMapNode", "weight": 254 }, { "color": "#be4100", "doubleValue": 128, "label": "128", "labelValue": "128.0", "tooltip": "Label: 128
Weight: 256.0
Value: 128.0", "type": "TreeMapNode", "weight": 256 }, { "color": "#be4100", "doubleValue": 129, "label": "129", "labelValue": "129.0", "tooltip": "Label: 129
Weight: 258.0
Value: 129.0", "type": "TreeMapNode", "weight": 258 }, { "color": "#bd4200", "doubleValue": 130, "label": "130", "labelValue": "130.0", "tooltip": "Label: 130
Weight: 260.0
Value: 130.0", "type": "TreeMapNode", "weight": 260 }, { "color": "#bd4200", "doubleValue": 131, "label": "131", "labelValue": "131.0", "tooltip": "Label: 131
Weight: 262.0
Value: 131.0", "type": "TreeMapNode", "weight": 262 }, { "color": "#bc4300", "doubleValue": 132, "label": "132", "labelValue": "132.0", "tooltip": "Label: 132
Weight: 264.0
Value: 132.0", "type": "TreeMapNode", "weight": 264 }, { "color": "#bc4300", "doubleValue": 133, "label": "133", "labelValue": "133.0", "tooltip": "Label: 133
Weight: 266.0
Value: 133.0", "type": "TreeMapNode", "weight": 266 }, { "color": "#bb4400", "doubleValue": 134, "label": "134", "labelValue": "134.0", "tooltip": "Label: 134
Weight: 268.0
Value: 134.0", "type": "TreeMapNode", "weight": 268 }, { "color": "#bb4400", "doubleValue": 135, "label": "135", "labelValue": "135.0", "tooltip": "Label: 135
Weight: 270.0
Value: 135.0", "type": "TreeMapNode", "weight": 270 }, { "color": "#ba4500", "doubleValue": 136, "label": "136", "labelValue": "136.0", "tooltip": "Label: 136
Weight: 272.0
Value: 136.0", "type": "TreeMapNode", "weight": 272 }, { "color": "#ba4500", "doubleValue": 137, "label": "137", "labelValue": "137.0", "tooltip": "Label: 137
Weight: 274.0
Value: 137.0", "type": "TreeMapNode", "weight": 274 }, { "color": "#b94600", "doubleValue": 138, "label": "138", "labelValue": "138.0", "tooltip": "Label: 138
Weight: 276.0
Value: 138.0", "type": "TreeMapNode", "weight": 276 }, { "color": "#b84700", "doubleValue": 139, "label": "139", "labelValue": "139.0", "tooltip": "Label: 139
Weight: 278.0
Value: 139.0", "type": "TreeMapNode", "weight": 278 }, { "color": "#b84700", "doubleValue": 140, "label": "140", "labelValue": "140.0", "tooltip": "Label: 140
Weight: 280.0
Value: 140.0", "type": "TreeMapNode", "weight": 280 }, { "color": "#b74800", "doubleValue": 141, "label": "141", "labelValue": "141.0", "tooltip": "Label: 141
Weight: 282.0
Value: 141.0", "type": "TreeMapNode", "weight": 282 }, { "color": "#b74800", "doubleValue": 142, "label": "142", "labelValue": "142.0", "tooltip": "Label: 142
Weight: 284.0
Value: 142.0", "type": "TreeMapNode", "weight": 284 }, { "color": "#b64900", "doubleValue": 143, "label": "143", "labelValue": "143.0", "tooltip": "Label: 143
Weight: 286.0
Value: 143.0", "type": "TreeMapNode", "weight": 286 }, { "color": "#b64900", "doubleValue": 144, "label": "144", "labelValue": "144.0", "tooltip": "Label: 144
Weight: 288.0
Value: 144.0", "type": "TreeMapNode", "weight": 288 }, { "color": "#b54a00", "doubleValue": 145, "label": "145", "labelValue": "145.0", "tooltip": "Label: 145
Weight: 290.0
Value: 145.0", "type": "TreeMapNode", "weight": 290 }, { "color": "#b54a00", "doubleValue": 146, "label": "146", "labelValue": "146.0", "tooltip": "Label: 146
Weight: 292.0
Value: 146.0", "type": "TreeMapNode", "weight": 292 }, { "color": "#b44b00", "doubleValue": 147, "label": "147", "labelValue": "147.0", "tooltip": "Label: 147
Weight: 294.0
Value: 147.0", "type": "TreeMapNode", "weight": 294 }, { "color": "#b44b00", "doubleValue": 148, "label": "148", "labelValue": "148.0", "tooltip": "Label: 148
Weight: 296.0
Value: 148.0", "type": "TreeMapNode", "weight": 296 }, { "color": "#b34c00", "doubleValue": 149, "label": "149", "labelValue": "149.0", "tooltip": "Label: 149
Weight: 298.0
Value: 149.0", "type": "TreeMapNode", "weight": 298 }, { "color": "#b34c00", "doubleValue": 150, "label": "150", "labelValue": "150.0", "tooltip": "Label: 150
Weight: 300.0
Value: 150.0", "type": "TreeMapNode", "weight": 300 }, { "color": "#b24d00", "doubleValue": 151, "label": "151", "labelValue": "151.0", "tooltip": "Label: 151
Weight: 302.0
Value: 151.0", "type": "TreeMapNode", "weight": 302 }, { "color": "#b24d00", "doubleValue": 152, "label": "152", "labelValue": "152.0", "tooltip": "Label: 152
Weight: 304.0
Value: 152.0", "type": "TreeMapNode", "weight": 304 }, { "color": "#b14e00", "doubleValue": 153, "label": "153", "labelValue": "153.0", "tooltip": "Label: 153
Weight: 306.0
Value: 153.0", "type": "TreeMapNode", "weight": 306 }, { "color": "#b14e00", "doubleValue": 154, "label": "154", "labelValue": "154.0", "tooltip": "Label: 154
Weight: 308.0
Value: 154.0", "type": "TreeMapNode", "weight": 308 }, { "color": "#b04f00", "doubleValue": 155, "label": "155", "labelValue": "155.0", "tooltip": "Label: 155
Weight: 310.0
Value: 155.0", "type": "TreeMapNode", "weight": 310 }, { "color": "#b04f00", "doubleValue": 156, "label": "156", "labelValue": "156.0", "tooltip": "Label: 156
Weight: 312.0
Value: 156.0", "type": "TreeMapNode", "weight": 312 }, { "color": "#af5000", "doubleValue": 157, "label": "157", "labelValue": "157.0", "tooltip": "Label: 157
Weight: 314.0
Value: 157.0", "type": "TreeMapNode", "weight": 314 }, { "color": "#af5000", "doubleValue": 158, "label": "158", "labelValue": "158.0", "tooltip": "Label: 158
Weight: 316.0
Value: 158.0", "type": "TreeMapNode", "weight": 316 }, { "color": "#ae5100", "doubleValue": 159, "label": "159", "labelValue": "159.0", "tooltip": "Label: 159
Weight: 318.0
Value: 159.0", "type": "TreeMapNode", "weight": 318 }, { "color": "#ae5100", "doubleValue": 160, "label": "160", "labelValue": "160.0", "tooltip": "Label: 160
Weight: 320.0
Value: 160.0", "type": "TreeMapNode", "weight": 320 }, { "color": "#ad5200", "doubleValue": 161, "label": "161", "labelValue": "161.0", "tooltip": "Label: 161
Weight: 322.0
Value: 161.0", "type": "TreeMapNode", "weight": 322 }, { "color": "#ad5200", "doubleValue": 162, "label": "162", "labelValue": "162.0", "tooltip": "Label: 162
Weight: 324.0
Value: 162.0", "type": "TreeMapNode", "weight": 324 }, { "color": "#ac5300", "doubleValue": 163, "label": "163", "labelValue": "163.0", "tooltip": "Label: 163
Weight: 326.0
Value: 163.0", "type": "TreeMapNode", "weight": 326 }, { "color": "#ac5300", "doubleValue": 164, "label": "164", "labelValue": "164.0", "tooltip": "Label: 164
Weight: 328.0
Value: 164.0", "type": "TreeMapNode", "weight": 328 }, { "color": "#ab5400", "doubleValue": 165, "label": "165", "labelValue": "165.0", "tooltip": "Label: 165
Weight: 330.0
Value: 165.0", "type": "TreeMapNode", "weight": 330 }, { "color": "#ab5400", "doubleValue": 166, "label": "166", "labelValue": "166.0", "tooltip": "Label: 166
Weight: 332.0
Value: 166.0", "type": "TreeMapNode", "weight": 332 }, { "color": "#aa5500", "doubleValue": 167, "label": "167", "labelValue": "167.0", "tooltip": "Label: 167
Weight: 334.0
Value: 167.0", "type": "TreeMapNode", "weight": 334 }, { "color": "#aa5500", "doubleValue": 168, "label": "168", "labelValue": "168.0", "tooltip": "Label: 168
Weight: 336.0
Value: 168.0", "type": "TreeMapNode", "weight": 336 }, { "color": "#a95600", "doubleValue": 169, "label": "169", "labelValue": "169.0", "tooltip": "Label: 169
Weight: 338.0
Value: 169.0", "type": "TreeMapNode", "weight": 338 }, { "color": "#a95600", "doubleValue": 170, "label": "170", "labelValue": "170.0", "tooltip": "Label: 170
Weight: 340.0
Value: 170.0", "type": "TreeMapNode", "weight": 340 }, { "color": "#a85700", "doubleValue": 171, "label": "171", "labelValue": "171.0", "tooltip": "Label: 171
Weight: 342.0
Value: 171.0", "type": "TreeMapNode", "weight": 342 }, { "color": "#a85700", "doubleValue": 172, "label": "172", "labelValue": "172.0", "tooltip": "Label: 172
Weight: 344.0
Value: 172.0", "type": "TreeMapNode", "weight": 344 }, { "color": "#a75800", "doubleValue": 173, "label": "173", "labelValue": "173.0", "tooltip": "Label: 173
Weight: 346.0
Value: 173.0", "type": "TreeMapNode", "weight": 346 }, { "color": "#a75800", "doubleValue": 174, "label": "174", "labelValue": "174.0", "tooltip": "Label: 174
Weight: 348.0
Value: 174.0", "type": "TreeMapNode", "weight": 348 }, { "color": "#a65900", "doubleValue": 175, "label": "175", "labelValue": "175.0", "tooltip": "Label: 175
Weight: 350.0
Value: 175.0", "type": "TreeMapNode", "weight": 350 }, { "color": "#a65900", "doubleValue": 176, "label": "176", "labelValue": "176.0", "tooltip": "Label: 176
Weight: 352.0
Value: 176.0", "type": "TreeMapNode", "weight": 352 }, { "color": "#a55a00", "doubleValue": 177, "label": "177", "labelValue": "177.0", "tooltip": "Label: 177
Weight: 354.0
Value: 177.0", "type": "TreeMapNode", "weight": 354 }, { "color": "#a55a00", "doubleValue": 178, "label": "178", "labelValue": "178.0", "tooltip": "Label: 178
Weight: 356.0
Value: 178.0", "type": "TreeMapNode", "weight": 356 }, { "color": "#a45b00", "doubleValue": 179, "label": "179", "labelValue": "179.0", "tooltip": "Label: 179
Weight: 358.0
Value: 179.0", "type": "TreeMapNode", "weight": 358 }, { "color": "#a45b00", "doubleValue": 180, "label": "180", "labelValue": "180.0", "tooltip": "Label: 180
Weight: 360.0
Value: 180.0", "type": "TreeMapNode", "weight": 360 }, { "color": "#a35c00", "doubleValue": 181, "label": "181", "labelValue": "181.0", "tooltip": "Label: 181
Weight: 362.0
Value: 181.0", "type": "TreeMapNode", "weight": 362 }, { "color": "#a35c00", "doubleValue": 182, "label": "182", "labelValue": "182.0", "tooltip": "Label: 182
Weight: 364.0
Value: 182.0", "type": "TreeMapNode", "weight": 364 }, { "color": "#a25d00", "doubleValue": 183, "label": "183", "labelValue": "183.0", "tooltip": "Label: 183
Weight: 366.0
Value: 183.0", "type": "TreeMapNode", "weight": 366 }, { "color": "#a15e00", "doubleValue": 184, "label": "184", "labelValue": "184.0", "tooltip": "Label: 184
Weight: 368.0
Value: 184.0", "type": "TreeMapNode", "weight": 368 }, { "color": "#a15e00", "doubleValue": 185, "label": "185", "labelValue": "185.0", "tooltip": "Label: 185
Weight: 370.0
Value: 185.0", "type": "TreeMapNode", "weight": 370 }, { "color": "#a05f00", "doubleValue": 186, "label": "186", "labelValue": "186.0", "tooltip": "Label: 186
Weight: 372.0
Value: 186.0", "type": "TreeMapNode", "weight": 372 }, { "color": "#a05f00", "doubleValue": 187, "label": "187", "labelValue": "187.0", "tooltip": "Label: 187
Weight: 374.0
Value: 187.0", "type": "TreeMapNode", "weight": 374 }, { "color": "#9f6000", "doubleValue": 188, "label": "188", "labelValue": "188.0", "tooltip": "Label: 188
Weight: 376.0
Value: 188.0", "type": "TreeMapNode", "weight": 376 }, { "color": "#9f6000", "doubleValue": 189, "label": "189", "labelValue": "189.0", "tooltip": "Label: 189
Weight: 378.0
Value: 189.0", "type": "TreeMapNode", "weight": 378 }, { "color": "#9e6100", "doubleValue": 190, "label": "190", "labelValue": "190.0", "tooltip": "Label: 190
Weight: 380.0
Value: 190.0", "type": "TreeMapNode", "weight": 380 }, { "color": "#9e6100", "doubleValue": 191, "label": "191", "labelValue": "191.0", "tooltip": "Label: 191
Weight: 382.0
Value: 191.0", "type": "TreeMapNode", "weight": 382 }, { "color": "#9d6200", "doubleValue": 192, "label": "192", "labelValue": "192.0", "tooltip": "Label: 192
Weight: 384.0
Value: 192.0", "type": "TreeMapNode", "weight": 384 }, { "color": "#9d6200", "doubleValue": 193, "label": "193", "labelValue": "193.0", "tooltip": "Label: 193
Weight: 386.0
Value: 193.0", "type": "TreeMapNode", "weight": 386 }, { "color": "#9c6300", "doubleValue": 194, "label": "194", "labelValue": "194.0", "tooltip": "Label: 194
Weight: 388.0
Value: 194.0", "type": "TreeMapNode", "weight": 388 }, { "color": "#9c6300", "doubleValue": 195, "label": "195", "labelValue": "195.0", "tooltip": "Label: 195
Weight: 390.0
Value: 195.0", "type": "TreeMapNode", "weight": 390 }, { "color": "#9b6400", "doubleValue": 196, "label": "196", "labelValue": "196.0", "tooltip": "Label: 196
Weight: 392.0
Value: 196.0", "type": "TreeMapNode", "weight": 392 }, { "color": "#9b6400", "doubleValue": 197, "label": "197", "labelValue": "197.0", "tooltip": "Label: 197
Weight: 394.0
Value: 197.0", "type": "TreeMapNode", "weight": 394 }, { "color": "#9a6500", "doubleValue": 198, "label": "198", "labelValue": "198.0", "tooltip": "Label: 198
Weight: 396.0
Value: 198.0", "type": "TreeMapNode", "weight": 396 }, { "color": "#9a6500", "doubleValue": 199, "label": "199", "labelValue": "199.0", "tooltip": "Label: 199
Weight: 398.0
Value: 199.0", "type": "TreeMapNode", "weight": 398 }, { "color": "#996600", "doubleValue": 200, "label": "200", "labelValue": "200.0", "tooltip": "Label: 200
Weight: 400.0
Value: 200.0", "type": "TreeMapNode", "weight": 400 }, { "color": "#996600", "doubleValue": 201, "label": "201", "labelValue": "201.0", "tooltip": "Label: 201
Weight: 402.0
Value: 201.0", "type": "TreeMapNode", "weight": 402 }, { "color": "#986700", "doubleValue": 202, "label": "202", "labelValue": "202.0", "tooltip": "Label: 202
Weight: 404.0
Value: 202.0", "type": "TreeMapNode", "weight": 404 }, { "color": "#986700", "doubleValue": 203, "label": "203", "labelValue": "203.0", "tooltip": "Label: 203
Weight: 406.0
Value: 203.0", "type": "TreeMapNode", "weight": 406 }, { "color": "#976800", "doubleValue": 204, "label": "204", "labelValue": "204.0", "tooltip": "Label: 204
Weight: 408.0
Value: 204.0", "type": "TreeMapNode", "weight": 408 }, { "color": "#976800", "doubleValue": 205, "label": "205", "labelValue": "205.0", "tooltip": "Label: 205
Weight: 410.0
Value: 205.0", "type": "TreeMapNode", "weight": 410 }, { "color": "#966900", "doubleValue": 206, "label": "206", "labelValue": "206.0", "tooltip": "Label: 206
Weight: 412.0
Value: 206.0", "type": "TreeMapNode", "weight": 412 }, { "color": "#966900", "doubleValue": 207, "label": "207", "labelValue": "207.0", "tooltip": "Label: 207
Weight: 414.0
Value: 207.0", "type": "TreeMapNode", "weight": 414 }, { "color": "#956a00", "doubleValue": 208, "label": "208", "labelValue": "208.0", "tooltip": "Label: 208
Weight: 416.0
Value: 208.0", "type": "TreeMapNode", "weight": 416 }, { "color": "#956a00", "doubleValue": 209, "label": "209", "labelValue": "209.0", "tooltip": "Label: 209
Weight: 418.0
Value: 209.0", "type": "TreeMapNode", "weight": 418 }, { "color": "#946b00", "doubleValue": 210, "label": "210", "labelValue": "210.0", "tooltip": "Label: 210
Weight: 420.0
Value: 210.0", "type": "TreeMapNode", "weight": 420 }, { "color": "#946b00", "doubleValue": 211, "label": "211", "labelValue": "211.0", "tooltip": "Label: 211
Weight: 422.0
Value: 211.0", "type": "TreeMapNode", "weight": 422 }, { "color": "#936c00", "doubleValue": 212, "label": "212", "labelValue": "212.0", "tooltip": "Label: 212
Weight: 424.0
Value: 212.0", "type": "TreeMapNode", "weight": 424 }, { "color": "#936c00", "doubleValue": 213, "label": "213", "labelValue": "213.0", "tooltip": "Label: 213
Weight: 426.0
Value: 213.0", "type": "TreeMapNode", "weight": 426 }, { "color": "#926d00", "doubleValue": 214, "label": "214", "labelValue": "214.0", "tooltip": "Label: 214
Weight: 428.0
Value: 214.0", "type": "TreeMapNode", "weight": 428 }, { "color": "#926d00", "doubleValue": 215, "label": "215", "labelValue": "215.0", "tooltip": "Label: 215
Weight: 430.0
Value: 215.0", "type": "TreeMapNode", "weight": 430 }, { "color": "#916e00", "doubleValue": 216, "label": "216", "labelValue": "216.0", "tooltip": "Label: 216
Weight: 432.0
Value: 216.0", "type": "TreeMapNode", "weight": 432 }, { "color": "#916e00", "doubleValue": 217, "label": "217", "labelValue": "217.0", "tooltip": "Label: 217
Weight: 434.0
Value: 217.0", "type": "TreeMapNode", "weight": 434 }, { "color": "#906f00", "doubleValue": 218, "label": "218", "labelValue": "218.0", "tooltip": "Label: 218
Weight: 436.0
Value: 218.0", "type": "TreeMapNode", "weight": 436 }, { "color": "#906f00", "doubleValue": 219, "label": "219", "labelValue": "219.0", "tooltip": "Label: 219
Weight: 438.0
Value: 219.0", "type": "TreeMapNode", "weight": 438 }, { "color": "#8f7000", "doubleValue": 220, "label": "220", "labelValue": "220.0", "tooltip": "Label: 220
Weight: 440.0
Value: 220.0", "type": "TreeMapNode", "weight": 440 }, { "color": "#8f7000", "doubleValue": 221, "label": "221", "labelValue": "221.0", "tooltip": "Label: 221
Weight: 442.0
Value: 221.0", "type": "TreeMapNode", "weight": 442 }, { "color": "#8e7100", "doubleValue": 222, "label": "222", "labelValue": "222.0", "tooltip": "Label: 222
Weight: 444.0
Value: 222.0", "type": "TreeMapNode", "weight": 444 }, { "color": "#8e7100", "doubleValue": 223, "label": "223", "labelValue": "223.0", "tooltip": "Label: 223
Weight: 446.0
Value: 223.0", "type": "TreeMapNode", "weight": 446 }, { "color": "#8d7200", "doubleValue": 224, "label": "224", "labelValue": "224.0", "tooltip": "Label: 224
Weight: 448.0
Value: 224.0", "type": "TreeMapNode", "weight": 448 }, { "color": "#8d7200", "doubleValue": 225, "label": "225", "labelValue": "225.0", "tooltip": "Label: 225
Weight: 450.0
Value: 225.0", "type": "TreeMapNode", "weight": 450 }, { "color": "#8c7300", "doubleValue": 226, "label": "226", "labelValue": "226.0", "tooltip": "Label: 226
Weight: 452.0
Value: 226.0", "type": "TreeMapNode", "weight": 452 }, { "color": "#8c7300", "doubleValue": 227, "label": "227", "labelValue": "227.0", "tooltip": "Label: 227
Weight: 454.0
Value: 227.0", "type": "TreeMapNode", "weight": 454 }, { "color": "#8b7400", "doubleValue": 228, "label": "228", "labelValue": "228.0", "tooltip": "Label: 228
Weight: 456.0
Value: 228.0", "type": "TreeMapNode", "weight": 456 }, { "color": "#8a7500", "doubleValue": 229, "label": "229", "labelValue": "229.0", "tooltip": "Label: 229
Weight: 458.0
Value: 229.0", "type": "TreeMapNode", "weight": 458 }, { "color": "#8a7500", "doubleValue": 230, "label": "230", "labelValue": "230.0", "tooltip": "Label: 230
Weight: 460.0
Value: 230.0", "type": "TreeMapNode", "weight": 460 }, { "color": "#897600", "doubleValue": 231, "label": "231", "labelValue": "231.0", "tooltip": "Label: 231
Weight: 462.0
Value: 231.0", "type": "TreeMapNode", "weight": 462 }, { "color": "#897600", "doubleValue": 232, "label": "232", "labelValue": "232.0", "tooltip": "Label: 232
Weight: 464.0
Value: 232.0", "type": "TreeMapNode", "weight": 464 }, { "color": "#887700", "doubleValue": 233, "label": "233", "labelValue": "233.0", "tooltip": "Label: 233
Weight: 466.0
Value: 233.0", "type": "TreeMapNode", "weight": 466 }, { "color": "#887700", "doubleValue": 234, "label": "234", "labelValue": "234.0", "tooltip": "Label: 234
Weight: 468.0
Value: 234.0", "type": "TreeMapNode", "weight": 468 }, { "color": "#877800", "doubleValue": 235, "label": "235", "labelValue": "235.0", "tooltip": "Label: 235
Weight: 470.0
Value: 235.0", "type": "TreeMapNode", "weight": 470 }, { "color": "#877800", "doubleValue": 236, "label": "236", "labelValue": "236.0", "tooltip": "Label: 236
Weight: 472.0
Value: 236.0", "type": "TreeMapNode", "weight": 472 }, { "color": "#867900", "doubleValue": 237, "label": "237", "labelValue": "237.0", "tooltip": "Label: 237
Weight: 474.0
Value: 237.0", "type": "TreeMapNode", "weight": 474 }, { "color": "#867900", "doubleValue": 238, "label": "238", "labelValue": "238.0", "tooltip": "Label: 238
Weight: 476.0
Value: 238.0", "type": "TreeMapNode", "weight": 476 }, { "color": "#857a00", "doubleValue": 239, "label": "239", "labelValue": "239.0", "tooltip": "Label: 239
Weight: 478.0
Value: 239.0", "type": "TreeMapNode", "weight": 478 }, { "color": "#857a00", "doubleValue": 240, "label": "240", "labelValue": "240.0", "tooltip": "Label: 240
Weight: 480.0
Value: 240.0", "type": "TreeMapNode", "weight": 480 }, { "color": "#847b00", "doubleValue": 241, "label": "241", "labelValue": "241.0", "tooltip": "Label: 241
Weight: 482.0
Value: 241.0", "type": "TreeMapNode", "weight": 482 }, { "color": "#847b00", "doubleValue": 242, "label": "242", "labelValue": "242.0", "tooltip": "Label: 242
Weight: 484.0
Value: 242.0", "type": "TreeMapNode", "weight": 484 }, { "color": "#837c00", "doubleValue": 243, "label": "243", "labelValue": "243.0", "tooltip": "Label: 243
Weight: 486.0
Value: 243.0", "type": "TreeMapNode", "weight": 486 }, { "color": "#837c00", "doubleValue": 244, "label": "244", "labelValue": "244.0", "tooltip": "Label: 244
Weight: 488.0
Value: 244.0", "type": "TreeMapNode", "weight": 488 }, { "color": "#827d00", "doubleValue": 245, "label": "245", "labelValue": "245.0", "tooltip": "Label: 245
Weight: 490.0
Value: 245.0", "type": "TreeMapNode", "weight": 490 }, { "color": "#827d00", "doubleValue": 246, "label": "246", "labelValue": "246.0", "tooltip": "Label: 246
Weight: 492.0
Value: 246.0", "type": "TreeMapNode", "weight": 492 }, { "color": "#817e00", "doubleValue": 247, "label": "247", "labelValue": "247.0", "tooltip": "Label: 247
Weight: 494.0
Value: 247.0", "type": "TreeMapNode", "weight": 494 }, { "color": "#817e00", "doubleValue": 248, "label": "248", "labelValue": "248.0", "tooltip": "Label: 248
Weight: 496.0
Value: 248.0", "type": "TreeMapNode", "weight": 496 }, { "color": "#807f00", "doubleValue": 249, "label": "249", "labelValue": "249.0", "tooltip": "Label: 249
Weight: 498.0
Value: 249.0", "type": "TreeMapNode", "weight": 498 }, { "color": "#807f00", "doubleValue": 250, "label": "250", "labelValue": "250.0", "tooltip": "Label: 250
Weight: 500.0
Value: 250.0", "type": "TreeMapNode", "weight": 500 } ], "type": "TreeMapNode", "weight": 62750 } ], "type": "TreeMapNode", "weight": 313250 }, { "children": [ { "color": "#ff0000", "doubleValue": 1, "label": "1", "labelValue": "1.0", "tooltip": "Label: 1
Weight: 2.0
Value: 1.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#fe0100", "doubleValue": 2, "label": "2", "labelValue": "2.0", "tooltip": "Label: 2
Weight: 4.0
Value: 2.0", "type": "TreeMapNode", "weight": 4 }, { "color": "#fe0100", "doubleValue": 3, "label": "3", "labelValue": "3.0", "tooltip": "Label: 3
Weight: 6.0
Value: 3.0", "type": "TreeMapNode", "weight": 6 }, { "color": "#fd0200", "doubleValue": 4, "label": "4", "labelValue": "4.0", "tooltip": "Label: 4
Weight: 8.0
Value: 4.0", "type": "TreeMapNode", "weight": 8 }, { "color": "#fd0200", "doubleValue": 5, "label": "5", "labelValue": "5.0", "tooltip": "Label: 5
Weight: 10.0
Value: 5.0", "type": "TreeMapNode", "weight": 10 }, { "color": "#fc0300", "doubleValue": 6, "label": "6", "labelValue": "6.0", "tooltip": "Label: 6
Weight: 12.0
Value: 6.0", "type": "TreeMapNode", "weight": 12 }, { "color": "#fc0300", "doubleValue": 7, "label": "7", "labelValue": "7.0", "tooltip": "Label: 7
Weight: 14.0
Value: 7.0", "type": "TreeMapNode", "weight": 14 }, { "color": "#fb0400", "doubleValue": 8, "label": "8", "labelValue": "8.0", "tooltip": "Label: 8
Weight: 16.0
Value: 8.0", "type": "TreeMapNode", "weight": 16 }, { "color": "#fb0400", "doubleValue": 9, "label": "9", "labelValue": "9.0", "tooltip": "Label: 9
Weight: 18.0
Value: 9.0", "type": "TreeMapNode", "weight": 18 }, { "color": "#fa0500", "doubleValue": 10, "label": "10", "labelValue": "10.0", "tooltip": "Label: 10
Weight: 20.0
Value: 10.0", "type": "TreeMapNode", "weight": 20 }, { "color": "#fa0500", "doubleValue": 11, "label": "11", "labelValue": "11.0", "tooltip": "Label: 11
Weight: 22.0
Value: 11.0", "type": "TreeMapNode", "weight": 22 }, { "color": "#f90600", "doubleValue": 12, "label": "12", "labelValue": "12.0", "tooltip": "Label: 12
Weight: 24.0
Value: 12.0", "type": "TreeMapNode", "weight": 24 }, { "color": "#f90600", "doubleValue": 13, "label": "13", "labelValue": "13.0", "tooltip": "Label: 13
Weight: 26.0
Value: 13.0", "type": "TreeMapNode", "weight": 26 }, { "color": "#f80700", "doubleValue": 14, "label": "14", "labelValue": "14.0", "tooltip": "Label: 14
Weight: 28.0
Value: 14.0", "type": "TreeMapNode", "weight": 28 }, { "color": "#f80700", "doubleValue": 15, "label": "15", "labelValue": "15.0", "tooltip": "Label: 15
Weight: 30.0
Value: 15.0", "type": "TreeMapNode", "weight": 30 }, { "color": "#f70800", "doubleValue": 16, "label": "16", "labelValue": "16.0", "tooltip": "Label: 16
Weight: 32.0
Value: 16.0", "type": "TreeMapNode", "weight": 32 }, { "color": "#f70800", "doubleValue": 17, "label": "17", "labelValue": "17.0", "tooltip": "Label: 17
Weight: 34.0
Value: 17.0", "type": "TreeMapNode", "weight": 34 }, { "color": "#f60900", "doubleValue": 18, "label": "18", "labelValue": "18.0", "tooltip": "Label: 18
Weight: 36.0
Value: 18.0", "type": "TreeMapNode", "weight": 36 }, { "color": "#f60900", "doubleValue": 19, "label": "19", "labelValue": "19.0", "tooltip": "Label: 19
Weight: 38.0
Value: 19.0", "type": "TreeMapNode", "weight": 38 }, { "color": "#f50a00", "doubleValue": 20, "label": "20", "labelValue": "20.0", "tooltip": "Label: 20
Weight: 40.0
Value: 20.0", "type": "TreeMapNode", "weight": 40 }, { "color": "#f50a00", "doubleValue": 21, "label": "21", "labelValue": "21.0", "tooltip": "Label: 21
Weight: 42.0
Value: 21.0", "type": "TreeMapNode", "weight": 42 }, { "color": "#f40b00", "doubleValue": 22, "label": "22", "labelValue": "22.0", "tooltip": "Label: 22
Weight: 44.0
Value: 22.0", "type": "TreeMapNode", "weight": 44 }, { "color": "#f40b00", "doubleValue": 23, "label": "23", "labelValue": "23.0", "tooltip": "Label: 23
Weight: 46.0
Value: 23.0", "type": "TreeMapNode", "weight": 46 }, { "color": "#f30c00", "doubleValue": 24, "label": "24", "labelValue": "24.0", "tooltip": "Label: 24
Weight: 48.0
Value: 24.0", "type": "TreeMapNode", "weight": 48 }, { "color": "#f30c00", "doubleValue": 25, "label": "25", "labelValue": "25.0", "tooltip": "Label: 25
Weight: 50.0
Value: 25.0", "type": "TreeMapNode", "weight": 50 }, { "color": "#f20d00", "doubleValue": 26, "label": "26", "labelValue": "26.0", "tooltip": "Label: 26
Weight: 52.0
Value: 26.0", "type": "TreeMapNode", "weight": 52 }, { "color": "#f20d00", "doubleValue": 27, "label": "27", "labelValue": "27.0", "tooltip": "Label: 27
Weight: 54.0
Value: 27.0", "type": "TreeMapNode", "weight": 54 }, { "color": "#f10e00", "doubleValue": 28, "label": "28", "labelValue": "28.0", "tooltip": "Label: 28
Weight: 56.0
Value: 28.0", "type": "TreeMapNode", "weight": 56 }, { "color": "#f10e00", "doubleValue": 29, "label": "29", "labelValue": "29.0", "tooltip": "Label: 29
Weight: 58.0
Value: 29.0", "type": "TreeMapNode", "weight": 58 }, { "color": "#f00f00", "doubleValue": 30, "label": "30", "labelValue": "30.0", "tooltip": "Label: 30
Weight: 60.0
Value: 30.0", "type": "TreeMapNode", "weight": 60 }, { "color": "#f00f00", "doubleValue": 31, "label": "31", "labelValue": "31.0", "tooltip": "Label: 31
Weight: 62.0
Value: 31.0", "type": "TreeMapNode", "weight": 62 }, { "color": "#ef1000", "doubleValue": 32, "label": "32", "labelValue": "32.0", "tooltip": "Label: 32
Weight: 64.0
Value: 32.0", "type": "TreeMapNode", "weight": 64 }, { "color": "#ef1000", "doubleValue": 33, "label": "33", "labelValue": "33.0", "tooltip": "Label: 33
Weight: 66.0
Value: 33.0", "type": "TreeMapNode", "weight": 66 }, { "color": "#ee1100", "doubleValue": 34, "label": "34", "labelValue": "34.0", "tooltip": "Label: 34
Weight: 68.0
Value: 34.0", "type": "TreeMapNode", "weight": 68 }, { "color": "#ee1100", "doubleValue": 35, "label": "35", "labelValue": "35.0", "tooltip": "Label: 35
Weight: 70.0
Value: 35.0", "type": "TreeMapNode", "weight": 70 }, { "color": "#ed1200", "doubleValue": 36, "label": "36", "labelValue": "36.0", "tooltip": "Label: 36
Weight: 72.0
Value: 36.0", "type": "TreeMapNode", "weight": 72 }, { "color": "#ed1200", "doubleValue": 37, "label": "37", "labelValue": "37.0", "tooltip": "Label: 37
Weight: 74.0
Value: 37.0", "type": "TreeMapNode", "weight": 74 }, { "color": "#ec1300", "doubleValue": 38, "label": "38", "labelValue": "38.0", "tooltip": "Label: 38
Weight: 76.0
Value: 38.0", "type": "TreeMapNode", "weight": 76 }, { "color": "#ec1300", "doubleValue": 39, "label": "39", "labelValue": "39.0", "tooltip": "Label: 39
Weight: 78.0
Value: 39.0", "type": "TreeMapNode", "weight": 78 }, { "color": "#eb1400", "doubleValue": 40, "label": "40", "labelValue": "40.0", "tooltip": "Label: 40
Weight: 80.0
Value: 40.0", "type": "TreeMapNode", "weight": 80 }, { "color": "#eb1400", "doubleValue": 41, "label": "41", "labelValue": "41.0", "tooltip": "Label: 41
Weight: 82.0
Value: 41.0", "type": "TreeMapNode", "weight": 82 }, { "color": "#ea1500", "doubleValue": 42, "label": "42", "labelValue": "42.0", "tooltip": "Label: 42
Weight: 84.0
Value: 42.0", "type": "TreeMapNode", "weight": 84 }, { "color": "#ea1500", "doubleValue": 43, "label": "43", "labelValue": "43.0", "tooltip": "Label: 43
Weight: 86.0
Value: 43.0", "type": "TreeMapNode", "weight": 86 }, { "color": "#e91600", "doubleValue": 44, "label": "44", "labelValue": "44.0", "tooltip": "Label: 44
Weight: 88.0
Value: 44.0", "type": "TreeMapNode", "weight": 88 }, { "color": "#e91600", "doubleValue": 45, "label": "45", "labelValue": "45.0", "tooltip": "Label: 45
Weight: 90.0
Value: 45.0", "type": "TreeMapNode", "weight": 90 }, { "color": "#e81700", "doubleValue": 46, "label": "46", "labelValue": "46.0", "tooltip": "Label: 46
Weight: 92.0
Value: 46.0", "type": "TreeMapNode", "weight": 92 }, { "color": "#e71800", "doubleValue": 47, "label": "47", "labelValue": "47.0", "tooltip": "Label: 47
Weight: 94.0
Value: 47.0", "type": "TreeMapNode", "weight": 94 }, { "color": "#e71800", "doubleValue": 48, "label": "48", "labelValue": "48.0", "tooltip": "Label: 48
Weight: 96.0
Value: 48.0", "type": "TreeMapNode", "weight": 96 }, { "color": "#e61900", "doubleValue": 49, "label": "49", "labelValue": "49.0", "tooltip": "Label: 49
Weight: 98.0
Value: 49.0", "type": "TreeMapNode", "weight": 98 }, { "color": "#e61900", "doubleValue": 50, "label": "50", "labelValue": "50.0", "tooltip": "Label: 50
Weight: 100.0
Value: 50.0", "type": "TreeMapNode", "weight": 100 }, { "color": "#e51a00", "doubleValue": 51, "label": "51", "labelValue": "51.0", "tooltip": "Label: 51
Weight: 102.0
Value: 51.0", "type": "TreeMapNode", "weight": 102 }, { "color": "#e51a00", "doubleValue": 52, "label": "52", "labelValue": "52.0", "tooltip": "Label: 52
Weight: 104.0
Value: 52.0", "type": "TreeMapNode", "weight": 104 }, { "color": "#e41b00", "doubleValue": 53, "label": "53", "labelValue": "53.0", "tooltip": "Label: 53
Weight: 106.0
Value: 53.0", "type": "TreeMapNode", "weight": 106 }, { "color": "#e41b00", "doubleValue": 54, "label": "54", "labelValue": "54.0", "tooltip": "Label: 54
Weight: 108.0
Value: 54.0", "type": "TreeMapNode", "weight": 108 }, { "color": "#e31c00", "doubleValue": 55, "label": "55", "labelValue": "55.0", "tooltip": "Label: 55
Weight: 110.0
Value: 55.0", "type": "TreeMapNode", "weight": 110 }, { "color": "#e31c00", "doubleValue": 56, "label": "56", "labelValue": "56.0", "tooltip": "Label: 56
Weight: 112.0
Value: 56.0", "type": "TreeMapNode", "weight": 112 }, { "color": "#e21d00", "doubleValue": 57, "label": "57", "labelValue": "57.0", "tooltip": "Label: 57
Weight: 114.0
Value: 57.0", "type": "TreeMapNode", "weight": 114 }, { "color": "#e21d00", "doubleValue": 58, "label": "58", "labelValue": "58.0", "tooltip": "Label: 58
Weight: 116.0
Value: 58.0", "type": "TreeMapNode", "weight": 116 }, { "color": "#e11e00", "doubleValue": 59, "label": "59", "labelValue": "59.0", "tooltip": "Label: 59
Weight: 118.0
Value: 59.0", "type": "TreeMapNode", "weight": 118 }, { "color": "#e11e00", "doubleValue": 60, "label": "60", "labelValue": "60.0", "tooltip": "Label: 60
Weight: 120.0
Value: 60.0", "type": "TreeMapNode", "weight": 120 }, { "color": "#e01f00", "doubleValue": 61, "label": "61", "labelValue": "61.0", "tooltip": "Label: 61
Weight: 122.0
Value: 61.0", "type": "TreeMapNode", "weight": 122 }, { "color": "#e01f00", "doubleValue": 62, "label": "62", "labelValue": "62.0", "tooltip": "Label: 62
Weight: 124.0
Value: 62.0", "type": "TreeMapNode", "weight": 124 }, { "color": "#df2000", "doubleValue": 63, "label": "63", "labelValue": "63.0", "tooltip": "Label: 63
Weight: 126.0
Value: 63.0", "type": "TreeMapNode", "weight": 126 }, { "color": "#df2000", "doubleValue": 64, "label": "64", "labelValue": "64.0", "tooltip": "Label: 64
Weight: 128.0
Value: 64.0", "type": "TreeMapNode", "weight": 128 }, { "color": "#de2100", "doubleValue": 65, "label": "65", "labelValue": "65.0", "tooltip": "Label: 65
Weight: 130.0
Value: 65.0", "type": "TreeMapNode", "weight": 130 }, { "color": "#de2100", "doubleValue": 66, "label": "66", "labelValue": "66.0", "tooltip": "Label: 66
Weight: 132.0
Value: 66.0", "type": "TreeMapNode", "weight": 132 }, { "color": "#dd2200", "doubleValue": 67, "label": "67", "labelValue": "67.0", "tooltip": "Label: 67
Weight: 134.0
Value: 67.0", "type": "TreeMapNode", "weight": 134 }, { "color": "#dd2200", "doubleValue": 68, "label": "68", "labelValue": "68.0", "tooltip": "Label: 68
Weight: 136.0
Value: 68.0", "type": "TreeMapNode", "weight": 136 }, { "color": "#dc2300", "doubleValue": 69, "label": "69", "labelValue": "69.0", "tooltip": "Label: 69
Weight: 138.0
Value: 69.0", "type": "TreeMapNode", "weight": 138 }, { "color": "#dc2300", "doubleValue": 70, "label": "70", "labelValue": "70.0", "tooltip": "Label: 70
Weight: 140.0
Value: 70.0", "type": "TreeMapNode", "weight": 140 }, { "color": "#db2400", "doubleValue": 71, "label": "71", "labelValue": "71.0", "tooltip": "Label: 71
Weight: 142.0
Value: 71.0", "type": "TreeMapNode", "weight": 142 }, { "color": "#db2400", "doubleValue": 72, "label": "72", "labelValue": "72.0", "tooltip": "Label: 72
Weight: 144.0
Value: 72.0", "type": "TreeMapNode", "weight": 144 }, { "color": "#da2500", "doubleValue": 73, "label": "73", "labelValue": "73.0", "tooltip": "Label: 73
Weight: 146.0
Value: 73.0", "type": "TreeMapNode", "weight": 146 }, { "color": "#da2500", "doubleValue": 74, "label": "74", "labelValue": "74.0", "tooltip": "Label: 74
Weight: 148.0
Value: 74.0", "type": "TreeMapNode", "weight": 148 }, { "color": "#d92600", "doubleValue": 75, "label": "75", "labelValue": "75.0", "tooltip": "Label: 75
Weight: 150.0
Value: 75.0", "type": "TreeMapNode", "weight": 150 }, { "color": "#d92600", "doubleValue": 76, "label": "76", "labelValue": "76.0", "tooltip": "Label: 76
Weight: 152.0
Value: 76.0", "type": "TreeMapNode", "weight": 152 }, { "color": "#d82700", "doubleValue": 77, "label": "77", "labelValue": "77.0", "tooltip": "Label: 77
Weight: 154.0
Value: 77.0", "type": "TreeMapNode", "weight": 154 }, { "color": "#d82700", "doubleValue": 78, "label": "78", "labelValue": "78.0", "tooltip": "Label: 78
Weight: 156.0
Value: 78.0", "type": "TreeMapNode", "weight": 156 }, { "color": "#d72800", "doubleValue": 79, "label": "79", "labelValue": "79.0", "tooltip": "Label: 79
Weight: 158.0
Value: 79.0", "type": "TreeMapNode", "weight": 158 }, { "color": "#d72800", "doubleValue": 80, "label": "80", "labelValue": "80.0", "tooltip": "Label: 80
Weight: 160.0
Value: 80.0", "type": "TreeMapNode", "weight": 160 }, { "color": "#d62900", "doubleValue": 81, "label": "81", "labelValue": "81.0", "tooltip": "Label: 81
Weight: 162.0
Value: 81.0", "type": "TreeMapNode", "weight": 162 }, { "color": "#d62900", "doubleValue": 82, "label": "82", "labelValue": "82.0", "tooltip": "Label: 82
Weight: 164.0
Value: 82.0", "type": "TreeMapNode", "weight": 164 }, { "color": "#d52a00", "doubleValue": 83, "label": "83", "labelValue": "83.0", "tooltip": "Label: 83
Weight: 166.0
Value: 83.0", "type": "TreeMapNode", "weight": 166 }, { "color": "#d52a00", "doubleValue": 84, "label": "84", "labelValue": "84.0", "tooltip": "Label: 84
Weight: 168.0
Value: 84.0", "type": "TreeMapNode", "weight": 168 }, { "color": "#d42b00", "doubleValue": 85, "label": "85", "labelValue": "85.0", "tooltip": "Label: 85
Weight: 170.0
Value: 85.0", "type": "TreeMapNode", "weight": 170 }, { "color": "#d42b00", "doubleValue": 86, "label": "86", "labelValue": "86.0", "tooltip": "Label: 86
Weight: 172.0
Value: 86.0", "type": "TreeMapNode", "weight": 172 }, { "color": "#d32c00", "doubleValue": 87, "label": "87", "labelValue": "87.0", "tooltip": "Label: 87
Weight: 174.0
Value: 87.0", "type": "TreeMapNode", "weight": 174 }, { "color": "#d32c00", "doubleValue": 88, "label": "88", "labelValue": "88.0", "tooltip": "Label: 88
Weight: 176.0
Value: 88.0", "type": "TreeMapNode", "weight": 176 }, { "color": "#d22d00", "doubleValue": 89, "label": "89", "labelValue": "89.0", "tooltip": "Label: 89
Weight: 178.0
Value: 89.0", "type": "TreeMapNode", "weight": 178 }, { "color": "#d22d00", "doubleValue": 90, "label": "90", "labelValue": "90.0", "tooltip": "Label: 90
Weight: 180.0
Value: 90.0", "type": "TreeMapNode", "weight": 180 }, { "color": "#d12e00", "doubleValue": 91, "label": "91", "labelValue": "91.0", "tooltip": "Label: 91
Weight: 182.0
Value: 91.0", "type": "TreeMapNode", "weight": 182 }, { "color": "#d02f00", "doubleValue": 92, "label": "92", "labelValue": "92.0", "tooltip": "Label: 92
Weight: 184.0
Value: 92.0", "type": "TreeMapNode", "weight": 184 }, { "color": "#d02f00", "doubleValue": 93, "label": "93", "labelValue": "93.0", "tooltip": "Label: 93
Weight: 186.0
Value: 93.0", "type": "TreeMapNode", "weight": 186 }, { "color": "#cf3000", "doubleValue": 94, "label": "94", "labelValue": "94.0", "tooltip": "Label: 94
Weight: 188.0
Value: 94.0", "type": "TreeMapNode", "weight": 188 }, { "color": "#cf3000", "doubleValue": 95, "label": "95", "labelValue": "95.0", "tooltip": "Label: 95
Weight: 190.0
Value: 95.0", "type": "TreeMapNode", "weight": 190 }, { "color": "#ce3100", "doubleValue": 96, "label": "96", "labelValue": "96.0", "tooltip": "Label: 96
Weight: 192.0
Value: 96.0", "type": "TreeMapNode", "weight": 192 }, { "color": "#ce3100", "doubleValue": 97, "label": "97", "labelValue": "97.0", "tooltip": "Label: 97
Weight: 194.0
Value: 97.0", "type": "TreeMapNode", "weight": 194 }, { "color": "#cd3200", "doubleValue": 98, "label": "98", "labelValue": "98.0", "tooltip": "Label: 98
Weight: 196.0
Value: 98.0", "type": "TreeMapNode", "weight": 196 }, { "color": "#cd3200", "doubleValue": 99, "label": "99", "labelValue": "99.0", "tooltip": "Label: 99
Weight: 198.0
Value: 99.0", "type": "TreeMapNode", "weight": 198 }, { "color": "#cc3300", "doubleValue": 100, "label": "100", "labelValue": "100.0", "tooltip": "Label: 100
Weight: 200.0
Value: 100.0", "type": "TreeMapNode", "weight": 200 }, { "color": "#cc3300", "doubleValue": 101, "label": "101", "labelValue": "101.0", "tooltip": "Label: 101
Weight: 202.0
Value: 101.0", "type": "TreeMapNode", "weight": 202 }, { "color": "#cb3400", "doubleValue": 102, "label": "102", "labelValue": "102.0", "tooltip": "Label: 102
Weight: 204.0
Value: 102.0", "type": "TreeMapNode", "weight": 204 }, { "color": "#cb3400", "doubleValue": 103, "label": "103", "labelValue": "103.0", "tooltip": "Label: 103
Weight: 206.0
Value: 103.0", "type": "TreeMapNode", "weight": 206 }, { "color": "#ca3500", "doubleValue": 104, "label": "104", "labelValue": "104.0", "tooltip": "Label: 104
Weight: 208.0
Value: 104.0", "type": "TreeMapNode", "weight": 208 }, { "color": "#ca3500", "doubleValue": 105, "label": "105", "labelValue": "105.0", "tooltip": "Label: 105
Weight: 210.0
Value: 105.0", "type": "TreeMapNode", "weight": 210 }, { "color": "#c93600", "doubleValue": 106, "label": "106", "labelValue": "106.0", "tooltip": "Label: 106
Weight: 212.0
Value: 106.0", "type": "TreeMapNode", "weight": 212 }, { "color": "#c93600", "doubleValue": 107, "label": "107", "labelValue": "107.0", "tooltip": "Label: 107
Weight: 214.0
Value: 107.0", "type": "TreeMapNode", "weight": 214 }, { "color": "#c83700", "doubleValue": 108, "label": "108", "labelValue": "108.0", "tooltip": "Label: 108
Weight: 216.0
Value: 108.0", "type": "TreeMapNode", "weight": 216 }, { "color": "#c83700", "doubleValue": 109, "label": "109", "labelValue": "109.0", "tooltip": "Label: 109
Weight: 218.0
Value: 109.0", "type": "TreeMapNode", "weight": 218 }, { "color": "#c73800", "doubleValue": 110, "label": "110", "labelValue": "110.0", "tooltip": "Label: 110
Weight: 220.0
Value: 110.0", "type": "TreeMapNode", "weight": 220 }, { "color": "#c73800", "doubleValue": 111, "label": "111", "labelValue": "111.0", "tooltip": "Label: 111
Weight: 222.0
Value: 111.0", "type": "TreeMapNode", "weight": 222 }, { "color": "#c63900", "doubleValue": 112, "label": "112", "labelValue": "112.0", "tooltip": "Label: 112
Weight: 224.0
Value: 112.0", "type": "TreeMapNode", "weight": 224 }, { "color": "#c63900", "doubleValue": 113, "label": "113", "labelValue": "113.0", "tooltip": "Label: 113
Weight: 226.0
Value: 113.0", "type": "TreeMapNode", "weight": 226 }, { "color": "#c53a00", "doubleValue": 114, "label": "114", "labelValue": "114.0", "tooltip": "Label: 114
Weight: 228.0
Value: 114.0", "type": "TreeMapNode", "weight": 228 }, { "color": "#c53a00", "doubleValue": 115, "label": "115", "labelValue": "115.0", "tooltip": "Label: 115
Weight: 230.0
Value: 115.0", "type": "TreeMapNode", "weight": 230 }, { "color": "#c43b00", "doubleValue": 116, "label": "116", "labelValue": "116.0", "tooltip": "Label: 116
Weight: 232.0
Value: 116.0", "type": "TreeMapNode", "weight": 232 }, { "color": "#c43b00", "doubleValue": 117, "label": "117", "labelValue": "117.0", "tooltip": "Label: 117
Weight: 234.0
Value: 117.0", "type": "TreeMapNode", "weight": 234 }, { "color": "#c33c00", "doubleValue": 118, "label": "118", "labelValue": "118.0", "tooltip": "Label: 118
Weight: 236.0
Value: 118.0", "type": "TreeMapNode", "weight": 236 }, { "color": "#c33c00", "doubleValue": 119, "label": "119", "labelValue": "119.0", "tooltip": "Label: 119
Weight: 238.0
Value: 119.0", "type": "TreeMapNode", "weight": 238 }, { "color": "#c23d00", "doubleValue": 120, "label": "120", "labelValue": "120.0", "tooltip": "Label: 120
Weight: 240.0
Value: 120.0", "type": "TreeMapNode", "weight": 240 }, { "color": "#c23d00", "doubleValue": 121, "label": "121", "labelValue": "121.0", "tooltip": "Label: 121
Weight: 242.0
Value: 121.0", "type": "TreeMapNode", "weight": 242 }, { "color": "#c13e00", "doubleValue": 122, "label": "122", "labelValue": "122.0", "tooltip": "Label: 122
Weight: 244.0
Value: 122.0", "type": "TreeMapNode", "weight": 244 }, { "color": "#c13e00", "doubleValue": 123, "label": "123", "labelValue": "123.0", "tooltip": "Label: 123
Weight: 246.0
Value: 123.0", "type": "TreeMapNode", "weight": 246 }, { "color": "#c03f00", "doubleValue": 124, "label": "124", "labelValue": "124.0", "tooltip": "Label: 124
Weight: 248.0
Value: 124.0", "type": "TreeMapNode", "weight": 248 }, { "color": "#c03f00", "doubleValue": 125, "label": "125", "labelValue": "125.0", "tooltip": "Label: 125
Weight: 250.0
Value: 125.0", "type": "TreeMapNode", "weight": 250 }, { "color": "#bf4000", "doubleValue": 126, "label": "126", "labelValue": "126.0", "tooltip": "Label: 126
Weight: 252.0
Value: 126.0", "type": "TreeMapNode", "weight": 252 }, { "color": "#bf4000", "doubleValue": 127, "label": "127", "labelValue": "127.0", "tooltip": "Label: 127
Weight: 254.0
Value: 127.0", "type": "TreeMapNode", "weight": 254 }, { "color": "#be4100", "doubleValue": 128, "label": "128", "labelValue": "128.0", "tooltip": "Label: 128
Weight: 256.0
Value: 128.0", "type": "TreeMapNode", "weight": 256 }, { "color": "#be4100", "doubleValue": 129, "label": "129", "labelValue": "129.0", "tooltip": "Label: 129
Weight: 258.0
Value: 129.0", "type": "TreeMapNode", "weight": 258 }, { "color": "#bd4200", "doubleValue": 130, "label": "130", "labelValue": "130.0", "tooltip": "Label: 130
Weight: 260.0
Value: 130.0", "type": "TreeMapNode", "weight": 260 }, { "color": "#bd4200", "doubleValue": 131, "label": "131", "labelValue": "131.0", "tooltip": "Label: 131
Weight: 262.0
Value: 131.0", "type": "TreeMapNode", "weight": 262 }, { "color": "#bc4300", "doubleValue": 132, "label": "132", "labelValue": "132.0", "tooltip": "Label: 132
Weight: 264.0
Value: 132.0", "type": "TreeMapNode", "weight": 264 }, { "color": "#bc4300", "doubleValue": 133, "label": "133", "labelValue": "133.0", "tooltip": "Label: 133
Weight: 266.0
Value: 133.0", "type": "TreeMapNode", "weight": 266 }, { "color": "#bb4400", "doubleValue": 134, "label": "134", "labelValue": "134.0", "tooltip": "Label: 134
Weight: 268.0
Value: 134.0", "type": "TreeMapNode", "weight": 268 }, { "color": "#bb4400", "doubleValue": 135, "label": "135", "labelValue": "135.0", "tooltip": "Label: 135
Weight: 270.0
Value: 135.0", "type": "TreeMapNode", "weight": 270 }, { "color": "#ba4500", "doubleValue": 136, "label": "136", "labelValue": "136.0", "tooltip": "Label: 136
Weight: 272.0
Value: 136.0", "type": "TreeMapNode", "weight": 272 }, { "color": "#ba4500", "doubleValue": 137, "label": "137", "labelValue": "137.0", "tooltip": "Label: 137
Weight: 274.0
Value: 137.0", "type": "TreeMapNode", "weight": 274 }, { "color": "#b94600", "doubleValue": 138, "label": "138", "labelValue": "138.0", "tooltip": "Label: 138
Weight: 276.0
Value: 138.0", "type": "TreeMapNode", "weight": 276 }, { "color": "#b84700", "doubleValue": 139, "label": "139", "labelValue": "139.0", "tooltip": "Label: 139
Weight: 278.0
Value: 139.0", "type": "TreeMapNode", "weight": 278 }, { "color": "#b84700", "doubleValue": 140, "label": "140", "labelValue": "140.0", "tooltip": "Label: 140
Weight: 280.0
Value: 140.0", "type": "TreeMapNode", "weight": 280 }, { "color": "#b74800", "doubleValue": 141, "label": "141", "labelValue": "141.0", "tooltip": "Label: 141
Weight: 282.0
Value: 141.0", "type": "TreeMapNode", "weight": 282 }, { "color": "#b74800", "doubleValue": 142, "label": "142", "labelValue": "142.0", "tooltip": "Label: 142
Weight: 284.0
Value: 142.0", "type": "TreeMapNode", "weight": 284 }, { "color": "#b64900", "doubleValue": 143, "label": "143", "labelValue": "143.0", "tooltip": "Label: 143
Weight: 286.0
Value: 143.0", "type": "TreeMapNode", "weight": 286 }, { "color": "#b64900", "doubleValue": 144, "label": "144", "labelValue": "144.0", "tooltip": "Label: 144
Weight: 288.0
Value: 144.0", "type": "TreeMapNode", "weight": 288 }, { "color": "#b54a00", "doubleValue": 145, "label": "145", "labelValue": "145.0", "tooltip": "Label: 145
Weight: 290.0
Value: 145.0", "type": "TreeMapNode", "weight": 290 }, { "color": "#b54a00", "doubleValue": 146, "label": "146", "labelValue": "146.0", "tooltip": "Label: 146
Weight: 292.0
Value: 146.0", "type": "TreeMapNode", "weight": 292 }, { "color": "#b44b00", "doubleValue": 147, "label": "147", "labelValue": "147.0", "tooltip": "Label: 147
Weight: 294.0
Value: 147.0", "type": "TreeMapNode", "weight": 294 }, { "color": "#b44b00", "doubleValue": 148, "label": "148", "labelValue": "148.0", "tooltip": "Label: 148
Weight: 296.0
Value: 148.0", "type": "TreeMapNode", "weight": 296 }, { "color": "#b34c00", "doubleValue": 149, "label": "149", "labelValue": "149.0", "tooltip": "Label: 149
Weight: 298.0
Value: 149.0", "type": "TreeMapNode", "weight": 298 }, { "color": "#b34c00", "doubleValue": 150, "label": "150", "labelValue": "150.0", "tooltip": "Label: 150
Weight: 300.0
Value: 150.0", "type": "TreeMapNode", "weight": 300 }, { "color": "#b24d00", "doubleValue": 151, "label": "151", "labelValue": "151.0", "tooltip": "Label: 151
Weight: 302.0
Value: 151.0", "type": "TreeMapNode", "weight": 302 }, { "color": "#b24d00", "doubleValue": 152, "label": "152", "labelValue": "152.0", "tooltip": "Label: 152
Weight: 304.0
Value: 152.0", "type": "TreeMapNode", "weight": 304 }, { "color": "#b14e00", "doubleValue": 153, "label": "153", "labelValue": "153.0", "tooltip": "Label: 153
Weight: 306.0
Value: 153.0", "type": "TreeMapNode", "weight": 306 }, { "color": "#b14e00", "doubleValue": 154, "label": "154", "labelValue": "154.0", "tooltip": "Label: 154
Weight: 308.0
Value: 154.0", "type": "TreeMapNode", "weight": 308 }, { "color": "#b04f00", "doubleValue": 155, "label": "155", "labelValue": "155.0", "tooltip": "Label: 155
Weight: 310.0
Value: 155.0", "type": "TreeMapNode", "weight": 310 }, { "color": "#b04f00", "doubleValue": 156, "label": "156", "labelValue": "156.0", "tooltip": "Label: 156
Weight: 312.0
Value: 156.0", "type": "TreeMapNode", "weight": 312 }, { "color": "#af5000", "doubleValue": 157, "label": "157", "labelValue": "157.0", "tooltip": "Label: 157
Weight: 314.0
Value: 157.0", "type": "TreeMapNode", "weight": 314 }, { "color": "#af5000", "doubleValue": 158, "label": "158", "labelValue": "158.0", "tooltip": "Label: 158
Weight: 316.0
Value: 158.0", "type": "TreeMapNode", "weight": 316 }, { "color": "#ae5100", "doubleValue": 159, "label": "159", "labelValue": "159.0", "tooltip": "Label: 159
Weight: 318.0
Value: 159.0", "type": "TreeMapNode", "weight": 318 }, { "color": "#ae5100", "doubleValue": 160, "label": "160", "labelValue": "160.0", "tooltip": "Label: 160
Weight: 320.0
Value: 160.0", "type": "TreeMapNode", "weight": 320 }, { "color": "#ad5200", "doubleValue": 161, "label": "161", "labelValue": "161.0", "tooltip": "Label: 161
Weight: 322.0
Value: 161.0", "type": "TreeMapNode", "weight": 322 }, { "color": "#ad5200", "doubleValue": 162, "label": "162", "labelValue": "162.0", "tooltip": "Label: 162
Weight: 324.0
Value: 162.0", "type": "TreeMapNode", "weight": 324 }, { "color": "#ac5300", "doubleValue": 163, "label": "163", "labelValue": "163.0", "tooltip": "Label: 163
Weight: 326.0
Value: 163.0", "type": "TreeMapNode", "weight": 326 }, { "color": "#ac5300", "doubleValue": 164, "label": "164", "labelValue": "164.0", "tooltip": "Label: 164
Weight: 328.0
Value: 164.0", "type": "TreeMapNode", "weight": 328 }, { "color": "#ab5400", "doubleValue": 165, "label": "165", "labelValue": "165.0", "tooltip": "Label: 165
Weight: 330.0
Value: 165.0", "type": "TreeMapNode", "weight": 330 }, { "color": "#ab5400", "doubleValue": 166, "label": "166", "labelValue": "166.0", "tooltip": "Label: 166
Weight: 332.0
Value: 166.0", "type": "TreeMapNode", "weight": 332 }, { "color": "#aa5500", "doubleValue": 167, "label": "167", "labelValue": "167.0", "tooltip": "Label: 167
Weight: 334.0
Value: 167.0", "type": "TreeMapNode", "weight": 334 }, { "color": "#aa5500", "doubleValue": 168, "label": "168", "labelValue": "168.0", "tooltip": "Label: 168
Weight: 336.0
Value: 168.0", "type": "TreeMapNode", "weight": 336 }, { "color": "#a95600", "doubleValue": 169, "label": "169", "labelValue": "169.0", "tooltip": "Label: 169
Weight: 338.0
Value: 169.0", "type": "TreeMapNode", "weight": 338 }, { "color": "#a95600", "doubleValue": 170, "label": "170", "labelValue": "170.0", "tooltip": "Label: 170
Weight: 340.0
Value: 170.0", "type": "TreeMapNode", "weight": 340 }, { "color": "#a85700", "doubleValue": 171, "label": "171", "labelValue": "171.0", "tooltip": "Label: 171
Weight: 342.0
Value: 171.0", "type": "TreeMapNode", "weight": 342 }, { "color": "#a85700", "doubleValue": 172, "label": "172", "labelValue": "172.0", "tooltip": "Label: 172
Weight: 344.0
Value: 172.0", "type": "TreeMapNode", "weight": 344 }, { "color": "#a75800", "doubleValue": 173, "label": "173", "labelValue": "173.0", "tooltip": "Label: 173
Weight: 346.0
Value: 173.0", "type": "TreeMapNode", "weight": 346 }, { "color": "#a75800", "doubleValue": 174, "label": "174", "labelValue": "174.0", "tooltip": "Label: 174
Weight: 348.0
Value: 174.0", "type": "TreeMapNode", "weight": 348 }, { "color": "#a65900", "doubleValue": 175, "label": "175", "labelValue": "175.0", "tooltip": "Label: 175
Weight: 350.0
Value: 175.0", "type": "TreeMapNode", "weight": 350 }, { "color": "#a65900", "doubleValue": 176, "label": "176", "labelValue": "176.0", "tooltip": "Label: 176
Weight: 352.0
Value: 176.0", "type": "TreeMapNode", "weight": 352 }, { "color": "#a55a00", "doubleValue": 177, "label": "177", "labelValue": "177.0", "tooltip": "Label: 177
Weight: 354.0
Value: 177.0", "type": "TreeMapNode", "weight": 354 }, { "color": "#a55a00", "doubleValue": 178, "label": "178", "labelValue": "178.0", "tooltip": "Label: 178
Weight: 356.0
Value: 178.0", "type": "TreeMapNode", "weight": 356 }, { "color": "#a45b00", "doubleValue": 179, "label": "179", "labelValue": "179.0", "tooltip": "Label: 179
Weight: 358.0
Value: 179.0", "type": "TreeMapNode", "weight": 358 }, { "color": "#a45b00", "doubleValue": 180, "label": "180", "labelValue": "180.0", "tooltip": "Label: 180
Weight: 360.0
Value: 180.0", "type": "TreeMapNode", "weight": 360 }, { "color": "#a35c00", "doubleValue": 181, "label": "181", "labelValue": "181.0", "tooltip": "Label: 181
Weight: 362.0
Value: 181.0", "type": "TreeMapNode", "weight": 362 }, { "color": "#a35c00", "doubleValue": 182, "label": "182", "labelValue": "182.0", "tooltip": "Label: 182
Weight: 364.0
Value: 182.0", "type": "TreeMapNode", "weight": 364 }, { "color": "#a25d00", "doubleValue": 183, "label": "183", "labelValue": "183.0", "tooltip": "Label: 183
Weight: 366.0
Value: 183.0", "type": "TreeMapNode", "weight": 366 }, { "color": "#a15e00", "doubleValue": 184, "label": "184", "labelValue": "184.0", "tooltip": "Label: 184
Weight: 368.0
Value: 184.0", "type": "TreeMapNode", "weight": 368 }, { "color": "#a15e00", "doubleValue": 185, "label": "185", "labelValue": "185.0", "tooltip": "Label: 185
Weight: 370.0
Value: 185.0", "type": "TreeMapNode", "weight": 370 }, { "color": "#a05f00", "doubleValue": 186, "label": "186", "labelValue": "186.0", "tooltip": "Label: 186
Weight: 372.0
Value: 186.0", "type": "TreeMapNode", "weight": 372 }, { "color": "#a05f00", "doubleValue": 187, "label": "187", "labelValue": "187.0", "tooltip": "Label: 187
Weight: 374.0
Value: 187.0", "type": "TreeMapNode", "weight": 374 }, { "color": "#9f6000", "doubleValue": 188, "label": "188", "labelValue": "188.0", "tooltip": "Label: 188
Weight: 376.0
Value: 188.0", "type": "TreeMapNode", "weight": 376 }, { "color": "#9f6000", "doubleValue": 189, "label": "189", "labelValue": "189.0", "tooltip": "Label: 189
Weight: 378.0
Value: 189.0", "type": "TreeMapNode", "weight": 378 }, { "color": "#9e6100", "doubleValue": 190, "label": "190", "labelValue": "190.0", "tooltip": "Label: 190
Weight: 380.0
Value: 190.0", "type": "TreeMapNode", "weight": 380 }, { "color": "#9e6100", "doubleValue": 191, "label": "191", "labelValue": "191.0", "tooltip": "Label: 191
Weight: 382.0
Value: 191.0", "type": "TreeMapNode", "weight": 382 }, { "color": "#9d6200", "doubleValue": 192, "label": "192", "labelValue": "192.0", "tooltip": "Label: 192
Weight: 384.0
Value: 192.0", "type": "TreeMapNode", "weight": 384 }, { "color": "#9d6200", "doubleValue": 193, "label": "193", "labelValue": "193.0", "tooltip": "Label: 193
Weight: 386.0
Value: 193.0", "type": "TreeMapNode", "weight": 386 }, { "color": "#9c6300", "doubleValue": 194, "label": "194", "labelValue": "194.0", "tooltip": "Label: 194
Weight: 388.0
Value: 194.0", "type": "TreeMapNode", "weight": 388 }, { "color": "#9c6300", "doubleValue": 195, "label": "195", "labelValue": "195.0", "tooltip": "Label: 195
Weight: 390.0
Value: 195.0", "type": "TreeMapNode", "weight": 390 }, { "color": "#9b6400", "doubleValue": 196, "label": "196", "labelValue": "196.0", "tooltip": "Label: 196
Weight: 392.0
Value: 196.0", "type": "TreeMapNode", "weight": 392 }, { "color": "#9b6400", "doubleValue": 197, "label": "197", "labelValue": "197.0", "tooltip": "Label: 197
Weight: 394.0
Value: 197.0", "type": "TreeMapNode", "weight": 394 }, { "color": "#9a6500", "doubleValue": 198, "label": "198", "labelValue": "198.0", "tooltip": "Label: 198
Weight: 396.0
Value: 198.0", "type": "TreeMapNode", "weight": 396 }, { "color": "#9a6500", "doubleValue": 199, "label": "199", "labelValue": "199.0", "tooltip": "Label: 199
Weight: 398.0
Value: 199.0", "type": "TreeMapNode", "weight": 398 }, { "color": "#996600", "doubleValue": 200, "label": "200", "labelValue": "200.0", "tooltip": "Label: 200
Weight: 400.0
Value: 200.0", "type": "TreeMapNode", "weight": 400 }, { "color": "#996600", "doubleValue": 201, "label": "201", "labelValue": "201.0", "tooltip": "Label: 201
Weight: 402.0
Value: 201.0", "type": "TreeMapNode", "weight": 402 }, { "color": "#986700", "doubleValue": 202, "label": "202", "labelValue": "202.0", "tooltip": "Label: 202
Weight: 404.0
Value: 202.0", "type": "TreeMapNode", "weight": 404 }, { "color": "#986700", "doubleValue": 203, "label": "203", "labelValue": "203.0", "tooltip": "Label: 203
Weight: 406.0
Value: 203.0", "type": "TreeMapNode", "weight": 406 }, { "color": "#976800", "doubleValue": 204, "label": "204", "labelValue": "204.0", "tooltip": "Label: 204
Weight: 408.0
Value: 204.0", "type": "TreeMapNode", "weight": 408 }, { "color": "#976800", "doubleValue": 205, "label": "205", "labelValue": "205.0", "tooltip": "Label: 205
Weight: 410.0
Value: 205.0", "type": "TreeMapNode", "weight": 410 }, { "color": "#966900", "doubleValue": 206, "label": "206", "labelValue": "206.0", "tooltip": "Label: 206
Weight: 412.0
Value: 206.0", "type": "TreeMapNode", "weight": 412 }, { "color": "#966900", "doubleValue": 207, "label": "207", "labelValue": "207.0", "tooltip": "Label: 207
Weight: 414.0
Value: 207.0", "type": "TreeMapNode", "weight": 414 }, { "color": "#956a00", "doubleValue": 208, "label": "208", "labelValue": "208.0", "tooltip": "Label: 208
Weight: 416.0
Value: 208.0", "type": "TreeMapNode", "weight": 416 }, { "color": "#956a00", "doubleValue": 209, "label": "209", "labelValue": "209.0", "tooltip": "Label: 209
Weight: 418.0
Value: 209.0", "type": "TreeMapNode", "weight": 418 }, { "color": "#946b00", "doubleValue": 210, "label": "210", "labelValue": "210.0", "tooltip": "Label: 210
Weight: 420.0
Value: 210.0", "type": "TreeMapNode", "weight": 420 }, { "color": "#946b00", "doubleValue": 211, "label": "211", "labelValue": "211.0", "tooltip": "Label: 211
Weight: 422.0
Value: 211.0", "type": "TreeMapNode", "weight": 422 }, { "color": "#936c00", "doubleValue": 212, "label": "212", "labelValue": "212.0", "tooltip": "Label: 212
Weight: 424.0
Value: 212.0", "type": "TreeMapNode", "weight": 424 }, { "color": "#936c00", "doubleValue": 213, "label": "213", "labelValue": "213.0", "tooltip": "Label: 213
Weight: 426.0
Value: 213.0", "type": "TreeMapNode", "weight": 426 }, { "color": "#926d00", "doubleValue": 214, "label": "214", "labelValue": "214.0", "tooltip": "Label: 214
Weight: 428.0
Value: 214.0", "type": "TreeMapNode", "weight": 428 }, { "color": "#926d00", "doubleValue": 215, "label": "215", "labelValue": "215.0", "tooltip": "Label: 215
Weight: 430.0
Value: 215.0", "type": "TreeMapNode", "weight": 430 }, { "color": "#916e00", "doubleValue": 216, "label": "216", "labelValue": "216.0", "tooltip": "Label: 216
Weight: 432.0
Value: 216.0", "type": "TreeMapNode", "weight": 432 }, { "color": "#916e00", "doubleValue": 217, "label": "217", "labelValue": "217.0", "tooltip": "Label: 217
Weight: 434.0
Value: 217.0", "type": "TreeMapNode", "weight": 434 }, { "color": "#906f00", "doubleValue": 218, "label": "218", "labelValue": "218.0", "tooltip": "Label: 218
Weight: 436.0
Value: 218.0", "type": "TreeMapNode", "weight": 436 }, { "color": "#906f00", "doubleValue": 219, "label": "219", "labelValue": "219.0", "tooltip": "Label: 219
Weight: 438.0
Value: 219.0", "type": "TreeMapNode", "weight": 438 }, { "color": "#8f7000", "doubleValue": 220, "label": "220", "labelValue": "220.0", "tooltip": "Label: 220
Weight: 440.0
Value: 220.0", "type": "TreeMapNode", "weight": 440 }, { "color": "#8f7000", "doubleValue": 221, "label": "221", "labelValue": "221.0", "tooltip": "Label: 221
Weight: 442.0
Value: 221.0", "type": "TreeMapNode", "weight": 442 }, { "color": "#8e7100", "doubleValue": 222, "label": "222", "labelValue": "222.0", "tooltip": "Label: 222
Weight: 444.0
Value: 222.0", "type": "TreeMapNode", "weight": 444 }, { "color": "#8e7100", "doubleValue": 223, "label": "223", "labelValue": "223.0", "tooltip": "Label: 223
Weight: 446.0
Value: 223.0", "type": "TreeMapNode", "weight": 446 }, { "color": "#8d7200", "doubleValue": 224, "label": "224", "labelValue": "224.0", "tooltip": "Label: 224
Weight: 448.0
Value: 224.0", "type": "TreeMapNode", "weight": 448 }, { "color": "#8d7200", "doubleValue": 225, "label": "225", "labelValue": "225.0", "tooltip": "Label: 225
Weight: 450.0
Value: 225.0", "type": "TreeMapNode", "weight": 450 }, { "color": "#8c7300", "doubleValue": 226, "label": "226", "labelValue": "226.0", "tooltip": "Label: 226
Weight: 452.0
Value: 226.0", "type": "TreeMapNode", "weight": 452 }, { "color": "#8c7300", "doubleValue": 227, "label": "227", "labelValue": "227.0", "tooltip": "Label: 227
Weight: 454.0
Value: 227.0", "type": "TreeMapNode", "weight": 454 }, { "color": "#8b7400", "doubleValue": 228, "label": "228", "labelValue": "228.0", "tooltip": "Label: 228
Weight: 456.0
Value: 228.0", "type": "TreeMapNode", "weight": 456 }, { "color": "#8a7500", "doubleValue": 229, "label": "229", "labelValue": "229.0", "tooltip": "Label: 229
Weight: 458.0
Value: 229.0", "type": "TreeMapNode", "weight": 458 }, { "color": "#8a7500", "doubleValue": 230, "label": "230", "labelValue": "230.0", "tooltip": "Label: 230
Weight: 460.0
Value: 230.0", "type": "TreeMapNode", "weight": 460 }, { "color": "#897600", "doubleValue": 231, "label": "231", "labelValue": "231.0", "tooltip": "Label: 231
Weight: 462.0
Value: 231.0", "type": "TreeMapNode", "weight": 462 }, { "color": "#897600", "doubleValue": 232, "label": "232", "labelValue": "232.0", "tooltip": "Label: 232
Weight: 464.0
Value: 232.0", "type": "TreeMapNode", "weight": 464 }, { "color": "#887700", "doubleValue": 233, "label": "233", "labelValue": "233.0", "tooltip": "Label: 233
Weight: 466.0
Value: 233.0", "type": "TreeMapNode", "weight": 466 }, { "color": "#887700", "doubleValue": 234, "label": "234", "labelValue": "234.0", "tooltip": "Label: 234
Weight: 468.0
Value: 234.0", "type": "TreeMapNode", "weight": 468 }, { "color": "#877800", "doubleValue": 235, "label": "235", "labelValue": "235.0", "tooltip": "Label: 235
Weight: 470.0
Value: 235.0", "type": "TreeMapNode", "weight": 470 }, { "color": "#877800", "doubleValue": 236, "label": "236", "labelValue": "236.0", "tooltip": "Label: 236
Weight: 472.0
Value: 236.0", "type": "TreeMapNode", "weight": 472 }, { "color": "#867900", "doubleValue": 237, "label": "237", "labelValue": "237.0", "tooltip": "Label: 237
Weight: 474.0
Value: 237.0", "type": "TreeMapNode", "weight": 474 }, { "color": "#867900", "doubleValue": 238, "label": "238", "labelValue": "238.0", "tooltip": "Label: 238
Weight: 476.0
Value: 238.0", "type": "TreeMapNode", "weight": 476 }, { "color": "#857a00", "doubleValue": 239, "label": "239", "labelValue": "239.0", "tooltip": "Label: 239
Weight: 478.0
Value: 239.0", "type": "TreeMapNode", "weight": 478 }, { "color": "#857a00", "doubleValue": 240, "label": "240", "labelValue": "240.0", "tooltip": "Label: 240
Weight: 480.0
Value: 240.0", "type": "TreeMapNode", "weight": 480 }, { "color": "#847b00", "doubleValue": 241, "label": "241", "labelValue": "241.0", "tooltip": "Label: 241
Weight: 482.0
Value: 241.0", "type": "TreeMapNode", "weight": 482 }, { "color": "#847b00", "doubleValue": 242, "label": "242", "labelValue": "242.0", "tooltip": "Label: 242
Weight: 484.0
Value: 242.0", "type": "TreeMapNode", "weight": 484 }, { "color": "#837c00", "doubleValue": 243, "label": "243", "labelValue": "243.0", "tooltip": "Label: 243
Weight: 486.0
Value: 243.0", "type": "TreeMapNode", "weight": 486 }, { "color": "#837c00", "doubleValue": 244, "label": "244", "labelValue": "244.0", "tooltip": "Label: 244
Weight: 488.0
Value: 244.0", "type": "TreeMapNode", "weight": 488 }, { "color": "#827d00", "doubleValue": 245, "label": "245", "labelValue": "245.0", "tooltip": "Label: 245
Weight: 490.0
Value: 245.0", "type": "TreeMapNode", "weight": 490 }, { "color": "#827d00", "doubleValue": 246, "label": "246", "labelValue": "246.0", "tooltip": "Label: 246
Weight: 492.0
Value: 246.0", "type": "TreeMapNode", "weight": 492 }, { "color": "#817e00", "doubleValue": 247, "label": "247", "labelValue": "247.0", "tooltip": "Label: 247
Weight: 494.0
Value: 247.0", "type": "TreeMapNode", "weight": 494 }, { "color": "#817e00", "doubleValue": 248, "label": "248", "labelValue": "248.0", "tooltip": "Label: 248
Weight: 496.0
Value: 248.0", "type": "TreeMapNode", "weight": 496 }, { "color": "#807f00", "doubleValue": 249, "label": "249", "labelValue": "249.0", "tooltip": "Label: 249
Weight: 498.0
Value: 249.0", "type": "TreeMapNode", "weight": 498 }, { "color": "#807f00", "doubleValue": 250, "label": "250", "labelValue": "250.0", "tooltip": "Label: 250
Weight: 500.0
Value: 250.0", "type": "TreeMapNode", "weight": 500 }, { "color": "#7f8000", "doubleValue": 251, "label": "251", "labelValue": "251.0", "tooltip": "Label: 251
Weight: 502.0
Value: 251.0", "type": "TreeMapNode", "weight": 502 }, { "color": "#7f8000", "doubleValue": 252, "label": "252", "labelValue": "252.0", "tooltip": "Label: 252
Weight: 504.0
Value: 252.0", "type": "TreeMapNode", "weight": 504 }, { "color": "#7e8100", "doubleValue": 253, "label": "253", "labelValue": "253.0", "tooltip": "Label: 253
Weight: 506.0
Value: 253.0", "type": "TreeMapNode", "weight": 506 }, { "color": "#7e8100", "doubleValue": 254, "label": "254", "labelValue": "254.0", "tooltip": "Label: 254
Weight: 508.0
Value: 254.0", "type": "TreeMapNode", "weight": 508 }, { "color": "#7d8200", "doubleValue": 255, "label": "255", "labelValue": "255.0", "tooltip": "Label: 255
Weight: 510.0
Value: 255.0", "type": "TreeMapNode", "weight": 510 }, { "color": "#7d8200", "doubleValue": 256, "label": "256", "labelValue": "256.0", "tooltip": "Label: 256
Weight: 512.0
Value: 256.0", "type": "TreeMapNode", "weight": 512 }, { "color": "#7c8300", "doubleValue": 257, "label": "257", "labelValue": "257.0", "tooltip": "Label: 257
Weight: 514.0
Value: 257.0", "type": "TreeMapNode", "weight": 514 }, { "color": "#7c8300", "doubleValue": 258, "label": "258", "labelValue": "258.0", "tooltip": "Label: 258
Weight: 516.0
Value: 258.0", "type": "TreeMapNode", "weight": 516 }, { "color": "#7b8400", "doubleValue": 259, "label": "259", "labelValue": "259.0", "tooltip": "Label: 259
Weight: 518.0
Value: 259.0", "type": "TreeMapNode", "weight": 518 }, { "color": "#7b8400", "doubleValue": 260, "label": "260", "labelValue": "260.0", "tooltip": "Label: 260
Weight: 520.0
Value: 260.0", "type": "TreeMapNode", "weight": 520 }, { "color": "#7a8500", "doubleValue": 261, "label": "261", "labelValue": "261.0", "tooltip": "Label: 261
Weight: 522.0
Value: 261.0", "type": "TreeMapNode", "weight": 522 }, { "color": "#7a8500", "doubleValue": 262, "label": "262", "labelValue": "262.0", "tooltip": "Label: 262
Weight: 524.0
Value: 262.0", "type": "TreeMapNode", "weight": 524 }, { "color": "#798600", "doubleValue": 263, "label": "263", "labelValue": "263.0", "tooltip": "Label: 263
Weight: 526.0
Value: 263.0", "type": "TreeMapNode", "weight": 526 }, { "color": "#798600", "doubleValue": 264, "label": "264", "labelValue": "264.0", "tooltip": "Label: 264
Weight: 528.0
Value: 264.0", "type": "TreeMapNode", "weight": 528 }, { "color": "#788700", "doubleValue": 265, "label": "265", "labelValue": "265.0", "tooltip": "Label: 265
Weight: 530.0
Value: 265.0", "type": "TreeMapNode", "weight": 530 }, { "color": "#788700", "doubleValue": 266, "label": "266", "labelValue": "266.0", "tooltip": "Label: 266
Weight: 532.0
Value: 266.0", "type": "TreeMapNode", "weight": 532 }, { "color": "#778800", "doubleValue": 267, "label": "267", "labelValue": "267.0", "tooltip": "Label: 267
Weight: 534.0
Value: 267.0", "type": "TreeMapNode", "weight": 534 }, { "color": "#778800", "doubleValue": 268, "label": "268", "labelValue": "268.0", "tooltip": "Label: 268
Weight: 536.0
Value: 268.0", "type": "TreeMapNode", "weight": 536 }, { "color": "#768900", "doubleValue": 269, "label": "269", "labelValue": "269.0", "tooltip": "Label: 269
Weight: 538.0
Value: 269.0", "type": "TreeMapNode", "weight": 538 }, { "color": "#768900", "doubleValue": 270, "label": "270", "labelValue": "270.0", "tooltip": "Label: 270
Weight: 540.0
Value: 270.0", "type": "TreeMapNode", "weight": 540 }, { "color": "#758a00", "doubleValue": 271, "label": "271", "labelValue": "271.0", "tooltip": "Label: 271
Weight: 542.0
Value: 271.0", "type": "TreeMapNode", "weight": 542 }, { "color": "#758a00", "doubleValue": 272, "label": "272", "labelValue": "272.0", "tooltip": "Label: 272
Weight: 544.0
Value: 272.0", "type": "TreeMapNode", "weight": 544 }, { "color": "#748b00", "doubleValue": 273, "label": "273", "labelValue": "273.0", "tooltip": "Label: 273
Weight: 546.0
Value: 273.0", "type": "TreeMapNode", "weight": 546 }, { "color": "#738c00", "doubleValue": 274, "label": "274", "labelValue": "274.0", "tooltip": "Label: 274
Weight: 548.0
Value: 274.0", "type": "TreeMapNode", "weight": 548 }, { "color": "#738c00", "doubleValue": 275, "label": "275", "labelValue": "275.0", "tooltip": "Label: 275
Weight: 550.0
Value: 275.0", "type": "TreeMapNode", "weight": 550 }, { "color": "#728d00", "doubleValue": 276, "label": "276", "labelValue": "276.0", "tooltip": "Label: 276
Weight: 552.0
Value: 276.0", "type": "TreeMapNode", "weight": 552 }, { "color": "#728d00", "doubleValue": 277, "label": "277", "labelValue": "277.0", "tooltip": "Label: 277
Weight: 554.0
Value: 277.0", "type": "TreeMapNode", "weight": 554 }, { "color": "#718e00", "doubleValue": 278, "label": "278", "labelValue": "278.0", "tooltip": "Label: 278
Weight: 556.0
Value: 278.0", "type": "TreeMapNode", "weight": 556 }, { "color": "#718e00", "doubleValue": 279, "label": "279", "labelValue": "279.0", "tooltip": "Label: 279
Weight: 558.0
Value: 279.0", "type": "TreeMapNode", "weight": 558 }, { "color": "#708f00", "doubleValue": 280, "label": "280", "labelValue": "280.0", "tooltip": "Label: 280
Weight: 560.0
Value: 280.0", "type": "TreeMapNode", "weight": 560 }, { "color": "#708f00", "doubleValue": 281, "label": "281", "labelValue": "281.0", "tooltip": "Label: 281
Weight: 562.0
Value: 281.0", "type": "TreeMapNode", "weight": 562 }, { "color": "#6f9000", "doubleValue": 282, "label": "282", "labelValue": "282.0", "tooltip": "Label: 282
Weight: 564.0
Value: 282.0", "type": "TreeMapNode", "weight": 564 }, { "color": "#6f9000", "doubleValue": 283, "label": "283", "labelValue": "283.0", "tooltip": "Label: 283
Weight: 566.0
Value: 283.0", "type": "TreeMapNode", "weight": 566 }, { "color": "#6e9100", "doubleValue": 284, "label": "284", "labelValue": "284.0", "tooltip": "Label: 284
Weight: 568.0
Value: 284.0", "type": "TreeMapNode", "weight": 568 }, { "color": "#6e9100", "doubleValue": 285, "label": "285", "labelValue": "285.0", "tooltip": "Label: 285
Weight: 570.0
Value: 285.0", "type": "TreeMapNode", "weight": 570 }, { "color": "#6d9200", "doubleValue": 286, "label": "286", "labelValue": "286.0", "tooltip": "Label: 286
Weight: 572.0
Value: 286.0", "type": "TreeMapNode", "weight": 572 }, { "color": "#6d9200", "doubleValue": 287, "label": "287", "labelValue": "287.0", "tooltip": "Label: 287
Weight: 574.0
Value: 287.0", "type": "TreeMapNode", "weight": 574 }, { "color": "#6c9300", "doubleValue": 288, "label": "288", "labelValue": "288.0", "tooltip": "Label: 288
Weight: 576.0
Value: 288.0", "type": "TreeMapNode", "weight": 576 }, { "color": "#6c9300", "doubleValue": 289, "label": "289", "labelValue": "289.0", "tooltip": "Label: 289
Weight: 578.0
Value: 289.0", "type": "TreeMapNode", "weight": 578 }, { "color": "#6b9400", "doubleValue": 290, "label": "290", "labelValue": "290.0", "tooltip": "Label: 290
Weight: 580.0
Value: 290.0", "type": "TreeMapNode", "weight": 580 }, { "color": "#6b9400", "doubleValue": 291, "label": "291", "labelValue": "291.0", "tooltip": "Label: 291
Weight: 582.0
Value: 291.0", "type": "TreeMapNode", "weight": 582 }, { "color": "#6a9500", "doubleValue": 292, "label": "292", "labelValue": "292.0", "tooltip": "Label: 292
Weight: 584.0
Value: 292.0", "type": "TreeMapNode", "weight": 584 }, { "color": "#6a9500", "doubleValue": 293, "label": "293", "labelValue": "293.0", "tooltip": "Label: 293
Weight: 586.0
Value: 293.0", "type": "TreeMapNode", "weight": 586 }, { "color": "#699600", "doubleValue": 294, "label": "294", "labelValue": "294.0", "tooltip": "Label: 294
Weight: 588.0
Value: 294.0", "type": "TreeMapNode", "weight": 588 }, { "color": "#699600", "doubleValue": 295, "label": "295", "labelValue": "295.0", "tooltip": "Label: 295
Weight: 590.0
Value: 295.0", "type": "TreeMapNode", "weight": 590 }, { "color": "#689700", "doubleValue": 296, "label": "296", "labelValue": "296.0", "tooltip": "Label: 296
Weight: 592.0
Value: 296.0", "type": "TreeMapNode", "weight": 592 }, { "color": "#689700", "doubleValue": 297, "label": "297", "labelValue": "297.0", "tooltip": "Label: 297
Weight: 594.0
Value: 297.0", "type": "TreeMapNode", "weight": 594 }, { "color": "#679800", "doubleValue": 298, "label": "298", "labelValue": "298.0", "tooltip": "Label: 298
Weight: 596.0
Value: 298.0", "type": "TreeMapNode", "weight": 596 }, { "color": "#679800", "doubleValue": 299, "label": "299", "labelValue": "299.0", "tooltip": "Label: 299
Weight: 598.0
Value: 299.0", "type": "TreeMapNode", "weight": 598 }, { "color": "#669900", "doubleValue": 300, "label": "300", "labelValue": "300.0", "tooltip": "Label: 300
Weight: 600.0
Value: 300.0", "type": "TreeMapNode", "weight": 600 }, { "color": "#669900", "doubleValue": 301, "label": "301", "labelValue": "301.0", "tooltip": "Label: 301
Weight: 602.0
Value: 301.0", "type": "TreeMapNode", "weight": 602 }, { "color": "#659a00", "doubleValue": 302, "label": "302", "labelValue": "302.0", "tooltip": "Label: 302
Weight: 604.0
Value: 302.0", "type": "TreeMapNode", "weight": 604 }, { "color": "#659a00", "doubleValue": 303, "label": "303", "labelValue": "303.0", "tooltip": "Label: 303
Weight: 606.0
Value: 303.0", "type": "TreeMapNode", "weight": 606 }, { "color": "#649b00", "doubleValue": 304, "label": "304", "labelValue": "304.0", "tooltip": "Label: 304
Weight: 608.0
Value: 304.0", "type": "TreeMapNode", "weight": 608 }, { "color": "#649b00", "doubleValue": 305, "label": "305", "labelValue": "305.0", "tooltip": "Label: 305
Weight: 610.0
Value: 305.0", "type": "TreeMapNode", "weight": 610 }, { "color": "#639c00", "doubleValue": 306, "label": "306", "labelValue": "306.0", "tooltip": "Label: 306
Weight: 612.0
Value: 306.0", "type": "TreeMapNode", "weight": 612 }, { "color": "#639c00", "doubleValue": 307, "label": "307", "labelValue": "307.0", "tooltip": "Label: 307
Weight: 614.0
Value: 307.0", "type": "TreeMapNode", "weight": 614 }, { "color": "#629d00", "doubleValue": 308, "label": "308", "labelValue": "308.0", "tooltip": "Label: 308
Weight: 616.0
Value: 308.0", "type": "TreeMapNode", "weight": 616 }, { "color": "#629d00", "doubleValue": 309, "label": "309", "labelValue": "309.0", "tooltip": "Label: 309
Weight: 618.0
Value: 309.0", "type": "TreeMapNode", "weight": 618 }, { "color": "#619e00", "doubleValue": 310, "label": "310", "labelValue": "310.0", "tooltip": "Label: 310
Weight: 620.0
Value: 310.0", "type": "TreeMapNode", "weight": 620 }, { "color": "#619e00", "doubleValue": 311, "label": "311", "labelValue": "311.0", "tooltip": "Label: 311
Weight: 622.0
Value: 311.0", "type": "TreeMapNode", "weight": 622 }, { "color": "#609f00", "doubleValue": 312, "label": "312", "labelValue": "312.0", "tooltip": "Label: 312
Weight: 624.0
Value: 312.0", "type": "TreeMapNode", "weight": 624 }, { "color": "#609f00", "doubleValue": 313, "label": "313", "labelValue": "313.0", "tooltip": "Label: 313
Weight: 626.0
Value: 313.0", "type": "TreeMapNode", "weight": 626 }, { "color": "#5fa000", "doubleValue": 314, "label": "314", "labelValue": "314.0", "tooltip": "Label: 314
Weight: 628.0
Value: 314.0", "type": "TreeMapNode", "weight": 628 }, { "color": "#5fa000", "doubleValue": 315, "label": "315", "labelValue": "315.0", "tooltip": "Label: 315
Weight: 630.0
Value: 315.0", "type": "TreeMapNode", "weight": 630 }, { "color": "#5ea100", "doubleValue": 316, "label": "316", "labelValue": "316.0", "tooltip": "Label: 316
Weight: 632.0
Value: 316.0", "type": "TreeMapNode", "weight": 632 }, { "color": "#5ea100", "doubleValue": 317, "label": "317", "labelValue": "317.0", "tooltip": "Label: 317
Weight: 634.0
Value: 317.0", "type": "TreeMapNode", "weight": 634 }, { "color": "#5da200", "doubleValue": 318, "label": "318", "labelValue": "318.0", "tooltip": "Label: 318
Weight: 636.0
Value: 318.0", "type": "TreeMapNode", "weight": 636 }, { "color": "#5ca300", "doubleValue": 319, "label": "319", "labelValue": "319.0", "tooltip": "Label: 319
Weight: 638.0
Value: 319.0", "type": "TreeMapNode", "weight": 638 }, { "color": "#5ca300", "doubleValue": 320, "label": "320", "labelValue": "320.0", "tooltip": "Label: 320
Weight: 640.0
Value: 320.0", "type": "TreeMapNode", "weight": 640 }, { "color": "#5ba400", "doubleValue": 321, "label": "321", "labelValue": "321.0", "tooltip": "Label: 321
Weight: 642.0
Value: 321.0", "type": "TreeMapNode", "weight": 642 }, { "color": "#5ba400", "doubleValue": 322, "label": "322", "labelValue": "322.0", "tooltip": "Label: 322
Weight: 644.0
Value: 322.0", "type": "TreeMapNode", "weight": 644 }, { "color": "#5aa500", "doubleValue": 323, "label": "323", "labelValue": "323.0", "tooltip": "Label: 323
Weight: 646.0
Value: 323.0", "type": "TreeMapNode", "weight": 646 }, { "color": "#5aa500", "doubleValue": 324, "label": "324", "labelValue": "324.0", "tooltip": "Label: 324
Weight: 648.0
Value: 324.0", "type": "TreeMapNode", "weight": 648 }, { "color": "#59a600", "doubleValue": 325, "label": "325", "labelValue": "325.0", "tooltip": "Label: 325
Weight: 650.0
Value: 325.0", "type": "TreeMapNode", "weight": 650 }, { "color": "#59a600", "doubleValue": 326, "label": "326", "labelValue": "326.0", "tooltip": "Label: 326
Weight: 652.0
Value: 326.0", "type": "TreeMapNode", "weight": 652 }, { "color": "#58a700", "doubleValue": 327, "label": "327", "labelValue": "327.0", "tooltip": "Label: 327
Weight: 654.0
Value: 327.0", "type": "TreeMapNode", "weight": 654 }, { "color": "#58a700", "doubleValue": 328, "label": "328", "labelValue": "328.0", "tooltip": "Label: 328
Weight: 656.0
Value: 328.0", "type": "TreeMapNode", "weight": 656 }, { "color": "#57a800", "doubleValue": 329, "label": "329", "labelValue": "329.0", "tooltip": "Label: 329
Weight: 658.0
Value: 329.0", "type": "TreeMapNode", "weight": 658 }, { "color": "#57a800", "doubleValue": 330, "label": "330", "labelValue": "330.0", "tooltip": "Label: 330
Weight: 660.0
Value: 330.0", "type": "TreeMapNode", "weight": 660 }, { "color": "#56a900", "doubleValue": 331, "label": "331", "labelValue": "331.0", "tooltip": "Label: 331
Weight: 662.0
Value: 331.0", "type": "TreeMapNode", "weight": 662 }, { "color": "#56a900", "doubleValue": 332, "label": "332", "labelValue": "332.0", "tooltip": "Label: 332
Weight: 664.0
Value: 332.0", "type": "TreeMapNode", "weight": 664 }, { "color": "#55aa00", "doubleValue": 333, "label": "333", "labelValue": "333.0", "tooltip": "Label: 333
Weight: 666.0
Value: 333.0", "type": "TreeMapNode", "weight": 666 }, { "color": "#55aa00", "doubleValue": 334, "label": "334", "labelValue": "334.0", "tooltip": "Label: 334
Weight: 668.0
Value: 334.0", "type": "TreeMapNode", "weight": 668 }, { "color": "#54ab00", "doubleValue": 335, "label": "335", "labelValue": "335.0", "tooltip": "Label: 335
Weight: 670.0
Value: 335.0", "type": "TreeMapNode", "weight": 670 }, { "color": "#54ab00", "doubleValue": 336, "label": "336", "labelValue": "336.0", "tooltip": "Label: 336
Weight: 672.0
Value: 336.0", "type": "TreeMapNode", "weight": 672 }, { "color": "#53ac00", "doubleValue": 337, "label": "337", "labelValue": "337.0", "tooltip": "Label: 337
Weight: 674.0
Value: 337.0", "type": "TreeMapNode", "weight": 674 }, { "color": "#53ac00", "doubleValue": 338, "label": "338", "labelValue": "338.0", "tooltip": "Label: 338
Weight: 676.0
Value: 338.0", "type": "TreeMapNode", "weight": 676 }, { "color": "#52ad00", "doubleValue": 339, "label": "339", "labelValue": "339.0", "tooltip": "Label: 339
Weight: 678.0
Value: 339.0", "type": "TreeMapNode", "weight": 678 }, { "color": "#52ad00", "doubleValue": 340, "label": "340", "labelValue": "340.0", "tooltip": "Label: 340
Weight: 680.0
Value: 340.0", "type": "TreeMapNode", "weight": 680 }, { "color": "#51ae00", "doubleValue": 341, "label": "341", "labelValue": "341.0", "tooltip": "Label: 341
Weight: 682.0
Value: 341.0", "type": "TreeMapNode", "weight": 682 }, { "color": "#51ae00", "doubleValue": 342, "label": "342", "labelValue": "342.0", "tooltip": "Label: 342
Weight: 684.0
Value: 342.0", "type": "TreeMapNode", "weight": 684 }, { "color": "#50af00", "doubleValue": 343, "label": "343", "labelValue": "343.0", "tooltip": "Label: 343
Weight: 686.0
Value: 343.0", "type": "TreeMapNode", "weight": 686 }, { "color": "#50af00", "doubleValue": 344, "label": "344", "labelValue": "344.0", "tooltip": "Label: 344
Weight: 688.0
Value: 344.0", "type": "TreeMapNode", "weight": 688 }, { "color": "#4fb000", "doubleValue": 345, "label": "345", "labelValue": "345.0", "tooltip": "Label: 345
Weight: 690.0
Value: 345.0", "type": "TreeMapNode", "weight": 690 }, { "color": "#4fb000", "doubleValue": 346, "label": "346", "labelValue": "346.0", "tooltip": "Label: 346
Weight: 692.0
Value: 346.0", "type": "TreeMapNode", "weight": 692 }, { "color": "#4eb100", "doubleValue": 347, "label": "347", "labelValue": "347.0", "tooltip": "Label: 347
Weight: 694.0
Value: 347.0", "type": "TreeMapNode", "weight": 694 }, { "color": "#4eb100", "doubleValue": 348, "label": "348", "labelValue": "348.0", "tooltip": "Label: 348
Weight: 696.0
Value: 348.0", "type": "TreeMapNode", "weight": 696 }, { "color": "#4db200", "doubleValue": 349, "label": "349", "labelValue": "349.0", "tooltip": "Label: 349
Weight: 698.0
Value: 349.0", "type": "TreeMapNode", "weight": 698 }, { "color": "#4db200", "doubleValue": 350, "label": "350", "labelValue": "350.0", "tooltip": "Label: 350
Weight: 700.0
Value: 350.0", "type": "TreeMapNode", "weight": 700 }, { "color": "#4cb300", "doubleValue": 351, "label": "351", "labelValue": "351.0", "tooltip": "Label: 351
Weight: 702.0
Value: 351.0", "type": "TreeMapNode", "weight": 702 }, { "color": "#4cb300", "doubleValue": 352, "label": "352", "labelValue": "352.0", "tooltip": "Label: 352
Weight: 704.0
Value: 352.0", "type": "TreeMapNode", "weight": 704 }, { "color": "#4bb400", "doubleValue": 353, "label": "353", "labelValue": "353.0", "tooltip": "Label: 353
Weight: 706.0
Value: 353.0", "type": "TreeMapNode", "weight": 706 }, { "color": "#4bb400", "doubleValue": 354, "label": "354", "labelValue": "354.0", "tooltip": "Label: 354
Weight: 708.0
Value: 354.0", "type": "TreeMapNode", "weight": 708 }, { "color": "#4ab500", "doubleValue": 355, "label": "355", "labelValue": "355.0", "tooltip": "Label: 355
Weight: 710.0
Value: 355.0", "type": "TreeMapNode", "weight": 710 }, { "color": "#4ab500", "doubleValue": 356, "label": "356", "labelValue": "356.0", "tooltip": "Label: 356
Weight: 712.0
Value: 356.0", "type": "TreeMapNode", "weight": 712 }, { "color": "#49b600", "doubleValue": 357, "label": "357", "labelValue": "357.0", "tooltip": "Label: 357
Weight: 714.0
Value: 357.0", "type": "TreeMapNode", "weight": 714 }, { "color": "#49b600", "doubleValue": 358, "label": "358", "labelValue": "358.0", "tooltip": "Label: 358
Weight: 716.0
Value: 358.0", "type": "TreeMapNode", "weight": 716 }, { "color": "#48b700", "doubleValue": 359, "label": "359", "labelValue": "359.0", "tooltip": "Label: 359
Weight: 718.0
Value: 359.0", "type": "TreeMapNode", "weight": 718 }, { "color": "#48b700", "doubleValue": 360, "label": "360", "labelValue": "360.0", "tooltip": "Label: 360
Weight: 720.0
Value: 360.0", "type": "TreeMapNode", "weight": 720 }, { "color": "#47b800", "doubleValue": 361, "label": "361", "labelValue": "361.0", "tooltip": "Label: 361
Weight: 722.0
Value: 361.0", "type": "TreeMapNode", "weight": 722 }, { "color": "#47b800", "doubleValue": 362, "label": "362", "labelValue": "362.0", "tooltip": "Label: 362
Weight: 724.0
Value: 362.0", "type": "TreeMapNode", "weight": 724 }, { "color": "#46b900", "doubleValue": 363, "label": "363", "labelValue": "363.0", "tooltip": "Label: 363
Weight: 726.0
Value: 363.0", "type": "TreeMapNode", "weight": 726 }, { "color": "#45ba00", "doubleValue": 364, "label": "364", "labelValue": "364.0", "tooltip": "Label: 364
Weight: 728.0
Value: 364.0", "type": "TreeMapNode", "weight": 728 }, { "color": "#45ba00", "doubleValue": 365, "label": "365", "labelValue": "365.0", "tooltip": "Label: 365
Weight: 730.0
Value: 365.0", "type": "TreeMapNode", "weight": 730 }, { "color": "#44bb00", "doubleValue": 366, "label": "366", "labelValue": "366.0", "tooltip": "Label: 366
Weight: 732.0
Value: 366.0", "type": "TreeMapNode", "weight": 732 }, { "color": "#44bb00", "doubleValue": 367, "label": "367", "labelValue": "367.0", "tooltip": "Label: 367
Weight: 734.0
Value: 367.0", "type": "TreeMapNode", "weight": 734 }, { "color": "#43bc00", "doubleValue": 368, "label": "368", "labelValue": "368.0", "tooltip": "Label: 368
Weight: 736.0
Value: 368.0", "type": "TreeMapNode", "weight": 736 }, { "color": "#43bc00", "doubleValue": 369, "label": "369", "labelValue": "369.0", "tooltip": "Label: 369
Weight: 738.0
Value: 369.0", "type": "TreeMapNode", "weight": 738 }, { "color": "#42bd00", "doubleValue": 370, "label": "370", "labelValue": "370.0", "tooltip": "Label: 370
Weight: 740.0
Value: 370.0", "type": "TreeMapNode", "weight": 740 }, { "color": "#42bd00", "doubleValue": 371, "label": "371", "labelValue": "371.0", "tooltip": "Label: 371
Weight: 742.0
Value: 371.0", "type": "TreeMapNode", "weight": 742 }, { "color": "#41be00", "doubleValue": 372, "label": "372", "labelValue": "372.0", "tooltip": "Label: 372
Weight: 744.0
Value: 372.0", "type": "TreeMapNode", "weight": 744 }, { "color": "#41be00", "doubleValue": 373, "label": "373", "labelValue": "373.0", "tooltip": "Label: 373
Weight: 746.0
Value: 373.0", "type": "TreeMapNode", "weight": 746 }, { "color": "#40bf00", "doubleValue": 374, "label": "374", "labelValue": "374.0", "tooltip": "Label: 374
Weight: 748.0
Value: 374.0", "type": "TreeMapNode", "weight": 748 }, { "color": "#40bf00", "doubleValue": 375, "label": "375", "labelValue": "375.0", "tooltip": "Label: 375
Weight: 750.0
Value: 375.0", "type": "TreeMapNode", "weight": 750 }, { "color": "#3fc000", "doubleValue": 376, "label": "376", "labelValue": "376.0", "tooltip": "Label: 376
Weight: 752.0
Value: 376.0", "type": "TreeMapNode", "weight": 752 }, { "color": "#3fc000", "doubleValue": 377, "label": "377", "labelValue": "377.0", "tooltip": "Label: 377
Weight: 754.0
Value: 377.0", "type": "TreeMapNode", "weight": 754 }, { "color": "#3ec100", "doubleValue": 378, "label": "378", "labelValue": "378.0", "tooltip": "Label: 378
Weight: 756.0
Value: 378.0", "type": "TreeMapNode", "weight": 756 }, { "color": "#3ec100", "doubleValue": 379, "label": "379", "labelValue": "379.0", "tooltip": "Label: 379
Weight: 758.0
Value: 379.0", "type": "TreeMapNode", "weight": 758 }, { "color": "#3dc200", "doubleValue": 380, "label": "380", "labelValue": "380.0", "tooltip": "Label: 380
Weight: 760.0
Value: 380.0", "type": "TreeMapNode", "weight": 760 }, { "color": "#3dc200", "doubleValue": 381, "label": "381", "labelValue": "381.0", "tooltip": "Label: 381
Weight: 762.0
Value: 381.0", "type": "TreeMapNode", "weight": 762 }, { "color": "#3cc300", "doubleValue": 382, "label": "382", "labelValue": "382.0", "tooltip": "Label: 382
Weight: 764.0
Value: 382.0", "type": "TreeMapNode", "weight": 764 }, { "color": "#3cc300", "doubleValue": 383, "label": "383", "labelValue": "383.0", "tooltip": "Label: 383
Weight: 766.0
Value: 383.0", "type": "TreeMapNode", "weight": 766 }, { "color": "#3bc400", "doubleValue": 384, "label": "384", "labelValue": "384.0", "tooltip": "Label: 384
Weight: 768.0
Value: 384.0", "type": "TreeMapNode", "weight": 768 }, { "color": "#3bc400", "doubleValue": 385, "label": "385", "labelValue": "385.0", "tooltip": "Label: 385
Weight: 770.0
Value: 385.0", "type": "TreeMapNode", "weight": 770 }, { "color": "#3ac500", "doubleValue": 386, "label": "386", "labelValue": "386.0", "tooltip": "Label: 386
Weight: 772.0
Value: 386.0", "type": "TreeMapNode", "weight": 772 }, { "color": "#3ac500", "doubleValue": 387, "label": "387", "labelValue": "387.0", "tooltip": "Label: 387
Weight: 774.0
Value: 387.0", "type": "TreeMapNode", "weight": 774 }, { "color": "#39c600", "doubleValue": 388, "label": "388", "labelValue": "388.0", "tooltip": "Label: 388
Weight: 776.0
Value: 388.0", "type": "TreeMapNode", "weight": 776 }, { "color": "#39c600", "doubleValue": 389, "label": "389", "labelValue": "389.0", "tooltip": "Label: 389
Weight: 778.0
Value: 389.0", "type": "TreeMapNode", "weight": 778 }, { "color": "#38c700", "doubleValue": 390, "label": "390", "labelValue": "390.0", "tooltip": "Label: 390
Weight: 780.0
Value: 390.0", "type": "TreeMapNode", "weight": 780 }, { "color": "#38c700", "doubleValue": 391, "label": "391", "labelValue": "391.0", "tooltip": "Label: 391
Weight: 782.0
Value: 391.0", "type": "TreeMapNode", "weight": 782 }, { "color": "#37c800", "doubleValue": 392, "label": "392", "labelValue": "392.0", "tooltip": "Label: 392
Weight: 784.0
Value: 392.0", "type": "TreeMapNode", "weight": 784 }, { "color": "#37c800", "doubleValue": 393, "label": "393", "labelValue": "393.0", "tooltip": "Label: 393
Weight: 786.0
Value: 393.0", "type": "TreeMapNode", "weight": 786 }, { "color": "#36c900", "doubleValue": 394, "label": "394", "labelValue": "394.0", "tooltip": "Label: 394
Weight: 788.0
Value: 394.0", "type": "TreeMapNode", "weight": 788 }, { "color": "#36c900", "doubleValue": 395, "label": "395", "labelValue": "395.0", "tooltip": "Label: 395
Weight: 790.0
Value: 395.0", "type": "TreeMapNode", "weight": 790 }, { "color": "#35ca00", "doubleValue": 396, "label": "396", "labelValue": "396.0", "tooltip": "Label: 396
Weight: 792.0
Value: 396.0", "type": "TreeMapNode", "weight": 792 }, { "color": "#35ca00", "doubleValue": 397, "label": "397", "labelValue": "397.0", "tooltip": "Label: 397
Weight: 794.0
Value: 397.0", "type": "TreeMapNode", "weight": 794 }, { "color": "#34cb00", "doubleValue": 398, "label": "398", "labelValue": "398.0", "tooltip": "Label: 398
Weight: 796.0
Value: 398.0", "type": "TreeMapNode", "weight": 796 }, { "color": "#34cb00", "doubleValue": 399, "label": "399", "labelValue": "399.0", "tooltip": "Label: 399
Weight: 798.0
Value: 399.0", "type": "TreeMapNode", "weight": 798 }, { "color": "#33cc00", "doubleValue": 400, "label": "400", "labelValue": "400.0", "tooltip": "Label: 400
Weight: 800.0
Value: 400.0", "type": "TreeMapNode", "weight": 800 }, { "color": "#33cc00", "doubleValue": 401, "label": "401", "labelValue": "401.0", "tooltip": "Label: 401
Weight: 802.0
Value: 401.0", "type": "TreeMapNode", "weight": 802 }, { "color": "#32cd00", "doubleValue": 402, "label": "402", "labelValue": "402.0", "tooltip": "Label: 402
Weight: 804.0
Value: 402.0", "type": "TreeMapNode", "weight": 804 }, { "color": "#32cd00", "doubleValue": 403, "label": "403", "labelValue": "403.0", "tooltip": "Label: 403
Weight: 806.0
Value: 403.0", "type": "TreeMapNode", "weight": 806 }, { "color": "#31ce00", "doubleValue": 404, "label": "404", "labelValue": "404.0", "tooltip": "Label: 404
Weight: 808.0
Value: 404.0", "type": "TreeMapNode", "weight": 808 }, { "color": "#31ce00", "doubleValue": 405, "label": "405", "labelValue": "405.0", "tooltip": "Label: 405
Weight: 810.0
Value: 405.0", "type": "TreeMapNode", "weight": 810 }, { "color": "#30cf00", "doubleValue": 406, "label": "406", "labelValue": "406.0", "tooltip": "Label: 406
Weight: 812.0
Value: 406.0", "type": "TreeMapNode", "weight": 812 }, { "color": "#30cf00", "doubleValue": 407, "label": "407", "labelValue": "407.0", "tooltip": "Label: 407
Weight: 814.0
Value: 407.0", "type": "TreeMapNode", "weight": 814 }, { "color": "#2fd000", "doubleValue": 408, "label": "408", "labelValue": "408.0", "tooltip": "Label: 408
Weight: 816.0
Value: 408.0", "type": "TreeMapNode", "weight": 816 }, { "color": "#2fd000", "doubleValue": 409, "label": "409", "labelValue": "409.0", "tooltip": "Label: 409
Weight: 818.0
Value: 409.0", "type": "TreeMapNode", "weight": 818 }, { "color": "#2ed100", "doubleValue": 410, "label": "410", "labelValue": "410.0", "tooltip": "Label: 410
Weight: 820.0
Value: 410.0", "type": "TreeMapNode", "weight": 820 }, { "color": "#2dd200", "doubleValue": 411, "label": "411", "labelValue": "411.0", "tooltip": "Label: 411
Weight: 822.0
Value: 411.0", "type": "TreeMapNode", "weight": 822 }, { "color": "#2dd200", "doubleValue": 412, "label": "412", "labelValue": "412.0", "tooltip": "Label: 412
Weight: 824.0
Value: 412.0", "type": "TreeMapNode", "weight": 824 }, { "color": "#2cd300", "doubleValue": 413, "label": "413", "labelValue": "413.0", "tooltip": "Label: 413
Weight: 826.0
Value: 413.0", "type": "TreeMapNode", "weight": 826 }, { "color": "#2cd300", "doubleValue": 414, "label": "414", "labelValue": "414.0", "tooltip": "Label: 414
Weight: 828.0
Value: 414.0", "type": "TreeMapNode", "weight": 828 }, { "color": "#2bd400", "doubleValue": 415, "label": "415", "labelValue": "415.0", "tooltip": "Label: 415
Weight: 830.0
Value: 415.0", "type": "TreeMapNode", "weight": 830 }, { "color": "#2bd400", "doubleValue": 416, "label": "416", "labelValue": "416.0", "tooltip": "Label: 416
Weight: 832.0
Value: 416.0", "type": "TreeMapNode", "weight": 832 }, { "color": "#2ad500", "doubleValue": 417, "label": "417", "labelValue": "417.0", "tooltip": "Label: 417
Weight: 834.0
Value: 417.0", "type": "TreeMapNode", "weight": 834 }, { "color": "#2ad500", "doubleValue": 418, "label": "418", "labelValue": "418.0", "tooltip": "Label: 418
Weight: 836.0
Value: 418.0", "type": "TreeMapNode", "weight": 836 }, { "color": "#29d600", "doubleValue": 419, "label": "419", "labelValue": "419.0", "tooltip": "Label: 419
Weight: 838.0
Value: 419.0", "type": "TreeMapNode", "weight": 838 }, { "color": "#29d600", "doubleValue": 420, "label": "420", "labelValue": "420.0", "tooltip": "Label: 420
Weight: 840.0
Value: 420.0", "type": "TreeMapNode", "weight": 840 }, { "color": "#28d700", "doubleValue": 421, "label": "421", "labelValue": "421.0", "tooltip": "Label: 421
Weight: 842.0
Value: 421.0", "type": "TreeMapNode", "weight": 842 }, { "color": "#28d700", "doubleValue": 422, "label": "422", "labelValue": "422.0", "tooltip": "Label: 422
Weight: 844.0
Value: 422.0", "type": "TreeMapNode", "weight": 844 }, { "color": "#27d800", "doubleValue": 423, "label": "423", "labelValue": "423.0", "tooltip": "Label: 423
Weight: 846.0
Value: 423.0", "type": "TreeMapNode", "weight": 846 }, { "color": "#27d800", "doubleValue": 424, "label": "424", "labelValue": "424.0", "tooltip": "Label: 424
Weight: 848.0
Value: 424.0", "type": "TreeMapNode", "weight": 848 }, { "color": "#26d900", "doubleValue": 425, "label": "425", "labelValue": "425.0", "tooltip": "Label: 425
Weight: 850.0
Value: 425.0", "type": "TreeMapNode", "weight": 850 }, { "color": "#26d900", "doubleValue": 426, "label": "426", "labelValue": "426.0", "tooltip": "Label: 426
Weight: 852.0
Value: 426.0", "type": "TreeMapNode", "weight": 852 }, { "color": "#25da00", "doubleValue": 427, "label": "427", "labelValue": "427.0", "tooltip": "Label: 427
Weight: 854.0
Value: 427.0", "type": "TreeMapNode", "weight": 854 }, { "color": "#25da00", "doubleValue": 428, "label": "428", "labelValue": "428.0", "tooltip": "Label: 428
Weight: 856.0
Value: 428.0", "type": "TreeMapNode", "weight": 856 }, { "color": "#24db00", "doubleValue": 429, "label": "429", "labelValue": "429.0", "tooltip": "Label: 429
Weight: 858.0
Value: 429.0", "type": "TreeMapNode", "weight": 858 }, { "color": "#24db00", "doubleValue": 430, "label": "430", "labelValue": "430.0", "tooltip": "Label: 430
Weight: 860.0
Value: 430.0", "type": "TreeMapNode", "weight": 860 }, { "color": "#23dc00", "doubleValue": 431, "label": "431", "labelValue": "431.0", "tooltip": "Label: 431
Weight: 862.0
Value: 431.0", "type": "TreeMapNode", "weight": 862 }, { "color": "#23dc00", "doubleValue": 432, "label": "432", "labelValue": "432.0", "tooltip": "Label: 432
Weight: 864.0
Value: 432.0", "type": "TreeMapNode", "weight": 864 }, { "color": "#22dd00", "doubleValue": 433, "label": "433", "labelValue": "433.0", "tooltip": "Label: 433
Weight: 866.0
Value: 433.0", "type": "TreeMapNode", "weight": 866 }, { "color": "#22dd00", "doubleValue": 434, "label": "434", "labelValue": "434.0", "tooltip": "Label: 434
Weight: 868.0
Value: 434.0", "type": "TreeMapNode", "weight": 868 }, { "color": "#21de00", "doubleValue": 435, "label": "435", "labelValue": "435.0", "tooltip": "Label: 435
Weight: 870.0
Value: 435.0", "type": "TreeMapNode", "weight": 870 }, { "color": "#21de00", "doubleValue": 436, "label": "436", "labelValue": "436.0", "tooltip": "Label: 436
Weight: 872.0
Value: 436.0", "type": "TreeMapNode", "weight": 872 }, { "color": "#20df00", "doubleValue": 437, "label": "437", "labelValue": "437.0", "tooltip": "Label: 437
Weight: 874.0
Value: 437.0", "type": "TreeMapNode", "weight": 874 }, { "color": "#20df00", "doubleValue": 438, "label": "438", "labelValue": "438.0", "tooltip": "Label: 438
Weight: 876.0
Value: 438.0", "type": "TreeMapNode", "weight": 876 }, { "color": "#1fe000", "doubleValue": 439, "label": "439", "labelValue": "439.0", "tooltip": "Label: 439
Weight: 878.0
Value: 439.0", "type": "TreeMapNode", "weight": 878 }, { "color": "#1fe000", "doubleValue": 440, "label": "440", "labelValue": "440.0", "tooltip": "Label: 440
Weight: 880.0
Value: 440.0", "type": "TreeMapNode", "weight": 880 }, { "color": "#1ee100", "doubleValue": 441, "label": "441", "labelValue": "441.0", "tooltip": "Label: 441
Weight: 882.0
Value: 441.0", "type": "TreeMapNode", "weight": 882 }, { "color": "#1ee100", "doubleValue": 442, "label": "442", "labelValue": "442.0", "tooltip": "Label: 442
Weight: 884.0
Value: 442.0", "type": "TreeMapNode", "weight": 884 }, { "color": "#1de200", "doubleValue": 443, "label": "443", "labelValue": "443.0", "tooltip": "Label: 443
Weight: 886.0
Value: 443.0", "type": "TreeMapNode", "weight": 886 }, { "color": "#1de200", "doubleValue": 444, "label": "444", "labelValue": "444.0", "tooltip": "Label: 444
Weight: 888.0
Value: 444.0", "type": "TreeMapNode", "weight": 888 }, { "color": "#1ce300", "doubleValue": 445, "label": "445", "labelValue": "445.0", "tooltip": "Label: 445
Weight: 890.0
Value: 445.0", "type": "TreeMapNode", "weight": 890 }, { "color": "#1ce300", "doubleValue": 446, "label": "446", "labelValue": "446.0", "tooltip": "Label: 446
Weight: 892.0
Value: 446.0", "type": "TreeMapNode", "weight": 892 }, { "color": "#1be400", "doubleValue": 447, "label": "447", "labelValue": "447.0", "tooltip": "Label: 447
Weight: 894.0
Value: 447.0", "type": "TreeMapNode", "weight": 894 }, { "color": "#1be400", "doubleValue": 448, "label": "448", "labelValue": "448.0", "tooltip": "Label: 448
Weight: 896.0
Value: 448.0", "type": "TreeMapNode", "weight": 896 }, { "color": "#1ae500", "doubleValue": 449, "label": "449", "labelValue": "449.0", "tooltip": "Label: 449
Weight: 898.0
Value: 449.0", "type": "TreeMapNode", "weight": 898 }, { "color": "#1ae500", "doubleValue": 450, "label": "450", "labelValue": "450.0", "tooltip": "Label: 450
Weight: 900.0
Value: 450.0", "type": "TreeMapNode", "weight": 900 }, { "color": "#19e600", "doubleValue": 451, "label": "451", "labelValue": "451.0", "tooltip": "Label: 451
Weight: 902.0
Value: 451.0", "type": "TreeMapNode", "weight": 902 }, { "color": "#19e600", "doubleValue": 452, "label": "452", "labelValue": "452.0", "tooltip": "Label: 452
Weight: 904.0
Value: 452.0", "type": "TreeMapNode", "weight": 904 }, { "color": "#18e700", "doubleValue": 453, "label": "453", "labelValue": "453.0", "tooltip": "Label: 453
Weight: 906.0
Value: 453.0", "type": "TreeMapNode", "weight": 906 }, { "color": "#18e700", "doubleValue": 454, "label": "454", "labelValue": "454.0", "tooltip": "Label: 454
Weight: 908.0
Value: 454.0", "type": "TreeMapNode", "weight": 908 }, { "color": "#17e800", "doubleValue": 455, "label": "455", "labelValue": "455.0", "tooltip": "Label: 455
Weight: 910.0
Value: 455.0", "type": "TreeMapNode", "weight": 910 }, { "color": "#16e900", "doubleValue": 456, "label": "456", "labelValue": "456.0", "tooltip": "Label: 456
Weight: 912.0
Value: 456.0", "type": "TreeMapNode", "weight": 912 }, { "color": "#16e900", "doubleValue": 457, "label": "457", "labelValue": "457.0", "tooltip": "Label: 457
Weight: 914.0
Value: 457.0", "type": "TreeMapNode", "weight": 914 }, { "color": "#15ea00", "doubleValue": 458, "label": "458", "labelValue": "458.0", "tooltip": "Label: 458
Weight: 916.0
Value: 458.0", "type": "TreeMapNode", "weight": 916 }, { "color": "#15ea00", "doubleValue": 459, "label": "459", "labelValue": "459.0", "tooltip": "Label: 459
Weight: 918.0
Value: 459.0", "type": "TreeMapNode", "weight": 918 }, { "color": "#14eb00", "doubleValue": 460, "label": "460", "labelValue": "460.0", "tooltip": "Label: 460
Weight: 920.0
Value: 460.0", "type": "TreeMapNode", "weight": 920 }, { "color": "#14eb00", "doubleValue": 461, "label": "461", "labelValue": "461.0", "tooltip": "Label: 461
Weight: 922.0
Value: 461.0", "type": "TreeMapNode", "weight": 922 }, { "color": "#13ec00", "doubleValue": 462, "label": "462", "labelValue": "462.0", "tooltip": "Label: 462
Weight: 924.0
Value: 462.0", "type": "TreeMapNode", "weight": 924 }, { "color": "#13ec00", "doubleValue": 463, "label": "463", "labelValue": "463.0", "tooltip": "Label: 463
Weight: 926.0
Value: 463.0", "type": "TreeMapNode", "weight": 926 }, { "color": "#12ed00", "doubleValue": 464, "label": "464", "labelValue": "464.0", "tooltip": "Label: 464
Weight: 928.0
Value: 464.0", "type": "TreeMapNode", "weight": 928 }, { "color": "#12ed00", "doubleValue": 465, "label": "465", "labelValue": "465.0", "tooltip": "Label: 465
Weight: 930.0
Value: 465.0", "type": "TreeMapNode", "weight": 930 }, { "color": "#11ee00", "doubleValue": 466, "label": "466", "labelValue": "466.0", "tooltip": "Label: 466
Weight: 932.0
Value: 466.0", "type": "TreeMapNode", "weight": 932 }, { "color": "#11ee00", "doubleValue": 467, "label": "467", "labelValue": "467.0", "tooltip": "Label: 467
Weight: 934.0
Value: 467.0", "type": "TreeMapNode", "weight": 934 }, { "color": "#10ef00", "doubleValue": 468, "label": "468", "labelValue": "468.0", "tooltip": "Label: 468
Weight: 936.0
Value: 468.0", "type": "TreeMapNode", "weight": 936 }, { "color": "#10ef00", "doubleValue": 469, "label": "469", "labelValue": "469.0", "tooltip": "Label: 469
Weight: 938.0
Value: 469.0", "type": "TreeMapNode", "weight": 938 }, { "color": "#0ff000", "doubleValue": 470, "label": "470", "labelValue": "470.0", "tooltip": "Label: 470
Weight: 940.0
Value: 470.0", "type": "TreeMapNode", "weight": 940 }, { "color": "#0ff000", "doubleValue": 471, "label": "471", "labelValue": "471.0", "tooltip": "Label: 471
Weight: 942.0
Value: 471.0", "type": "TreeMapNode", "weight": 942 }, { "color": "#0ef100", "doubleValue": 472, "label": "472", "labelValue": "472.0", "tooltip": "Label: 472
Weight: 944.0
Value: 472.0", "type": "TreeMapNode", "weight": 944 }, { "color": "#0ef100", "doubleValue": 473, "label": "473", "labelValue": "473.0", "tooltip": "Label: 473
Weight: 946.0
Value: 473.0", "type": "TreeMapNode", "weight": 946 }, { "color": "#0df200", "doubleValue": 474, "label": "474", "labelValue": "474.0", "tooltip": "Label: 474
Weight: 948.0
Value: 474.0", "type": "TreeMapNode", "weight": 948 }, { "color": "#0df200", "doubleValue": 475, "label": "475", "labelValue": "475.0", "tooltip": "Label: 475
Weight: 950.0
Value: 475.0", "type": "TreeMapNode", "weight": 950 }, { "color": "#0cf300", "doubleValue": 476, "label": "476", "labelValue": "476.0", "tooltip": "Label: 476
Weight: 952.0
Value: 476.0", "type": "TreeMapNode", "weight": 952 }, { "color": "#0cf300", "doubleValue": 477, "label": "477", "labelValue": "477.0", "tooltip": "Label: 477
Weight: 954.0
Value: 477.0", "type": "TreeMapNode", "weight": 954 }, { "color": "#0bf400", "doubleValue": 478, "label": "478", "labelValue": "478.0", "tooltip": "Label: 478
Weight: 956.0
Value: 478.0", "type": "TreeMapNode", "weight": 956 }, { "color": "#0bf400", "doubleValue": 479, "label": "479", "labelValue": "479.0", "tooltip": "Label: 479
Weight: 958.0
Value: 479.0", "type": "TreeMapNode", "weight": 958 }, { "color": "#0af500", "doubleValue": 480, "label": "480", "labelValue": "480.0", "tooltip": "Label: 480
Weight: 960.0
Value: 480.0", "type": "TreeMapNode", "weight": 960 }, { "color": "#0af500", "doubleValue": 481, "label": "481", "labelValue": "481.0", "tooltip": "Label: 481
Weight: 962.0
Value: 481.0", "type": "TreeMapNode", "weight": 962 }, { "color": "#09f600", "doubleValue": 482, "label": "482", "labelValue": "482.0", "tooltip": "Label: 482
Weight: 964.0
Value: 482.0", "type": "TreeMapNode", "weight": 964 }, { "color": "#09f600", "doubleValue": 483, "label": "483", "labelValue": "483.0", "tooltip": "Label: 483
Weight: 966.0
Value: 483.0", "type": "TreeMapNode", "weight": 966 }, { "color": "#08f700", "doubleValue": 484, "label": "484", "labelValue": "484.0", "tooltip": "Label: 484
Weight: 968.0
Value: 484.0", "type": "TreeMapNode", "weight": 968 }, { "color": "#08f700", "doubleValue": 485, "label": "485", "labelValue": "485.0", "tooltip": "Label: 485
Weight: 970.0
Value: 485.0", "type": "TreeMapNode", "weight": 970 }, { "color": "#07f800", "doubleValue": 486, "label": "486", "labelValue": "486.0", "tooltip": "Label: 486
Weight: 972.0
Value: 486.0", "type": "TreeMapNode", "weight": 972 }, { "color": "#07f800", "doubleValue": 487, "label": "487", "labelValue": "487.0", "tooltip": "Label: 487
Weight: 974.0
Value: 487.0", "type": "TreeMapNode", "weight": 974 }, { "color": "#06f900", "doubleValue": 488, "label": "488", "labelValue": "488.0", "tooltip": "Label: 488
Weight: 976.0
Value: 488.0", "type": "TreeMapNode", "weight": 976 }, { "color": "#06f900", "doubleValue": 489, "label": "489", "labelValue": "489.0", "tooltip": "Label: 489
Weight: 978.0
Value: 489.0", "type": "TreeMapNode", "weight": 978 }, { "color": "#05fa00", "doubleValue": 490, "label": "490", "labelValue": "490.0", "tooltip": "Label: 490
Weight: 980.0
Value: 490.0", "type": "TreeMapNode", "weight": 980 }, { "color": "#05fa00", "doubleValue": 491, "label": "491", "labelValue": "491.0", "tooltip": "Label: 491
Weight: 982.0
Value: 491.0", "type": "TreeMapNode", "weight": 982 }, { "color": "#04fb00", "doubleValue": 492, "label": "492", "labelValue": "492.0", "tooltip": "Label: 492
Weight: 984.0
Value: 492.0", "type": "TreeMapNode", "weight": 984 }, { "color": "#04fb00", "doubleValue": 493, "label": "493", "labelValue": "493.0", "tooltip": "Label: 493
Weight: 986.0
Value: 493.0", "type": "TreeMapNode", "weight": 986 }, { "color": "#03fc00", "doubleValue": 494, "label": "494", "labelValue": "494.0", "tooltip": "Label: 494
Weight: 988.0
Value: 494.0", "type": "TreeMapNode", "weight": 988 }, { "color": "#03fc00", "doubleValue": 495, "label": "495", "labelValue": "495.0", "tooltip": "Label: 495
Weight: 990.0
Value: 495.0", "type": "TreeMapNode", "weight": 990 }, { "color": "#02fd00", "doubleValue": 496, "label": "496", "labelValue": "496.0", "tooltip": "Label: 496
Weight: 992.0
Value: 496.0", "type": "TreeMapNode", "weight": 992 }, { "color": "#02fd00", "doubleValue": 497, "label": "497", "labelValue": "497.0", "tooltip": "Label: 497
Weight: 994.0
Value: 497.0", "type": "TreeMapNode", "weight": 994 }, { "color": "#01fe00", "doubleValue": 498, "label": "498", "labelValue": "498.0", "tooltip": "Label: 498
Weight: 996.0
Value: 498.0", "type": "TreeMapNode", "weight": 996 }, { "color": "#01fe00", "doubleValue": 499, "label": "499", "labelValue": "499.0", "tooltip": "Label: 499
Weight: 998.0
Value: 499.0", "type": "TreeMapNode", "weight": 998 }, { "color": "#00ff00", "doubleValue": 500, "label": "500", "labelValue": "500.0", "tooltip": "Label: 500
Weight: 1000.0
Value: 500.0", "type": "TreeMapNode", "weight": 1000 }, { "children": [ { "color": "#ff0000", "doubleValue": 1, "label": "1", "labelValue": "1.0", "tooltip": "Label: 1
Weight: 2.0
Value: 1.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#fe0100", "doubleValue": 2, "label": "2", "labelValue": "2.0", "tooltip": "Label: 2
Weight: 4.0
Value: 2.0", "type": "TreeMapNode", "weight": 4 }, { "color": "#fe0100", "doubleValue": 3, "label": "3", "labelValue": "3.0", "tooltip": "Label: 3
Weight: 6.0
Value: 3.0", "type": "TreeMapNode", "weight": 6 }, { "color": "#fd0200", "doubleValue": 4, "label": "4", "labelValue": "4.0", "tooltip": "Label: 4
Weight: 8.0
Value: 4.0", "type": "TreeMapNode", "weight": 8 }, { "color": "#fd0200", "doubleValue": 5, "label": "5", "labelValue": "5.0", "tooltip": "Label: 5
Weight: 10.0
Value: 5.0", "type": "TreeMapNode", "weight": 10 }, { "color": "#fc0300", "doubleValue": 6, "label": "6", "labelValue": "6.0", "tooltip": "Label: 6
Weight: 12.0
Value: 6.0", "type": "TreeMapNode", "weight": 12 }, { "color": "#fc0300", "doubleValue": 7, "label": "7", "labelValue": "7.0", "tooltip": "Label: 7
Weight: 14.0
Value: 7.0", "type": "TreeMapNode", "weight": 14 }, { "color": "#fb0400", "doubleValue": 8, "label": "8", "labelValue": "8.0", "tooltip": "Label: 8
Weight: 16.0
Value: 8.0", "type": "TreeMapNode", "weight": 16 }, { "color": "#fb0400", "doubleValue": 9, "label": "9", "labelValue": "9.0", "tooltip": "Label: 9
Weight: 18.0
Value: 9.0", "type": "TreeMapNode", "weight": 18 }, { "color": "#fa0500", "doubleValue": 10, "label": "10", "labelValue": "10.0", "tooltip": "Label: 10
Weight: 20.0
Value: 10.0", "type": "TreeMapNode", "weight": 20 }, { "color": "#fa0500", "doubleValue": 11, "label": "11", "labelValue": "11.0", "tooltip": "Label: 11
Weight: 22.0
Value: 11.0", "type": "TreeMapNode", "weight": 22 }, { "color": "#f90600", "doubleValue": 12, "label": "12", "labelValue": "12.0", "tooltip": "Label: 12
Weight: 24.0
Value: 12.0", "type": "TreeMapNode", "weight": 24 }, { "color": "#f90600", "doubleValue": 13, "label": "13", "labelValue": "13.0", "tooltip": "Label: 13
Weight: 26.0
Value: 13.0", "type": "TreeMapNode", "weight": 26 }, { "color": "#f80700", "doubleValue": 14, "label": "14", "labelValue": "14.0", "tooltip": "Label: 14
Weight: 28.0
Value: 14.0", "type": "TreeMapNode", "weight": 28 }, { "color": "#f80700", "doubleValue": 15, "label": "15", "labelValue": "15.0", "tooltip": "Label: 15
Weight: 30.0
Value: 15.0", "type": "TreeMapNode", "weight": 30 }, { "color": "#f70800", "doubleValue": 16, "label": "16", "labelValue": "16.0", "tooltip": "Label: 16
Weight: 32.0
Value: 16.0", "type": "TreeMapNode", "weight": 32 }, { "color": "#f70800", "doubleValue": 17, "label": "17", "labelValue": "17.0", "tooltip": "Label: 17
Weight: 34.0
Value: 17.0", "type": "TreeMapNode", "weight": 34 }, { "color": "#f60900", "doubleValue": 18, "label": "18", "labelValue": "18.0", "tooltip": "Label: 18
Weight: 36.0
Value: 18.0", "type": "TreeMapNode", "weight": 36 }, { "color": "#f60900", "doubleValue": 19, "label": "19", "labelValue": "19.0", "tooltip": "Label: 19
Weight: 38.0
Value: 19.0", "type": "TreeMapNode", "weight": 38 }, { "color": "#f50a00", "doubleValue": 20, "label": "20", "labelValue": "20.0", "tooltip": "Label: 20
Weight: 40.0
Value: 20.0", "type": "TreeMapNode", "weight": 40 }, { "color": "#f50a00", "doubleValue": 21, "label": "21", "labelValue": "21.0", "tooltip": "Label: 21
Weight: 42.0
Value: 21.0", "type": "TreeMapNode", "weight": 42 }, { "color": "#f40b00", "doubleValue": 22, "label": "22", "labelValue": "22.0", "tooltip": "Label: 22
Weight: 44.0
Value: 22.0", "type": "TreeMapNode", "weight": 44 }, { "color": "#f40b00", "doubleValue": 23, "label": "23", "labelValue": "23.0", "tooltip": "Label: 23
Weight: 46.0
Value: 23.0", "type": "TreeMapNode", "weight": 46 }, { "color": "#f30c00", "doubleValue": 24, "label": "24", "labelValue": "24.0", "tooltip": "Label: 24
Weight: 48.0
Value: 24.0", "type": "TreeMapNode", "weight": 48 }, { "color": "#f30c00", "doubleValue": 25, "label": "25", "labelValue": "25.0", "tooltip": "Label: 25
Weight: 50.0
Value: 25.0", "type": "TreeMapNode", "weight": 50 }, { "color": "#f20d00", "doubleValue": 26, "label": "26", "labelValue": "26.0", "tooltip": "Label: 26
Weight: 52.0
Value: 26.0", "type": "TreeMapNode", "weight": 52 }, { "color": "#f20d00", "doubleValue": 27, "label": "27", "labelValue": "27.0", "tooltip": "Label: 27
Weight: 54.0
Value: 27.0", "type": "TreeMapNode", "weight": 54 }, { "color": "#f10e00", "doubleValue": 28, "label": "28", "labelValue": "28.0", "tooltip": "Label: 28
Weight: 56.0
Value: 28.0", "type": "TreeMapNode", "weight": 56 }, { "color": "#f10e00", "doubleValue": 29, "label": "29", "labelValue": "29.0", "tooltip": "Label: 29
Weight: 58.0
Value: 29.0", "type": "TreeMapNode", "weight": 58 }, { "color": "#f00f00", "doubleValue": 30, "label": "30", "labelValue": "30.0", "tooltip": "Label: 30
Weight: 60.0
Value: 30.0", "type": "TreeMapNode", "weight": 60 }, { "color": "#f00f00", "doubleValue": 31, "label": "31", "labelValue": "31.0", "tooltip": "Label: 31
Weight: 62.0
Value: 31.0", "type": "TreeMapNode", "weight": 62 }, { "color": "#ef1000", "doubleValue": 32, "label": "32", "labelValue": "32.0", "tooltip": "Label: 32
Weight: 64.0
Value: 32.0", "type": "TreeMapNode", "weight": 64 }, { "color": "#ef1000", "doubleValue": 33, "label": "33", "labelValue": "33.0", "tooltip": "Label: 33
Weight: 66.0
Value: 33.0", "type": "TreeMapNode", "weight": 66 }, { "color": "#ee1100", "doubleValue": 34, "label": "34", "labelValue": "34.0", "tooltip": "Label: 34
Weight: 68.0
Value: 34.0", "type": "TreeMapNode", "weight": 68 }, { "color": "#ee1100", "doubleValue": 35, "label": "35", "labelValue": "35.0", "tooltip": "Label: 35
Weight: 70.0
Value: 35.0", "type": "TreeMapNode", "weight": 70 }, { "color": "#ed1200", "doubleValue": 36, "label": "36", "labelValue": "36.0", "tooltip": "Label: 36
Weight: 72.0
Value: 36.0", "type": "TreeMapNode", "weight": 72 }, { "color": "#ed1200", "doubleValue": 37, "label": "37", "labelValue": "37.0", "tooltip": "Label: 37
Weight: 74.0
Value: 37.0", "type": "TreeMapNode", "weight": 74 }, { "color": "#ec1300", "doubleValue": 38, "label": "38", "labelValue": "38.0", "tooltip": "Label: 38
Weight: 76.0
Value: 38.0", "type": "TreeMapNode", "weight": 76 }, { "color": "#ec1300", "doubleValue": 39, "label": "39", "labelValue": "39.0", "tooltip": "Label: 39
Weight: 78.0
Value: 39.0", "type": "TreeMapNode", "weight": 78 }, { "color": "#eb1400", "doubleValue": 40, "label": "40", "labelValue": "40.0", "tooltip": "Label: 40
Weight: 80.0
Value: 40.0", "type": "TreeMapNode", "weight": 80 }, { "color": "#eb1400", "doubleValue": 41, "label": "41", "labelValue": "41.0", "tooltip": "Label: 41
Weight: 82.0
Value: 41.0", "type": "TreeMapNode", "weight": 82 }, { "color": "#ea1500", "doubleValue": 42, "label": "42", "labelValue": "42.0", "tooltip": "Label: 42
Weight: 84.0
Value: 42.0", "type": "TreeMapNode", "weight": 84 }, { "color": "#ea1500", "doubleValue": 43, "label": "43", "labelValue": "43.0", "tooltip": "Label: 43
Weight: 86.0
Value: 43.0", "type": "TreeMapNode", "weight": 86 }, { "color": "#e91600", "doubleValue": 44, "label": "44", "labelValue": "44.0", "tooltip": "Label: 44
Weight: 88.0
Value: 44.0", "type": "TreeMapNode", "weight": 88 }, { "color": "#e91600", "doubleValue": 45, "label": "45", "labelValue": "45.0", "tooltip": "Label: 45
Weight: 90.0
Value: 45.0", "type": "TreeMapNode", "weight": 90 }, { "color": "#e81700", "doubleValue": 46, "label": "46", "labelValue": "46.0", "tooltip": "Label: 46
Weight: 92.0
Value: 46.0", "type": "TreeMapNode", "weight": 92 }, { "color": "#e71800", "doubleValue": 47, "label": "47", "labelValue": "47.0", "tooltip": "Label: 47
Weight: 94.0
Value: 47.0", "type": "TreeMapNode", "weight": 94 }, { "color": "#e71800", "doubleValue": 48, "label": "48", "labelValue": "48.0", "tooltip": "Label: 48
Weight: 96.0
Value: 48.0", "type": "TreeMapNode", "weight": 96 }, { "color": "#e61900", "doubleValue": 49, "label": "49", "labelValue": "49.0", "tooltip": "Label: 49
Weight: 98.0
Value: 49.0", "type": "TreeMapNode", "weight": 98 }, { "color": "#e61900", "doubleValue": 50, "label": "50", "labelValue": "50.0", "tooltip": "Label: 50
Weight: 100.0
Value: 50.0", "type": "TreeMapNode", "weight": 100 }, { "color": "#e51a00", "doubleValue": 51, "label": "51", "labelValue": "51.0", "tooltip": "Label: 51
Weight: 102.0
Value: 51.0", "type": "TreeMapNode", "weight": 102 }, { "color": "#e51a00", "doubleValue": 52, "label": "52", "labelValue": "52.0", "tooltip": "Label: 52
Weight: 104.0
Value: 52.0", "type": "TreeMapNode", "weight": 104 }, { "color": "#e41b00", "doubleValue": 53, "label": "53", "labelValue": "53.0", "tooltip": "Label: 53
Weight: 106.0
Value: 53.0", "type": "TreeMapNode", "weight": 106 }, { "color": "#e41b00", "doubleValue": 54, "label": "54", "labelValue": "54.0", "tooltip": "Label: 54
Weight: 108.0
Value: 54.0", "type": "TreeMapNode", "weight": 108 }, { "color": "#e31c00", "doubleValue": 55, "label": "55", "labelValue": "55.0", "tooltip": "Label: 55
Weight: 110.0
Value: 55.0", "type": "TreeMapNode", "weight": 110 }, { "color": "#e31c00", "doubleValue": 56, "label": "56", "labelValue": "56.0", "tooltip": "Label: 56
Weight: 112.0
Value: 56.0", "type": "TreeMapNode", "weight": 112 }, { "color": "#e21d00", "doubleValue": 57, "label": "57", "labelValue": "57.0", "tooltip": "Label: 57
Weight: 114.0
Value: 57.0", "type": "TreeMapNode", "weight": 114 }, { "color": "#e21d00", "doubleValue": 58, "label": "58", "labelValue": "58.0", "tooltip": "Label: 58
Weight: 116.0
Value: 58.0", "type": "TreeMapNode", "weight": 116 }, { "color": "#e11e00", "doubleValue": 59, "label": "59", "labelValue": "59.0", "tooltip": "Label: 59
Weight: 118.0
Value: 59.0", "type": "TreeMapNode", "weight": 118 }, { "color": "#e11e00", "doubleValue": 60, "label": "60", "labelValue": "60.0", "tooltip": "Label: 60
Weight: 120.0
Value: 60.0", "type": "TreeMapNode", "weight": 120 }, { "color": "#e01f00", "doubleValue": 61, "label": "61", "labelValue": "61.0", "tooltip": "Label: 61
Weight: 122.0
Value: 61.0", "type": "TreeMapNode", "weight": 122 }, { "color": "#e01f00", "doubleValue": 62, "label": "62", "labelValue": "62.0", "tooltip": "Label: 62
Weight: 124.0
Value: 62.0", "type": "TreeMapNode", "weight": 124 }, { "color": "#df2000", "doubleValue": 63, "label": "63", "labelValue": "63.0", "tooltip": "Label: 63
Weight: 126.0
Value: 63.0", "type": "TreeMapNode", "weight": 126 }, { "color": "#df2000", "doubleValue": 64, "label": "64", "labelValue": "64.0", "tooltip": "Label: 64
Weight: 128.0
Value: 64.0", "type": "TreeMapNode", "weight": 128 }, { "color": "#de2100", "doubleValue": 65, "label": "65", "labelValue": "65.0", "tooltip": "Label: 65
Weight: 130.0
Value: 65.0", "type": "TreeMapNode", "weight": 130 }, { "color": "#de2100", "doubleValue": 66, "label": "66", "labelValue": "66.0", "tooltip": "Label: 66
Weight: 132.0
Value: 66.0", "type": "TreeMapNode", "weight": 132 }, { "color": "#dd2200", "doubleValue": 67, "label": "67", "labelValue": "67.0", "tooltip": "Label: 67
Weight: 134.0
Value: 67.0", "type": "TreeMapNode", "weight": 134 }, { "color": "#dd2200", "doubleValue": 68, "label": "68", "labelValue": "68.0", "tooltip": "Label: 68
Weight: 136.0
Value: 68.0", "type": "TreeMapNode", "weight": 136 }, { "color": "#dc2300", "doubleValue": 69, "label": "69", "labelValue": "69.0", "tooltip": "Label: 69
Weight: 138.0
Value: 69.0", "type": "TreeMapNode", "weight": 138 }, { "color": "#dc2300", "doubleValue": 70, "label": "70", "labelValue": "70.0", "tooltip": "Label: 70
Weight: 140.0
Value: 70.0", "type": "TreeMapNode", "weight": 140 }, { "color": "#db2400", "doubleValue": 71, "label": "71", "labelValue": "71.0", "tooltip": "Label: 71
Weight: 142.0
Value: 71.0", "type": "TreeMapNode", "weight": 142 }, { "color": "#db2400", "doubleValue": 72, "label": "72", "labelValue": "72.0", "tooltip": "Label: 72
Weight: 144.0
Value: 72.0", "type": "TreeMapNode", "weight": 144 }, { "color": "#da2500", "doubleValue": 73, "label": "73", "labelValue": "73.0", "tooltip": "Label: 73
Weight: 146.0
Value: 73.0", "type": "TreeMapNode", "weight": 146 }, { "color": "#da2500", "doubleValue": 74, "label": "74", "labelValue": "74.0", "tooltip": "Label: 74
Weight: 148.0
Value: 74.0", "type": "TreeMapNode", "weight": 148 }, { "color": "#d92600", "doubleValue": 75, "label": "75", "labelValue": "75.0", "tooltip": "Label: 75
Weight: 150.0
Value: 75.0", "type": "TreeMapNode", "weight": 150 }, { "color": "#d92600", "doubleValue": 76, "label": "76", "labelValue": "76.0", "tooltip": "Label: 76
Weight: 152.0
Value: 76.0", "type": "TreeMapNode", "weight": 152 }, { "color": "#d82700", "doubleValue": 77, "label": "77", "labelValue": "77.0", "tooltip": "Label: 77
Weight: 154.0
Value: 77.0", "type": "TreeMapNode", "weight": 154 }, { "color": "#d82700", "doubleValue": 78, "label": "78", "labelValue": "78.0", "tooltip": "Label: 78
Weight: 156.0
Value: 78.0", "type": "TreeMapNode", "weight": 156 }, { "color": "#d72800", "doubleValue": 79, "label": "79", "labelValue": "79.0", "tooltip": "Label: 79
Weight: 158.0
Value: 79.0", "type": "TreeMapNode", "weight": 158 }, { "color": "#d72800", "doubleValue": 80, "label": "80", "labelValue": "80.0", "tooltip": "Label: 80
Weight: 160.0
Value: 80.0", "type": "TreeMapNode", "weight": 160 }, { "color": "#d62900", "doubleValue": 81, "label": "81", "labelValue": "81.0", "tooltip": "Label: 81
Weight: 162.0
Value: 81.0", "type": "TreeMapNode", "weight": 162 }, { "color": "#d62900", "doubleValue": 82, "label": "82", "labelValue": "82.0", "tooltip": "Label: 82
Weight: 164.0
Value: 82.0", "type": "TreeMapNode", "weight": 164 }, { "color": "#d52a00", "doubleValue": 83, "label": "83", "labelValue": "83.0", "tooltip": "Label: 83
Weight: 166.0
Value: 83.0", "type": "TreeMapNode", "weight": 166 }, { "color": "#d52a00", "doubleValue": 84, "label": "84", "labelValue": "84.0", "tooltip": "Label: 84
Weight: 168.0
Value: 84.0", "type": "TreeMapNode", "weight": 168 }, { "color": "#d42b00", "doubleValue": 85, "label": "85", "labelValue": "85.0", "tooltip": "Label: 85
Weight: 170.0
Value: 85.0", "type": "TreeMapNode", "weight": 170 }, { "color": "#d42b00", "doubleValue": 86, "label": "86", "labelValue": "86.0", "tooltip": "Label: 86
Weight: 172.0
Value: 86.0", "type": "TreeMapNode", "weight": 172 }, { "color": "#d32c00", "doubleValue": 87, "label": "87", "labelValue": "87.0", "tooltip": "Label: 87
Weight: 174.0
Value: 87.0", "type": "TreeMapNode", "weight": 174 }, { "color": "#d32c00", "doubleValue": 88, "label": "88", "labelValue": "88.0", "tooltip": "Label: 88
Weight: 176.0
Value: 88.0", "type": "TreeMapNode", "weight": 176 }, { "color": "#d22d00", "doubleValue": 89, "label": "89", "labelValue": "89.0", "tooltip": "Label: 89
Weight: 178.0
Value: 89.0", "type": "TreeMapNode", "weight": 178 }, { "color": "#d22d00", "doubleValue": 90, "label": "90", "labelValue": "90.0", "tooltip": "Label: 90
Weight: 180.0
Value: 90.0", "type": "TreeMapNode", "weight": 180 }, { "color": "#d12e00", "doubleValue": 91, "label": "91", "labelValue": "91.0", "tooltip": "Label: 91
Weight: 182.0
Value: 91.0", "type": "TreeMapNode", "weight": 182 }, { "color": "#d02f00", "doubleValue": 92, "label": "92", "labelValue": "92.0", "tooltip": "Label: 92
Weight: 184.0
Value: 92.0", "type": "TreeMapNode", "weight": 184 }, { "color": "#d02f00", "doubleValue": 93, "label": "93", "labelValue": "93.0", "tooltip": "Label: 93
Weight: 186.0
Value: 93.0", "type": "TreeMapNode", "weight": 186 }, { "color": "#cf3000", "doubleValue": 94, "label": "94", "labelValue": "94.0", "tooltip": "Label: 94
Weight: 188.0
Value: 94.0", "type": "TreeMapNode", "weight": 188 }, { "color": "#cf3000", "doubleValue": 95, "label": "95", "labelValue": "95.0", "tooltip": "Label: 95
Weight: 190.0
Value: 95.0", "type": "TreeMapNode", "weight": 190 }, { "color": "#ce3100", "doubleValue": 96, "label": "96", "labelValue": "96.0", "tooltip": "Label: 96
Weight: 192.0
Value: 96.0", "type": "TreeMapNode", "weight": 192 }, { "color": "#ce3100", "doubleValue": 97, "label": "97", "labelValue": "97.0", "tooltip": "Label: 97
Weight: 194.0
Value: 97.0", "type": "TreeMapNode", "weight": 194 }, { "color": "#cd3200", "doubleValue": 98, "label": "98", "labelValue": "98.0", "tooltip": "Label: 98
Weight: 196.0
Value: 98.0", "type": "TreeMapNode", "weight": 196 }, { "color": "#cd3200", "doubleValue": 99, "label": "99", "labelValue": "99.0", "tooltip": "Label: 99
Weight: 198.0
Value: 99.0", "type": "TreeMapNode", "weight": 198 }, { "color": "#cc3300", "doubleValue": 100, "label": "100", "labelValue": "100.0", "tooltip": "Label: 100
Weight: 200.0
Value: 100.0", "type": "TreeMapNode", "weight": 200 }, { "color": "#cc3300", "doubleValue": 101, "label": "101", "labelValue": "101.0", "tooltip": "Label: 101
Weight: 202.0
Value: 101.0", "type": "TreeMapNode", "weight": 202 }, { "color": "#cb3400", "doubleValue": 102, "label": "102", "labelValue": "102.0", "tooltip": "Label: 102
Weight: 204.0
Value: 102.0", "type": "TreeMapNode", "weight": 204 }, { "color": "#cb3400", "doubleValue": 103, "label": "103", "labelValue": "103.0", "tooltip": "Label: 103
Weight: 206.0
Value: 103.0", "type": "TreeMapNode", "weight": 206 }, { "color": "#ca3500", "doubleValue": 104, "label": "104", "labelValue": "104.0", "tooltip": "Label: 104
Weight: 208.0
Value: 104.0", "type": "TreeMapNode", "weight": 208 }, { "color": "#ca3500", "doubleValue": 105, "label": "105", "labelValue": "105.0", "tooltip": "Label: 105
Weight: 210.0
Value: 105.0", "type": "TreeMapNode", "weight": 210 }, { "color": "#c93600", "doubleValue": 106, "label": "106", "labelValue": "106.0", "tooltip": "Label: 106
Weight: 212.0
Value: 106.0", "type": "TreeMapNode", "weight": 212 }, { "color": "#c93600", "doubleValue": 107, "label": "107", "labelValue": "107.0", "tooltip": "Label: 107
Weight: 214.0
Value: 107.0", "type": "TreeMapNode", "weight": 214 }, { "color": "#c83700", "doubleValue": 108, "label": "108", "labelValue": "108.0", "tooltip": "Label: 108
Weight: 216.0
Value: 108.0", "type": "TreeMapNode", "weight": 216 }, { "color": "#c83700", "doubleValue": 109, "label": "109", "labelValue": "109.0", "tooltip": "Label: 109
Weight: 218.0
Value: 109.0", "type": "TreeMapNode", "weight": 218 }, { "color": "#c73800", "doubleValue": 110, "label": "110", "labelValue": "110.0", "tooltip": "Label: 110
Weight: 220.0
Value: 110.0", "type": "TreeMapNode", "weight": 220 }, { "color": "#c73800", "doubleValue": 111, "label": "111", "labelValue": "111.0", "tooltip": "Label: 111
Weight: 222.0
Value: 111.0", "type": "TreeMapNode", "weight": 222 }, { "color": "#c63900", "doubleValue": 112, "label": "112", "labelValue": "112.0", "tooltip": "Label: 112
Weight: 224.0
Value: 112.0", "type": "TreeMapNode", "weight": 224 }, { "color": "#c63900", "doubleValue": 113, "label": "113", "labelValue": "113.0", "tooltip": "Label: 113
Weight: 226.0
Value: 113.0", "type": "TreeMapNode", "weight": 226 }, { "color": "#c53a00", "doubleValue": 114, "label": "114", "labelValue": "114.0", "tooltip": "Label: 114
Weight: 228.0
Value: 114.0", "type": "TreeMapNode", "weight": 228 }, { "color": "#c53a00", "doubleValue": 115, "label": "115", "labelValue": "115.0", "tooltip": "Label: 115
Weight: 230.0
Value: 115.0", "type": "TreeMapNode", "weight": 230 }, { "color": "#c43b00", "doubleValue": 116, "label": "116", "labelValue": "116.0", "tooltip": "Label: 116
Weight: 232.0
Value: 116.0", "type": "TreeMapNode", "weight": 232 }, { "color": "#c43b00", "doubleValue": 117, "label": "117", "labelValue": "117.0", "tooltip": "Label: 117
Weight: 234.0
Value: 117.0", "type": "TreeMapNode", "weight": 234 }, { "color": "#c33c00", "doubleValue": 118, "label": "118", "labelValue": "118.0", "tooltip": "Label: 118
Weight: 236.0
Value: 118.0", "type": "TreeMapNode", "weight": 236 }, { "color": "#c33c00", "doubleValue": 119, "label": "119", "labelValue": "119.0", "tooltip": "Label: 119
Weight: 238.0
Value: 119.0", "type": "TreeMapNode", "weight": 238 }, { "color": "#c23d00", "doubleValue": 120, "label": "120", "labelValue": "120.0", "tooltip": "Label: 120
Weight: 240.0
Value: 120.0", "type": "TreeMapNode", "weight": 240 }, { "color": "#c23d00", "doubleValue": 121, "label": "121", "labelValue": "121.0", "tooltip": "Label: 121
Weight: 242.0
Value: 121.0", "type": "TreeMapNode", "weight": 242 }, { "color": "#c13e00", "doubleValue": 122, "label": "122", "labelValue": "122.0", "tooltip": "Label: 122
Weight: 244.0
Value: 122.0", "type": "TreeMapNode", "weight": 244 }, { "color": "#c13e00", "doubleValue": 123, "label": "123", "labelValue": "123.0", "tooltip": "Label: 123
Weight: 246.0
Value: 123.0", "type": "TreeMapNode", "weight": 246 }, { "color": "#c03f00", "doubleValue": 124, "label": "124", "labelValue": "124.0", "tooltip": "Label: 124
Weight: 248.0
Value: 124.0", "type": "TreeMapNode", "weight": 248 }, { "color": "#c03f00", "doubleValue": 125, "label": "125", "labelValue": "125.0", "tooltip": "Label: 125
Weight: 250.0
Value: 125.0", "type": "TreeMapNode", "weight": 250 }, { "color": "#bf4000", "doubleValue": 126, "label": "126", "labelValue": "126.0", "tooltip": "Label: 126
Weight: 252.0
Value: 126.0", "type": "TreeMapNode", "weight": 252 }, { "color": "#bf4000", "doubleValue": 127, "label": "127", "labelValue": "127.0", "tooltip": "Label: 127
Weight: 254.0
Value: 127.0", "type": "TreeMapNode", "weight": 254 }, { "color": "#be4100", "doubleValue": 128, "label": "128", "labelValue": "128.0", "tooltip": "Label: 128
Weight: 256.0
Value: 128.0", "type": "TreeMapNode", "weight": 256 }, { "color": "#be4100", "doubleValue": 129, "label": "129", "labelValue": "129.0", "tooltip": "Label: 129
Weight: 258.0
Value: 129.0", "type": "TreeMapNode", "weight": 258 }, { "color": "#bd4200", "doubleValue": 130, "label": "130", "labelValue": "130.0", "tooltip": "Label: 130
Weight: 260.0
Value: 130.0", "type": "TreeMapNode", "weight": 260 }, { "color": "#bd4200", "doubleValue": 131, "label": "131", "labelValue": "131.0", "tooltip": "Label: 131
Weight: 262.0
Value: 131.0", "type": "TreeMapNode", "weight": 262 }, { "color": "#bc4300", "doubleValue": 132, "label": "132", "labelValue": "132.0", "tooltip": "Label: 132
Weight: 264.0
Value: 132.0", "type": "TreeMapNode", "weight": 264 }, { "color": "#bc4300", "doubleValue": 133, "label": "133", "labelValue": "133.0", "tooltip": "Label: 133
Weight: 266.0
Value: 133.0", "type": "TreeMapNode", "weight": 266 }, { "color": "#bb4400", "doubleValue": 134, "label": "134", "labelValue": "134.0", "tooltip": "Label: 134
Weight: 268.0
Value: 134.0", "type": "TreeMapNode", "weight": 268 }, { "color": "#bb4400", "doubleValue": 135, "label": "135", "labelValue": "135.0", "tooltip": "Label: 135
Weight: 270.0
Value: 135.0", "type": "TreeMapNode", "weight": 270 }, { "color": "#ba4500", "doubleValue": 136, "label": "136", "labelValue": "136.0", "tooltip": "Label: 136
Weight: 272.0
Value: 136.0", "type": "TreeMapNode", "weight": 272 }, { "color": "#ba4500", "doubleValue": 137, "label": "137", "labelValue": "137.0", "tooltip": "Label: 137
Weight: 274.0
Value: 137.0", "type": "TreeMapNode", "weight": 274 }, { "color": "#b94600", "doubleValue": 138, "label": "138", "labelValue": "138.0", "tooltip": "Label: 138
Weight: 276.0
Value: 138.0", "type": "TreeMapNode", "weight": 276 }, { "color": "#b84700", "doubleValue": 139, "label": "139", "labelValue": "139.0", "tooltip": "Label: 139
Weight: 278.0
Value: 139.0", "type": "TreeMapNode", "weight": 278 }, { "color": "#b84700", "doubleValue": 140, "label": "140", "labelValue": "140.0", "tooltip": "Label: 140
Weight: 280.0
Value: 140.0", "type": "TreeMapNode", "weight": 280 }, { "color": "#b74800", "doubleValue": 141, "label": "141", "labelValue": "141.0", "tooltip": "Label: 141
Weight: 282.0
Value: 141.0", "type": "TreeMapNode", "weight": 282 }, { "color": "#b74800", "doubleValue": 142, "label": "142", "labelValue": "142.0", "tooltip": "Label: 142
Weight: 284.0
Value: 142.0", "type": "TreeMapNode", "weight": 284 }, { "color": "#b64900", "doubleValue": 143, "label": "143", "labelValue": "143.0", "tooltip": "Label: 143
Weight: 286.0
Value: 143.0", "type": "TreeMapNode", "weight": 286 }, { "color": "#b64900", "doubleValue": 144, "label": "144", "labelValue": "144.0", "tooltip": "Label: 144
Weight: 288.0
Value: 144.0", "type": "TreeMapNode", "weight": 288 }, { "color": "#b54a00", "doubleValue": 145, "label": "145", "labelValue": "145.0", "tooltip": "Label: 145
Weight: 290.0
Value: 145.0", "type": "TreeMapNode", "weight": 290 }, { "color": "#b54a00", "doubleValue": 146, "label": "146", "labelValue": "146.0", "tooltip": "Label: 146
Weight: 292.0
Value: 146.0", "type": "TreeMapNode", "weight": 292 }, { "color": "#b44b00", "doubleValue": 147, "label": "147", "labelValue": "147.0", "tooltip": "Label: 147
Weight: 294.0
Value: 147.0", "type": "TreeMapNode", "weight": 294 }, { "color": "#b44b00", "doubleValue": 148, "label": "148", "labelValue": "148.0", "tooltip": "Label: 148
Weight: 296.0
Value: 148.0", "type": "TreeMapNode", "weight": 296 }, { "color": "#b34c00", "doubleValue": 149, "label": "149", "labelValue": "149.0", "tooltip": "Label: 149
Weight: 298.0
Value: 149.0", "type": "TreeMapNode", "weight": 298 }, { "color": "#b34c00", "doubleValue": 150, "label": "150", "labelValue": "150.0", "tooltip": "Label: 150
Weight: 300.0
Value: 150.0", "type": "TreeMapNode", "weight": 300 }, { "color": "#b24d00", "doubleValue": 151, "label": "151", "labelValue": "151.0", "tooltip": "Label: 151
Weight: 302.0
Value: 151.0", "type": "TreeMapNode", "weight": 302 }, { "color": "#b24d00", "doubleValue": 152, "label": "152", "labelValue": "152.0", "tooltip": "Label: 152
Weight: 304.0
Value: 152.0", "type": "TreeMapNode", "weight": 304 }, { "color": "#b14e00", "doubleValue": 153, "label": "153", "labelValue": "153.0", "tooltip": "Label: 153
Weight: 306.0
Value: 153.0", "type": "TreeMapNode", "weight": 306 }, { "color": "#b14e00", "doubleValue": 154, "label": "154", "labelValue": "154.0", "tooltip": "Label: 154
Weight: 308.0
Value: 154.0", "type": "TreeMapNode", "weight": 308 }, { "color": "#b04f00", "doubleValue": 155, "label": "155", "labelValue": "155.0", "tooltip": "Label: 155
Weight: 310.0
Value: 155.0", "type": "TreeMapNode", "weight": 310 }, { "color": "#b04f00", "doubleValue": 156, "label": "156", "labelValue": "156.0", "tooltip": "Label: 156
Weight: 312.0
Value: 156.0", "type": "TreeMapNode", "weight": 312 }, { "color": "#af5000", "doubleValue": 157, "label": "157", "labelValue": "157.0", "tooltip": "Label: 157
Weight: 314.0
Value: 157.0", "type": "TreeMapNode", "weight": 314 }, { "color": "#af5000", "doubleValue": 158, "label": "158", "labelValue": "158.0", "tooltip": "Label: 158
Weight: 316.0
Value: 158.0", "type": "TreeMapNode", "weight": 316 }, { "color": "#ae5100", "doubleValue": 159, "label": "159", "labelValue": "159.0", "tooltip": "Label: 159
Weight: 318.0
Value: 159.0", "type": "TreeMapNode", "weight": 318 }, { "color": "#ae5100", "doubleValue": 160, "label": "160", "labelValue": "160.0", "tooltip": "Label: 160
Weight: 320.0
Value: 160.0", "type": "TreeMapNode", "weight": 320 }, { "color": "#ad5200", "doubleValue": 161, "label": "161", "labelValue": "161.0", "tooltip": "Label: 161
Weight: 322.0
Value: 161.0", "type": "TreeMapNode", "weight": 322 }, { "color": "#ad5200", "doubleValue": 162, "label": "162", "labelValue": "162.0", "tooltip": "Label: 162
Weight: 324.0
Value: 162.0", "type": "TreeMapNode", "weight": 324 }, { "color": "#ac5300", "doubleValue": 163, "label": "163", "labelValue": "163.0", "tooltip": "Label: 163
Weight: 326.0
Value: 163.0", "type": "TreeMapNode", "weight": 326 }, { "color": "#ac5300", "doubleValue": 164, "label": "164", "labelValue": "164.0", "tooltip": "Label: 164
Weight: 328.0
Value: 164.0", "type": "TreeMapNode", "weight": 328 }, { "color": "#ab5400", "doubleValue": 165, "label": "165", "labelValue": "165.0", "tooltip": "Label: 165
Weight: 330.0
Value: 165.0", "type": "TreeMapNode", "weight": 330 }, { "color": "#ab5400", "doubleValue": 166, "label": "166", "labelValue": "166.0", "tooltip": "Label: 166
Weight: 332.0
Value: 166.0", "type": "TreeMapNode", "weight": 332 }, { "color": "#aa5500", "doubleValue": 167, "label": "167", "labelValue": "167.0", "tooltip": "Label: 167
Weight: 334.0
Value: 167.0", "type": "TreeMapNode", "weight": 334 }, { "color": "#aa5500", "doubleValue": 168, "label": "168", "labelValue": "168.0", "tooltip": "Label: 168
Weight: 336.0
Value: 168.0", "type": "TreeMapNode", "weight": 336 }, { "color": "#a95600", "doubleValue": 169, "label": "169", "labelValue": "169.0", "tooltip": "Label: 169
Weight: 338.0
Value: 169.0", "type": "TreeMapNode", "weight": 338 }, { "color": "#a95600", "doubleValue": 170, "label": "170", "labelValue": "170.0", "tooltip": "Label: 170
Weight: 340.0
Value: 170.0", "type": "TreeMapNode", "weight": 340 }, { "color": "#a85700", "doubleValue": 171, "label": "171", "labelValue": "171.0", "tooltip": "Label: 171
Weight: 342.0
Value: 171.0", "type": "TreeMapNode", "weight": 342 }, { "color": "#a85700", "doubleValue": 172, "label": "172", "labelValue": "172.0", "tooltip": "Label: 172
Weight: 344.0
Value: 172.0", "type": "TreeMapNode", "weight": 344 }, { "color": "#a75800", "doubleValue": 173, "label": "173", "labelValue": "173.0", "tooltip": "Label: 173
Weight: 346.0
Value: 173.0", "type": "TreeMapNode", "weight": 346 }, { "color": "#a75800", "doubleValue": 174, "label": "174", "labelValue": "174.0", "tooltip": "Label: 174
Weight: 348.0
Value: 174.0", "type": "TreeMapNode", "weight": 348 }, { "color": "#a65900", "doubleValue": 175, "label": "175", "labelValue": "175.0", "tooltip": "Label: 175
Weight: 350.0
Value: 175.0", "type": "TreeMapNode", "weight": 350 }, { "color": "#a65900", "doubleValue": 176, "label": "176", "labelValue": "176.0", "tooltip": "Label: 176
Weight: 352.0
Value: 176.0", "type": "TreeMapNode", "weight": 352 }, { "color": "#a55a00", "doubleValue": 177, "label": "177", "labelValue": "177.0", "tooltip": "Label: 177
Weight: 354.0
Value: 177.0", "type": "TreeMapNode", "weight": 354 }, { "color": "#a55a00", "doubleValue": 178, "label": "178", "labelValue": "178.0", "tooltip": "Label: 178
Weight: 356.0
Value: 178.0", "type": "TreeMapNode", "weight": 356 }, { "color": "#a45b00", "doubleValue": 179, "label": "179", "labelValue": "179.0", "tooltip": "Label: 179
Weight: 358.0
Value: 179.0", "type": "TreeMapNode", "weight": 358 }, { "color": "#a45b00", "doubleValue": 180, "label": "180", "labelValue": "180.0", "tooltip": "Label: 180
Weight: 360.0
Value: 180.0", "type": "TreeMapNode", "weight": 360 }, { "color": "#a35c00", "doubleValue": 181, "label": "181", "labelValue": "181.0", "tooltip": "Label: 181
Weight: 362.0
Value: 181.0", "type": "TreeMapNode", "weight": 362 }, { "color": "#a35c00", "doubleValue": 182, "label": "182", "labelValue": "182.0", "tooltip": "Label: 182
Weight: 364.0
Value: 182.0", "type": "TreeMapNode", "weight": 364 }, { "color": "#a25d00", "doubleValue": 183, "label": "183", "labelValue": "183.0", "tooltip": "Label: 183
Weight: 366.0
Value: 183.0", "type": "TreeMapNode", "weight": 366 }, { "color": "#a15e00", "doubleValue": 184, "label": "184", "labelValue": "184.0", "tooltip": "Label: 184
Weight: 368.0
Value: 184.0", "type": "TreeMapNode", "weight": 368 }, { "color": "#a15e00", "doubleValue": 185, "label": "185", "labelValue": "185.0", "tooltip": "Label: 185
Weight: 370.0
Value: 185.0", "type": "TreeMapNode", "weight": 370 }, { "color": "#a05f00", "doubleValue": 186, "label": "186", "labelValue": "186.0", "tooltip": "Label: 186
Weight: 372.0
Value: 186.0", "type": "TreeMapNode", "weight": 372 }, { "color": "#a05f00", "doubleValue": 187, "label": "187", "labelValue": "187.0", "tooltip": "Label: 187
Weight: 374.0
Value: 187.0", "type": "TreeMapNode", "weight": 374 }, { "color": "#9f6000", "doubleValue": 188, "label": "188", "labelValue": "188.0", "tooltip": "Label: 188
Weight: 376.0
Value: 188.0", "type": "TreeMapNode", "weight": 376 }, { "color": "#9f6000", "doubleValue": 189, "label": "189", "labelValue": "189.0", "tooltip": "Label: 189
Weight: 378.0
Value: 189.0", "type": "TreeMapNode", "weight": 378 }, { "color": "#9e6100", "doubleValue": 190, "label": "190", "labelValue": "190.0", "tooltip": "Label: 190
Weight: 380.0
Value: 190.0", "type": "TreeMapNode", "weight": 380 }, { "color": "#9e6100", "doubleValue": 191, "label": "191", "labelValue": "191.0", "tooltip": "Label: 191
Weight: 382.0
Value: 191.0", "type": "TreeMapNode", "weight": 382 }, { "color": "#9d6200", "doubleValue": 192, "label": "192", "labelValue": "192.0", "tooltip": "Label: 192
Weight: 384.0
Value: 192.0", "type": "TreeMapNode", "weight": 384 }, { "color": "#9d6200", "doubleValue": 193, "label": "193", "labelValue": "193.0", "tooltip": "Label: 193
Weight: 386.0
Value: 193.0", "type": "TreeMapNode", "weight": 386 }, { "color": "#9c6300", "doubleValue": 194, "label": "194", "labelValue": "194.0", "tooltip": "Label: 194
Weight: 388.0
Value: 194.0", "type": "TreeMapNode", "weight": 388 }, { "color": "#9c6300", "doubleValue": 195, "label": "195", "labelValue": "195.0", "tooltip": "Label: 195
Weight: 390.0
Value: 195.0", "type": "TreeMapNode", "weight": 390 }, { "color": "#9b6400", "doubleValue": 196, "label": "196", "labelValue": "196.0", "tooltip": "Label: 196
Weight: 392.0
Value: 196.0", "type": "TreeMapNode", "weight": 392 }, { "color": "#9b6400", "doubleValue": 197, "label": "197", "labelValue": "197.0", "tooltip": "Label: 197
Weight: 394.0
Value: 197.0", "type": "TreeMapNode", "weight": 394 }, { "color": "#9a6500", "doubleValue": 198, "label": "198", "labelValue": "198.0", "tooltip": "Label: 198
Weight: 396.0
Value: 198.0", "type": "TreeMapNode", "weight": 396 }, { "color": "#9a6500", "doubleValue": 199, "label": "199", "labelValue": "199.0", "tooltip": "Label: 199
Weight: 398.0
Value: 199.0", "type": "TreeMapNode", "weight": 398 }, { "color": "#996600", "doubleValue": 200, "label": "200", "labelValue": "200.0", "tooltip": "Label: 200
Weight: 400.0
Value: 200.0", "type": "TreeMapNode", "weight": 400 }, { "color": "#996600", "doubleValue": 201, "label": "201", "labelValue": "201.0", "tooltip": "Label: 201
Weight: 402.0
Value: 201.0", "type": "TreeMapNode", "weight": 402 }, { "color": "#986700", "doubleValue": 202, "label": "202", "labelValue": "202.0", "tooltip": "Label: 202
Weight: 404.0
Value: 202.0", "type": "TreeMapNode", "weight": 404 }, { "color": "#986700", "doubleValue": 203, "label": "203", "labelValue": "203.0", "tooltip": "Label: 203
Weight: 406.0
Value: 203.0", "type": "TreeMapNode", "weight": 406 }, { "color": "#976800", "doubleValue": 204, "label": "204", "labelValue": "204.0", "tooltip": "Label: 204
Weight: 408.0
Value: 204.0", "type": "TreeMapNode", "weight": 408 }, { "color": "#976800", "doubleValue": 205, "label": "205", "labelValue": "205.0", "tooltip": "Label: 205
Weight: 410.0
Value: 205.0", "type": "TreeMapNode", "weight": 410 }, { "color": "#966900", "doubleValue": 206, "label": "206", "labelValue": "206.0", "tooltip": "Label: 206
Weight: 412.0
Value: 206.0", "type": "TreeMapNode", "weight": 412 }, { "color": "#966900", "doubleValue": 207, "label": "207", "labelValue": "207.0", "tooltip": "Label: 207
Weight: 414.0
Value: 207.0", "type": "TreeMapNode", "weight": 414 }, { "color": "#956a00", "doubleValue": 208, "label": "208", "labelValue": "208.0", "tooltip": "Label: 208
Weight: 416.0
Value: 208.0", "type": "TreeMapNode", "weight": 416 }, { "color": "#956a00", "doubleValue": 209, "label": "209", "labelValue": "209.0", "tooltip": "Label: 209
Weight: 418.0
Value: 209.0", "type": "TreeMapNode", "weight": 418 }, { "color": "#946b00", "doubleValue": 210, "label": "210", "labelValue": "210.0", "tooltip": "Label: 210
Weight: 420.0
Value: 210.0", "type": "TreeMapNode", "weight": 420 }, { "color": "#946b00", "doubleValue": 211, "label": "211", "labelValue": "211.0", "tooltip": "Label: 211
Weight: 422.0
Value: 211.0", "type": "TreeMapNode", "weight": 422 }, { "color": "#936c00", "doubleValue": 212, "label": "212", "labelValue": "212.0", "tooltip": "Label: 212
Weight: 424.0
Value: 212.0", "type": "TreeMapNode", "weight": 424 }, { "color": "#936c00", "doubleValue": 213, "label": "213", "labelValue": "213.0", "tooltip": "Label: 213
Weight: 426.0
Value: 213.0", "type": "TreeMapNode", "weight": 426 }, { "color": "#926d00", "doubleValue": 214, "label": "214", "labelValue": "214.0", "tooltip": "Label: 214
Weight: 428.0
Value: 214.0", "type": "TreeMapNode", "weight": 428 }, { "color": "#926d00", "doubleValue": 215, "label": "215", "labelValue": "215.0", "tooltip": "Label: 215
Weight: 430.0
Value: 215.0", "type": "TreeMapNode", "weight": 430 }, { "color": "#916e00", "doubleValue": 216, "label": "216", "labelValue": "216.0", "tooltip": "Label: 216
Weight: 432.0
Value: 216.0", "type": "TreeMapNode", "weight": 432 }, { "color": "#916e00", "doubleValue": 217, "label": "217", "labelValue": "217.0", "tooltip": "Label: 217
Weight: 434.0
Value: 217.0", "type": "TreeMapNode", "weight": 434 }, { "color": "#906f00", "doubleValue": 218, "label": "218", "labelValue": "218.0", "tooltip": "Label: 218
Weight: 436.0
Value: 218.0", "type": "TreeMapNode", "weight": 436 }, { "color": "#906f00", "doubleValue": 219, "label": "219", "labelValue": "219.0", "tooltip": "Label: 219
Weight: 438.0
Value: 219.0", "type": "TreeMapNode", "weight": 438 }, { "color": "#8f7000", "doubleValue": 220, "label": "220", "labelValue": "220.0", "tooltip": "Label: 220
Weight: 440.0
Value: 220.0", "type": "TreeMapNode", "weight": 440 }, { "color": "#8f7000", "doubleValue": 221, "label": "221", "labelValue": "221.0", "tooltip": "Label: 221
Weight: 442.0
Value: 221.0", "type": "TreeMapNode", "weight": 442 }, { "color": "#8e7100", "doubleValue": 222, "label": "222", "labelValue": "222.0", "tooltip": "Label: 222
Weight: 444.0
Value: 222.0", "type": "TreeMapNode", "weight": 444 }, { "color": "#8e7100", "doubleValue": 223, "label": "223", "labelValue": "223.0", "tooltip": "Label: 223
Weight: 446.0
Value: 223.0", "type": "TreeMapNode", "weight": 446 }, { "color": "#8d7200", "doubleValue": 224, "label": "224", "labelValue": "224.0", "tooltip": "Label: 224
Weight: 448.0
Value: 224.0", "type": "TreeMapNode", "weight": 448 }, { "color": "#8d7200", "doubleValue": 225, "label": "225", "labelValue": "225.0", "tooltip": "Label: 225
Weight: 450.0
Value: 225.0", "type": "TreeMapNode", "weight": 450 }, { "color": "#8c7300", "doubleValue": 226, "label": "226", "labelValue": "226.0", "tooltip": "Label: 226
Weight: 452.0
Value: 226.0", "type": "TreeMapNode", "weight": 452 }, { "color": "#8c7300", "doubleValue": 227, "label": "227", "labelValue": "227.0", "tooltip": "Label: 227
Weight: 454.0
Value: 227.0", "type": "TreeMapNode", "weight": 454 }, { "color": "#8b7400", "doubleValue": 228, "label": "228", "labelValue": "228.0", "tooltip": "Label: 228
Weight: 456.0
Value: 228.0", "type": "TreeMapNode", "weight": 456 }, { "color": "#8a7500", "doubleValue": 229, "label": "229", "labelValue": "229.0", "tooltip": "Label: 229
Weight: 458.0
Value: 229.0", "type": "TreeMapNode", "weight": 458 }, { "color": "#8a7500", "doubleValue": 230, "label": "230", "labelValue": "230.0", "tooltip": "Label: 230
Weight: 460.0
Value: 230.0", "type": "TreeMapNode", "weight": 460 }, { "color": "#897600", "doubleValue": 231, "label": "231", "labelValue": "231.0", "tooltip": "Label: 231
Weight: 462.0
Value: 231.0", "type": "TreeMapNode", "weight": 462 }, { "color": "#897600", "doubleValue": 232, "label": "232", "labelValue": "232.0", "tooltip": "Label: 232
Weight: 464.0
Value: 232.0", "type": "TreeMapNode", "weight": 464 }, { "color": "#887700", "doubleValue": 233, "label": "233", "labelValue": "233.0", "tooltip": "Label: 233
Weight: 466.0
Value: 233.0", "type": "TreeMapNode", "weight": 466 }, { "color": "#887700", "doubleValue": 234, "label": "234", "labelValue": "234.0", "tooltip": "Label: 234
Weight: 468.0
Value: 234.0", "type": "TreeMapNode", "weight": 468 }, { "color": "#877800", "doubleValue": 235, "label": "235", "labelValue": "235.0", "tooltip": "Label: 235
Weight: 470.0
Value: 235.0", "type": "TreeMapNode", "weight": 470 }, { "color": "#877800", "doubleValue": 236, "label": "236", "labelValue": "236.0", "tooltip": "Label: 236
Weight: 472.0
Value: 236.0", "type": "TreeMapNode", "weight": 472 }, { "color": "#867900", "doubleValue": 237, "label": "237", "labelValue": "237.0", "tooltip": "Label: 237
Weight: 474.0
Value: 237.0", "type": "TreeMapNode", "weight": 474 }, { "color": "#867900", "doubleValue": 238, "label": "238", "labelValue": "238.0", "tooltip": "Label: 238
Weight: 476.0
Value: 238.0", "type": "TreeMapNode", "weight": 476 }, { "color": "#857a00", "doubleValue": 239, "label": "239", "labelValue": "239.0", "tooltip": "Label: 239
Weight: 478.0
Value: 239.0", "type": "TreeMapNode", "weight": 478 }, { "color": "#857a00", "doubleValue": 240, "label": "240", "labelValue": "240.0", "tooltip": "Label: 240
Weight: 480.0
Value: 240.0", "type": "TreeMapNode", "weight": 480 }, { "color": "#847b00", "doubleValue": 241, "label": "241", "labelValue": "241.0", "tooltip": "Label: 241
Weight: 482.0
Value: 241.0", "type": "TreeMapNode", "weight": 482 }, { "color": "#847b00", "doubleValue": 242, "label": "242", "labelValue": "242.0", "tooltip": "Label: 242
Weight: 484.0
Value: 242.0", "type": "TreeMapNode", "weight": 484 }, { "color": "#837c00", "doubleValue": 243, "label": "243", "labelValue": "243.0", "tooltip": "Label: 243
Weight: 486.0
Value: 243.0", "type": "TreeMapNode", "weight": 486 }, { "color": "#837c00", "doubleValue": 244, "label": "244", "labelValue": "244.0", "tooltip": "Label: 244
Weight: 488.0
Value: 244.0", "type": "TreeMapNode", "weight": 488 }, { "color": "#827d00", "doubleValue": 245, "label": "245", "labelValue": "245.0", "tooltip": "Label: 245
Weight: 490.0
Value: 245.0", "type": "TreeMapNode", "weight": 490 }, { "color": "#827d00", "doubleValue": 246, "label": "246", "labelValue": "246.0", "tooltip": "Label: 246
Weight: 492.0
Value: 246.0", "type": "TreeMapNode", "weight": 492 }, { "color": "#817e00", "doubleValue": 247, "label": "247", "labelValue": "247.0", "tooltip": "Label: 247
Weight: 494.0
Value: 247.0", "type": "TreeMapNode", "weight": 494 }, { "color": "#817e00", "doubleValue": 248, "label": "248", "labelValue": "248.0", "tooltip": "Label: 248
Weight: 496.0
Value: 248.0", "type": "TreeMapNode", "weight": 496 }, { "color": "#807f00", "doubleValue": 249, "label": "249", "labelValue": "249.0", "tooltip": "Label: 249
Weight: 498.0
Value: 249.0", "type": "TreeMapNode", "weight": 498 }, { "color": "#807f00", "doubleValue": 250, "label": "250", "labelValue": "250.0", "tooltip": "Label: 250
Weight: 500.0
Value: 250.0", "type": "TreeMapNode", "weight": 500 } ], "type": "TreeMapNode", "weight": 62750 } ], "type": "TreeMapNode", "weight": 313250 } ], "type": "TreeMapNode", "weight": 626500 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "e60b5857-68ee-4c9e-b165-cf8e4c3fac03": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "Flare", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "children": [ { "children": [ { "color": "#3182bd", "doubleValue": 3938, "label": "AgglomerativeCluster", "labelValue": "3938.0", "tooltip": "Label: AgglomerativeCluster
Weight: 3938.0
Value: 3938.0", "type": "TreeMapNode", "weight": 3938 }, { "color": "#3182bd", "doubleValue": 3812, "label": "CommunityStructure", "labelValue": "3812.0", "tooltip": "Label: CommunityStructure
Weight: 3812.0
Value: 3812.0", "type": "TreeMapNode", "weight": 3812 }, { "color": "#3182bd", "doubleValue": 6714, "label": "HierarchicalCluster", "labelValue": "6714.0", "tooltip": "Label: HierarchicalCluster
Weight: 6714.0
Value: 6714.0", "type": "TreeMapNode", "weight": 6714 }, { "color": "#3182bd", "doubleValue": 743, "label": "MergeEdge", "labelValue": "743.0", "tooltip": "Label: MergeEdge
Weight: 743.0
Value: 743.0", "type": "TreeMapNode", "weight": 743 } ], "type": "TreeMapNode", "weight": 15207 }, { "children": [ { "color": "#6baed6", "doubleValue": 3534, "label": "BetweennessCentrality", "labelValue": "3534.0", "tooltip": "Label: BetweennessCentrality
Weight: 3534.0
Value: 3534.0", "type": "TreeMapNode", "weight": 3534 }, { "color": "#6baed6", "doubleValue": 5731, "label": "LinkDistance", "labelValue": "5731.0", "tooltip": "Label: LinkDistance
Weight: 5731.0
Value: 5731.0", "type": "TreeMapNode", "weight": 5731 }, { "color": "#6baed6", "doubleValue": 7840, "label": "MaxFlowMinCut", "labelValue": "7840.0", "tooltip": "Label: MaxFlowMinCut
Weight: 7840.0
Value: 7840.0", "type": "TreeMapNode", "weight": 7840 }, { "color": "#6baed6", "doubleValue": 5914, "label": "ShortestPaths", "labelValue": "5914.0", "tooltip": "Label: ShortestPaths
Weight: 5914.0
Value: 5914.0", "type": "TreeMapNode", "weight": 5914 }, { "color": "#6baed6", "doubleValue": 3416, "label": "SpanningTree", "labelValue": "3416.0", "tooltip": "Label: SpanningTree
Weight: 3416.0
Value: 3416.0", "type": "TreeMapNode", "weight": 3416 } ], "type": "TreeMapNode", "weight": 26435 }, { "children": [ { "color": "#9ecae1", "doubleValue": 7074, "label": "AspectRatioBanker", "labelValue": "7074.0", "tooltip": "Label: AspectRatioBanker
Weight: 7074.0
Value: 7074.0", "type": "TreeMapNode", "weight": 7074 } ], "type": "TreeMapNode", "weight": 7074 } ], "type": "TreeMapNode", "weight": 48716 }, { "children": [ { "color": "#c6dbef", "doubleValue": 17010, "label": "Easing", "labelValue": "17010.0", "tooltip": "Label: Easing
Weight: 17010.0
Value: 17010.0", "type": "TreeMapNode", "weight": 17010 }, { "color": "#c6dbef", "doubleValue": 5842, "label": "FunctionSequence", "labelValue": "5842.0", "tooltip": "Label: FunctionSequence
Weight: 5842.0
Value: 5842.0", "type": "TreeMapNode", "weight": 5842 }, { "children": [ { "color": "#e6550d", "doubleValue": 1983, "label": "ArrayInterpolator", "labelValue": "1983.0", "tooltip": "Label: ArrayInterpolator
Weight: 1983.0
Value: 1983.0", "type": "TreeMapNode", "weight": 1983 }, { "color": "#e6550d", "doubleValue": 2047, "label": "ColorInterpolator", "labelValue": "2047.0", "tooltip": "Label: ColorInterpolator
Weight: 2047.0
Value: 2047.0", "type": "TreeMapNode", "weight": 2047 }, { "color": "#e6550d", "doubleValue": 1375, "label": "DateInterpolator", "labelValue": "1375.0", "tooltip": "Label: DateInterpolator
Weight: 1375.0
Value: 1375.0", "type": "TreeMapNode", "weight": 1375 }, { "color": "#e6550d", "doubleValue": 8746, "label": "Interpolator", "labelValue": "8746.0", "tooltip": "Label: Interpolator
Weight: 8746.0
Value: 8746.0", "type": "TreeMapNode", "weight": 8746 }, { "color": "#e6550d", "doubleValue": 2202, "label": "MatrixInterpolator", "labelValue": "2202.0", "tooltip": "Label: MatrixInterpolator
Weight: 2202.0
Value: 2202.0", "type": "TreeMapNode", "weight": 2202 }, { "color": "#e6550d", "doubleValue": 1382, "label": "NumberInterpolator", "labelValue": "1382.0", "tooltip": "Label: NumberInterpolator
Weight: 1382.0
Value: 1382.0", "type": "TreeMapNode", "weight": 1382 }, { "color": "#e6550d", "doubleValue": 1629, "label": "ObjectInterpolator", "labelValue": "1629.0", "tooltip": "Label: ObjectInterpolator
Weight: 1629.0
Value: 1629.0", "type": "TreeMapNode", "weight": 1629 }, { "color": "#e6550d", "doubleValue": 1675, "label": "PointInterpolator", "labelValue": "1675.0", "tooltip": "Label: PointInterpolator
Weight: 1675.0
Value: 1675.0", "type": "TreeMapNode", "weight": 1675 }, { "color": "#e6550d", "doubleValue": 2042, "label": "RectangleInterpolator", "labelValue": "2042.0", "tooltip": "Label: RectangleInterpolator
Weight: 2042.0
Value: 2042.0", "type": "TreeMapNode", "weight": 2042 } ], "type": "TreeMapNode", "weight": 23081 }, { "color": "#c6dbef", "doubleValue": 1041, "label": "ISchedulable", "labelValue": "1041.0", "tooltip": "Label: ISchedulable
Weight: 1041.0
Value: 1041.0", "type": "TreeMapNode", "weight": 1041 }, { "color": "#c6dbef", "doubleValue": 5176, "label": "Parallel", "labelValue": "5176.0", "tooltip": "Label: Parallel
Weight: 5176.0
Value: 5176.0", "type": "TreeMapNode", "weight": 5176 }, { "color": "#c6dbef", "doubleValue": 449, "label": "Pause", "labelValue": "449.0", "tooltip": "Label: Pause
Weight: 449.0
Value: 449.0", "type": "TreeMapNode", "weight": 449 }, { "color": "#c6dbef", "doubleValue": 5593, "label": "Scheduler", "labelValue": "5593.0", "tooltip": "Label: Scheduler
Weight: 5593.0
Value: 5593.0", "type": "TreeMapNode", "weight": 5593 }, { "color": "#c6dbef", "doubleValue": 5534, "label": "Sequence", "labelValue": "5534.0", "tooltip": "Label: Sequence
Weight: 5534.0
Value: 5534.0", "type": "TreeMapNode", "weight": 5534 }, { "color": "#c6dbef", "doubleValue": 9201, "label": "Transition", "labelValue": "9201.0", "tooltip": "Label: Transition
Weight: 9201.0
Value: 9201.0", "type": "TreeMapNode", "weight": 9201 }, { "color": "#c6dbef", "doubleValue": 19975, "label": "Transitioner", "labelValue": "19975.0", "tooltip": "Label: Transitioner
Weight: 19975.0
Value: 19975.0", "type": "TreeMapNode", "weight": 19975 }, { "color": "#c6dbef", "doubleValue": 1116, "label": "TransitionEvent", "labelValue": "1116.0", "tooltip": "Label: TransitionEvent
Weight: 1116.0
Value: 1116.0", "type": "TreeMapNode", "weight": 1116 }, { "color": "#c6dbef", "doubleValue": 6006, "label": "Tween", "labelValue": "6006.0", "tooltip": "Label: Tween
Weight: 6006.0
Value: 6006.0", "type": "TreeMapNode", "weight": 6006 } ], "type": "TreeMapNode", "weight": 100024 }, { "children": [ { "children": [ { "color": "#fd8d3c", "doubleValue": 721, "label": "Converters", "labelValue": "721.0", "tooltip": "Label: Converters
Weight: 721.0
Value: 721.0", "type": "TreeMapNode", "weight": 721 }, { "color": "#fd8d3c", "doubleValue": 4294, "label": "DelimitedTextConverter", "labelValue": "4294.0", "tooltip": "Label: DelimitedTextConverter
Weight: 4294.0
Value: 4294.0", "type": "TreeMapNode", "weight": 4294 }, { "color": "#fd8d3c", "doubleValue": 9800, "label": "GraphMLConverter", "labelValue": "9800.0", "tooltip": "Label: GraphMLConverter
Weight: 9800.0
Value: 9800.0", "type": "TreeMapNode", "weight": 9800 }, { "color": "#fd8d3c", "doubleValue": 1314, "label": "IDataConverter", "labelValue": "1314.0", "tooltip": "Label: IDataConverter
Weight: 1314.0
Value: 1314.0", "type": "TreeMapNode", "weight": 1314 }, { "color": "#fd8d3c", "doubleValue": 2220, "label": "JSONConverter", "labelValue": "2220.0", "tooltip": "Label: JSONConverter
Weight: 2220.0
Value: 2220.0", "type": "TreeMapNode", "weight": 2220 } ], "type": "TreeMapNode", "weight": 18349 }, { "color": "#fdae6b", "doubleValue": 1759, "label": "DataField", "labelValue": "1759.0", "tooltip": "Label: DataField
Weight: 1759.0
Value: 1759.0", "type": "TreeMapNode", "weight": 1759 }, { "color": "#fdae6b", "doubleValue": 2165, "label": "DataSchema", "labelValue": "2165.0", "tooltip": "Label: DataSchema
Weight: 2165.0
Value: 2165.0", "type": "TreeMapNode", "weight": 2165 }, { "color": "#fdae6b", "doubleValue": 586, "label": "DataSet", "labelValue": "586.0", "tooltip": "Label: DataSet
Weight: 586.0
Value: 586.0", "type": "TreeMapNode", "weight": 586 }, { "color": "#fdae6b", "doubleValue": 3331, "label": "DataSource", "labelValue": "3331.0", "tooltip": "Label: DataSource
Weight: 3331.0
Value: 3331.0", "type": "TreeMapNode", "weight": 3331 }, { "color": "#fdae6b", "doubleValue": 772, "label": "DataTable", "labelValue": "772.0", "tooltip": "Label: DataTable
Weight: 772.0
Value: 772.0", "type": "TreeMapNode", "weight": 772 }, { "color": "#fdae6b", "doubleValue": 3322, "label": "DataUtil", "labelValue": "3322.0", "tooltip": "Label: DataUtil
Weight: 3322.0
Value: 3322.0", "type": "TreeMapNode", "weight": 3322 } ], "type": "TreeMapNode", "weight": 30284 }, { "children": [ { "color": "#fdd0a2", "doubleValue": 8833, "label": "DirtySprite", "labelValue": "8833.0", "tooltip": "Label: DirtySprite
Weight: 8833.0
Value: 8833.0", "type": "TreeMapNode", "weight": 8833 }, { "color": "#fdd0a2", "doubleValue": 1732, "label": "LineSprite", "labelValue": "1732.0", "tooltip": "Label: LineSprite
Weight: 1732.0
Value: 1732.0", "type": "TreeMapNode", "weight": 1732 }, { "color": "#fdd0a2", "doubleValue": 3623, "label": "RectSprite", "labelValue": "3623.0", "tooltip": "Label: RectSprite
Weight: 3623.0
Value: 3623.0", "type": "TreeMapNode", "weight": 3623 }, { "color": "#fdd0a2", "doubleValue": 10066, "label": "TextSprite", "labelValue": "10066.0", "tooltip": "Label: TextSprite
Weight: 10066.0
Value: 10066.0", "type": "TreeMapNode", "weight": 10066 } ], "type": "TreeMapNode", "weight": 24254 }, { "children": [ { "color": "#31a354", "doubleValue": 4116, "label": "FlareVis", "labelValue": "4116.0", "tooltip": "Label: FlareVis
Weight: 4116.0
Value: 4116.0", "type": "TreeMapNode", "weight": 4116 } ], "type": "TreeMapNode", "weight": 4116 }, { "children": [ { "color": "#74c476", "doubleValue": 1082, "label": "DragForce", "labelValue": "1082.0", "tooltip": "Label: DragForce
Weight: 1082.0
Value: 1082.0", "type": "TreeMapNode", "weight": 1082 }, { "color": "#74c476", "doubleValue": 1336, "label": "GravityForce", "labelValue": "1336.0", "tooltip": "Label: GravityForce
Weight: 1336.0
Value: 1336.0", "type": "TreeMapNode", "weight": 1336 }, { "color": "#74c476", "doubleValue": 319, "label": "IForce", "labelValue": "319.0", "tooltip": "Label: IForce
Weight: 319.0
Value: 319.0", "type": "TreeMapNode", "weight": 319 }, { "color": "#74c476", "doubleValue": 10498, "label": "NBodyForce", "labelValue": "10498.0", "tooltip": "Label: NBodyForce
Weight: 10498.0
Value: 10498.0", "type": "TreeMapNode", "weight": 10498 }, { "color": "#74c476", "doubleValue": 2822, "label": "Particle", "labelValue": "2822.0", "tooltip": "Label: Particle
Weight: 2822.0
Value: 2822.0", "type": "TreeMapNode", "weight": 2822 }, { "color": "#74c476", "doubleValue": 9983, "label": "Simulation", "labelValue": "9983.0", "tooltip": "Label: Simulation
Weight: 9983.0
Value: 9983.0", "type": "TreeMapNode", "weight": 9983 }, { "color": "#74c476", "doubleValue": 2213, "label": "Spring", "labelValue": "2213.0", "tooltip": "Label: Spring
Weight: 2213.0
Value: 2213.0", "type": "TreeMapNode", "weight": 2213 }, { "color": "#74c476", "doubleValue": 1681, "label": "SpringForce", "labelValue": "1681.0", "tooltip": "Label: SpringForce
Weight: 1681.0
Value: 1681.0", "type": "TreeMapNode", "weight": 1681 } ], "type": "TreeMapNode", "weight": 29934 }, { "children": [ { "color": "#a1d99b", "doubleValue": 1616, "label": "AggregateExpression", "labelValue": "1616.0", "tooltip": "Label: AggregateExpression
Weight: 1616.0
Value: 1616.0", "type": "TreeMapNode", "weight": 1616 }, { "color": "#a1d99b", "doubleValue": 1027, "label": "And", "labelValue": "1027.0", "tooltip": "Label: And
Weight: 1027.0
Value: 1027.0", "type": "TreeMapNode", "weight": 1027 }, { "color": "#a1d99b", "doubleValue": 3891, "label": "Arithmetic", "labelValue": "3891.0", "tooltip": "Label: Arithmetic
Weight: 3891.0
Value: 3891.0", "type": "TreeMapNode", "weight": 3891 }, { "color": "#a1d99b", "doubleValue": 891, "label": "Average", "labelValue": "891.0", "tooltip": "Label: Average
Weight: 891.0
Value: 891.0", "type": "TreeMapNode", "weight": 891 }, { "color": "#a1d99b", "doubleValue": 2893, "label": "BinaryExpression", "labelValue": "2893.0", "tooltip": "Label: BinaryExpression
Weight: 2893.0
Value: 2893.0", "type": "TreeMapNode", "weight": 2893 }, { "color": "#a1d99b", "doubleValue": 5103, "label": "Comparison", "labelValue": "5103.0", "tooltip": "Label: Comparison
Weight: 5103.0
Value: 5103.0", "type": "TreeMapNode", "weight": 5103 }, { "color": "#a1d99b", "doubleValue": 3677, "label": "CompositeExpression", "labelValue": "3677.0", "tooltip": "Label: CompositeExpression
Weight: 3677.0
Value: 3677.0", "type": "TreeMapNode", "weight": 3677 }, { "color": "#a1d99b", "doubleValue": 781, "label": "Count", "labelValue": "781.0", "tooltip": "Label: Count
Weight: 781.0
Value: 781.0", "type": "TreeMapNode", "weight": 781 }, { "color": "#a1d99b", "doubleValue": 4141, "label": "DateUtil", "labelValue": "4141.0", "tooltip": "Label: DateUtil
Weight: 4141.0
Value: 4141.0", "type": "TreeMapNode", "weight": 4141 }, { "color": "#a1d99b", "doubleValue": 933, "label": "Distinct", "labelValue": "933.0", "tooltip": "Label: Distinct
Weight: 933.0
Value: 933.0", "type": "TreeMapNode", "weight": 933 }, { "color": "#a1d99b", "doubleValue": 5130, "label": "Expression", "labelValue": "5130.0", "tooltip": "Label: Expression
Weight: 5130.0
Value: 5130.0", "type": "TreeMapNode", "weight": 5130 }, { "color": "#a1d99b", "doubleValue": 3617, "label": "ExpressionIterator", "labelValue": "3617.0", "tooltip": "Label: ExpressionIterator
Weight: 3617.0
Value: 3617.0", "type": "TreeMapNode", "weight": 3617 }, { "color": "#a1d99b", "doubleValue": 3240, "label": "Fn", "labelValue": "3240.0", "tooltip": "Label: Fn
Weight: 3240.0
Value: 3240.0", "type": "TreeMapNode", "weight": 3240 }, { "color": "#a1d99b", "doubleValue": 2732, "label": "If", "labelValue": "2732.0", "tooltip": "Label: If
Weight: 2732.0
Value: 2732.0", "type": "TreeMapNode", "weight": 2732 }, { "color": "#a1d99b", "doubleValue": 2039, "label": "IsA", "labelValue": "2039.0", "tooltip": "Label: IsA
Weight: 2039.0
Value: 2039.0", "type": "TreeMapNode", "weight": 2039 }, { "color": "#a1d99b", "doubleValue": 1214, "label": "Literal", "labelValue": "1214.0", "tooltip": "Label: Literal
Weight: 1214.0
Value: 1214.0", "type": "TreeMapNode", "weight": 1214 }, { "color": "#a1d99b", "doubleValue": 3748, "label": "Match", "labelValue": "3748.0", "tooltip": "Label: Match
Weight: 3748.0
Value: 3748.0", "type": "TreeMapNode", "weight": 3748 }, { "color": "#a1d99b", "doubleValue": 843, "label": "Maximum", "labelValue": "843.0", "tooltip": "Label: Maximum
Weight: 843.0
Value: 843.0", "type": "TreeMapNode", "weight": 843 }, { "children": [ { "color": "#c7e9c0", "doubleValue": 593, "label": "add", "labelValue": "593.0", "tooltip": "Label: add
Weight: 593.0
Value: 593.0", "type": "TreeMapNode", "weight": 593 }, { "color": "#c7e9c0", "doubleValue": 330, "label": "and", "labelValue": "330.0", "tooltip": "Label: and
Weight: 330.0
Value: 330.0", "type": "TreeMapNode", "weight": 330 }, { "color": "#c7e9c0", "doubleValue": 287, "label": "average", "labelValue": "287.0", "tooltip": "Label: average
Weight: 287.0
Value: 287.0", "type": "TreeMapNode", "weight": 287 }, { "color": "#c7e9c0", "doubleValue": 277, "label": "count", "labelValue": "277.0", "tooltip": "Label: count
Weight: 277.0
Value: 277.0", "type": "TreeMapNode", "weight": 277 }, { "color": "#c7e9c0", "doubleValue": 292, "label": "distinct", "labelValue": "292.0", "tooltip": "Label: distinct
Weight: 292.0
Value: 292.0", "type": "TreeMapNode", "weight": 292 }, { "color": "#c7e9c0", "doubleValue": 595, "label": "div", "labelValue": "595.0", "tooltip": "Label: div
Weight: 595.0
Value: 595.0", "type": "TreeMapNode", "weight": 595 }, { "color": "#c7e9c0", "doubleValue": 594, "label": "eq", "labelValue": "594.0", "tooltip": "Label: eq
Weight: 594.0
Value: 594.0", "type": "TreeMapNode", "weight": 594 }, { "color": "#c7e9c0", "doubleValue": 460, "label": "fn", "labelValue": "460.0", "tooltip": "Label: fn
Weight: 460.0
Value: 460.0", "type": "TreeMapNode", "weight": 460 }, { "color": "#c7e9c0", "doubleValue": 603, "label": "gt", "labelValue": "603.0", "tooltip": "Label: gt
Weight: 603.0
Value: 603.0", "type": "TreeMapNode", "weight": 603 }, { "color": "#c7e9c0", "doubleValue": 625, "label": "gte", "labelValue": "625.0", "tooltip": "Label: gte
Weight: 625.0
Value: 625.0", "type": "TreeMapNode", "weight": 625 }, { "color": "#c7e9c0", "doubleValue": 748, "label": "iff", "labelValue": "748.0", "tooltip": "Label: iff
Weight: 748.0
Value: 748.0", "type": "TreeMapNode", "weight": 748 }, { "color": "#c7e9c0", "doubleValue": 461, "label": "isa", "labelValue": "461.0", "tooltip": "Label: isa
Weight: 461.0
Value: 461.0", "type": "TreeMapNode", "weight": 461 }, { "color": "#c7e9c0", "doubleValue": 597, "label": "lt", "labelValue": "597.0", "tooltip": "Label: lt
Weight: 597.0
Value: 597.0", "type": "TreeMapNode", "weight": 597 }, { "color": "#c7e9c0", "doubleValue": 619, "label": "lte", "labelValue": "619.0", "tooltip": "Label: lte
Weight: 619.0
Value: 619.0", "type": "TreeMapNode", "weight": 619 }, { "color": "#c7e9c0", "doubleValue": 283, "label": "max", "labelValue": "283.0", "tooltip": "Label: max
Weight: 283.0
Value: 283.0", "type": "TreeMapNode", "weight": 283 }, { "color": "#c7e9c0", "doubleValue": 283, "label": "min", "labelValue": "283.0", "tooltip": "Label: min
Weight: 283.0
Value: 283.0", "type": "TreeMapNode", "weight": 283 }, { "color": "#c7e9c0", "doubleValue": 591, "label": "mod", "labelValue": "591.0", "tooltip": "Label: mod
Weight: 591.0
Value: 591.0", "type": "TreeMapNode", "weight": 591 }, { "color": "#c7e9c0", "doubleValue": 603, "label": "mul", "labelValue": "603.0", "tooltip": "Label: mul
Weight: 603.0
Value: 603.0", "type": "TreeMapNode", "weight": 603 }, { "color": "#c7e9c0", "doubleValue": 599, "label": "neq", "labelValue": "599.0", "tooltip": "Label: neq
Weight: 599.0
Value: 599.0", "type": "TreeMapNode", "weight": 599 }, { "color": "#c7e9c0", "doubleValue": 386, "label": "not", "labelValue": "386.0", "tooltip": "Label: not
Weight: 386.0
Value: 386.0", "type": "TreeMapNode", "weight": 386 }, { "color": "#c7e9c0", "doubleValue": 323, "label": "or", "labelValue": "323.0", "tooltip": "Label: or
Weight: 323.0
Value: 323.0", "type": "TreeMapNode", "weight": 323 }, { "color": "#c7e9c0", "doubleValue": 307, "label": "orderby", "labelValue": "307.0", "tooltip": "Label: orderby
Weight: 307.0
Value: 307.0", "type": "TreeMapNode", "weight": 307 }, { "color": "#c7e9c0", "doubleValue": 772, "label": "range", "labelValue": "772.0", "tooltip": "Label: range
Weight: 772.0
Value: 772.0", "type": "TreeMapNode", "weight": 772 }, { "color": "#c7e9c0", "doubleValue": 296, "label": "select", "labelValue": "296.0", "tooltip": "Label: select
Weight: 296.0
Value: 296.0", "type": "TreeMapNode", "weight": 296 }, { "color": "#c7e9c0", "doubleValue": 363, "label": "stddev", "labelValue": "363.0", "tooltip": "Label: stddev
Weight: 363.0
Value: 363.0", "type": "TreeMapNode", "weight": 363 }, { "color": "#c7e9c0", "doubleValue": 600, "label": "sub", "labelValue": "600.0", "tooltip": "Label: sub
Weight: 600.0
Value: 600.0", "type": "TreeMapNode", "weight": 600 }, { "color": "#c7e9c0", "doubleValue": 280, "label": "sum", "labelValue": "280.0", "tooltip": "Label: sum
Weight: 280.0
Value: 280.0", "type": "TreeMapNode", "weight": 280 }, { "color": "#c7e9c0", "doubleValue": 307, "label": "update", "labelValue": "307.0", "tooltip": "Label: update
Weight: 307.0
Value: 307.0", "type": "TreeMapNode", "weight": 307 }, { "color": "#c7e9c0", "doubleValue": 335, "label": "variance", "labelValue": "335.0", "tooltip": "Label: variance
Weight: 335.0
Value: 335.0", "type": "TreeMapNode", "weight": 335 }, { "color": "#c7e9c0", "doubleValue": 299, "label": "where", "labelValue": "299.0", "tooltip": "Label: where
Weight: 299.0
Value: 299.0", "type": "TreeMapNode", "weight": 299 }, { "color": "#c7e9c0", "doubleValue": 354, "label": "xor", "labelValue": "354.0", "tooltip": "Label: xor
Weight: 354.0
Value: 354.0", "type": "TreeMapNode", "weight": 354 }, { "color": "#c7e9c0", "doubleValue": 264, "label": "_", "labelValue": "264.0", "tooltip": "Label: _
Weight: 264.0
Value: 264.0", "type": "TreeMapNode", "weight": 264 } ], "type": "TreeMapNode", "weight": 14326 }, { "color": "#a1d99b", "doubleValue": 843, "label": "Minimum", "labelValue": "843.0", "tooltip": "Label: Minimum
Weight: 843.0
Value: 843.0", "type": "TreeMapNode", "weight": 843 }, { "color": "#a1d99b", "doubleValue": 1554, "label": "Not", "labelValue": "1554.0", "tooltip": "Label: Not
Weight: 1554.0
Value: 1554.0", "type": "TreeMapNode", "weight": 1554 }, { "color": "#a1d99b", "doubleValue": 970, "label": "Or", "labelValue": "970.0", "tooltip": "Label: Or
Weight: 970.0
Value: 970.0", "type": "TreeMapNode", "weight": 970 }, { "color": "#a1d99b", "doubleValue": 13896, "label": "Query", "labelValue": "13896.0", "tooltip": "Label: Query
Weight: 13896.0
Value: 13896.0", "type": "TreeMapNode", "weight": 13896 }, { "color": "#a1d99b", "doubleValue": 1594, "label": "Range", "labelValue": "1594.0", "tooltip": "Label: Range
Weight: 1594.0
Value: 1594.0", "type": "TreeMapNode", "weight": 1594 }, { "color": "#a1d99b", "doubleValue": 4130, "label": "StringUtil", "labelValue": "4130.0", "tooltip": "Label: StringUtil
Weight: 4130.0
Value: 4130.0", "type": "TreeMapNode", "weight": 4130 }, { "color": "#a1d99b", "doubleValue": 791, "label": "Sum", "labelValue": "791.0", "tooltip": "Label: Sum
Weight: 791.0
Value: 791.0", "type": "TreeMapNode", "weight": 791 }, { "color": "#a1d99b", "doubleValue": 1124, "label": "Variable", "labelValue": "1124.0", "tooltip": "Label: Variable
Weight: 1124.0
Value: 1124.0", "type": "TreeMapNode", "weight": 1124 }, { "color": "#a1d99b", "doubleValue": 1876, "label": "Variance", "labelValue": "1876.0", "tooltip": "Label: Variance
Weight: 1876.0
Value: 1876.0", "type": "TreeMapNode", "weight": 1876 }, { "color": "#a1d99b", "doubleValue": 1101, "label": "Xor", "labelValue": "1101.0", "tooltip": "Label: Xor
Weight: 1101.0
Value: 1101.0", "type": "TreeMapNode", "weight": 1101 } ], "type": "TreeMapNode", "weight": 89721 }, { "children": [ { "color": "#756bb1", "doubleValue": 2105, "label": "IScaleMap", "labelValue": "2105.0", "tooltip": "Label: IScaleMap
Weight: 2105.0
Value: 2105.0", "type": "TreeMapNode", "weight": 2105 }, { "color": "#756bb1", "doubleValue": 1316, "label": "LinearScale", "labelValue": "1316.0", "tooltip": "Label: LinearScale
Weight: 1316.0
Value: 1316.0", "type": "TreeMapNode", "weight": 1316 }, { "color": "#756bb1", "doubleValue": 3151, "label": "LogScale", "labelValue": "3151.0", "tooltip": "Label: LogScale
Weight: 3151.0
Value: 3151.0", "type": "TreeMapNode", "weight": 3151 }, { "color": "#756bb1", "doubleValue": 3770, "label": "OrdinalScale", "labelValue": "3770.0", "tooltip": "Label: OrdinalScale
Weight: 3770.0
Value: 3770.0", "type": "TreeMapNode", "weight": 3770 }, { "color": "#756bb1", "doubleValue": 2435, "label": "QuantileScale", "labelValue": "2435.0", "tooltip": "Label: QuantileScale
Weight: 2435.0
Value: 2435.0", "type": "TreeMapNode", "weight": 2435 }, { "color": "#756bb1", "doubleValue": 4839, "label": "QuantitativeScale", "labelValue": "4839.0", "tooltip": "Label: QuantitativeScale
Weight: 4839.0
Value: 4839.0", "type": "TreeMapNode", "weight": 4839 }, { "color": "#756bb1", "doubleValue": 1756, "label": "RootScale", "labelValue": "1756.0", "tooltip": "Label: RootScale
Weight: 1756.0
Value: 1756.0", "type": "TreeMapNode", "weight": 1756 }, { "color": "#756bb1", "doubleValue": 4268, "label": "Scale", "labelValue": "4268.0", "tooltip": "Label: Scale
Weight: 4268.0
Value: 4268.0", "type": "TreeMapNode", "weight": 4268 }, { "color": "#756bb1", "doubleValue": 1821, "label": "ScaleType", "labelValue": "1821.0", "tooltip": "Label: ScaleType
Weight: 1821.0
Value: 1821.0", "type": "TreeMapNode", "weight": 1821 }, { "color": "#756bb1", "doubleValue": 5833, "label": "TimeScale", "labelValue": "5833.0", "tooltip": "Label: TimeScale
Weight: 5833.0
Value: 5833.0", "type": "TreeMapNode", "weight": 5833 } ], "type": "TreeMapNode", "weight": 31294 }, { "children": [ { "color": "#9e9ac8", "doubleValue": 8258, "label": "Arrays", "labelValue": "8258.0", "tooltip": "Label: Arrays
Weight: 8258.0
Value: 8258.0", "type": "TreeMapNode", "weight": 8258 }, { "color": "#9e9ac8", "doubleValue": 10001, "label": "Colors", "labelValue": "10001.0", "tooltip": "Label: Colors
Weight: 10001.0
Value: 10001.0", "type": "TreeMapNode", "weight": 10001 }, { "color": "#9e9ac8", "doubleValue": 8217, "label": "Dates", "labelValue": "8217.0", "tooltip": "Label: Dates
Weight: 8217.0
Value: 8217.0", "type": "TreeMapNode", "weight": 8217 }, { "color": "#9e9ac8", "doubleValue": 12555, "label": "Displays", "labelValue": "12555.0", "tooltip": "Label: Displays
Weight: 12555.0
Value: 12555.0", "type": "TreeMapNode", "weight": 12555 }, { "color": "#9e9ac8", "doubleValue": 2324, "label": "Filter", "labelValue": "2324.0", "tooltip": "Label: Filter
Weight: 2324.0
Value: 2324.0", "type": "TreeMapNode", "weight": 2324 }, { "color": "#9e9ac8", "doubleValue": 10993, "label": "Geometry", "labelValue": "10993.0", "tooltip": "Label: Geometry
Weight: 10993.0
Value: 10993.0", "type": "TreeMapNode", "weight": 10993 }, { "children": [ { "color": "#bcbddc", "doubleValue": 9354, "label": "FibonacciHeap", "labelValue": "9354.0", "tooltip": "Label: FibonacciHeap
Weight: 9354.0
Value: 9354.0", "type": "TreeMapNode", "weight": 9354 }, { "color": "#bcbddc", "doubleValue": 1233, "label": "HeapNode", "labelValue": "1233.0", "tooltip": "Label: HeapNode
Weight: 1233.0
Value: 1233.0", "type": "TreeMapNode", "weight": 1233 } ], "type": "TreeMapNode", "weight": 10587 }, { "color": "#9e9ac8", "doubleValue": 335, "label": "IEvaluable", "labelValue": "335.0", "tooltip": "Label: IEvaluable
Weight: 335.0
Value: 335.0", "type": "TreeMapNode", "weight": 335 }, { "color": "#9e9ac8", "doubleValue": 383, "label": "IPredicate", "labelValue": "383.0", "tooltip": "Label: IPredicate
Weight: 383.0
Value: 383.0", "type": "TreeMapNode", "weight": 383 }, { "color": "#9e9ac8", "doubleValue": 874, "label": "IValueProxy", "labelValue": "874.0", "tooltip": "Label: IValueProxy
Weight: 874.0
Value: 874.0", "type": "TreeMapNode", "weight": 874 }, { "children": [ { "color": "#dadaeb", "doubleValue": 3165, "label": "DenseMatrix", "labelValue": "3165.0", "tooltip": "Label: DenseMatrix
Weight: 3165.0
Value: 3165.0", "type": "TreeMapNode", "weight": 3165 }, { "color": "#dadaeb", "doubleValue": 2815, "label": "IMatrix", "labelValue": "2815.0", "tooltip": "Label: IMatrix
Weight: 2815.0
Value: 2815.0", "type": "TreeMapNode", "weight": 2815 }, { "color": "#dadaeb", "doubleValue": 3366, "label": "SparseMatrix", "labelValue": "3366.0", "tooltip": "Label: SparseMatrix
Weight: 3366.0
Value: 3366.0", "type": "TreeMapNode", "weight": 3366 } ], "type": "TreeMapNode", "weight": 9346 }, { "color": "#9e9ac8", "doubleValue": 17705, "label": "Maths", "labelValue": "17705.0", "tooltip": "Label: Maths
Weight: 17705.0
Value: 17705.0", "type": "TreeMapNode", "weight": 17705 }, { "color": "#9e9ac8", "doubleValue": 1486, "label": "Orientation", "labelValue": "1486.0", "tooltip": "Label: Orientation
Weight: 1486.0
Value: 1486.0", "type": "TreeMapNode", "weight": 1486 }, { "children": [ { "color": "#636363", "doubleValue": 6367, "label": "ColorPalette", "labelValue": "6367.0", "tooltip": "Label: ColorPalette
Weight: 6367.0
Value: 6367.0", "type": "TreeMapNode", "weight": 6367 }, { "color": "#636363", "doubleValue": 1229, "label": "Palette", "labelValue": "1229.0", "tooltip": "Label: Palette
Weight: 1229.0
Value: 1229.0", "type": "TreeMapNode", "weight": 1229 }, { "color": "#636363", "doubleValue": 2059, "label": "ShapePalette", "labelValue": "2059.0", "tooltip": "Label: ShapePalette
Weight: 2059.0
Value: 2059.0", "type": "TreeMapNode", "weight": 2059 }, { "color": "#636363", "doubleValue": 2291, "label": "SizePalette", "labelValue": "2291.0", "tooltip": "Label: SizePalette
Weight: 2291.0
Value: 2291.0", "type": "TreeMapNode", "weight": 2291 } ], "type": "TreeMapNode", "weight": 11946 }, { "color": "#9e9ac8", "doubleValue": 5559, "label": "Property", "labelValue": "5559.0", "tooltip": "Label: Property
Weight: 5559.0
Value: 5559.0", "type": "TreeMapNode", "weight": 5559 }, { "color": "#9e9ac8", "doubleValue": 19118, "label": "Shapes", "labelValue": "19118.0", "tooltip": "Label: Shapes
Weight: 19118.0
Value: 19118.0", "type": "TreeMapNode", "weight": 19118 }, { "color": "#9e9ac8", "doubleValue": 6887, "label": "Sort", "labelValue": "6887.0", "tooltip": "Label: Sort
Weight: 6887.0
Value: 6887.0", "type": "TreeMapNode", "weight": 6887 }, { "color": "#9e9ac8", "doubleValue": 6557, "label": "Stats", "labelValue": "6557.0", "tooltip": "Label: Stats
Weight: 6557.0
Value: 6557.0", "type": "TreeMapNode", "weight": 6557 }, { "color": "#9e9ac8", "doubleValue": 22026, "label": "Strings", "labelValue": "22026.0", "tooltip": "Label: Strings
Weight: 22026.0
Value: 22026.0", "type": "TreeMapNode", "weight": 22026 } ], "type": "TreeMapNode", "weight": 165157 }, { "children": [ { "children": [ { "color": "#969696", "doubleValue": 1302, "label": "Axes", "labelValue": "1302.0", "tooltip": "Label: Axes
Weight: 1302.0
Value: 1302.0", "type": "TreeMapNode", "weight": 1302 }, { "color": "#969696", "doubleValue": 24593, "label": "Axis", "labelValue": "24593.0", "tooltip": "Label: Axis
Weight: 24593.0
Value: 24593.0", "type": "TreeMapNode", "weight": 24593 }, { "color": "#969696", "doubleValue": 652, "label": "AxisGridLine", "labelValue": "652.0", "tooltip": "Label: AxisGridLine
Weight: 652.0
Value: 652.0", "type": "TreeMapNode", "weight": 652 }, { "color": "#969696", "doubleValue": 636, "label": "AxisLabel", "labelValue": "636.0", "tooltip": "Label: AxisLabel
Weight: 636.0
Value: 636.0", "type": "TreeMapNode", "weight": 636 }, { "color": "#969696", "doubleValue": 6703, "label": "CartesianAxes", "labelValue": "6703.0", "tooltip": "Label: CartesianAxes
Weight: 6703.0
Value: 6703.0", "type": "TreeMapNode", "weight": 6703 } ], "type": "TreeMapNode", "weight": 33886 }, { "children": [ { "color": "#bdbdbd", "doubleValue": 2138, "label": "AnchorControl", "labelValue": "2138.0", "tooltip": "Label: AnchorControl
Weight: 2138.0
Value: 2138.0", "type": "TreeMapNode", "weight": 2138 }, { "color": "#bdbdbd", "doubleValue": 3824, "label": "ClickControl", "labelValue": "3824.0", "tooltip": "Label: ClickControl
Weight: 3824.0
Value: 3824.0", "type": "TreeMapNode", "weight": 3824 }, { "color": "#bdbdbd", "doubleValue": 1353, "label": "Control", "labelValue": "1353.0", "tooltip": "Label: Control
Weight: 1353.0
Value: 1353.0", "type": "TreeMapNode", "weight": 1353 }, { "color": "#bdbdbd", "doubleValue": 4665, "label": "ControlList", "labelValue": "4665.0", "tooltip": "Label: ControlList
Weight: 4665.0
Value: 4665.0", "type": "TreeMapNode", "weight": 4665 }, { "color": "#bdbdbd", "doubleValue": 2649, "label": "DragControl", "labelValue": "2649.0", "tooltip": "Label: DragControl
Weight: 2649.0
Value: 2649.0", "type": "TreeMapNode", "weight": 2649 }, { "color": "#bdbdbd", "doubleValue": 2832, "label": "ExpandControl", "labelValue": "2832.0", "tooltip": "Label: ExpandControl
Weight: 2832.0
Value: 2832.0", "type": "TreeMapNode", "weight": 2832 }, { "color": "#bdbdbd", "doubleValue": 4896, "label": "HoverControl", "labelValue": "4896.0", "tooltip": "Label: HoverControl
Weight: 4896.0
Value: 4896.0", "type": "TreeMapNode", "weight": 4896 }, { "color": "#bdbdbd", "doubleValue": 763, "label": "IControl", "labelValue": "763.0", "tooltip": "Label: IControl
Weight: 763.0
Value: 763.0", "type": "TreeMapNode", "weight": 763 }, { "color": "#bdbdbd", "doubleValue": 5222, "label": "PanZoomControl", "labelValue": "5222.0", "tooltip": "Label: PanZoomControl
Weight: 5222.0
Value: 5222.0", "type": "TreeMapNode", "weight": 5222 }, { "color": "#bdbdbd", "doubleValue": 7862, "label": "SelectionControl", "labelValue": "7862.0", "tooltip": "Label: SelectionControl
Weight: 7862.0
Value: 7862.0", "type": "TreeMapNode", "weight": 7862 }, { "color": "#bdbdbd", "doubleValue": 8435, "label": "TooltipControl", "labelValue": "8435.0", "tooltip": "Label: TooltipControl
Weight: 8435.0
Value: 8435.0", "type": "TreeMapNode", "weight": 8435 } ], "type": "TreeMapNode", "weight": 44639 }, { "children": [ { "color": "#fdae6b", "doubleValue": 20544, "label": "Data", "labelValue": "20544.0", "tooltip": "Label: Data
Weight: 20544.0
Value: 20544.0", "type": "TreeMapNode", "weight": 20544 }, { "color": "#fdae6b", "doubleValue": 19788, "label": "DataList", "labelValue": "19788.0", "tooltip": "Label: DataList
Weight: 19788.0
Value: 19788.0", "type": "TreeMapNode", "weight": 19788 }, { "color": "#fdae6b", "doubleValue": 10349, "label": "DataSprite", "labelValue": "10349.0", "tooltip": "Label: DataSprite
Weight: 10349.0
Value: 10349.0", "type": "TreeMapNode", "weight": 10349 }, { "color": "#fdae6b", "doubleValue": 3301, "label": "EdgeSprite", "labelValue": "3301.0", "tooltip": "Label: EdgeSprite
Weight: 3301.0
Value: 3301.0", "type": "TreeMapNode", "weight": 3301 }, { "color": "#fdae6b", "doubleValue": 19382, "label": "NodeSprite", "labelValue": "19382.0", "tooltip": "Label: NodeSprite
Weight: 19382.0
Value: 19382.0", "type": "TreeMapNode", "weight": 19382 }, { "children": [ { "color": "#d9d9d9", "doubleValue": 698, "label": "ArrowType", "labelValue": "698.0", "tooltip": "Label: ArrowType
Weight: 698.0
Value: 698.0", "type": "TreeMapNode", "weight": 698 }, { "color": "#d9d9d9", "doubleValue": 5569, "label": "EdgeRenderer", "labelValue": "5569.0", "tooltip": "Label: EdgeRenderer
Weight: 5569.0
Value: 5569.0", "type": "TreeMapNode", "weight": 5569 }, { "color": "#d9d9d9", "doubleValue": 353, "label": "IRenderer", "labelValue": "353.0", "tooltip": "Label: IRenderer
Weight: 353.0
Value: 353.0", "type": "TreeMapNode", "weight": 353 }, { "color": "#d9d9d9", "doubleValue": 2247, "label": "ShapeRenderer", "labelValue": "2247.0", "tooltip": "Label: ShapeRenderer
Weight: 2247.0
Value: 2247.0", "type": "TreeMapNode", "weight": 2247 } ], "type": "TreeMapNode", "weight": 8867 }, { "color": "#fdae6b", "doubleValue": 11275, "label": "ScaleBinding", "labelValue": "11275.0", "tooltip": "Label: ScaleBinding
Weight: 11275.0
Value: 11275.0", "type": "TreeMapNode", "weight": 11275 }, { "color": "#fdae6b", "doubleValue": 7147, "label": "Tree", "labelValue": "7147.0", "tooltip": "Label: Tree
Weight: 7147.0
Value: 7147.0", "type": "TreeMapNode", "weight": 7147 }, { "color": "#fdae6b", "doubleValue": 9930, "label": "TreeBuilder", "labelValue": "9930.0", "tooltip": "Label: TreeBuilder
Weight: 9930.0
Value: 9930.0", "type": "TreeMapNode", "weight": 9930 } ], "type": "TreeMapNode", "weight": 110583 }, { "children": [ { "color": "#3182bd", "doubleValue": 2313, "label": "DataEvent", "labelValue": "2313.0", "tooltip": "Label: DataEvent
Weight: 2313.0
Value: 2313.0", "type": "TreeMapNode", "weight": 2313 }, { "color": "#3182bd", "doubleValue": 1880, "label": "SelectionEvent", "labelValue": "1880.0", "tooltip": "Label: SelectionEvent
Weight: 1880.0
Value: 1880.0", "type": "TreeMapNode", "weight": 1880 }, { "color": "#3182bd", "doubleValue": 1701, "label": "TooltipEvent", "labelValue": "1701.0", "tooltip": "Label: TooltipEvent
Weight: 1701.0
Value: 1701.0", "type": "TreeMapNode", "weight": 1701 }, { "color": "#3182bd", "doubleValue": 1117, "label": "VisualizationEvent", "labelValue": "1117.0", "tooltip": "Label: VisualizationEvent
Weight: 1117.0
Value: 1117.0", "type": "TreeMapNode", "weight": 1117 } ], "type": "TreeMapNode", "weight": 7011 }, { "children": [ { "color": "#6baed6", "doubleValue": 20859, "label": "Legend", "labelValue": "20859.0", "tooltip": "Label: Legend
Weight: 20859.0
Value: 20859.0", "type": "TreeMapNode", "weight": 20859 }, { "color": "#6baed6", "doubleValue": 4614, "label": "LegendItem", "labelValue": "4614.0", "tooltip": "Label: LegendItem
Weight: 4614.0
Value: 4614.0", "type": "TreeMapNode", "weight": 4614 }, { "color": "#6baed6", "doubleValue": 10530, "label": "LegendRange", "labelValue": "10530.0", "tooltip": "Label: LegendRange
Weight: 10530.0
Value: 10530.0", "type": "TreeMapNode", "weight": 10530 } ], "type": "TreeMapNode", "weight": 36003 }, { "children": [ { "children": [ { "color": "#9ecae1", "doubleValue": 4461, "label": "BifocalDistortion", "labelValue": "4461.0", "tooltip": "Label: BifocalDistortion
Weight: 4461.0
Value: 4461.0", "type": "TreeMapNode", "weight": 4461 }, { "color": "#9ecae1", "doubleValue": 6314, "label": "Distortion", "labelValue": "6314.0", "tooltip": "Label: Distortion
Weight: 6314.0
Value: 6314.0", "type": "TreeMapNode", "weight": 6314 }, { "color": "#9ecae1", "doubleValue": 3444, "label": "FisheyeDistortion", "labelValue": "3444.0", "tooltip": "Label: FisheyeDistortion
Weight: 3444.0
Value: 3444.0", "type": "TreeMapNode", "weight": 3444 } ], "type": "TreeMapNode", "weight": 14219 }, { "children": [ { "color": "#c6dbef", "doubleValue": 3179, "label": "ColorEncoder", "labelValue": "3179.0", "tooltip": "Label: ColorEncoder
Weight: 3179.0
Value: 3179.0", "type": "TreeMapNode", "weight": 3179 }, { "color": "#c6dbef", "doubleValue": 4060, "label": "Encoder", "labelValue": "4060.0", "tooltip": "Label: Encoder
Weight: 4060.0
Value: 4060.0", "type": "TreeMapNode", "weight": 4060 }, { "color": "#c6dbef", "doubleValue": 4138, "label": "PropertyEncoder", "labelValue": "4138.0", "tooltip": "Label: PropertyEncoder
Weight: 4138.0
Value: 4138.0", "type": "TreeMapNode", "weight": 4138 }, { "color": "#c6dbef", "doubleValue": 1690, "label": "ShapeEncoder", "labelValue": "1690.0", "tooltip": "Label: ShapeEncoder
Weight: 1690.0
Value: 1690.0", "type": "TreeMapNode", "weight": 1690 }, { "color": "#c6dbef", "doubleValue": 1830, "label": "SizeEncoder", "labelValue": "1830.0", "tooltip": "Label: SizeEncoder
Weight: 1830.0
Value: 1830.0", "type": "TreeMapNode", "weight": 1830 } ], "type": "TreeMapNode", "weight": 14897 }, { "children": [ { "color": "#e6550d", "doubleValue": 5219, "label": "FisheyeTreeFilter", "labelValue": "5219.0", "tooltip": "Label: FisheyeTreeFilter
Weight: 5219.0
Value: 5219.0", "type": "TreeMapNode", "weight": 5219 }, { "color": "#e6550d", "doubleValue": 3165, "label": "GraphDistanceFilter", "labelValue": "3165.0", "tooltip": "Label: GraphDistanceFilter
Weight: 3165.0
Value: 3165.0", "type": "TreeMapNode", "weight": 3165 }, { "color": "#e6550d", "doubleValue": 3509, "label": "VisibilityFilter", "labelValue": "3509.0", "tooltip": "Label: VisibilityFilter
Weight: 3509.0
Value: 3509.0", "type": "TreeMapNode", "weight": 3509 } ], "type": "TreeMapNode", "weight": 11893 }, { "color": "#fd8d3c", "doubleValue": 1286, "label": "IOperator", "labelValue": "1286.0", "tooltip": "Label: IOperator
Weight: 1286.0
Value: 1286.0", "type": "TreeMapNode", "weight": 1286 }, { "children": [ { "color": "#fdae6b", "doubleValue": 9956, "label": "Labeler", "labelValue": "9956.0", "tooltip": "Label: Labeler
Weight: 9956.0
Value: 9956.0", "type": "TreeMapNode", "weight": 9956 }, { "color": "#fdae6b", "doubleValue": 3899, "label": "RadialLabeler", "labelValue": "3899.0", "tooltip": "Label: RadialLabeler
Weight: 3899.0
Value: 3899.0", "type": "TreeMapNode", "weight": 3899 }, { "color": "#fdae6b", "doubleValue": 3202, "label": "StackedAreaLabeler", "labelValue": "3202.0", "tooltip": "Label: StackedAreaLabeler
Weight: 3202.0
Value: 3202.0", "type": "TreeMapNode", "weight": 3202 } ], "type": "TreeMapNode", "weight": 17057 }, { "children": [ { "color": "#fdd0a2", "doubleValue": 6725, "label": "AxisLayout", "labelValue": "6725.0", "tooltip": "Label: AxisLayout
Weight: 6725.0
Value: 6725.0", "type": "TreeMapNode", "weight": 6725 }, { "color": "#fdd0a2", "doubleValue": 3727, "label": "BundledEdgeRouter", "labelValue": "3727.0", "tooltip": "Label: BundledEdgeRouter
Weight: 3727.0
Value: 3727.0", "type": "TreeMapNode", "weight": 3727 }, { "color": "#fdd0a2", "doubleValue": 9317, "label": "CircleLayout", "labelValue": "9317.0", "tooltip": "Label: CircleLayout
Weight: 9317.0
Value: 9317.0", "type": "TreeMapNode", "weight": 9317 }, { "color": "#fdd0a2", "doubleValue": 12003, "label": "CirclePackingLayout", "labelValue": "12003.0", "tooltip": "Label: CirclePackingLayout
Weight: 12003.0
Value: 12003.0", "type": "TreeMapNode", "weight": 12003 }, { "color": "#fdd0a2", "doubleValue": 4853, "label": "DendrogramLayout", "labelValue": "4853.0", "tooltip": "Label: DendrogramLayout
Weight: 4853.0
Value: 4853.0", "type": "TreeMapNode", "weight": 4853 }, { "color": "#fdd0a2", "doubleValue": 8411, "label": "ForceDirectedLayout", "labelValue": "8411.0", "tooltip": "Label: ForceDirectedLayout
Weight: 8411.0
Value: 8411.0", "type": "TreeMapNode", "weight": 8411 }, { "color": "#fdd0a2", "doubleValue": 4864, "label": "IcicleTreeLayout", "labelValue": "4864.0", "tooltip": "Label: IcicleTreeLayout
Weight: 4864.0
Value: 4864.0", "type": "TreeMapNode", "weight": 4864 }, { "color": "#fdd0a2", "doubleValue": 3174, "label": "IndentedTreeLayout", "labelValue": "3174.0", "tooltip": "Label: IndentedTreeLayout
Weight: 3174.0
Value: 3174.0", "type": "TreeMapNode", "weight": 3174 }, { "color": "#fdd0a2", "doubleValue": 7881, "label": "Layout", "labelValue": "7881.0", "tooltip": "Label: Layout
Weight: 7881.0
Value: 7881.0", "type": "TreeMapNode", "weight": 7881 }, { "color": "#fdd0a2", "doubleValue": 12870, "label": "NodeLinkTreeLayout", "labelValue": "12870.0", "tooltip": "Label: NodeLinkTreeLayout
Weight: 12870.0
Value: 12870.0", "type": "TreeMapNode", "weight": 12870 }, { "color": "#fdd0a2", "doubleValue": 2728, "label": "PieLayout", "labelValue": "2728.0", "tooltip": "Label: PieLayout
Weight: 2728.0
Value: 2728.0", "type": "TreeMapNode", "weight": 2728 }, { "color": "#fdd0a2", "doubleValue": 12348, "label": "RadialTreeLayout", "labelValue": "12348.0", "tooltip": "Label: RadialTreeLayout
Weight: 12348.0
Value: 12348.0", "type": "TreeMapNode", "weight": 12348 }, { "color": "#fdd0a2", "doubleValue": 870, "label": "RandomLayout", "labelValue": "870.0", "tooltip": "Label: RandomLayout
Weight: 870.0
Value: 870.0", "type": "TreeMapNode", "weight": 870 }, { "color": "#fdd0a2", "doubleValue": 9121, "label": "StackedAreaLayout", "labelValue": "9121.0", "tooltip": "Label: StackedAreaLayout
Weight: 9121.0
Value: 9121.0", "type": "TreeMapNode", "weight": 9121 }, { "color": "#fdd0a2", "doubleValue": 9191, "label": "TreeMapLayout", "labelValue": "9191.0", "tooltip": "Label: TreeMapLayout
Weight: 9191.0
Value: 9191.0", "type": "TreeMapNode", "weight": 9191 } ], "type": "TreeMapNode", "weight": 108083 }, { "color": "#fd8d3c", "doubleValue": 2490, "label": "Operator", "labelValue": "2490.0", "tooltip": "Label: Operator
Weight: 2490.0
Value: 2490.0", "type": "TreeMapNode", "weight": 2490 }, { "color": "#fd8d3c", "doubleValue": 5248, "label": "OperatorList", "labelValue": "5248.0", "tooltip": "Label: OperatorList
Weight: 5248.0
Value: 5248.0", "type": "TreeMapNode", "weight": 5248 }, { "color": "#fd8d3c", "doubleValue": 4190, "label": "OperatorSequence", "labelValue": "4190.0", "tooltip": "Label: OperatorSequence
Weight: 4190.0
Value: 4190.0", "type": "TreeMapNode", "weight": 4190 }, { "color": "#fd8d3c", "doubleValue": 2581, "label": "OperatorSwitch", "labelValue": "2581.0", "tooltip": "Label: OperatorSwitch
Weight: 2581.0
Value: 2581.0", "type": "TreeMapNode", "weight": 2581 }, { "color": "#fd8d3c", "doubleValue": 2023, "label": "SortOperator", "labelValue": "2023.0", "tooltip": "Label: SortOperator
Weight: 2023.0
Value: 2023.0", "type": "TreeMapNode", "weight": 2023 } ], "type": "TreeMapNode", "weight": 183967 }, { "color": "#31a354", "doubleValue": 16540, "label": "Visualization", "labelValue": "16540.0", "tooltip": "Label: Visualization
Weight: 16540.0
Value: 16540.0", "type": "TreeMapNode", "weight": 16540 } ], "type": "TreeMapNode", "weight": 432629 } ], "type": "TreeMapNode", "weight": 956129 } ], "type": "TreeMapNode", "weight": 956129 }, "init_height": 600, "init_width": 1300, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "ec990958-2d8a-4ead-a671-33414c818524": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "GradientColorProvider with overrides colours", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#c0c0c0", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "Label: 011
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#c0c0c0", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "Label: 012
Weight: 2.0
Value: 1.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#c0c0c0", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "Label: 013
Weight: 3.0
Value: 1.0", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#a0a0a0", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "Label: 020
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#c0c0c0", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "Label: 021
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#c0c0c0", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "Label: 022
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#c0c0c0", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "Label: 023
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#a0a0a0", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "Label: 024
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#a0a0a0", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "Label: 030
Weight: 1.0
Value: 2.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#a0a0a0", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "Label: 031
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#a0a0a0", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "Label: 032
Weight: 3.0
Value: 2.0", "type": "TreeMapNode", "weight": 3 }, { "color": "#a0a0a0", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "Label: 033
Weight: 4.0
Value: 2.0", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#404040", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "Label: 04
Weight: 6.0
Value: 5.0", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "eed6bc96-f816-477e-9ea8-00a5add12e5e": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "ValueAccessor.WEIGHT", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#21578d", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "Label: 011
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "Label: 012
Weight: 2.0
Value: 1.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "Label: 013
Weight: 3.0
Value: 1.0", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "Label: 020
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "Label: 021
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "Label: 022
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "Label: 023
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "Label: 024
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "Label: 030
Weight: 1.0
Value: 2.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "Label: 031
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#8c1d17", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "Label: 032
Weight: 3.0
Value: 2.0", "type": "TreeMapNode", "weight": 3 }, { "color": "#8c1d17", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "Label: 033
Weight: 4.0
Value: 2.0", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#968236", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "Label: 04
Weight: 6.0
Value: 5.0", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "WEIGHT" } } }, "f9780150-d407-449d-8772-2053334d58c3": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "Mode.SLICE_DIC", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#21578d", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "011", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "012", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "013", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "020", "type": "TreeMapNode", "weight": 2 }, { "color": "#21578d", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "021", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "022", "type": "TreeMapNode", "weight": 1 }, { "color": "#21578d", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "023", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "024", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#8c1d17", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "030", "type": "TreeMapNode", "weight": 1 }, { "color": "#8c1d17", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "031", "type": "TreeMapNode", "weight": 2 }, { "color": "#8c1d17", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "032", "type": "TreeMapNode", "weight": 3 }, { "color": "#8c1d17", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "033", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#968236", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "04", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "mode": "slice-dic", "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } }, "fbf65e2c-0436-421c-b388-497a16475483": { "model_module": "beakerx", "model_module_version": "*", "model_name": "PlotModel", "state": { "model": { "chart_title": "GradientColorProvider with default colours", "custom_styles": [], "element_styles": {}, "graphics_list": { "children": [ { "children": [ { "color": "#ff0000", "doubleValue": 1, "label": "011", "labelValue": "1.0", "tooltip": "Label: 011
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#ff0000", "doubleValue": 1, "label": "012", "labelValue": "1.0", "tooltip": "Label: 012
Weight: 2.0
Value: 1.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#ff0000", "doubleValue": 1, "label": "013", "labelValue": "1.0", "tooltip": "Label: 013
Weight: 3.0
Value: 1.0", "type": "TreeMapNode", "weight": 3 } ], "type": "TreeMapNode", "weight": 6 }, { "children": [ { "color": "#bf4000", "doubleValue": 2, "label": "020", "labelValue": "2.0", "tooltip": "Label: 020
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#ff0000", "doubleValue": 1, "label": "021", "labelValue": "1.0", "tooltip": "Label: 021
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#ff0000", "doubleValue": 1, "label": "022", "labelValue": "1.0", "tooltip": "Label: 022
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#ff0000", "doubleValue": 1, "label": "023", "labelValue": "1.0", "tooltip": "Label: 023
Weight: 1.0
Value: 1.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#bf4000", "doubleValue": 2, "label": "024", "labelValue": "2.0", "tooltip": "Label: 024
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 } ], "type": "TreeMapNode", "weight": 7 }, { "children": [ { "color": "#bf4000", "doubleValue": 2, "label": "030", "labelValue": "2.0", "tooltip": "Label: 030
Weight: 1.0
Value: 2.0", "type": "TreeMapNode", "weight": 1 }, { "color": "#bf4000", "doubleValue": 2, "label": "031", "labelValue": "2.0", "tooltip": "Label: 031
Weight: 2.0
Value: 2.0", "type": "TreeMapNode", "weight": 2 }, { "color": "#bf4000", "doubleValue": 2, "label": "032", "labelValue": "2.0", "tooltip": "Label: 032
Weight: 3.0
Value: 2.0", "type": "TreeMapNode", "weight": 3 }, { "color": "#bf4000", "doubleValue": 2, "label": "033", "labelValue": "2.0", "tooltip": "Label: 033
Weight: 4.0
Value: 2.0", "type": "TreeMapNode", "weight": 4 } ], "type": "TreeMapNode", "weight": 10 }, { "color": "#00ff00", "doubleValue": 5, "label": "04", "labelValue": "5.0", "tooltip": "Label: 04
Weight: 6.0
Value: 5.0", "type": "TreeMapNode", "weight": 6 } ], "type": "TreeMapNode", "weight": 29 }, "init_height": 480, "init_width": 640, "legend_layout": "VERTICAL", "legend_position": { "position": "TOP_RIGHT", "type": "LegendPosition" }, "show_legend": false, "type": "TreeMap", "use_tool_tip": true, "valueAccessor": "VALUE" } } } }, "version_major": 2, "version_minor": 0 } } }, "nbformat": 4, "nbformat_minor": 2 }