Plots


Jump to API response

This endpoint handles manipulation of Plotly plot files.

Reference

Authorization


Any user with or without a Plotly account may view public plots. For private plots, see authentication.

Actions


list

Listing all public plots can be done via a GET request to this endpoint. By default, plots will be listed in order of date created. The order_by query parameter is accepted at this endpoint. Currently, only ordering by views is supported. It is possible to filter the plots by quality with min_quality or max_quality as query parameter.

Example:

// GET https://api.plotly.com/v2/plots/ ---> 200

// GET https://api.plotly.com/v2/plots/?order_by=-views ---> 200

// GET https://api.plotly.com/v2/plots/?min_quality=5 ---> 200

// GET https://api.plotly.com/v2/plots/?max_quality=5 ---> 200

feed

Listing all handpicked feed plots can be done via a GET request to this endpoint. By default, plots will be listed in a random order.

Example:

// GET https://api.plotly.com/v2/plots/feed ---> 200

create

You can create new plot resources here. The only required field is 'figure'. Currently, the figure is restricted to only contain references to grid data. That is, this will fail if raw data arrays are passed in. To create and manipulate underlying grids for plots, see the grids endpoint.

Example:

// This fails because a figure field is required.
// POST https://api.plotly.com/v2/plots ---> 400 Bad Request
{}

// This fails because the figure has raw data
//POST https://api.plotly.com/v2/plots ---> 400 Bad Request
{
    "figure": {"data": [{"y": ['this', 'is', 'raw', 'data']}]}
}

// This succeeds because the figure has src keys, not raw data.
//POST https://api.plotly.com/v2/plots ---> 200 OK
{
    "figure": {"data": [{"ysrc": "sven:88:u8nd62"}]}
}

When creating a grid, you can optionally specify a source_fid to specify where a plot has come from:

  • source_fid: the fid of a plot that was copied (and presumably edited) to produce this one

detail

There is a lot of meta information stored about plot files including filename, title, share_url, and content_url to name a few.

This information can only be reached with a GET to this endpoint.

Example:

// GET https://api.plotly.com/v2/plots/iheartgraphs:90

content

The contents of a plot can be downloaded via the content resource. The plot content contains referenced grid/column data by default. If you wish to return the raw grid/column data, the inline_data=true query must be included in the request url. The Content-Type header will be appropriately set for the response body.

Alternatively, you can set ?map_data=unreadable to append a mapping of sources to data that belongs to grids which are unreadable for the requestor. This is useful when you have read access to another users plot, but that plot contains grid references which you don't have access to.

Examples:

// Returns referenced grid/column data
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content ---> 200 OK

// Returns full grid/column data
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content?inline_data=true ---> 200 OK

// Returns full grid/column data when requestor doesn't have permission
// to read the referenced grid.
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content?map_data=unreadable ---> 200 OK

GET /v2/plots?cursor=cj0xJnA9MjAyNC0wNC0xOSsxMCUzQTA5JTNBMDkuNjY2NDE5JTJCMDAlM0EwMA%3D%3D&format=api
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://api.plotly.com/v2/plots?cursor=cD0yMDI0LTA0LTE5KzEwJTNBMTElM0EyMy43MjIzOTQlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0xOSsxMSUzQTE0JTNBMjguNzgxMjEyJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-19T11:14:28.781212Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~getcharish/174.embed",
            "fid": "getcharish:174",
            "filename": "dummyPhysicalRisksforRainfall|flooding",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/getcharish/174/9_86UXZIL1TJI2WUFDIZ2BMMFUNSXSTJ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/getcharish/174/2_S7GRZO8LK5RRNX6R4V5YTFPAJ4XE4G.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/getcharish/174/8_IKPOJXIIU1GWJRBQ05L77C1BZ8GJ4H.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/getcharish/174/9_86UXZIL1TJI2WUFDIZ2BMMFUNSXSTJ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/getcharish:174",
                "plots": "https://api.plotly.com/v2/plots/getcharish:174",
                "parent": "https://api.plotly.com/v2/folders/home?user=getcharish"
            },
            "owner": "getcharish",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~getcharish/174/",
            "world_readable": true,
            "date_modified": "2024-04-22T14:55:45.551Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~getcharish/174/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "Pluvial Flooding",
                        "type": "scatter",
                        "xsrc": "getcharish:452:eb80e7",
                        "ysrc": "getcharish:452:8a8f58",
                        "xaxis": "x",
                        "yaxis": "y",
                        "idssrc": "getcharish:452:653143",
                        "marker": {
                            "color": "#636efa",
                            "symbol": "circle",
                            "opacity": 0.7,
                            "sizeref": 0.022222222222222223,
                            "sizesrc": "getcharish:452:4c1608",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Pluvial Flooding",
                        "orientation": "v",
                        "hovertextsrc": "getcharish:452:c9de21",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>label=Pluvial Flooding<br>epoch=2020<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Groundwater Flooding",
                        "type": "scatter",
                        "xsrc": "getcharish:452:462b19",
                        "ysrc": "getcharish:452:53820f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "idssrc": "getcharish:452:c345c4",
                        "marker": {
                            "color": "#EF553B",
                            "symbol": "circle",
                            "opacity": 0.7,
                            "sizeref": 0.022222222222222223,
                            "sizesrc": "getcharish:452:3aa3b1",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Groundwater Flooding",
                        "orientation": "v",
                        "hovertextsrc": "getcharish:452:ef157c",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>label=Groundwater Flooding<br>epoch=2020<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                    }
                ],
                "frames": [
                    {
                        "data": [
                            {
                                "mode": "markers",
                                "name": "Pluvial Flooding",
                                "type": "scatter",
                                "xsrc": "getcharish:452:7a1023",
                                "ysrc": "getcharish:452:7b50ee",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:452:30ac1d",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.022222222222222223,
                                    "sizesrc": "getcharish:452:ece4b6",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Pluvial Flooding",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:452:d505a2",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Pluvial Flooding<br>epoch=2020<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            },
                            {
                                "mode": "markers",
                                "name": "Groundwater Flooding",
                                "type": "scatter",
                                "xsrc": "getcharish:452:9f4b5e",
                                "ysrc": "getcharish:452:b5f067",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:452:1eae50",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.022222222222222223,
                                    "sizesrc": "getcharish:452:1e6db6",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Groundwater Flooding",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:452:08588d",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Groundwater Flooding<br>epoch=2020<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            }
                        ],
                        "name": "2020"
                    },
                    {
                        "data": [
                            {
                                "mode": "markers",
                                "name": "Pluvial Flooding",
                                "type": "scatter",
                                "xsrc": "getcharish:452:ace491",
                                "ysrc": "getcharish:452:81053b",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:452:a513b0",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.022222222222222223,
                                    "sizesrc": "getcharish:452:83dd2d",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Pluvial Flooding",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:452:4e54e0",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Pluvial Flooding<br>epoch=2030<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            },
                            {
                                "mode": "markers",
                                "name": "Groundwater Flooding",
                                "type": "scatter",
                                "xsrc": "getcharish:452:73d00c",
                                "ysrc": "getcharish:452:53df33",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:452:1b5d18",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.022222222222222223,
                                    "sizesrc": "getcharish:452:20d4ae",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Groundwater Flooding",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:452:7f5cfe",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Groundwater Flooding<br>epoch=2030<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            }
                        ],
                        "name": "2030"
                    },
                    {
                        "data": [
                            {
                                "mode": "markers",
                                "name": "Pluvial Flooding",
                                "type": "scatter",
                                "xsrc": "getcharish:452:08efd1",
                                "ysrc": "getcharish:452:c4832e",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:452:39eb5b",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.022222222222222223,
                                    "sizesrc": "getcharish:452:813e13",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Pluvial Flooding",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:452:9b6b01",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Pluvial Flooding<br>epoch=2070<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            },
                            {
                                "mode": "markers",
                                "name": "Groundwater Flooding",
                                "type": "scatter",
                                "xsrc": "getcharish:452:8c7d4b",
                                "ysrc": "getcharish:452:d60eaa",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:452:ec680d",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.022222222222222223,
                                    "sizesrc": "getcharish:452:866b61",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Groundwater Flooding",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:452:5ee115",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Groundwater Flooding<br>epoch=2070<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            }
                        ],
                        "name": "2070"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "disclosure = Rainfall/flooding"
                    },
                    "xaxis": {
                        "range": [
                            0,
                            8
                        ],
                        "title": {
                            "text": "likelihood"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "range": [
                            0,
                            7
                        ],
                        "title": {
                            "text": "consequence"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "title": {
                            "text": "label"
                        },
                        "itemsizing": "constant",
                        "tracegroupgap": 0
                    },
                    "sliders": [
                        {
                            "x": 0.1,
                            "y": 0,
                            "len": 0.9,
                            "pad": {
                                "b": 10,
                                "t": 60
                            },
                            "steps": [
                                {
                                    "args": [
                                        [
                                            "2020"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2020",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2030"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2030",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2070"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2070",
                                    "method": "animate"
                                }
                            ],
                            "active": 0,
                            "xanchor": "left",
                            "yanchor": "top",
                            "currentvalue": {
                                "prefix": "epoch="
                            }
                        }
                    ],
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "updatemenus": [
                        {
                            "x": 0.1,
                            "y": 0,
                            "pad": {
                                "r": 10,
                                "t": 70
                            },
                            "type": "buttons",
                            "buttons": [
                                {
                                    "args": [
                                        null,
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "&#9654;",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            null
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "&#9724;",
                                    "method": "animate"
                                }
                            ],
                            "xanchor": "right",
                            "yanchor": "top",
                            "direction": "left",
                            "showactive": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~getcharish",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/83.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-07-24 12:58:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "getcharish",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-19T11:04:16.398433Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~MAHI121/6.embed",
            "fid": "MAHI121:6",
            "filename": "Plot 6",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/MAHI121/6/9_0YJJXK0L71M85AN6MDNXGU3CL1SD90.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/MAHI121/6/2_4O1UF1ML9WJCWG6PRFX1AOD210GVHO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/MAHI121/6/8_1DOW4OZ90CNC0N612H0W9T0JKW7FUH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/MAHI121/6/9_0YJJXK0L71M85AN6MDNXGU3CL1SD90.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/MAHI121:6",
                "plots": "https://api.plotly.com/v2/plots/MAHI121:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=MAHI121"
            },
            "owner": "MAHI121",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~MAHI121/6/",
            "world_readable": true,
            "date_modified": "2024-04-19T11:04:16.409Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~MAHI121/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "0.365",
                                "y": "0.997575342"
                            }
                        },
                        "mode": "lines",
                        "name": "Mesh 1",
                        "type": "scatter",
                        "xsrc": "MAHI121:5:81736e",
                        "ysrc": "MAHI121:5:aa5f88"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "0.417948",
                                "y": "1.124363014"
                            }
                        },
                        "mode": "lines",
                        "name": "Mesh 2",
                        "type": "scatter",
                        "xsrc": "MAHI121:5:52c1e1",
                        "ysrc": "MAHI121:5:7582c1",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "0.417494",
                                "y": "1.126152055"
                            }
                        },
                        "mode": "lines",
                        "name": "Mesh 3",
                        "type": "scatter",
                        "xsrc": "MAHI121:5:d3d3d5",
                        "ysrc": "MAHI121:5:3b0939",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Grid Independence Test"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.364995,
                            0.419946
                        ],
                        "title": {
                            "text": "X coordinate"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.702390563,
                            1.4679491630000001
                        ],
                        "title": {
                            "text": "Wall Pressure"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~MAHI121",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/63.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-19 06:29:13",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "MAHI121",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-19T10:59:35.749363Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~peter.capcara/193.embed",
            "fid": "peter.capcara:193",
            "filename": "Plot 193",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/193/9_C839348ZWNBAXZMWERQP03M86OGEBI.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/193/2_X8K7Q0I8M46C0KIYDA7CF5JDQ6RKUB.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/193/8_ER10C7ACODQC5NYNOW3B9RKQVK838Z.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/193/9_C839348ZWNBAXZMWERQP03M86OGEBI.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/peter.capcara:193",
                "plots": "https://api.plotly.com/v2/plots/peter.capcara:193",
                "parent": "https://api.plotly.com/v2/folders/home?user=peter.capcara"
            },
            "owner": "peter.capcara",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~peter.capcara/193/",
            "world_readable": true,
            "date_modified": "2024-04-19T10:59:35.759Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~peter.capcara/193/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a1a8b8",
                        "asrc": "peter.capcara:192:50e485",
                        "bsrc": "peter.capcara:192:c8b22a",
                        "csrc": "peter.capcara:192:4e9404",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "PD",
                        "text": "PD",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#8dd3c7"
                    },
                    {
                        "uid": "c72344",
                        "asrc": "peter.capcara:192:fa4e4f",
                        "bsrc": "peter.capcara:192:031786",
                        "csrc": "peter.capcara:192:2d4c53",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "D1",
                        "text": "D1",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#ffffb3"
                    },
                    {
                        "uid": "3eab74",
                        "asrc": "peter.capcara:192:0a9315",
                        "bsrc": "peter.capcara:192:c6fd9d",
                        "csrc": "peter.capcara:192:02f431",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "D2",
                        "text": "D2",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#bebada"
                    },
                    {
                        "uid": "b9dc9f",
                        "asrc": "peter.capcara:192:096b93",
                        "bsrc": "peter.capcara:192:ddab3e",
                        "csrc": "peter.capcara:192:258fc8",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "DT",
                        "text": "DT",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#fb8072"
                    },
                    {
                        "uid": "381ad2",
                        "asrc": "peter.capcara:192:a6e014",
                        "bsrc": "peter.capcara:192:4d2bbd",
                        "csrc": "peter.capcara:192:d2b5d0",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T1",
                        "text": "T1",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#80b1d3"
                    },
                    {
                        "uid": "8cc163",
                        "asrc": "peter.capcara:192:ed9f8d",
                        "bsrc": "peter.capcara:192:617b10",
                        "csrc": "peter.capcara:192:94248e",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T2",
                        "text": "T2",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#fdb462"
                    },
                    {
                        "uid": "6f33dc",
                        "asrc": "peter.capcara:192:99484b",
                        "bsrc": "peter.capcara:192:ef1947",
                        "csrc": "peter.capcara:192:5d71d7",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T3",
                        "text": "T3",
                        "type": "scatterternary",
                        "opacity": 0.5,
                        "subplot": "ternary",
                        "fillcolor": "#b3de69"
                    },
                    {
                        "asrc": "peter.capcara:192:733164",
                        "bsrc": "peter.capcara:192:774c2d",
                        "csrc": "peter.capcara:192:7d4006",
                        "mode": "markers",
                        "name": "3270.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:114ffe",
                        "bsrc": "peter.capcara:192:1df2c7",
                        "csrc": "peter.capcara:192:a43089",
                        "mode": "markers",
                        "name": "650.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:835faf",
                        "bsrc": "peter.capcara:192:fc5433",
                        "csrc": "peter.capcara:192:141d7a",
                        "mode": "markers",
                        "name": "649.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:8582e6",
                        "bsrc": "peter.capcara:192:302fdf",
                        "csrc": "peter.capcara:192:ff5653",
                        "mode": "markers",
                        "name": "648.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:9d7d94",
                        "bsrc": "peter.capcara:192:5e4b7a",
                        "csrc": "peter.capcara:192:d86fad",
                        "mode": "markers",
                        "name": "647.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:af34e4",
                        "bsrc": "peter.capcara:192:ba3fec",
                        "csrc": "peter.capcara:192:fa0338",
                        "mode": "markers",
                        "name": "646.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:a233c4",
                        "bsrc": "peter.capcara:192:6ba7c5",
                        "csrc": "peter.capcara:192:d577c3",
                        "mode": "markers",
                        "name": "645.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:835760",
                        "bsrc": "peter.capcara:192:eb14ad",
                        "csrc": "peter.capcara:192:1ec773",
                        "mode": "markers",
                        "name": "644.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:e383dc",
                        "bsrc": "peter.capcara:192:a7f277",
                        "csrc": "peter.capcara:192:ae2f1e",
                        "mode": "markers",
                        "name": "643.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:72fbd9",
                        "bsrc": "peter.capcara:192:798f8c",
                        "csrc": "peter.capcara:192:8677d8",
                        "mode": "markers",
                        "name": "642.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:f032af",
                        "bsrc": "peter.capcara:192:610d97",
                        "csrc": "peter.capcara:192:7edfdf",
                        "mode": "markers",
                        "name": "641.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:979008",
                        "bsrc": "peter.capcara:192:90a8de",
                        "csrc": "peter.capcara:192:d4994c",
                        "mode": "markers",
                        "name": "640.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:54b9bb",
                        "bsrc": "peter.capcara:192:7c008d",
                        "csrc": "peter.capcara:192:ecd291",
                        "mode": "markers",
                        "name": "639.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:b88220",
                        "bsrc": "peter.capcara:192:911ca4",
                        "csrc": "peter.capcara:192:c55711",
                        "mode": "markers",
                        "name": "638.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:399b6b",
                        "bsrc": "peter.capcara:192:58b5de",
                        "csrc": "peter.capcara:192:f7c62d",
                        "mode": "markers",
                        "name": "637.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:d82999",
                        "bsrc": "peter.capcara:192:a20204",
                        "csrc": "peter.capcara:192:2c815c",
                        "mode": "markers",
                        "name": "636.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:c1c54b",
                        "bsrc": "peter.capcara:192:323647",
                        "csrc": "peter.capcara:192:d95e21",
                        "mode": "markers",
                        "name": "635.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:a8a3e9",
                        "bsrc": "peter.capcara:192:47024b",
                        "csrc": "peter.capcara:192:ec326e",
                        "mode": "markers",
                        "name": "634.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:14b047",
                        "bsrc": "peter.capcara:192:fe8306",
                        "csrc": "peter.capcara:192:395810",
                        "mode": "markers",
                        "name": "633.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:66e7f1",
                        "bsrc": "peter.capcara:192:ab8ad0",
                        "csrc": "peter.capcara:192:0bfd55",
                        "mode": "markers",
                        "name": "632.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:7859f1",
                        "bsrc": "peter.capcara:192:b2f215",
                        "csrc": "peter.capcara:192:6a416b",
                        "mode": "markers",
                        "name": "631.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:88ecb2",
                        "bsrc": "peter.capcara:192:d6735c",
                        "csrc": "peter.capcara:192:e8bbc0",
                        "mode": "markers",
                        "name": "630.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:69e36f",
                        "bsrc": "peter.capcara:192:2cdf96",
                        "csrc": "peter.capcara:192:603b73",
                        "mode": "markers",
                        "name": "629.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:38cff5",
                        "bsrc": "peter.capcara:192:24644d",
                        "csrc": "peter.capcara:192:7ec35c",
                        "mode": "markers",
                        "name": "628.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:d3098a",
                        "bsrc": "peter.capcara:192:10e173",
                        "csrc": "peter.capcara:192:571063",
                        "mode": "markers",
                        "name": "627.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:e7d8ad",
                        "bsrc": "peter.capcara:192:ac17ec",
                        "csrc": "peter.capcara:192:93baf1",
                        "mode": "markers",
                        "name": "626.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:7c4b3d",
                        "bsrc": "peter.capcara:192:6fd521",
                        "csrc": "peter.capcara:192:34e4b1",
                        "mode": "markers",
                        "name": "625.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:1cc683",
                        "bsrc": "peter.capcara:192:6545ec",
                        "csrc": "peter.capcara:192:ffed0c",
                        "mode": "markers",
                        "name": "624.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:03f977",
                        "bsrc": "peter.capcara:192:f70a96",
                        "csrc": "peter.capcara:192:00601f",
                        "mode": "markers",
                        "name": "623.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:1a831a",
                        "bsrc": "peter.capcara:192:64f303",
                        "csrc": "peter.capcara:192:85b9ac",
                        "mode": "markers",
                        "name": "622.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:02f982",
                        "bsrc": "peter.capcara:192:b2a073",
                        "csrc": "peter.capcara:192:d6a876",
                        "mode": "markers",
                        "name": "621.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:b439e5",
                        "bsrc": "peter.capcara:192:ef75c5",
                        "csrc": "peter.capcara:192:24ca62",
                        "mode": "markers",
                        "name": "620.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:9b43d2",
                        "bsrc": "peter.capcara:192:7233ad",
                        "csrc": "peter.capcara:192:64f1cb",
                        "mode": "markers",
                        "name": "619.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:e985e6",
                        "bsrc": "peter.capcara:192:c383fd",
                        "csrc": "peter.capcara:192:c13e5b",
                        "mode": "markers",
                        "name": "618.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:8d8c07",
                        "bsrc": "peter.capcara:192:8b6818",
                        "csrc": "peter.capcara:192:a4edbb",
                        "mode": "markers",
                        "name": "617.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:73072b",
                        "bsrc": "peter.capcara:192:ebac8d",
                        "csrc": "peter.capcara:192:6a237e",
                        "mode": "markers",
                        "name": "616.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:302ab6",
                        "bsrc": "peter.capcara:192:9fbd7f",
                        "csrc": "peter.capcara:192:5dadcc",
                        "mode": "markers",
                        "name": "615.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:bfba8f",
                        "bsrc": "peter.capcara:192:2fc630",
                        "csrc": "peter.capcara:192:3e12d8",
                        "mode": "markers",
                        "name": "614.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:0509a1",
                        "bsrc": "peter.capcara:192:397cdf",
                        "csrc": "peter.capcara:192:190035",
                        "mode": "markers",
                        "name": "613.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:22b479",
                        "bsrc": "peter.capcara:192:b36edc",
                        "csrc": "peter.capcara:192:d3fb22",
                        "mode": "markers",
                        "name": "612.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:98b62a",
                        "bsrc": "peter.capcara:192:b96c89",
                        "csrc": "peter.capcara:192:adad50",
                        "mode": "markers",
                        "name": "611.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:cead8c",
                        "bsrc": "peter.capcara:192:121127",
                        "csrc": "peter.capcara:192:7d50c2",
                        "mode": "markers",
                        "name": "610.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:421a49",
                        "bsrc": "peter.capcara:192:8124c8",
                        "csrc": "peter.capcara:192:bbc86f",
                        "mode": "markers",
                        "name": "609.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:cc19b0",
                        "bsrc": "peter.capcara:192:3849c5",
                        "csrc": "peter.capcara:192:f039b1",
                        "mode": "markers",
                        "name": "608.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:ecd375",
                        "bsrc": "peter.capcara:192:1fe7cb",
                        "csrc": "peter.capcara:192:a3db65",
                        "mode": "markers",
                        "name": "607.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:daa590",
                        "bsrc": "peter.capcara:192:7a3a81",
                        "csrc": "peter.capcara:192:df1aa5",
                        "mode": "markers",
                        "name": "606.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:3dfeef",
                        "bsrc": "peter.capcara:192:676723",
                        "csrc": "peter.capcara:192:445532",
                        "mode": "markers",
                        "name": "605.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:7136d4",
                        "bsrc": "peter.capcara:192:81905c",
                        "csrc": "peter.capcara:192:ce96ab",
                        "mode": "markers",
                        "name": "604.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:1acae6",
                        "bsrc": "peter.capcara:192:952426",
                        "csrc": "peter.capcara:192:7c3179",
                        "mode": "markers",
                        "name": "603.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:f42b80",
                        "bsrc": "peter.capcara:192:84b247",
                        "csrc": "peter.capcara:192:0f8ce1",
                        "mode": "markers",
                        "name": "602.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:313d22",
                        "bsrc": "peter.capcara:192:40ce21",
                        "csrc": "peter.capcara:192:72ef89",
                        "mode": "markers",
                        "name": "601.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:66324e",
                        "bsrc": "peter.capcara:192:bffb30",
                        "csrc": "peter.capcara:192:f90bb4",
                        "mode": "markers",
                        "name": "600.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:2a093b",
                        "bsrc": "peter.capcara:192:18d5c9",
                        "csrc": "peter.capcara:192:9c65cf",
                        "mode": "markers",
                        "name": "599.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:b42871",
                        "bsrc": "peter.capcara:192:1d7d0d",
                        "csrc": "peter.capcara:192:4718bc",
                        "mode": "markers",
                        "name": "598.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:a3abd5",
                        "bsrc": "peter.capcara:192:bb2843",
                        "csrc": "peter.capcara:192:90f491",
                        "mode": "markers",
                        "name": "597.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:55e581",
                        "bsrc": "peter.capcara:192:c01016",
                        "csrc": "peter.capcara:192:2cda4b",
                        "mode": "markers",
                        "name": "596.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:3ab6b7",
                        "bsrc": "peter.capcara:192:574475",
                        "csrc": "peter.capcara:192:18496b",
                        "mode": "markers",
                        "name": "595.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:438b2a",
                        "bsrc": "peter.capcara:192:f50494",
                        "csrc": "peter.capcara:192:f91686",
                        "mode": "markers",
                        "name": "594.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:ddf4fd",
                        "bsrc": "peter.capcara:192:03fa59",
                        "csrc": "peter.capcara:192:97959b",
                        "mode": "markers",
                        "name": "593.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:c35af3",
                        "bsrc": "peter.capcara:192:f4f5e6",
                        "csrc": "peter.capcara:192:b1858d",
                        "mode": "markers",
                        "name": "592.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:d292d1",
                        "bsrc": "peter.capcara:192:111194",
                        "csrc": "peter.capcara:192:68446d",
                        "mode": "markers",
                        "name": "591.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:9e8597",
                        "bsrc": "peter.capcara:192:64b95b",
                        "csrc": "peter.capcara:192:3255df",
                        "mode": "markers",
                        "name": "589.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:e654b9",
                        "bsrc": "peter.capcara:192:209732",
                        "csrc": "peter.capcara:192:edb540",
                        "mode": "markers",
                        "name": "588.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:0d0853",
                        "bsrc": "peter.capcara:192:06e441",
                        "csrc": "peter.capcara:192:02f3c5",
                        "mode": "markers",
                        "name": "587.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:e6a11b",
                        "bsrc": "peter.capcara:192:39f459",
                        "csrc": "peter.capcara:192:f3d842",
                        "mode": "markers",
                        "name": "586.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:cf9d15",
                        "bsrc": "peter.capcara:192:c297a7",
                        "csrc": "peter.capcara:192:801c79",
                        "mode": "markers",
                        "name": "585.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:e38b11",
                        "bsrc": "peter.capcara:192:a1b0c8",
                        "csrc": "peter.capcara:192:c3aec2",
                        "mode": "markers",
                        "name": "584.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:a9dea1",
                        "bsrc": "peter.capcara:192:297f00",
                        "csrc": "peter.capcara:192:293224",
                        "mode": "markers",
                        "name": "583.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:7ef3d2",
                        "bsrc": "peter.capcara:192:0bf0f6",
                        "csrc": "peter.capcara:192:43c7c3",
                        "mode": "markers",
                        "name": "582.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:afbfa4",
                        "bsrc": "peter.capcara:192:fbdfb6",
                        "csrc": "peter.capcara:192:14d111",
                        "mode": "markers",
                        "name": "581.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:a40447",
                        "bsrc": "peter.capcara:192:cf5112",
                        "csrc": "peter.capcara:192:626cf3",
                        "mode": "markers",
                        "name": "580.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:c61463",
                        "bsrc": "peter.capcara:192:d5a00d",
                        "csrc": "peter.capcara:192:c8a857",
                        "mode": "markers",
                        "name": "579.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:192:96de6e",
                        "bsrc": "peter.capcara:192:c0fad1",
                        "csrc": "peter.capcara:192:ed5958",
                        "mode": "markers",
                        "name": "577.0",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "star"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "type": "table",
                        "cells": {
                            "fill": {
                                "color": "lavender"
                            },
                            "align": "left",
                            "valuessrc": "peter.capcara:192:b7befe"
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.0,
                                0.255
                            ]
                        },
                        "header": {
                            "fill": {
                                "color": "paleturquoise"
                            },
                            "align": "left",
                            "valuessrc": "peter.capcara:192:0bdc01"
                        },
                        "columnwidthsrc": "peter.capcara:192:0c2b6a"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Duval Triangle for DGA Interpretation"
                    },
                    "height": 1000,
                    "ternary": {
                        "sum": 100,
                        "aaxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "CH4(Methane)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "baxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "C2H2(Acetylene)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "caxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "C2H4(Ethylene)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.405,
                                1.0
                            ]
                        }
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": true
                }
            },
            "height": 1000,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~peter.capcara",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-08 08:11:51",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "peter.capcara",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-19T10:52:05.743783Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~tommt791/5.embed",
            "fid": "tommt791:5",
            "filename": "Plot 5",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/tommt791/5/9_075WXZD9FPJN8B45POFW9BT1TWU4VR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/tommt791/5/2_A9MJWN5BJU8XEE0XJUN0IDGMK2MIM2.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/tommt791/5/8_YXIDAE2TC8BPJE9HWBBO1C3INVHAGM.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/tommt791/5/9_075WXZD9FPJN8B45POFW9BT1TWU4VR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/tommt791:5",
                "plots": "https://api.plotly.com/v2/plots/tommt791:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=tommt791"
            },
            "owner": "tommt791",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~tommt791/5/",
            "world_readable": true,
            "date_modified": "2024-04-19T10:52:05.754Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~tommt791/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "Dąbrowa",
                        "type": "scatter",
                        "xsrc": "tommt791:0:c8922e",
                        "ysrc": "tommt791:0:0ae3a5"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "Wąsosz",
                        "type": "scatter",
                        "xsrc": "tommt791:1:999a26",
                        "ysrc": "tommt791:1:0331a3",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "Przedbórz",
                        "type": "scatter",
                        "xsrc": "tommt791:2:1d6efd",
                        "ysrc": "tommt791:2:bf2801",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "Januszewice",
                        "type": "scatter",
                        "xsrc": "tommt791:3:b3b877",
                        "ysrc": "tommt791:3:f1218e",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "Smardzewice",
                        "type": "scatter",
                        "xsrc": "tommt791:4:7ec3ba",
                        "ysrc": "tommt791:4:2b663c",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "2024-04-18 07:21:35",
                            "2024-04-19 07:11:35"
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            1.067222222222222,
                            24.72277777777778
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~tommt791",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/36.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2023-12-05 06:55:57",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "tommt791",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-19T10:48:10.590347Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~getcharish/163.embed",
            "fid": "getcharish:163",
            "filename": "dummyPhysicalRisksforExtreme winds and wind direction",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/getcharish/163/9_YDB8JO7VWAR2KN77G6SY0ZM8V8HMC8.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/getcharish/163/2_S9V6J46GU2ZS7EMX2B925DYWU3A5XH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/getcharish/163/8_DUGO3G91JTNEBOPRKJ3OYYW2Y0ELS2.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/getcharish/163/9_YDB8JO7VWAR2KN77G6SY0ZM8V8HMC8.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/getcharish:163",
                "plots": "https://api.plotly.com/v2/plots/getcharish:163",
                "parent": "https://api.plotly.com/v2/folders/home?user=getcharish"
            },
            "owner": "getcharish",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~getcharish/163/",
            "world_readable": true,
            "date_modified": "2024-04-22T14:55:38.160Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~getcharish/163/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "Take-off procedures",
                        "type": "scatter",
                        "xsrc": "getcharish:451:59ddfb",
                        "ysrc": "getcharish:451:ae350d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "idssrc": "getcharish:451:ec92c0",
                        "marker": {
                            "color": "#636efa",
                            "symbol": "circle",
                            "opacity": 0.7,
                            "sizeref": 0.075,
                            "sizesrc": "getcharish:451:f5ee37",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Take-off procedures",
                        "orientation": "v",
                        "hovertextsrc": "getcharish:451:5e2d9d",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>label=Take-off procedures<br>epoch=2020<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Damage to high structures",
                        "type": "scatter",
                        "xsrc": "getcharish:451:88fef1",
                        "ysrc": "getcharish:451:c25c9a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "idssrc": "getcharish:451:e861be",
                        "marker": {
                            "color": "#EF553B",
                            "symbol": "circle",
                            "opacity": 0.7,
                            "sizeref": 0.075,
                            "sizesrc": "getcharish:451:1ab479",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Damage to high structures",
                        "orientation": "v",
                        "hovertextsrc": "getcharish:451:9f67b6",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>label=Damage to high structures<br>epoch=2020<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Disruptive wind changes",
                        "type": "scatter",
                        "xsrc": "getcharish:451:bb1036",
                        "ysrc": "getcharish:451:240108",
                        "xaxis": "x",
                        "yaxis": "y",
                        "idssrc": "getcharish:451:dd44ba",
                        "marker": {
                            "color": "#00cc96",
                            "symbol": "circle",
                            "opacity": 0.7,
                            "sizeref": 0.075,
                            "sizesrc": "getcharish:451:124266",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Disruptive wind changes",
                        "orientation": "v",
                        "hovertextsrc": "getcharish:451:cc6fa4",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>label=Disruptive wind changes<br>epoch=2020<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                    }
                ],
                "frames": [
                    {
                        "data": [
                            {
                                "mode": "markers",
                                "name": "Take-off procedures",
                                "type": "scatter",
                                "xsrc": "getcharish:451:fc49d8",
                                "ysrc": "getcharish:451:49d9d4",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:451:2a90b2",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.075,
                                    "sizesrc": "getcharish:451:569b4a",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Take-off procedures",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:451:fd88dd",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Take-off procedures<br>epoch=2020<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            },
                            {
                                "mode": "markers",
                                "name": "Damage to high structures",
                                "type": "scatter",
                                "xsrc": "getcharish:451:503c45",
                                "ysrc": "getcharish:451:671447",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:451:444ace",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.075,
                                    "sizesrc": "getcharish:451:e90cb7",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Damage to high structures",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:451:cfe351",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Damage to high structures<br>epoch=2020<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            },
                            {
                                "mode": "markers",
                                "name": "Disruptive wind changes",
                                "type": "scatter",
                                "xsrc": "getcharish:451:d67b3e",
                                "ysrc": "getcharish:451:c0b553",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:451:467159",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.075,
                                    "sizesrc": "getcharish:451:a594ae",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Disruptive wind changes",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:451:41403c",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Disruptive wind changes<br>epoch=2020<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            }
                        ],
                        "name": "2020"
                    },
                    {
                        "data": [
                            {
                                "mode": "markers",
                                "name": "Take-off procedures",
                                "type": "scatter",
                                "xsrc": "getcharish:451:383a22",
                                "ysrc": "getcharish:451:3966e2",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:451:9b0780",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.075,
                                    "sizesrc": "getcharish:451:24fb8e",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Take-off procedures",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:451:2fa9dc",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Take-off procedures<br>epoch=2030<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            },
                            {
                                "mode": "markers",
                                "name": "Damage to high structures",
                                "type": "scatter",
                                "xsrc": "getcharish:451:888928",
                                "ysrc": "getcharish:451:e03139",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:451:a4650c",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.075,
                                    "sizesrc": "getcharish:451:6d457d",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Damage to high structures",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:451:2b490e",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Damage to high structures<br>epoch=2030<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            },
                            {
                                "mode": "markers",
                                "name": "Disruptive wind changes",
                                "type": "scatter",
                                "xsrc": "getcharish:451:129838",
                                "ysrc": "getcharish:451:4d6ef7",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:451:7283fc",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.075,
                                    "sizesrc": "getcharish:451:e30689",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Disruptive wind changes",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:451:1d6db7",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Disruptive wind changes<br>epoch=2030<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            }
                        ],
                        "name": "2030"
                    },
                    {
                        "data": [
                            {
                                "mode": "markers",
                                "name": "Take-off procedures",
                                "type": "scatter",
                                "xsrc": "getcharish:451:6b1f8f",
                                "ysrc": "getcharish:451:6776ab",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:451:2ca8af",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.075,
                                    "sizesrc": "getcharish:451:881892",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Take-off procedures",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:451:a783d9",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Take-off procedures<br>epoch=2070<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            },
                            {
                                "mode": "markers",
                                "name": "Damage to high structures",
                                "type": "scatter",
                                "xsrc": "getcharish:451:e8bf7a",
                                "ysrc": "getcharish:451:d9e012",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:451:a75cf4",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.075,
                                    "sizesrc": "getcharish:451:8f3221",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Damage to high structures",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:451:6b6fd5",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Damage to high structures<br>epoch=2070<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            },
                            {
                                "mode": "markers",
                                "name": "Disruptive wind changes",
                                "type": "scatter",
                                "xsrc": "getcharish:451:dcd1c2",
                                "ysrc": "getcharish:451:99af9c",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:451:c21824",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.075,
                                    "sizesrc": "getcharish:451:ef2ba3",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Disruptive wind changes",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:451:7cba40",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Disruptive wind changes<br>epoch=2070<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            }
                        ],
                        "name": "2070"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "disclosure = Extreme winds and wind direction"
                    },
                    "xaxis": {
                        "range": [
                            0,
                            8
                        ],
                        "title": {
                            "text": "likelihood"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "range": [
                            0,
                            7
                        ],
                        "title": {
                            "text": "consequence"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "title": {
                            "text": "label"
                        },
                        "itemsizing": "constant",
                        "tracegroupgap": 0
                    },
                    "sliders": [
                        {
                            "x": 0.1,
                            "y": 0,
                            "len": 0.9,
                            "pad": {
                                "b": 10,
                                "t": 60
                            },
                            "steps": [
                                {
                                    "args": [
                                        [
                                            "2020"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2020",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2030"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2030",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2070"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2070",
                                    "method": "animate"
                                }
                            ],
                            "active": 0,
                            "xanchor": "left",
                            "yanchor": "top",
                            "currentvalue": {
                                "prefix": "epoch="
                            }
                        }
                    ],
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "updatemenus": [
                        {
                            "x": 0.1,
                            "y": 0,
                            "pad": {
                                "r": 10,
                                "t": 70
                            },
                            "type": "buttons",
                            "buttons": [
                                {
                                    "args": [
                                        null,
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "&#9654;",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            null
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "&#9724;",
                                    "method": "animate"
                                }
                            ],
                            "xanchor": "right",
                            "yanchor": "top",
                            "direction": "left",
                            "showactive": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~getcharish",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/83.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-07-24 12:58:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "getcharish",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-19T10:48:05.531228Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~getcharish/161.embed",
            "fid": "getcharish:161",
            "filename": "dummyPhysicalRisksforMaximum temperature",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/getcharish/161/9_QTG5YB61UAI3A3MHRASQN4I12ARPL0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/getcharish/161/2_3P80ODBP4YYXQJ56TELKWS40PRH8XW.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/getcharish/161/8_CXL4I5JKFHW7PX9FISIJGXB54YFQI2.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/getcharish/161/9_QTG5YB61UAI3A3MHRASQN4I12ARPL0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/getcharish:161",
                "plots": "https://api.plotly.com/v2/plots/getcharish:161",
                "parent": "https://api.plotly.com/v2/folders/home?user=getcharish"
            },
            "owner": "getcharish",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~getcharish/161/",
            "world_readable": true,
            "date_modified": "2024-04-22T14:55:29.978Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~getcharish/161/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "Infrastructure damage (runway/apron tarmac)",
                        "type": "scatter",
                        "xsrc": "getcharish:450:7bf215",
                        "ysrc": "getcharish:450:947104",
                        "xaxis": "x",
                        "yaxis": "y",
                        "idssrc": "getcharish:450:353375",
                        "marker": {
                            "color": "#636efa",
                            "symbol": "circle",
                            "opacity": 0.7,
                            "sizeref": 0.125,
                            "sizesrc": "getcharish:450:498a2d",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Infrastructure damage (runway/apron tarmac)",
                        "orientation": "v",
                        "hovertextsrc": "getcharish:450:0ead6a",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>label=Infrastructure damage (runway/apron tarmac)<br>epoch=2020<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Surface access route integrity",
                        "type": "scatter",
                        "xsrc": "getcharish:450:fc9ea6",
                        "ysrc": "getcharish:450:f29902",
                        "xaxis": "x",
                        "yaxis": "y",
                        "idssrc": "getcharish:450:67a7d9",
                        "marker": {
                            "color": "#EF553B",
                            "symbol": "circle",
                            "opacity": 0.7,
                            "sizeref": 0.125,
                            "sizesrc": "getcharish:450:a0187d",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Surface access route integrity",
                        "orientation": "v",
                        "hovertextsrc": "getcharish:450:e789b6",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>label=Surface access route integrity<br>epoch=2020<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Maximum take-off weight limitations",
                        "type": "scatter",
                        "xsrc": "getcharish:450:fe9b78",
                        "ysrc": "getcharish:450:9b795f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "idssrc": "getcharish:450:baaec5",
                        "marker": {
                            "color": "#00cc96",
                            "symbol": "circle",
                            "opacity": 0.7,
                            "sizeref": 0.125,
                            "sizesrc": "getcharish:450:5ec908",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Maximum take-off weight limitations",
                        "orientation": "v",
                        "hovertextsrc": "getcharish:450:380cfb",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>label=Maximum take-off weight limitations<br>epoch=2020<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Staff & passenger thermal comfort",
                        "type": "scatter",
                        "xsrc": "getcharish:450:0d3b33",
                        "ysrc": "getcharish:450:3b47af",
                        "xaxis": "x",
                        "yaxis": "y",
                        "idssrc": "getcharish:450:48bbb6",
                        "marker": {
                            "color": "#ab63fa",
                            "symbol": "circle",
                            "opacity": 0.7,
                            "sizeref": 0.125,
                            "sizesrc": "getcharish:450:aac53d",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Staff & passenger thermal comfort",
                        "orientation": "v",
                        "hovertextsrc": "getcharish:450:4fbc13",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>label=Staff & passenger thermal comfort<br>epoch=2020<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Construction/maintenance delays",
                        "type": "scatter",
                        "xsrc": "getcharish:450:bb6fab",
                        "ysrc": "getcharish:450:011019",
                        "xaxis": "x",
                        "yaxis": "y",
                        "idssrc": "getcharish:450:ddd53a",
                        "marker": {
                            "color": "#FFA15A",
                            "symbol": "circle",
                            "opacity": 0.7,
                            "sizeref": 0.125,
                            "sizesrc": "getcharish:450:8cf734",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Construction/maintenance delays",
                        "orientation": "v",
                        "hovertextsrc": "getcharish:450:d6a219",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>label=Construction/maintenance delays<br>epoch=2020<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                    }
                ],
                "frames": [
                    {
                        "data": [
                            {
                                "mode": "markers",
                                "name": "Infrastructure damage (runway/apron tarmac)",
                                "type": "scatter",
                                "xsrc": "getcharish:450:ad06e7",
                                "ysrc": "getcharish:450:4df809",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:450:703f00",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.125,
                                    "sizesrc": "getcharish:450:3e62f9",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Infrastructure damage (runway/apron tarmac)",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:450:ebd66e",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Infrastructure damage (runway/apron tarmac)<br>epoch=2020<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            },
                            {
                                "mode": "markers",
                                "name": "Surface access route integrity",
                                "type": "scatter",
                                "xsrc": "getcharish:450:df78bd",
                                "ysrc": "getcharish:450:c9d14f",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:450:c17c60",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.125,
                                    "sizesrc": "getcharish:450:7732fc",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Surface access route integrity",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:450:05d16e",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Surface access route integrity<br>epoch=2020<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            },
                            {
                                "mode": "markers",
                                "name": "Maximum take-off weight limitations",
                                "type": "scatter",
                                "xsrc": "getcharish:450:6abbeb",
                                "ysrc": "getcharish:450:84957d",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:450:a763b8",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.125,
                                    "sizesrc": "getcharish:450:341900",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Maximum take-off weight limitations",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:450:73c7f4",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Maximum take-off weight limitations<br>epoch=2020<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            },
                            {
                                "mode": "markers",
                                "name": "Staff & passenger thermal comfort",
                                "type": "scatter",
                                "xsrc": "getcharish:450:1eba18",
                                "ysrc": "getcharish:450:d336f1",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:450:dcac01",
                                "marker": {
                                    "color": "#ab63fa",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.125,
                                    "sizesrc": "getcharish:450:ec42be",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Staff & passenger thermal comfort",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:450:0cec05",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Staff & passenger thermal comfort<br>epoch=2020<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            },
                            {
                                "mode": "markers",
                                "name": "Construction/maintenance delays",
                                "type": "scatter",
                                "xsrc": "getcharish:450:562c71",
                                "ysrc": "getcharish:450:cd9c1f",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:450:7292df",
                                "marker": {
                                    "color": "#FFA15A",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.125,
                                    "sizesrc": "getcharish:450:51da9e",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Construction/maintenance delays",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:450:1692de",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Construction/maintenance delays<br>epoch=2020<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            }
                        ],
                        "name": "2020"
                    },
                    {
                        "data": [
                            {
                                "mode": "markers",
                                "name": "Infrastructure damage (runway/apron tarmac)",
                                "type": "scatter",
                                "xsrc": "getcharish:450:b63e9d",
                                "ysrc": "getcharish:450:d24d11",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:450:dec01d",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.125,
                                    "sizesrc": "getcharish:450:4b7f7b",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Infrastructure damage (runway/apron tarmac)",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:450:6a062c",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Infrastructure damage (runway/apron tarmac)<br>epoch=2030<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            },
                            {
                                "mode": "markers",
                                "name": "Surface access route integrity",
                                "type": "scatter",
                                "xsrc": "getcharish:450:3267ea",
                                "ysrc": "getcharish:450:62bcbf",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:450:192b0d",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.125,
                                    "sizesrc": "getcharish:450:6896ed",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Surface access route integrity",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:450:6e6b27",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Surface access route integrity<br>epoch=2030<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            },
                            {
                                "mode": "markers",
                                "name": "Maximum take-off weight limitations",
                                "type": "scatter",
                                "xsrc": "getcharish:450:d33b06",
                                "ysrc": "getcharish:450:085226",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:450:d34735",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.125,
                                    "sizesrc": "getcharish:450:3f2844",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Maximum take-off weight limitations",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:450:50e860",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Maximum take-off weight limitations<br>epoch=2030<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            },
                            {
                                "mode": "markers",
                                "name": "Staff & passenger thermal comfort",
                                "type": "scatter",
                                "xsrc": "getcharish:450:5cd6ce",
                                "ysrc": "getcharish:450:367565",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:450:20b93d",
                                "marker": {
                                    "color": "#ab63fa",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.125,
                                    "sizesrc": "getcharish:450:e33d69",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Staff & passenger thermal comfort",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:450:1c1798",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Staff & passenger thermal comfort<br>epoch=2030<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            },
                            {
                                "mode": "markers",
                                "name": "Construction/maintenance delays",
                                "type": "scatter",
                                "xsrc": "getcharish:450:e2cff3",
                                "ysrc": "getcharish:450:ab5e75",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:450:9f3d04",
                                "marker": {
                                    "color": "#FFA15A",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.125,
                                    "sizesrc": "getcharish:450:78610e",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Construction/maintenance delays",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:450:566749",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Construction/maintenance delays<br>epoch=2030<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            }
                        ],
                        "name": "2030"
                    },
                    {
                        "data": [
                            {
                                "mode": "markers",
                                "name": "Infrastructure damage (runway/apron tarmac)",
                                "type": "scatter",
                                "xsrc": "getcharish:450:3e5aa2",
                                "ysrc": "getcharish:450:da0b17",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:450:009987",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.125,
                                    "sizesrc": "getcharish:450:cd2a39",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Infrastructure damage (runway/apron tarmac)",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:450:cabed3",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Infrastructure damage (runway/apron tarmac)<br>epoch=2070<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            },
                            {
                                "mode": "markers",
                                "name": "Surface access route integrity",
                                "type": "scatter",
                                "xsrc": "getcharish:450:3172d1",
                                "ysrc": "getcharish:450:aa3387",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:450:9d8a42",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.125,
                                    "sizesrc": "getcharish:450:90f7f7",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Surface access route integrity",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:450:998906",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Surface access route integrity<br>epoch=2070<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            },
                            {
                                "mode": "markers",
                                "name": "Maximum take-off weight limitations",
                                "type": "scatter",
                                "xsrc": "getcharish:450:4a3adc",
                                "ysrc": "getcharish:450:737589",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:450:ce7add",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.125,
                                    "sizesrc": "getcharish:450:b8406a",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Maximum take-off weight limitations",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:450:9553d7",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Maximum take-off weight limitations<br>epoch=2070<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            },
                            {
                                "mode": "markers",
                                "name": "Staff & passenger thermal comfort",
                                "type": "scatter",
                                "xsrc": "getcharish:450:8224dd",
                                "ysrc": "getcharish:450:643f45",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:450:4f3f23",
                                "marker": {
                                    "color": "#ab63fa",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.125,
                                    "sizesrc": "getcharish:450:0ba4c6",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Staff & passenger thermal comfort",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:450:70b2e5",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Staff & passenger thermal comfort<br>epoch=2070<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            },
                            {
                                "mode": "markers",
                                "name": "Construction/maintenance delays",
                                "type": "scatter",
                                "xsrc": "getcharish:450:8883fa",
                                "ysrc": "getcharish:450:82c994",
                                "xaxis": "x",
                                "yaxis": "y",
                                "idssrc": "getcharish:450:a03b9c",
                                "marker": {
                                    "color": "#FFA15A",
                                    "symbol": "circle",
                                    "opacity": 0.7,
                                    "sizeref": 0.125,
                                    "sizesrc": "getcharish:450:f7f4f1",
                                    "sizemode": "area"
                                },
                                "showlegend": true,
                                "legendgroup": "Construction/maintenance delays",
                                "orientation": "v",
                                "hovertextsrc": "getcharish:450:321bd7",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>label=Construction/maintenance delays<br>epoch=2070<br>likelihood=%{x}<br>consequence=%{y}<br>weight=%{marker.size}<extra></extra>"
                            }
                        ],
                        "name": "2070"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "disclosure = Maximum temperature"
                    },
                    "xaxis": {
                        "range": [
                            0,
                            8
                        ],
                        "title": {
                            "text": "likelihood"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "range": [
                            0,
                            7
                        ],
                        "title": {
                            "text": "consequence"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "title": {
                            "text": "label"
                        },
                        "itemsizing": "constant",
                        "tracegroupgap": 0
                    },
                    "sliders": [
                        {
                            "x": 0.1,
                            "y": 0,
                            "len": 0.9,
                            "pad": {
                                "b": 10,
                                "t": 60
                            },
                            "steps": [
                                {
                                    "args": [
                                        [
                                            "2020"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2020",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2030"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2030",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2070"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2070",
                                    "method": "animate"
                                }
                            ],
                            "active": 0,
                            "xanchor": "left",
                            "yanchor": "top",
                            "currentvalue": {
                                "prefix": "epoch="
                            }
                        }
                    ],
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "updatemenus": [
                        {
                            "x": 0.1,
                            "y": 0,
                            "pad": {
                                "r": 10,
                                "t": 70
                            },
                            "type": "buttons",
                            "buttons": [
                                {
                                    "args": [
                                        null,
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "&#9654;",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            null
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "&#9724;",
                                    "method": "animate"
                                }
                            ],
                            "xanchor": "right",
                            "yanchor": "top",
                            "direction": "left",
                            "showactive": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~getcharish",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/83.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-07-24 12:58:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "getcharish",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-19T10:46:52.889515Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ingokarn/1.embed",
            "fid": "ingokarn:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ingokarn/1/9_UAFZUL1I94G991QOND243RSZC9NEGI.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ingokarn/1/2_QK7R0B5ISPZIGQI5WSRKGKAETJ41XZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ingokarn/1/8_LHL46W3XGNSGMF501WXLQZ04QPQ6PB.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ingokarn/1/9_UAFZUL1I94G991QOND243RSZC9NEGI.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ingokarn:1",
                "plots": "https://api.plotly.com/v2/plots/ingokarn:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=ingokarn"
            },
            "owner": "ingokarn",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~ingokarn/1/",
            "world_readable": true,
            "date_modified": "2024-04-19T10:46:52.901Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ingokarn/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "black",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y",
                                "z": "z"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "ingokarn:0:09224d",
                        "ysrc": "ingokarn:0:86b100",
                        "zsrc": "ingokarn:0:0576a8",
                        "marker": {
                            "cmax": 12.566370614359172,
                            "cmin": 0,
                            "meta": {
                                "columnNames": {
                                    "color": "z"
                                }
                            },
                            "size": 6,
                            "cauto": true,
                            "colorsrc": "ingokarn:0:0576a8",
                            "colorscale": [
                                [
                                    0,
                                    "#2a3f5f"
                                ],
                                [
                                    0.2,
                                    "#A2B1C6"
                                ],
                                [
                                    0.4,
                                    "#0D76BF"
                                ],
                                [
                                    0.6,
                                    "#00cc96"
                                ],
                                [
                                    0.8,
                                    "#e6915a"
                                ],
                                [
                                    1,
                                    "#EF553B"
                                ]
                            ],
                            "reversescale": false,
                            "autocolorscale": false
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "dtick": 0.5,
                            "range": [
                                -1.062371495440084,
                                1.0624961059224267
                            ],
                            "tick0": 0,
                            "title": {
                                "font": {
                                    "family": "Times New Roman"
                                },
                                "text": "X"
                            },
                            "nticks": 0,
                            "showgrid": true,
                            "showline": false,
                            "tickmode": "auto",
                            "zeroline": false,
                            "autorange": true,
                            "rangemode": "normal",
                            "showbackground": false
                        },
                        "yaxis": {
                            "type": "linear",
                            "dtick": 0.5,
                            "range": [
                                -1.062466899825041,
                                1.062466899825041
                            ],
                            "tick0": 0,
                            "title": {
                                "font": {
                                    "family": "Times New Roman"
                                },
                                "text": "Y"
                            },
                            "nticks": 0,
                            "showgrid": true,
                            "tickmode": "auto",
                            "zeroline": false,
                            "autorange": true,
                            "rangemode": "normal"
                        },
                        "zaxis": {
                            "type": "linear",
                            "dtick": 2,
                            "range": [
                                -0.39269908169872414,
                                12.959069696057897
                            ],
                            "tick0": 0,
                            "title": {
                                "font": {
                                    "family": "Arial"
                                },
                                "text": "Z"
                            },
                            "nticks": 0,
                            "showgrid": true,
                            "tickmode": "auto",
                            "zeroline": false,
                            "autorange": true,
                            "rangemode": "normal"
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -0.06730366801455621,
                                "y": 0.003160699639236146,
                                "z": -1.7710634160290224
                            },
                            "center": {
                                "x": -0.06730366801455621,
                                "y": 0.003160699639236042,
                                "z": -0.07369645044279105
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "dragmode": "turntable",
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "text": "Helix Curve using 3D Scatter"
                    },
                    "autosize": true,
                    "dragmode": "zoom"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ingokarn",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/83.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-19 10:38:14",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ingokarn",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-19T10:30:57.379133Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ag_andreew/47.embed",
            "fid": "ag_andreew:47",
            "filename": "times_to_touch.html",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ag_andreew/47/9_J5KDRAP0VYOVB4LJGNCW1RLBVSQ0HE.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ag_andreew/47/2_YVD1QASCC7MCLN67VO2MVVHSFZWKV1.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ag_andreew/47/8_ETOTPFJJCJG2W0CUW0I2PCVMQ0W91L.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ag_andreew/47/9_J5KDRAP0VYOVB4LJGNCW1RLBVSQ0HE.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ag_andreew:47",
                "plots": "https://api.plotly.com/v2/plots/ag_andreew:47",
                "parent": "https://api.plotly.com/v2/folders/home?user=ag_andreew"
            },
            "owner": "ag_andreew",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~ag_andreew/47/",
            "world_readable": true,
            "date_modified": "2024-04-19T10:30:57.391Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ag_andreew/47/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "",
                        "type": "box",
                        "xsrc": "ag_andreew:46:3d4720",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "green"
                        }
                    },
                    {
                        "name": "",
                        "type": "box",
                        "xsrc": "ag_andreew:46:e0bf3e",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "color": "green"
                        }
                    },
                    {
                        "name": "",
                        "type": "box",
                        "xsrc": "ag_andreew:46:1d78d9",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "color": "green"
                        }
                    },
                    {
                        "name": "",
                        "type": "box",
                        "xsrc": "ag_andreew:46:ba2472",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "color": "green"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Распределение времени от тача до инсталла dlab для разных каналов"
                    },
                    "xaxis": {
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "anchor": "x",
                        "domain": [
                            0.84375,
                            1.0
                        ]
                    },
                    "xaxis2": {
                        "anchor": "y2",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis3": {
                        "anchor": "y3",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis4": {
                        "dtick": 200,
                        "tick0": 0,
                        "title": {
                            "text": "days"
                        },
                        "anchor": "y4",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "tickmode": "linear"
                    },
                    "yaxis2": {
                        "title": {
                            "text": "days"
                        },
                        "anchor": "x2",
                        "domain": [
                            0.5625,
                            0.71875
                        ],
                        "tickformat": "%H:%M:%S"
                    },
                    "yaxis3": {
                        "anchor": "x3",
                        "domain": [
                            0.28125,
                            0.4375
                        ]
                    },
                    "yaxis4": {
                        "anchor": "x4",
                        "domain": [
                            0.0,
                            0.15625
                        ]
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "rgb(234,234,242)",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "rgb(36,36,36)"
                                    },
                                    "error_y": {
                                        "color": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(231,231,240)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(183,183,191)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "rgb(2,4,25)"
                                        ],
                                        [
                                            0.06274509803921569,
                                            "rgb(24,15,41)"
                                        ],
                                        [
                                            0.12549019607843137,
                                            "rgb(47,23,57)"
                                        ],
                                        [
                                            0.18823529411764706,
                                            "rgb(71,28,72)"
                                        ],
                                        [
                                            0.25098039215686274,
                                            "rgb(97,30,82)"
                                        ],
                                        [
                                            0.3137254901960784,
                                            "rgb(123,30,89)"
                                        ],
                                        [
                                            0.3764705882352941,
                                            "rgb(150,27,91)"
                                        ],
                                        [
                                            0.4392156862745098,
                                            "rgb(177,22,88)"
                                        ],
                                        [
                                            0.5019607843137255,
                                            "rgb(203,26,79)"
                                        ],
                                        [
                                            0.5647058823529412,
                                            "rgb(223,47,67)"
                                        ],
                                        [
                                            0.6274509803921569,
                                            "rgb(236,76,61)"
                                        ],
                                        [
                                            0.6901960784313725,
                                            "rgb(242,107,73)"
                                        ],
                                        [
                                            0.7529411764705882,
                                            "rgb(244,135,95)"
                                        ],
                                        [
                                            0.8156862745098039,
                                            "rgb(245,162,122)"
                                        ],
                                        [
                                            0.8784313725490196,
                                            "rgb(246,188,153)"
                                        ],
                                        [
                                            0.9411764705882353,
                                            "rgb(247,212,187)"
                                        ],
                                        [
                                            1.0,
                                            "rgb(250,234,220)"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "rgb(2,4,25)"
                                        ],
                                        [
                                            0.06274509803921569,
                                            "rgb(24,15,41)"
                                        ],
                                        [
                                            0.12549019607843137,
                                            "rgb(47,23,57)"
                                        ],
                                        [
                                            0.18823529411764706,
                                            "rgb(71,28,72)"
                                        ],
                                        [
                                            0.25098039215686274,
                                            "rgb(97,30,82)"
                                        ],
                                        [
                                            0.3137254901960784,
                                            "rgb(123,30,89)"
                                        ],
                                        [
                                            0.3764705882352941,
                                            "rgb(150,27,91)"
                                        ],
                                        [
                                            0.4392156862745098,
                                            "rgb(177,22,88)"
                                        ],
                                        [
                                            0.5019607843137255,
                                            "rgb(203,26,79)"
                                        ],
                                        [
                                            0.5647058823529412,
                                            "rgb(223,47,67)"
                                        ],
                                        [
                                            0.6274509803921569,
                                            "rgb(236,76,61)"
                                        ],
                                        [
                                            0.6901960784313725,
                                            "rgb(242,107,73)"
                                        ],
                                        [
                                            0.7529411764705882,
                                            "rgb(244,135,95)"
                                        ],
                                        [
                                            0.8156862745098039,
                                            "rgb(245,162,122)"
                                        ],
                                        [
                                            0.8784313725490196,
                                            "rgb(246,188,153)"
                                        ],
                                        [
                                            0.9411764705882353,
                                            "rgb(247,212,187)"
                                        ],
                                        [
                                            1.0,
                                            "rgb(250,234,220)"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "rgb(2,4,25)"
                                        ],
                                        [
                                            0.06274509803921569,
                                            "rgb(24,15,41)"
                                        ],
                                        [
                                            0.12549019607843137,
                                            "rgb(47,23,57)"
                                        ],
                                        [
                                            0.18823529411764706,
                                            "rgb(71,28,72)"
                                        ],
                                        [
                                            0.25098039215686274,
                                            "rgb(97,30,82)"
                                        ],
                                        [
                                            0.3137254901960784,
                                            "rgb(123,30,89)"
                                        ],
                                        [
                                            0.3764705882352941,
                                            "rgb(150,27,91)"
                                        ],
                                        [
                                            0.4392156862745098,
                                            "rgb(177,22,88)"
                                        ],
                                        [
                                            0.5019607843137255,
                                            "rgb(203,26,79)"
                                        ],
                                        [
                                            0.5647058823529412,
                                            "rgb(223,47,67)"
                                        ],
                                        [
                                            0.6274509803921569,
                                            "rgb(236,76,61)"
                                        ],
                                        [
                                            0.6901960784313725,
                                            "rgb(242,107,73)"
                                        ],
                                        [
                                            0.7529411764705882,
                                            "rgb(244,135,95)"
                                        ],
                                        [
                                            0.8156862745098039,
                                            "rgb(245,162,122)"
                                        ],
                                        [
                                            0.8784313725490196,
                                            "rgb(246,188,153)"
                                        ],
                                        [
                                            0.9411764705882353,
                                            "rgb(247,212,187)"
                                        ],
                                        [
                                            1.0,
                                            "rgb(250,234,220)"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "rgb(234,234,242)",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "rgb(2,4,25)"
                                        ],
                                        [
                                            0.06274509803921569,
                                            "rgb(24,15,41)"
                                        ],
                                        [
                                            0.12549019607843137,
                                            "rgb(47,23,57)"
                                        ],
                                        [
                                            0.18823529411764706,
                                            "rgb(71,28,72)"
                                        ],
                                        [
                                            0.25098039215686274,
                                            "rgb(97,30,82)"
                                        ],
                                        [
                                            0.3137254901960784,
                                            "rgb(123,30,89)"
                                        ],
                                        [
                                            0.3764705882352941,
                                            "rgb(150,27,91)"
                                        ],
                                        [
                                            0.4392156862745098,
                                            "rgb(177,22,88)"
                                        ],
                                        [
                                            0.5019607843137255,
                                            "rgb(203,26,79)"
                                        ],
                                        [
                                            0.5647058823529412,
                                            "rgb(223,47,67)"
                                        ],
                                        [
                                            0.6274509803921569,
                                            "rgb(236,76,61)"
                                        ],
                                        [
                                            0.6901960784313725,
                                            "rgb(242,107,73)"
                                        ],
                                        [
                                            0.7529411764705882,
                                            "rgb(244,135,95)"
                                        ],
                                        [
                                            0.8156862745098039,
                                            "rgb(245,162,122)"
                                        ],
                                        [
                                            0.8784313725490196,
                                            "rgb(246,188,153)"
                                        ],
                                        [
                                            0.9411764705882353,
                                            "rgb(247,212,187)"
                                        ],
                                        [
                                            1.0,
                                            "rgb(250,234,220)"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "rgb(2,4,25)"
                                        ],
                                        [
                                            0.06274509803921569,
                                            "rgb(24,15,41)"
                                        ],
                                        [
                                            0.12549019607843137,
                                            "rgb(47,23,57)"
                                        ],
                                        [
                                            0.18823529411764706,
                                            "rgb(71,28,72)"
                                        ],
                                        [
                                            0.25098039215686274,
                                            "rgb(97,30,82)"
                                        ],
                                        [
                                            0.3137254901960784,
                                            "rgb(123,30,89)"
                                        ],
                                        [
                                            0.3764705882352941,
                                            "rgb(150,27,91)"
                                        ],
                                        [
                                            0.4392156862745098,
                                            "rgb(177,22,88)"
                                        ],
                                        [
                                            0.5019607843137255,
                                            "rgb(203,26,79)"
                                        ],
                                        [
                                            0.5647058823529412,
                                            "rgb(223,47,67)"
                                        ],
                                        [
                                            0.6274509803921569,
                                            "rgb(236,76,61)"
                                        ],
                                        [
                                            0.6901960784313725,
                                            "rgb(242,107,73)"
                                        ],
                                        [
                                            0.7529411764705882,
                                            "rgb(244,135,95)"
                                        ],
                                        [
                                            0.8156862745098039,
                                            "rgb(245,162,122)"
                                        ],
                                        [
                                            0.8784313725490196,
                                            "rgb(246,188,153)"
                                        ],
                                        [
                                            0.9411764705882353,
                                            "rgb(247,212,187)"
                                        ],
                                        [
                                            1.0,
                                            "rgb(250,234,220)"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "rgb(2,4,25)"
                                        ],
                                        [
                                            0.06274509803921569,
                                            "rgb(24,15,41)"
                                        ],
                                        [
                                            0.12549019607843137,
                                            "rgb(47,23,57)"
                                        ],
                                        [
                                            0.18823529411764706,
                                            "rgb(71,28,72)"
                                        ],
                                        [
                                            0.25098039215686274,
                                            "rgb(97,30,82)"
                                        ],
                                        [
                                            0.3137254901960784,
                                            "rgb(123,30,89)"
                                        ],
                                        [
                                            0.3764705882352941,
                                            "rgb(150,27,91)"
                                        ],
                                        [
                                            0.4392156862745098,
                                            "rgb(177,22,88)"
                                        ],
                                        [
                                            0.5019607843137255,
                                            "rgb(203,26,79)"
                                        ],
                                        [
                                            0.5647058823529412,
                                            "rgb(223,47,67)"
                                        ],
                                        [
                                            0.6274509803921569,
                                            "rgb(236,76,61)"
                                        ],
                                        [
                                            0.6901960784313725,
                                            "rgb(242,107,73)"
                                        ],
                                        [
                                            0.7529411764705882,
                                            "rgb(244,135,95)"
                                        ],
                                        [
                                            0.8156862745098039,
                                            "rgb(245,162,122)"
                                        ],
                                        [
                                            0.8784313725490196,
                                            "rgb(246,188,153)"
                                        ],
                                        [
                                            0.9411764705882353,
                                            "rgb(247,212,187)"
                                        ],
                                        [
                                            1.0,
                                            "rgb(250,234,220)"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "rgb(234,234,242)",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(36,36,36)"
                            },
                            "polar": {
                                "bgcolor": "rgb(234,234,242)",
                                "radialaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(234,234,242)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(234,234,242)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(234,234,242)"
                                }
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "rgb(234,234,242)"
                            },
                            "colorway": [
                                "rgb(76,114,176)",
                                "rgb(221,132,82)",
                                "rgb(85,168,104)",
                                "rgb(196,78,82)",
                                "rgb(129,114,179)",
                                "rgb(147,120,96)",
                                "rgb(218,139,195)",
                                "rgb(140,140,140)",
                                "rgb(204,185,116)",
                                "rgb(100,181,205)"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "ticklen": 8,
                                    "tickcolor": "rgb(36,36,36)",
                                    "tickwidth": 2,
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "sequential": [
                                    [
                                        0.0,
                                        "rgb(2,4,25)"
                                    ],
                                    [
                                        0.06274509803921569,
                                        "rgb(24,15,41)"
                                    ],
                                    [
                                        0.12549019607843137,
                                        "rgb(47,23,57)"
                                    ],
                                    [
                                        0.18823529411764706,
                                        "rgb(71,28,72)"
                                    ],
                                    [
                                        0.25098039215686274,
                                        "rgb(97,30,82)"
                                    ],
                                    [
                                        0.3137254901960784,
                                        "rgb(123,30,89)"
                                    ],
                                    [
                                        0.3764705882352941,
                                        "rgb(150,27,91)"
                                    ],
                                    [
                                        0.4392156862745098,
                                        "rgb(177,22,88)"
                                    ],
                                    [
                                        0.5019607843137255,
                                        "rgb(203,26,79)"
                                    ],
                                    [
                                        0.5647058823529412,
                                        "rgb(223,47,67)"
                                    ],
                                    [
                                        0.6274509803921569,
                                        "rgb(236,76,61)"
                                    ],
                                    [
                                        0.6901960784313725,
                                        "rgb(242,107,73)"
                                    ],
                                    [
                                        0.7529411764705882,
                                        "rgb(244,135,95)"
                                    ],
                                    [
                                        0.8156862745098039,
                                        "rgb(245,162,122)"
                                    ],
                                    [
                                        0.8784313725490196,
                                        "rgb(246,188,153)"
                                    ],
                                    [
                                        0.9411764705882353,
                                        "rgb(247,212,187)"
                                    ],
                                    [
                                        1.0,
                                        "rgb(250,234,220)"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "rgb(2,4,25)"
                                    ],
                                    [
                                        0.06274509803921569,
                                        "rgb(24,15,41)"
                                    ],
                                    [
                                        0.12549019607843137,
                                        "rgb(47,23,57)"
                                    ],
                                    [
                                        0.18823529411764706,
                                        "rgb(71,28,72)"
                                    ],
                                    [
                                        0.25098039215686274,
                                        "rgb(97,30,82)"
                                    ],
                                    [
                                        0.3137254901960784,
                                        "rgb(123,30,89)"
                                    ],
                                    [
                                        0.3764705882352941,
                                        "rgb(150,27,91)"
                                    ],
                                    [
                                        0.4392156862745098,
                                        "rgb(177,22,88)"
                                    ],
                                    [
                                        0.5019607843137255,
                                        "rgb(203,26,79)"
                                    ],
                                    [
                                        0.5647058823529412,
                                        "rgb(223,47,67)"
                                    ],
                                    [
                                        0.6274509803921569,
                                        "rgb(236,76,61)"
                                    ],
                                    [
                                        0.6901960784313725,
                                        "rgb(242,107,73)"
                                    ],
                                    [
                                        0.7529411764705882,
                                        "rgb(244,135,95)"
                                    ],
                                    [
                                        0.8156862745098039,
                                        "rgb(245,162,122)"
                                    ],
                                    [
                                        0.8784313725490196,
                                        "rgb(246,188,153)"
                                    ],
                                    [
                                        0.9411764705882353,
                                        "rgb(247,212,187)"
                                    ],
                                    [
                                        1.0,
                                        "rgb(250,234,220)"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "rgb(234,234,242)",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.5,
                                "fillcolor": "rgb(67,103,167)"
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowcolor": "rgb(67,103,167)"
                            }
                        }
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.5,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Organic",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.71875,
                            "font": {
                                "size": 16
                            },
                            "text": "Apple Search Ads",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.4375,
                            "font": {
                                "size": 16
                            },
                            "text": "EMAIL old",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.15625,
                            "font": {
                                "size": 16
                            },
                            "text": "Liftoff",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ag_andreew",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/50.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-09 14:36:56",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ag_andreew",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-19T10:15:41.997862Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~PolRamis/3.embed",
            "fid": "PolRamis:3",
            "filename": "Variables_AllYears",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/PolRamis/3/9_EOZ5YBYCRS9MZWXV3LP40DRZXG2BTL.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/PolRamis/3/2_I7O5XHQJJ7DD4F8WDC36P25VVI87AY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/PolRamis/3/8_ZJI1QIK31ZAYLTBTYRFD8V8GTYT8YW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/PolRamis/3/9_EOZ5YBYCRS9MZWXV3LP40DRZXG2BTL.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/PolRamis:3",
                "plots": "https://api.plotly.com/v2/plots/PolRamis:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=PolRamis"
            },
            "owner": "PolRamis",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 24,
            "web_url": "https://chart-studio.plotly.com/~PolRamis/3/",
            "world_readable": true,
            "date_modified": "2024-04-19T10:34:14.774Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~PolRamis/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:bbade4",
                        "ysrc": "PolRamis:2:4b75c3",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:21e8e7",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgba(51,51,51,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:368bad",
                        "ysrc": "PolRamis:2:8322a0",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:e7311a",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(51,102,255,1)",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "name": "fitted values",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:aa82fa",
                        "ysrc": "PolRamis:2:da7d86",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:e623aa",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "transparent",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:95c956",
                        "ysrc": "PolRamis:2:5885ee",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:f02215",
                        "fillcolor": "rgba(153,153,153,0.4)",
                        "hoverinfo": "x+y",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:6f8cb5",
                        "ysrc": "PolRamis:2:1e9b86",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:b95a00",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:97e8a7"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:6bd65c",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:0fdc76",
                        "ysrc": "PolRamis:2:7de62f",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(255,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:0b8f7f",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:4af9fd"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:e3a7b7",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "red",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:cbee26",
                        "ysrc": "PolRamis:2:562b38",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(255,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(255,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:6e1e5a",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "red"
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:152f59",
                        "ysrc": "PolRamis:2:1fba2f",
                        "frame": null,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:7da39a",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgba(51,51,51,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:25f049",
                        "ysrc": "PolRamis:2:52cd60",
                        "frame": null,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:78c38f",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(51,102,255,1)",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "name": "fitted values",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:1a1263",
                        "ysrc": "PolRamis:2:3e6ebf",
                        "frame": null,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:c0d388",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "transparent",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:d7da8e",
                        "ysrc": "PolRamis:2:4444e3",
                        "frame": null,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:e54f48",
                        "fillcolor": "rgba(153,153,153,0.4)",
                        "hoverinfo": "x+y",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:c5d96b",
                        "ysrc": "PolRamis:2:0a7049",
                        "frame": null,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:072502",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:b59e59"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:69bc26",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:da9171",
                        "ysrc": "PolRamis:2:e7233f",
                        "frame": null,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(255,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:257c6e",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:a4cf6f"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:e8788b",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "red",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:5e59af",
                        "ysrc": "PolRamis:2:9129c3",
                        "frame": null,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(255,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(255,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:142e6d",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "red"
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:c69df2",
                        "ysrc": "PolRamis:2:62607c",
                        "frame": null,
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:f396e9",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgba(51,51,51,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:0628bd",
                        "ysrc": "PolRamis:2:85285a",
                        "frame": null,
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:d014b4",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(51,102,255,1)",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "name": "fitted values",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:dfd02f",
                        "ysrc": "PolRamis:2:ff8a7c",
                        "frame": null,
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:0d4bff",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "transparent",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:6eb355",
                        "ysrc": "PolRamis:2:7238d6",
                        "frame": null,
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:04b17c",
                        "fillcolor": "rgba(153,153,153,0.4)",
                        "hoverinfo": "x+y",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:6ff5e6",
                        "ysrc": "PolRamis:2:188970",
                        "frame": null,
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:321ad8",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:a749b3"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:6903fd",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:9288b4",
                        "ysrc": "PolRamis:2:88188e",
                        "frame": null,
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(255,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:d3bd3c",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:1680ca"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:dc0872",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "red",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:eeb163",
                        "ysrc": "PolRamis:2:04dbd3",
                        "frame": null,
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(255,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(255,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:c7b571",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "red"
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:cc336e",
                        "ysrc": "PolRamis:2:6faa96",
                        "frame": null,
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:1ea703",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgba(51,51,51,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:992366",
                        "ysrc": "PolRamis:2:d88c86",
                        "frame": null,
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:23b910",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(51,102,255,1)",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "name": "fitted values",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:c0e615",
                        "ysrc": "PolRamis:2:ad4fa0",
                        "frame": null,
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:a1d367",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "transparent",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:792592",
                        "ysrc": "PolRamis:2:0c1eb6",
                        "frame": null,
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:ceeeea",
                        "fillcolor": "rgba(153,153,153,0.4)",
                        "hoverinfo": "x+y",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:4ddd62",
                        "ysrc": "PolRamis:2:ed3f6b",
                        "frame": null,
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:963e2c",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:c8bfeb"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:b0603e",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:5bd146",
                        "ysrc": "PolRamis:2:0686f2",
                        "frame": null,
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(255,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:3f64b9",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:7aceb9"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:638961",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "red",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:1610f6",
                        "ysrc": "PolRamis:2:6e3797",
                        "frame": null,
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "line": {
                                "color": "rgba(255,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(255,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:4195e2",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "red"
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:62f203",
                        "ysrc": "PolRamis:2:bfc2b6",
                        "frame": null,
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:20b9f0",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgba(51,51,51,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:17c511",
                        "ysrc": "PolRamis:2:a0a5e6",
                        "frame": null,
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:0ac60c",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(51,102,255,1)",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "name": "fitted values",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:03a01f",
                        "ysrc": "PolRamis:2:bdcade",
                        "frame": null,
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:8016b0",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "transparent",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:8171b6",
                        "ysrc": "PolRamis:2:f3fa41",
                        "frame": null,
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:8d9dbe",
                        "fillcolor": "rgba(153,153,153,0.4)",
                        "hoverinfo": "x+y",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:f26d4a",
                        "ysrc": "PolRamis:2:dd6b60",
                        "frame": null,
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:f392dd",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:22a89d"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:007ffd",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:9680eb",
                        "ysrc": "PolRamis:2:c4880d",
                        "frame": null,
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(255,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:a459a2",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:88ffc9"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:ea9099",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "red",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:da1b71",
                        "ysrc": "PolRamis:2:6e48b7",
                        "frame": null,
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "marker": {
                            "line": {
                                "color": "rgba(255,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(255,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:72f7e5",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "red"
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:1d0ee8",
                        "ysrc": "PolRamis:2:9dab4c",
                        "frame": null,
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:64bab5",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgba(51,51,51,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:e4fff0",
                        "ysrc": "PolRamis:2:827a3d",
                        "frame": null,
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:d296e6",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(51,102,255,1)",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "name": "fitted values",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:7ea264",
                        "ysrc": "PolRamis:2:908a5c",
                        "frame": null,
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:65a7b2",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "transparent",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:8cd612",
                        "ysrc": "PolRamis:2:5bff5c",
                        "frame": null,
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:555870",
                        "fillcolor": "rgba(153,153,153,0.4)",
                        "hoverinfo": "x+y",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:3b308a",
                        "ysrc": "PolRamis:2:0c9e2a",
                        "frame": null,
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:2605cd",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:e967b8"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:846a25",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:2afa0a",
                        "ysrc": "PolRamis:2:a1c321",
                        "frame": null,
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(255,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:c40a47",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:cfbe9d"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:4b1220",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "red",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:bc738c",
                        "ysrc": "PolRamis:2:d5a7e1",
                        "frame": null,
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "marker": {
                            "line": {
                                "color": "rgba(255,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(255,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:632f92",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "red"
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:1d10fd",
                        "ysrc": "PolRamis:2:0be4c9",
                        "frame": null,
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:cb3390",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgba(51,51,51,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:ee3dae",
                        "ysrc": "PolRamis:2:50e74b",
                        "frame": null,
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:81eec0",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(51,102,255,1)",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "name": "fitted values",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:3f23e9",
                        "ysrc": "PolRamis:2:5d55db",
                        "frame": null,
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:b1690c",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "transparent",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:a4ed22",
                        "ysrc": "PolRamis:2:e8176f",
                        "frame": null,
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:12fb75",
                        "fillcolor": "rgba(153,153,153,0.4)",
                        "hoverinfo": "x+y",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:e420a9",
                        "ysrc": "PolRamis:2:c72038",
                        "frame": null,
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:ebc9fc",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:dd2611"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:47f25c",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:c8f4a5",
                        "ysrc": "PolRamis:2:9ac135",
                        "frame": null,
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(255,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:c0e3f4",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:c30fdf"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:1bc8f1",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "red",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:6a9403",
                        "ysrc": "PolRamis:2:7360d7",
                        "frame": null,
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "marker": {
                            "line": {
                                "color": "rgba(255,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(255,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:6230e4",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "red"
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:48db07",
                        "ysrc": "PolRamis:2:b57529",
                        "frame": null,
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:02d88f",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgba(51,51,51,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:7a3522",
                        "ysrc": "PolRamis:2:b60c32",
                        "frame": null,
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:bc4034",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(51,102,255,1)",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "name": "fitted values",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:41fc41",
                        "ysrc": "PolRamis:2:0b9021",
                        "frame": null,
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:06312e",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "transparent",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:07cce7",
                        "ysrc": "PolRamis:2:45a30f",
                        "frame": null,
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:8b6f23",
                        "fillcolor": "rgba(153,153,153,0.4)",
                        "hoverinfo": "x+y",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:0e7344",
                        "ysrc": "PolRamis:2:a901b7",
                        "frame": null,
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:903f58",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:1a37f4"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:9e0253",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:c12c19",
                        "ysrc": "PolRamis:2:4d790a",
                        "frame": null,
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(255,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:f09489",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:2f6561"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:ea9338",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "red",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:977aa9",
                        "ysrc": "PolRamis:2:38704f",
                        "frame": null,
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "marker": {
                            "line": {
                                "color": "rgba(255,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(255,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:02fc55",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "red"
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:6506a7",
                        "ysrc": "PolRamis:2:5921e9",
                        "frame": null,
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:c8e6bd",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgba(51,51,51,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:fe2a81",
                        "ysrc": "PolRamis:2:c24483",
                        "frame": null,
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:383484",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(51,102,255,1)",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "name": "fitted values",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:e5fa37",
                        "ysrc": "PolRamis:2:515e3e",
                        "frame": null,
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:cf46f2",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "transparent",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:a647c3",
                        "ysrc": "PolRamis:2:274d33",
                        "frame": null,
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:92dc94",
                        "fillcolor": "rgba(153,153,153,0.4)",
                        "hoverinfo": "x+y",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:b5a0ae",
                        "ysrc": "PolRamis:2:0ed42c",
                        "frame": null,
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:6f4c6f",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:f87752"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:33b1bc",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:3a7a60",
                        "ysrc": "PolRamis:2:59388d",
                        "frame": null,
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(255,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:75f3b0",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:7643b5"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:b44c33",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "red",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:0bc9e4",
                        "ysrc": "PolRamis:2:363c0c",
                        "frame": null,
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "marker": {
                            "line": {
                                "color": "rgba(255,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(255,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:536fae",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "red"
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:d98900",
                        "ysrc": "PolRamis:2:aee7d1",
                        "frame": null,
                        "xaxis": "x10",
                        "yaxis": "y10",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:d46e7c",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgba(51,51,51,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:3f9ff4",
                        "ysrc": "PolRamis:2:dfabb0",
                        "frame": null,
                        "xaxis": "x10",
                        "yaxis": "y10",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:ce3658",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(51,102,255,1)",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "name": "fitted values",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:669692",
                        "ysrc": "PolRamis:2:5795d5",
                        "frame": null,
                        "xaxis": "x10",
                        "yaxis": "y10",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:549870",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "transparent",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:c88342",
                        "ysrc": "PolRamis:2:eeb8eb",
                        "frame": null,
                        "xaxis": "x10",
                        "yaxis": "y10",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:39d689",
                        "fillcolor": "rgba(153,153,153,0.4)",
                        "hoverinfo": "x+y",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:69c994",
                        "ysrc": "PolRamis:2:77ba84",
                        "frame": null,
                        "xaxis": "x10",
                        "yaxis": "y10",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:870834",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:30cca2"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:eb05c9",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:078b39",
                        "ysrc": "PolRamis:2:aa1868",
                        "frame": null,
                        "xaxis": "x10",
                        "yaxis": "y10",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(255,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:134037",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:be7b02"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:6ed342",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "red",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:4718db",
                        "ysrc": "PolRamis:2:9aaae4",
                        "frame": null,
                        "xaxis": "x10",
                        "yaxis": "y10",
                        "marker": {
                            "line": {
                                "color": "rgba(255,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(255,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:511956",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "red"
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:aabc45",
                        "ysrc": "PolRamis:2:1f9712",
                        "frame": null,
                        "xaxis": "x11",
                        "yaxis": "y11",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:b68308",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgba(51,51,51,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:5099ee",
                        "ysrc": "PolRamis:2:5108eb",
                        "frame": null,
                        "xaxis": "x11",
                        "yaxis": "y11",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:a822a7",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(51,102,255,1)",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "name": "fitted values",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:9778ff",
                        "ysrc": "PolRamis:2:6569c1",
                        "frame": null,
                        "xaxis": "x11",
                        "yaxis": "y11",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:0f4a12",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "transparent",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:1f61c6",
                        "ysrc": "PolRamis:2:b0007e",
                        "frame": null,
                        "xaxis": "x11",
                        "yaxis": "y11",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:1151c3",
                        "fillcolor": "rgba(153,153,153,0.4)",
                        "hoverinfo": "x+y",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:6c3f47",
                        "ysrc": "PolRamis:2:1c429f",
                        "frame": null,
                        "xaxis": "x11",
                        "yaxis": "y11",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:b9de06",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:9690e7"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:cb7c34",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:7aa60a",
                        "ysrc": "PolRamis:2:68a83e",
                        "frame": null,
                        "xaxis": "x11",
                        "yaxis": "y11",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(255,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:cc412d",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:69364c"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:471566",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "red",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:c67f8e",
                        "ysrc": "PolRamis:2:a5d184",
                        "frame": null,
                        "xaxis": "x11",
                        "yaxis": "y11",
                        "marker": {
                            "line": {
                                "color": "rgba(255,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(255,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:9e988a",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "red"
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:77dfc5",
                        "ysrc": "PolRamis:2:1e4b0c",
                        "frame": null,
                        "xaxis": "x12",
                        "yaxis": "y12",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:e74c4d",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgba(51,51,51,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:1e6891",
                        "ysrc": "PolRamis:2:2ef0d9",
                        "frame": null,
                        "xaxis": "x12",
                        "yaxis": "y12",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:7e056f",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(51,102,255,1)",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "name": "fitted values",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:fc6310",
                        "ysrc": "PolRamis:2:29f5b6",
                        "frame": null,
                        "xaxis": "x12",
                        "yaxis": "y12",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:2a6c03",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "transparent",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:ef6d12",
                        "ysrc": "PolRamis:2:3a9397",
                        "frame": null,
                        "xaxis": "x12",
                        "yaxis": "y12",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:da5e83",
                        "fillcolor": "rgba(153,153,153,0.4)",
                        "hoverinfo": "x+y",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:f46c06",
                        "ysrc": "PolRamis:2:cb0d34",
                        "frame": null,
                        "xaxis": "x12",
                        "yaxis": "y12",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:bcb9cb",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:36183e"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:1826d4",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:50e02b",
                        "ysrc": "PolRamis:2:2e1049",
                        "frame": null,
                        "xaxis": "x12",
                        "yaxis": "y12",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(255,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:423f02",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:784ab2"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:778346",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "red",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:7a30a2",
                        "ysrc": "PolRamis:2:ef61f4",
                        "frame": null,
                        "xaxis": "x12",
                        "yaxis": "y12",
                        "marker": {
                            "line": {
                                "color": "rgba(255,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(255,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:7b9426",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "red"
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:4a5595",
                        "ysrc": "PolRamis:2:fb9dd9",
                        "frame": null,
                        "xaxis": "x13",
                        "yaxis": "y13",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:2b72a1",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgba(51,51,51,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:796d53",
                        "ysrc": "PolRamis:2:164bfa",
                        "frame": null,
                        "xaxis": "x13",
                        "yaxis": "y13",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:2cb9c3",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(51,102,255,1)",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "name": "fitted values",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:5c3a68",
                        "ysrc": "PolRamis:2:4b7950",
                        "frame": null,
                        "xaxis": "x13",
                        "yaxis": "y13",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:33235e",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "transparent",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:7f0727",
                        "ysrc": "PolRamis:2:accaf0",
                        "frame": null,
                        "xaxis": "x13",
                        "yaxis": "y13",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:c644fb",
                        "fillcolor": "rgba(153,153,153,0.4)",
                        "hoverinfo": "x+y",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:4ef5cc",
                        "ysrc": "PolRamis:2:95aafd",
                        "frame": null,
                        "xaxis": "x13",
                        "yaxis": "y13",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:52963a",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:655de1"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:7aee6d",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:331fd4",
                        "ysrc": "PolRamis:2:8f1eb6",
                        "frame": null,
                        "xaxis": "x13",
                        "yaxis": "y13",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(255,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:ee75c6",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:72e46a"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:abacae",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "red",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:d6b49a",
                        "ysrc": "PolRamis:2:68ac8c",
                        "frame": null,
                        "xaxis": "x13",
                        "yaxis": "y13",
                        "marker": {
                            "line": {
                                "color": "rgba(255,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(255,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:ca9cd2",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "red"
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:9dece7",
                        "ysrc": "PolRamis:2:0acb16",
                        "frame": null,
                        "xaxis": "x14",
                        "yaxis": "y14",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:1c7ab8",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgba(51,51,51,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:4f741b",
                        "ysrc": "PolRamis:2:10ab4a",
                        "frame": null,
                        "xaxis": "x14",
                        "yaxis": "y14",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:817c2d",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(51,102,255,1)",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "name": "fitted values",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:dd2755",
                        "ysrc": "PolRamis:2:a656f5",
                        "frame": null,
                        "xaxis": "x14",
                        "yaxis": "y14",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:e0d4a4",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "transparent",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:68d692",
                        "ysrc": "PolRamis:2:8ec7fc",
                        "frame": null,
                        "xaxis": "x14",
                        "yaxis": "y14",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:391ba2",
                        "fillcolor": "rgba(153,153,153,0.4)",
                        "hoverinfo": "x+y",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:14b35d",
                        "ysrc": "PolRamis:2:65ca62",
                        "frame": null,
                        "xaxis": "x14",
                        "yaxis": "y14",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:d59ecc",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:735a4b"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:ab3ea8",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:1e4c5c",
                        "ysrc": "PolRamis:2:d205e4",
                        "frame": null,
                        "xaxis": "x14",
                        "yaxis": "y14",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(255,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:cd05b5",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:a173d7"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:3da047",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "red",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:db381b",
                        "ysrc": "PolRamis:2:cdbf5c",
                        "frame": null,
                        "xaxis": "x14",
                        "yaxis": "y14",
                        "marker": {
                            "line": {
                                "color": "rgba(255,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(255,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:0ce05d",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "red"
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:2b03c8",
                        "ysrc": "PolRamis:2:0fde99",
                        "frame": null,
                        "xaxis": "x15",
                        "yaxis": "y15",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:6f1d6b",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgba(51,51,51,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:8bb5d2",
                        "ysrc": "PolRamis:2:4bb6e5",
                        "frame": null,
                        "xaxis": "x15",
                        "yaxis": "y15",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:f61136",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(51,102,255,1)",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "name": "fitted values",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:8ff5d0",
                        "ysrc": "PolRamis:2:681c46",
                        "frame": null,
                        "xaxis": "x15",
                        "yaxis": "y15",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:b87549",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "transparent",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:97d335",
                        "ysrc": "PolRamis:2:97cede",
                        "frame": null,
                        "xaxis": "x15",
                        "yaxis": "y15",
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:4602bf",
                        "fillcolor": "rgba(153,153,153,0.4)",
                        "hoverinfo": "x+y",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:91988d",
                        "ysrc": "PolRamis:2:e9dbcd",
                        "frame": null,
                        "xaxis": "x15",
                        "yaxis": "y15",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:7e19ca",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:c06ee3"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:ccb34c",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:3f4a1d",
                        "ysrc": "PolRamis:2:21a673",
                        "frame": null,
                        "xaxis": "x15",
                        "yaxis": "y15",
                        "error_y": {
                            "type": "data",
                            "color": "rgba(255,0,0,1)",
                            "width": 1.50615061506015,
                            "arraysrc": "PolRamis:2:1f7ebe",
                            "symmetric": false,
                            "arrayminussrc": "PolRamis:2:9d306e"
                        },
                        "opacity": 1,
                        "textsrc": "PolRamis:2:1d0140",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "red",
                        "type": "scatter",
                        "xsrc": "PolRamis:2:4f5e44",
                        "ysrc": "PolRamis:2:9002ea",
                        "frame": null,
                        "xaxis": "x15",
                        "yaxis": "y15",
                        "marker": {
                            "line": {
                                "color": "rgba(255,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(255,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:2:8abbe9",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "red"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.611872146118724,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "title": "",
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            2001.89,
                            2024.11
                        ],
                        "ticks": "outside",
                        "anchor": "y",
                        "domain": [
                            0,
                            0.18000000000000002
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716894984,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "tickvals": [
                            2005,
                            2010,
                            2015,
                            2020
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -138.44825789074642,
                            288.52592427567754
                        ],
                        "ticks": "outside",
                        "anchor": "x",
                        "domain": [
                            0.6866666666666668,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "-100",
                            "0",
                            "100",
                            "200"
                        ],
                        "tickvals": [
                            -100,
                            0,
                            99.99999999999997,
                            199.99999999999997
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "-100",
                            "0",
                            "100",
                            "200"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "images": [],
                    "legend": {
                        "font": {
                            "size": 11.689497716894984,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": ""
                        },
                        "bgcolor": "rgba(255,255,255,1)",
                        "bordercolor": "transparent",
                        "borderwidth": 1.8897637795275593
                    },
                    "margin": {
                        "b": 37.84160652035156,
                        "l": 37.26027397260275,
                        "r": 7.305936073059362,
                        "t": 41.421515196150644
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 0.18000000000000002,
                            "y0": 0.6866666666666668,
                            "y1": 1,
                            "line": {
                                "color": "rgba(51,51,51,1)",
                                "width": 0.66417600664176,
                                "linetype": "solid"
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": "transparent"
                        },
                        {
                            "x0": 0.22,
                            "x1": 0.38,
                            "y0": 0.6866666666666668,
                            "y1": 1,
                            "line": {
                                "color": "rgba(51,51,51,1)",
                                "width": 0.66417600664176,
                                "linetype": "solid"
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": "transparent"
                        },
                        {
                            "x0": 0.42000000000000004,
                            "x1": 0.5800000000000001,
                            "y0": 0.6866666666666668,
                            "y1": 1,
                            "line": {
                                "color": "rgba(51,51,51,1)",
                                "width": 0.66417600664176,
                                "linetype": "solid"
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": "transparent"
                        },
                        {
                            "x0": 0.6200000000000001,
                            "x1": 0.78,
                            "y0": 0.6866666666666668,
                            "y1": 1,
                            "line": {
                                "color": "rgba(51,51,51,1)",
                                "width": 0.66417600664176,
                                "linetype": "solid"
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": "transparent"
                        },
                        {
                            "x0": 0.8200000000000001,
                            "x1": 1,
                            "y0": 0.6866666666666668,
                            "y1": 1,
                            "line": {
                                "color": "rgba(51,51,51,1)",
                                "width": 0.66417600664176,
                                "linetype": "solid"
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": "transparent"
                        },
                        {
                            "x0": 0,
                            "x1": 0.18000000000000002,
                            "y0": 0.3533333333333334,
                            "y1": 0.6466666666666667,
                            "line": {
                                "color": "rgba(51,51,51,1)",
                                "width": 0.66417600664176,
                                "linetype": "solid"
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": "transparent"
                        },
                        {
                            "x0": 0.22,
                            "x1": 0.38,
                            "y0": 0.3533333333333334,
                            "y1": 0.6466666666666667,
                            "line": {
                                "color": "rgba(51,51,51,1)",
                                "width": 0.66417600664176,
                                "linetype": "solid"
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": "transparent"
                        },
                        {
                            "x0": 0.42000000000000004,
                            "x1": 0.5800000000000001,
                            "y0": 0.3533333333333334,
                            "y1": 0.6466666666666667,
                            "line": {
                                "color": "rgba(51,51,51,1)",
                                "width": 0.66417600664176,
                                "linetype": "solid"
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": "transparent"
                        },
                        {
                            "x0": 0.6200000000000001,
                            "x1": 0.78,
                            "y0": 0.3533333333333334,
                            "y1": 0.6466666666666667,
                            "line": {
                                "color": "rgba(51,51,51,1)",
                                "width": 0.66417600664176,
                                "linetype": "solid"
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": "transparent"
                        },
                        {
                            "x0": 0.8200000000000001,
                            "x1": 1,
                            "y0": 0.3533333333333334,
                            "y1": 0.6466666666666667,
                            "line": {
                                "color": "rgba(51,51,51,1)",
                                "width": 0.66417600664176,
                                "linetype": "solid"
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": "transparent"
                        },
                        {
                            "x0": 0,
                            "x1": 0.18000000000000002,
                            "y0": 0,
                            "y1": 0.31333333333333335,
                            "line": {
                                "color": "rgba(51,51,51,1)",
                                "width": 0.66417600664176,
                                "linetype": "solid"
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": "transparent"
                        },
                        {
                            "x0": 0.22,
                            "x1": 0.38,
                            "y0": 0,
                            "y1": 0.31333333333333335,
                            "line": {
                                "color": "rgba(51,51,51,1)",
                                "width": 0.66417600664176,
                                "linetype": "solid"
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": "transparent"
                        },
                        {
                            "x0": 0.42000000000000004,
                            "x1": 0.5800000000000001,
                            "y0": 0,
                            "y1": 0.31333333333333335,
                            "line": {
                                "color": "rgba(51,51,51,1)",
                                "width": 0.66417600664176,
                                "linetype": "solid"
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": "transparent"
                        },
                        {
                            "x0": 0.6200000000000001,
                            "x1": 0.78,
                            "y0": 0,
                            "y1": 0.31333333333333335,
                            "line": {
                                "color": "rgba(51,51,51,1)",
                                "width": 0.66417600664176,
                                "linetype": "solid"
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": "transparent"
                        },
                        {
                            "x0": 0.8200000000000001,
                            "x1": 1,
                            "y0": 0,
                            "y1": 0.31333333333333335,
                            "line": {
                                "color": "rgba(51,51,51,1)",
                                "width": 0.66417600664176,
                                "linetype": "solid"
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": "transparent"
                        }
                    ],
                    "xaxis2": {
                        "type": "linear",
                        "range": [
                            2001.89,
                            2024.11
                        ],
                        "ticks": "outside",
                        "anchor": "y2",
                        "domain": [
                            0.22,
                            0.38
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716894984,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "tickvals": [
                            2005,
                            2010,
                            2015,
                            2020
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "xaxis3": {
                        "type": "linear",
                        "range": [
                            2001.89,
                            2024.11
                        ],
                        "ticks": "outside",
                        "anchor": "y3",
                        "domain": [
                            0.42000000000000004,
                            0.5800000000000001
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716894984,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "tickvals": [
                            2005,
                            2010,
                            2015,
                            2020
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "xaxis4": {
                        "type": "linear",
                        "range": [
                            2001.89,
                            2024.11
                        ],
                        "ticks": "outside",
                        "anchor": "y4",
                        "domain": [
                            0.6200000000000001,
                            0.78
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716894984,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "tickvals": [
                            2005,
                            2010,
                            2015,
                            2020
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "xaxis5": {
                        "type": "linear",
                        "range": [
                            2001.89,
                            2024.11
                        ],
                        "ticks": "outside",
                        "anchor": "y5",
                        "domain": [
                            0.8200000000000001,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716894984,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "tickvals": [
                            2005,
                            2010,
                            2015,
                            2020
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "xaxis6": {
                        "type": "linear",
                        "range": [
                            2001.89,
                            2024.11
                        ],
                        "ticks": "outside",
                        "anchor": "y6",
                        "domain": [
                            0,
                            0.18000000000000002
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716894984,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "tickvals": [
                            2005,
                            2010,
                            2015,
                            2020
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "xaxis7": {
                        "type": "linear",
                        "range": [
                            2001.89,
                            2024.11
                        ],
                        "ticks": "outside",
                        "anchor": "y7",
                        "domain": [
                            0.22,
                            0.38
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716894984,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "tickvals": [
                            2005,
                            2010,
                            2015,
                            2020
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "xaxis8": {
                        "type": "linear",
                        "range": [
                            2001.89,
                            2024.11
                        ],
                        "ticks": "outside",
                        "anchor": "y8",
                        "domain": [
                            0.42000000000000004,
                            0.5800000000000001
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716894984,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "tickvals": [
                            2005,
                            2010,
                            2015,
                            2020
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "xaxis9": {
                        "type": "linear",
                        "range": [
                            2001.89,
                            2024.11
                        ],
                        "ticks": "outside",
                        "anchor": "y9",
                        "domain": [
                            0.6200000000000001,
                            0.78
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716894984,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "tickvals": [
                            2005,
                            2010,
                            2015,
                            2020
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis2": {
                        "type": "linear",
                        "range": [
                            -0.012710786575374191,
                            0.5105116354703267
                        ],
                        "ticks": "outside",
                        "anchor": "x2",
                        "domain": [
                            0.6866666666666668,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0.0",
                            "0.1",
                            "0.2",
                            "0.3",
                            "0.4",
                            "0.5"
                        ],
                        "tickvals": [
                            0,
                            0.1,
                            0.2,
                            0.30000000000000004,
                            0.39999999999999997,
                            0.5
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0.0",
                            "0.1",
                            "0.2",
                            "0.3",
                            "0.4",
                            "0.5"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis3": {
                        "type": "linear",
                        "range": [
                            0.08311681780755908,
                            1.3246615667225161
                        ],
                        "ticks": "outside",
                        "anchor": "x3",
                        "domain": [
                            0.6866666666666668,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0.25",
                            "0.50",
                            "0.75",
                            "1.00",
                            "1.25"
                        ],
                        "tickvals": [
                            0.25,
                            0.5,
                            0.75,
                            1,
                            1.25
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0.25",
                            "0.50",
                            "0.75",
                            "1.00",
                            "1.25"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis4": {
                        "type": "linear",
                        "range": [
                            1.2485240042178753,
                            23.407033079622714
                        ],
                        "ticks": "outside",
                        "anchor": "x4",
                        "domain": [
                            0.6866666666666668,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "5",
                            "10",
                            "15",
                            "20"
                        ],
                        "tickvals": [
                            5,
                            10,
                            15,
                            20
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "5",
                            "10",
                            "15",
                            "20"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis5": {
                        "type": "linear",
                        "range": [
                            21.601823378602045,
                            116.82009631055313
                        ],
                        "ticks": "outside",
                        "anchor": "x5",
                        "domain": [
                            0.6866666666666668,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "40",
                            "60",
                            "80",
                            "100"
                        ],
                        "tickvals": [
                            40,
                            60,
                            80,
                            100
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "40",
                            "60",
                            "80",
                            "100"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis6": {
                        "type": "linear",
                        "range": [
                            0.10321319482724814,
                            1.8655453729363431
                        ],
                        "ticks": "outside",
                        "anchor": "x6",
                        "domain": [
                            0.3533333333333334,
                            0.6466666666666667
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0.5",
                            "1.0",
                            "1.5"
                        ],
                        "tickvals": [
                            0.5,
                            1,
                            1.5
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0.5",
                            "1.0",
                            "1.5"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis7": {
                        "type": "linear",
                        "range": [
                            1.6069966409809626,
                            5.571528390190039
                        ],
                        "ticks": "outside",
                        "anchor": "x7",
                        "domain": [
                            0.3533333333333334,
                            0.6466666666666667
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2",
                            "3",
                            "4",
                            "5"
                        ],
                        "tickvals": [
                            2,
                            3,
                            4,
                            5
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2",
                            "3",
                            "4",
                            "5"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis8": {
                        "type": "linear",
                        "range": [
                            4.034224279799771,
                            5.529653369748875
                        ],
                        "ticks": "outside",
                        "anchor": "x8",
                        "domain": [
                            0.3533333333333334,
                            0.6466666666666667
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "4.5",
                            "5.0",
                            "5.5"
                        ],
                        "tickvals": [
                            4.5,
                            5,
                            5.5
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "4.5",
                            "5.0",
                            "5.5"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis9": {
                        "type": "linear",
                        "range": [
                            3.0810367608363673,
                            65.05783952406914
                        ],
                        "ticks": "outside",
                        "anchor": "x9",
                        "domain": [
                            0.3533333333333334,
                            0.6466666666666667
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "20",
                            "40",
                            "60"
                        ],
                        "tickvals": [
                            20,
                            40,
                            60
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "20",
                            "40",
                            "60"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "barmode": "relative",
                    "xaxis10": {
                        "type": "linear",
                        "range": [
                            2001.89,
                            2024.11
                        ],
                        "ticks": "outside",
                        "anchor": "y10",
                        "domain": [
                            0.8200000000000001,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716894984,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "tickvals": [
                            2005,
                            2010,
                            2015,
                            2020
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "xaxis11": {
                        "type": "linear",
                        "range": [
                            2001.89,
                            2024.11
                        ],
                        "ticks": "outside",
                        "anchor": "y11",
                        "domain": [
                            0,
                            0.18000000000000002
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716894984,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "tickvals": [
                            2005,
                            2010,
                            2015,
                            2020
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "xaxis12": {
                        "type": "linear",
                        "range": [
                            2001.89,
                            2024.11
                        ],
                        "ticks": "outside",
                        "anchor": "y12",
                        "domain": [
                            0.22,
                            0.38
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716894984,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "tickvals": [
                            2005,
                            2010,
                            2015,
                            2020
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "xaxis13": {
                        "type": "linear",
                        "range": [
                            2001.89,
                            2024.11
                        ],
                        "ticks": "outside",
                        "anchor": "y13",
                        "domain": [
                            0.42000000000000004,
                            0.5800000000000001
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716894984,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "tickvals": [
                            2005,
                            2010,
                            2015,
                            2020
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "xaxis14": {
                        "type": "linear",
                        "range": [
                            2001.89,
                            2024.11
                        ],
                        "ticks": "outside",
                        "anchor": "y14",
                        "domain": [
                            0.6200000000000001,
                            0.78
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716894984,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "tickvals": [
                            2005,
                            2010,
                            2015,
                            2020
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "xaxis15": {
                        "type": "linear",
                        "range": [
                            2001.89,
                            2024.11
                        ],
                        "ticks": "outside",
                        "anchor": "y15",
                        "domain": [
                            0.8200000000000001,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716894984,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "tickvals": [
                            2005,
                            2010,
                            2015,
                            2020
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2005",
                            "2010",
                            "2015",
                            "2020"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis10": {
                        "type": "linear",
                        "range": [
                            64.00199528434011,
                            312.27719168273416
                        ],
                        "ticks": "outside",
                        "anchor": "x10",
                        "domain": [
                            0.3533333333333334,
                            0.6466666666666667
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "100",
                            "150",
                            "200",
                            "250",
                            "300"
                        ],
                        "tickvals": [
                            100,
                            150,
                            200,
                            250,
                            300
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "100",
                            "150",
                            "200",
                            "250",
                            "300"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis11": {
                        "type": "linear",
                        "range": [
                            5.493355743460493,
                            13.85345332469192
                        ],
                        "ticks": "outside",
                        "anchor": "x11",
                        "domain": [
                            0,
                            0.31333333333333335
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "6",
                            "8",
                            "10",
                            "12"
                        ],
                        "tickvals": [
                            6,
                            8,
                            10,
                            12
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "6",
                            "8",
                            "10",
                            "12"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis12": {
                        "type": "linear",
                        "range": [
                            6.155831019313851,
                            14.73944690644192
                        ],
                        "ticks": "outside",
                        "anchor": "x12",
                        "domain": [
                            0,
                            0.31333333333333335
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "8",
                            "10",
                            "12",
                            "14"
                        ],
                        "tickvals": [
                            8,
                            10,
                            12,
                            14
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "8",
                            "10",
                            "12",
                            "14"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis13": {
                        "type": "linear",
                        "range": [
                            151.3306795614607,
                            250.74097790007238
                        ],
                        "ticks": "outside",
                        "anchor": "x13",
                        "domain": [
                            0,
                            0.31333333333333335
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "175",
                            "200",
                            "225",
                            "250"
                        ],
                        "tickvals": [
                            175,
                            200,
                            225,
                            250
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "175",
                            "200",
                            "225",
                            "250"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis14": {
                        "type": "linear",
                        "range": [
                            11.46885286271611,
                            53.44224395903019
                        ],
                        "ticks": "outside",
                        "anchor": "x14",
                        "domain": [
                            0,
                            0.31333333333333335
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "20",
                            "30",
                            "40",
                            "50"
                        ],
                        "tickvals": [
                            20,
                            30,
                            40,
                            50
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "20",
                            "30",
                            "40",
                            "50"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis15": {
                        "type": "linear",
                        "range": [
                            -9.658469199830217,
                            48.93794334094008
                        ],
                        "ticks": "outside",
                        "anchor": "x15",
                        "domain": [
                            0,
                            0.31333333333333335
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "10",
                            "20",
                            "30",
                            "40"
                        ],
                        "tickvals": [
                            0,
                            9.999999999999998,
                            20,
                            30,
                            40
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0",
                            "10",
                            "20",
                            "30",
                            "40"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "hovermode": "closest",
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.1,
                            "y": 1,
                            "text": "Fe_rizomes(µg/gPS)",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.30000000000000004,
                            "y": 1,
                            "text": "P_rizomes(%)",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 1,
                            "text": "Pb_rizomes(µg/gPS)",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.7000000000000001,
                            "y": 1,
                            "text": "Cu_rizomes(µg/gPS)",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.9,
                            "y": 1,
                            "text": "Zn_rizomes(µg/gPS)",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.1,
                            "y": 0.6,
                            "text": "N_epifits(%)",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.30000000000000004,
                            "y": 0.6,
                            "text": "N_rizomes()",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.6,
                            "text": "N15_rizomes(‰)",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.7000000000000001,
                            "y": 0.6,
                            "text": "Necrosi_foliar(%fulles)",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.9,
                            "y": 0.6,
                            "text": "Area_foliar(cm2)",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.1,
                            "y": 0.2,
                            "text": "Sacarosa_rizomes(%)",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.30000000000000004,
                            "y": 0.2,
                            "text": "S34_rizomes(‰)",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.2,
                            "text": "Densitat",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.7000000000000001,
                            "y": 0.2,
                            "text": "Cobertura",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.9,
                            "y": 0.2,
                            "text": "Cr.Plagio",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ],
                    "plot_bgcolor": "rgba(255,255,255,1)",
                    "paper_bgcolor": "rgba(255,255,255,1)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~PolRamis",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/26.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-19 10:02:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "PolRamis",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-19T10:11:23.722394Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~PolRamis/1.embed",
            "fid": "PolRamis:1",
            "filename": "PCA_AllYears",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/PolRamis/1/9_Y6EE4SG430E8J9WYXQLT87R36BUHM0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/PolRamis/1/2_K8IE0RUWAC9V1Q7SL2VRB24RZDAV45.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/PolRamis/1/8_6BR3WTO2S2GIOWE1KZDQZ1PBLNNLHM.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/PolRamis/1/9_Y6EE4SG430E8J9WYXQLT87R36BUHM0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/PolRamis:1",
                "plots": "https://api.plotly.com/v2/plots/PolRamis:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=PolRamis"
            },
            "owner": "PolRamis",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 13,
            "web_url": "https://chart-studio.plotly.com/~PolRamis/1/",
            "world_readable": true,
            "date_modified": "2024-04-19T10:23:04.779Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~PolRamis/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "2003",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:aafff8",
                        "ysrc": "PolRamis:0:c61b44",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(166,206,227,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 3.7795275590551185,
                            "color": "rgba(166,206,227,1)",
                            "symbol": "circle",
                            "opacity": 0.8,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:0:24d448",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "2003"
                    },
                    {
                        "mode": "markers",
                        "name": "2005",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:ee60f6",
                        "ysrc": "PolRamis:0:5e6ce5",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(31,120,180,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 3.7795275590551185,
                            "color": "rgba(31,120,180,1)",
                            "symbol": "circle",
                            "opacity": 0.8,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:0:a4d1f8",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "2005"
                    },
                    {
                        "mode": "markers",
                        "name": "2006",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:cbd78b",
                        "ysrc": "PolRamis:0:edccdc",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(178,223,138,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 3.7795275590551185,
                            "color": "rgba(178,223,138,1)",
                            "symbol": "circle",
                            "opacity": 0.8,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:0:1946d7",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "2006"
                    },
                    {
                        "mode": "markers",
                        "name": "2007",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:dba928",
                        "ysrc": "PolRamis:0:6f0118",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(51,160,44,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 3.7795275590551185,
                            "color": "rgba(51,160,44,1)",
                            "symbol": "circle",
                            "opacity": 0.8,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:0:4ea2b7",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "2007"
                    },
                    {
                        "mode": "markers",
                        "name": "2008",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:d0b63e",
                        "ysrc": "PolRamis:0:ea50b7",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(251,154,153,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 3.7795275590551185,
                            "color": "rgba(251,154,153,1)",
                            "symbol": "circle",
                            "opacity": 0.8,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:0:6cc7d7",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "2008"
                    },
                    {
                        "mode": "markers",
                        "name": "2009",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:2fb1a9",
                        "ysrc": "PolRamis:0:99db10",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(227,26,28,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 3.7795275590551185,
                            "color": "rgba(227,26,28,1)",
                            "symbol": "circle",
                            "opacity": 0.8,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:0:ec689c",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "2009"
                    },
                    {
                        "mode": "markers",
                        "name": "2010",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:64daec",
                        "ysrc": "PolRamis:0:7196bc",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(253,191,111,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 3.7795275590551185,
                            "color": "rgba(253,191,111,1)",
                            "symbol": "circle",
                            "opacity": 0.8,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:0:710d37",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "2010"
                    },
                    {
                        "mode": "markers",
                        "name": "2023",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:91382a",
                        "ysrc": "PolRamis:0:7083c5",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(255,127,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 3.7795275590551185,
                            "color": "rgba(255,127,0,1)",
                            "symbol": "circle",
                            "opacity": 0.8,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:0:f687fb",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "2023"
                    },
                    {
                        "mode": "text",
                        "name": "2003",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:e2b79c",
                        "ysrc": "PolRamis:0:1e12c0",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "PolRamis:0:d3dc44",
                        "textfont": {
                            "size": 13.228346456692915,
                            "color": "rgba(166,206,227,1)"
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "2003",
                        "hovertextsrc": "PolRamis:0:3828bc"
                    },
                    {
                        "mode": "text",
                        "name": "2005",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:1ebc68",
                        "ysrc": "PolRamis:0:b7dc7c",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "PolRamis:0:b1968e",
                        "textfont": {
                            "size": 13.228346456692915,
                            "color": "rgba(31,120,180,1)"
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "2005",
                        "hovertextsrc": "PolRamis:0:e40751"
                    },
                    {
                        "mode": "text",
                        "name": "2006",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:cd9ad4",
                        "ysrc": "PolRamis:0:97255b",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "PolRamis:0:ba4911",
                        "textfont": {
                            "size": 13.228346456692915,
                            "color": "rgba(178,223,138,1)"
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "2006",
                        "hovertextsrc": "PolRamis:0:799368"
                    },
                    {
                        "mode": "text",
                        "name": "2007",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:380370",
                        "ysrc": "PolRamis:0:c9113b",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "PolRamis:0:dcfe5a",
                        "textfont": {
                            "size": 13.228346456692915,
                            "color": "rgba(51,160,44,1)"
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "2007",
                        "hovertextsrc": "PolRamis:0:c30581"
                    },
                    {
                        "mode": "text",
                        "name": "2008",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:d57c3e",
                        "ysrc": "PolRamis:0:126e9e",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "PolRamis:0:6f5483",
                        "textfont": {
                            "size": 13.228346456692915,
                            "color": "rgba(251,154,153,1)"
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "2008",
                        "hovertextsrc": "PolRamis:0:24bd0a"
                    },
                    {
                        "mode": "text",
                        "name": "2009",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:a93b5b",
                        "ysrc": "PolRamis:0:2f6fce",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "PolRamis:0:f9e7fa",
                        "textfont": {
                            "size": 13.228346456692915,
                            "color": "rgba(227,26,28,1)"
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "2009",
                        "hovertextsrc": "PolRamis:0:63dc48"
                    },
                    {
                        "mode": "text",
                        "name": "2010",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:38c65d",
                        "ysrc": "PolRamis:0:cde261",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "PolRamis:0:f75ff1",
                        "textfont": {
                            "size": 13.228346456692915,
                            "color": "rgba(253,191,111,1)"
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "2010",
                        "hovertextsrc": "PolRamis:0:d32d3b"
                    },
                    {
                        "mode": "text",
                        "name": "2023",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:9fc513",
                        "ysrc": "PolRamis:0:c817f5",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "PolRamis:0:464496",
                        "textfont": {
                            "size": 13.228346456692915,
                            "color": "rgba(255,127,0,1)"
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "2023",
                        "hovertextsrc": "PolRamis:0:1ffd13"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0,0,139,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:b895be",
                        "ysrc": "PolRamis:0:d3b8fd",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "PolRamis:0:44069b",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "mode": "text",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:c45a35",
                        "ysrc": "PolRamis:0:6b824f",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "PolRamis:0:a2de99",
                        "textfont": {
                            "size": 18.897637795275593,
                            "color": "rgba(46,46,46,1)"
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "hovertextsrc": "PolRamis:0:e712e9"
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:2f5302",
                        "ysrc": "PolRamis:0:c8af90",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(131,139,139,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 1.8897637795275593,
                            "color": "rgba(131,139,139,1)",
                            "symbol": "circle",
                            "opacity": 0.3,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:0:041a64",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgba(169,169,169,0.8)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "text": "yintercept: 0",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:c78992",
                        "ysrc": "PolRamis:0:b0514a",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgba(169,169,169,0.8)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "text": "intercept: 0<br />slope: 90",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:4c52b0",
                        "ysrc": "PolRamis:0:fadb6f",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(166,206,227,0.1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "name": "2003",
                        "text": "any: 2003<br />any: 2003",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:47fe44",
                        "ysrc": "PolRamis:0:2bd1d3",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "fills",
                        "fillcolor": "rgba(51,51,51,0.1)",
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "2003"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(31,120,180,0.1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "name": "2005",
                        "text": "any: 2005<br />any: 2005",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:032bc9",
                        "ysrc": "PolRamis:0:411f5d",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "fills",
                        "fillcolor": "rgba(51,51,51,0.1)",
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "2005"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(178,223,138,0.1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "name": "2006",
                        "text": "any: 2006<br />any: 2006",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:197962",
                        "ysrc": "PolRamis:0:1a10ee",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "fills",
                        "fillcolor": "rgba(51,51,51,0.1)",
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "2006"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(51,160,44,0.1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "name": "2007",
                        "text": "any: 2007<br />any: 2007",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:507bc6",
                        "ysrc": "PolRamis:0:897faf",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "fills",
                        "fillcolor": "rgba(51,51,51,0.1)",
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "2007"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(251,154,153,0.1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "name": "2008",
                        "text": "any: 2008<br />any: 2008",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:2b7ec1",
                        "ysrc": "PolRamis:0:3f03c4",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "fills",
                        "fillcolor": "rgba(51,51,51,0.1)",
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "2008"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(227,26,28,0.1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "name": "2009",
                        "text": "any: 2009<br />any: 2009",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:324a42",
                        "ysrc": "PolRamis:0:11a92b",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "fills",
                        "fillcolor": "rgba(51,51,51,0.1)",
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "2009"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(253,191,111,0.1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "name": "2010",
                        "text": "any: 2010<br />any: 2010",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:3431ba",
                        "ysrc": "PolRamis:0:7f78b1",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "fills",
                        "fillcolor": "rgba(51,51,51,0.1)",
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "2010"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255,127,0,0.1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines",
                        "name": "2023",
                        "text": "any: 2023<br />any: 2023",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:322e5c",
                        "ysrc": "PolRamis:0:dd0212",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "fills",
                        "fillcolor": "rgba(51,51,51,0.1)",
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "2023"
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:f2a2c9",
                        "ysrc": "PolRamis:0:1d67e2",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "width": 1.8897637795275593,
                                "colorsrc": "PolRamis:0:1a9a8a"
                            },
                            "size": 3.023622047244095,
                            "symbol": "diamond",
                            "opacity": 1,
                            "colorsrc": "PolRamis:0:f53c48",
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "PolRamis:0:834ff7",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "mode": "text",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:928a15",
                        "ysrc": "PolRamis:0:623a01",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "PolRamis:0:d184aa",
                        "textfont": {
                            "size": 10.58267716535433,
                            "color": "rgba(44,160,44,1)"
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "hovertextsrc": "PolRamis:0:642350"
                    },
                    {
                        "mode": "text",
                        "type": "scatter",
                        "xsrc": "PolRamis:0:4b5bcd",
                        "ysrc": "PolRamis:0:f84156",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "PolRamis:0:b23dfc",
                        "textfont": {
                            "size": 10.58267716535433,
                            "color": "rgba(214,39,40,1)"
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "hovertextsrc": "PolRamis:0:5c299a"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 26.56704026567041,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -5.604112279000237,
                            7.116279367919084
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 26.56704026567041,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "PC1 (28.3%)"
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": false,
                        "showline": false,
                        "tickfont": {
                            "size": 21.25363221253632,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "-5.0",
                            "-2.5",
                            "0.0",
                            "2.5",
                            "5.0"
                        ],
                        "tickvals": [
                            -5,
                            -2.5,
                            0,
                            2.5,
                            5
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": null,
                        "gridwidth": 0,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "-5.0",
                            "-2.5",
                            "0.0",
                            "2.5",
                            "5.0"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -4.261978043956827,
                            4.439819273066605
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 26.56704026567041,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "PC2 (17.58%)"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": false,
                        "showline": false,
                        "tickfont": {
                            "size": 21.25363221253632,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "-4",
                            "-2",
                            "0",
                            "2",
                            "4"
                        ],
                        "tickvals": [
                            -4,
                            -2,
                            0,
                            2,
                            4
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": null,
                        "gridwidth": 0,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "-4",
                            "-2",
                            "0",
                            "2",
                            "4"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "legend": {
                        "font": {
                            "size": 21.25363221253632,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "title": {
                            "font": {
                                "size": 26.56704026567041,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "any"
                        },
                        "bgcolor": "rgba(255,255,255,1)",
                        "bordercolor": "transparent",
                        "borderwidth": 1.8897637795275593
                    },
                    "margin": {
                        "b": 59.36090913554459,
                        "l": 58.77957658779577,
                        "r": 7.305936073059362,
                        "t": 23.88726862080817
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": "rgba(51,51,51,1)",
                                "width": 0.66417600664176,
                                "linetype": "solid"
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": "transparent"
                        }
                    ],
                    "barmode": "relative",
                    "hovermode": "closest",
                    "showlegend": true,
                    "plot_bgcolor": "rgba(255,255,255,1)",
                    "paper_bgcolor": "rgba(255,255,255,1)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~PolRamis",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/26.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-19 10:02:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "PolRamis",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}