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=cD0yMDI1LTA4LTEyKzE5JTNBNDElM0ExMS40ODYxMzElMkIwMCUzQTAw&format=api
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://api.plotly.com/v2/plots?cursor=cD0yMDI1LTA4LTEyKzE1JTNBMDElM0ExNS43ODEwMTQlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNS0wOC0xMisxOCUzQTM0JTNBMDguNDMwMjI1JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-08-12T18:34:08.430225Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~PlotlyImageTest/33772.embed",
            "fid": "PlotlyImageTest:33772",
            "filename": "plot_valid",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/PlotlyImageTest:33772/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/PlotlyImageTest/33772/2_6ETYD5C2OV6P8UL6TH4VXMNTXWMVZL.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/PlotlyImageTest/33772/8_EGIMZD00CNRU7J8GE26QKQ4XJOB5W1.png",
                "list-thumb": "https://api.plotly.com/v2/files/PlotlyImageTest:33772/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/PlotlyImageTest:33772",
                "plots": "https://api.plotly.com/v2/plots/PlotlyImageTest:33772",
                "parent": "https://api.plotly.com/v2/folders/home?user=PlotlyImageTest"
            },
            "owner": "PlotlyImageTest",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~PlotlyImageTest/33772/",
            "world_readable": true,
            "date_modified": "2025-08-12T18:34:08.468Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~PlotlyImageTest/33772/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "scatter",
                        "xsrc": "PlotlyImageTest:33771:5529bc",
                        "ysrc": "PlotlyImageTest:33771:578871"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "simple"
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        }
                                    },
                                    "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",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "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
                                        }
                                    }
                                }
                            ],
                            "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": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "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"
                                }
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~PlotlyImageTest",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/2.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-04-14 20:23:03",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "PlotlyImageTest",
                "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": "2025-08-12T16:13:43.645394Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~m.siefering/2.embed",
            "fid": "m.siefering:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/m.siefering/2/9_96MX5BWQ5TPVE2DAHX7RI5GLDTK7Y7.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/m.siefering/2/2_WZ198L246H341WR1VT2XU4EXTENIF4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/m.siefering/2/8_JIE527OI74D902UOL62K1USQ2QID8N.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/m.siefering/2/9_96MX5BWQ5TPVE2DAHX7RI5GLDTK7Y7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/m.siefering:2",
                "plots": "https://api.plotly.com/v2/plots/m.siefering:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=m.siefering"
            },
            "owner": "m.siefering",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~m.siefering/2/",
            "world_readable": true,
            "date_modified": "2025-08-12T16:13:43.657Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~m.siefering/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y",
                                "z": "z"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "m.siefering:0:37e0e2",
                        "ysrc": "m.siefering:0:d24922",
                        "zsrc": "m.siefering:0:0fbcb2",
                        "marker": {
                            "line": {
                                "color": "transparent"
                            },
                            "meta": {
                                "columnNames": {
                                    "color": "color"
                                }
                            },
                            "colorsrc": "m.siefering:0:c234a6",
                            "fillcolor": "rgba(31,119,180,1)",
                            "showscale": true,
                            "colorscale": [
                                "#FFE1A1",
                                "#683531"
                            ]
                        }
                    },
                    {
                        "mode": "markers",
                        "type": "scatter3d"
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "title": {
                                "text": "Weight"
                            }
                        },
                        "yaxis": {
                            "type": "linear",
                            "title": {
                                "text": "Gross horsepower"
                            }
                        },
                        "zaxis": {
                            "type": "linear",
                            "title": {
                                "text": "1/4 mile time"
                            }
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -1.333000317383838,
                                "y": -2.2132653398832223,
                                "z": 0.7420894126919544
                            },
                            "center": {
                                "x": 0,
                                "y": 0,
                                "z": 0
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "text": "10 Lepta Small Hermes Head Ink Color"
                    },
                    "xaxis": {
                        "domain": [
                            0,
                            1
                        ]
                    },
                    "yaxis": {
                        "domain": [
                            0,
                            1
                        ]
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "autosize": true,
                    "annotations": [
                        {
                            "x": 1.13,
                            "y": 1.05,
                            "text": "Miles/(US) gallon",
                            "xref": "paper",
                            "yref": "paper",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~m.siefering",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/0.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-08 19:12:56",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "m.siefering",
                "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": "2025-08-12T15:57:39.731447Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Aditya3006/2.embed",
            "fid": "Aditya3006:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Aditya3006:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Aditya3006:2/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/Aditya3006:2/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/Aditya3006:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Aditya3006:2",
                "plots": "https://api.plotly.com/v2/plots/Aditya3006:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=Aditya3006"
            },
            "owner": "Aditya3006",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Aditya3006/2/",
            "world_readable": true,
            "date_modified": "2025-08-12T15:57:39.741Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Aditya3006/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {},
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Aditya3006",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/56.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-12 15:00:49",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Aditya3006",
                "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": "2025-08-12T15:57:17.854645Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Aditya3006/1.embed",
            "fid": "Aditya3006:1",
            "filename": "Physics plot",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Aditya3006:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Aditya3006:1/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/Aditya3006:1/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/Aditya3006:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Aditya3006:1",
                "plots": "https://api.plotly.com/v2/plots/Aditya3006:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Aditya3006"
            },
            "owner": "Aditya3006",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Aditya3006/1/",
            "world_readable": true,
            "date_modified": "2025-08-12T15:57:17.867Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Aditya3006/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {},
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Aditya3006",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/56.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-12 15:00:49",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Aditya3006",
                "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": "2025-08-12T15:56:47.271734Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Marketing_Texa/11.embed",
            "fid": "Marketing_Texa:11",
            "filename": "Changes in no. of phishing incidents - Compared to 2020",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Marketing_Texa:11/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Marketing_Texa:11/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Marketing_Texa/11/8_03L4M71JJS3TVYX9X53LF3E5BOLLGB.png",
                "list-thumb": "https://api.plotly.com/v2/files/Marketing_Texa:11/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Marketing_Texa:11",
                "plots": "https://api.plotly.com/v2/plots/Marketing_Texa:11",
                "parent": "https://api.plotly.com/v2/folders/home?user=Marketing_Texa"
            },
            "owner": "Marketing_Texa",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Marketing_Texa/11/",
            "world_readable": true,
            "date_modified": "2025-08-12T15:56:47.283Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Marketing_Texa/11/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(31, 119, 119)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "Charitable and voluntary sector",
                        "type": "scatter",
                        "xsrc": "Marketing_Texa:10:0be211",
                        "ysrc": "Marketing_Texa:10:7a3291"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgb(153, 161, 166)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "All sectors",
                        "type": "scatter",
                        "xsrc": "Marketing_Texa:10:0be211",
                        "ysrc": "Marketing_Texa:10:09e00a"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "color": "rgb(31, 119, 119)"
                    },
                    "title": {
                        "text": "Changes in no. of phishing incidents - Compared to 2020"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            2020,
                            2024
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -34.955555555555556,
                            48.15555555555556
                        ],
                        "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/~Marketing_Texa",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/11.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-04-30 09:09:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Marketing_Texa",
                "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": "2025-08-12T15:35:15.466319Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Marketing_Texa/9.embed",
            "fid": "Marketing_Texa:9",
            "filename": "Emailed to incorrect recipient - Non-cyber incidents in charities",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Marketing_Texa:9/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Marketing_Texa:9/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Marketing_Texa/9/8_TWQ0QW57WB2SSMAX0W01DEYT858DR7.png",
                "list-thumb": "https://api.plotly.com/v2/files/Marketing_Texa:9/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Marketing_Texa:9",
                "plots": "https://api.plotly.com/v2/plots/Marketing_Texa:9",
                "parent": "https://api.plotly.com/v2/folders/home?user=Marketing_Texa"
            },
            "owner": "Marketing_Texa",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Marketing_Texa/9/",
            "world_readable": true,
            "date_modified": "2025-08-12T15:41:59.131Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Marketing_Texa/9/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "type": "bar",
                        "xsrc": "Marketing_Texa:8:fcca7d",
                        "ysrc": "Marketing_Texa:8:643989",
                        "marker": {
                            "color": "rgb(31, 119, 119)"
                        },
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "color": "rgb(31, 119, 119)"
                    },
                    "title": {
                        "text": "Changes in non-cyber incidents in the Charitable sector - Emailed to incorrect recipient"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            2019.5,
                            2024.5
                        ],
                        "domain": [
                            0,
                            0.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            129.47368421052633
                        ],
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.5487388022633408,
                        "y": 0.9792207792207792
                    },
                    "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/~Marketing_Texa",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/11.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-04-30 09:09:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Marketing_Texa",
                "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": "2025-08-12T15:33:30.825067Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Marketing_Texa/7.embed",
            "fid": "Marketing_Texa:7",
            "filename": "Increase in misconfiguration incidents in the charitable sector",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Marketing_Texa:7/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Marketing_Texa:7/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Marketing_Texa/7/8_6OU7U6VZM93NY4MAM52WE41DKP2YR0.png",
                "list-thumb": "https://api.plotly.com/v2/files/Marketing_Texa:7/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Marketing_Texa:7",
                "plots": "https://api.plotly.com/v2/plots/Marketing_Texa:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=Marketing_Texa"
            },
            "owner": "Marketing_Texa",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Marketing_Texa/7/",
            "world_readable": true,
            "date_modified": "2025-08-12T15:46:24.834Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Marketing_Texa/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "type": "bar",
                        "xsrc": "Marketing_Texa:6:fcca7d",
                        "ysrc": "Marketing_Texa:6:643989",
                        "marker": {
                            "color": "rgb(31, 119, 119)"
                        },
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "color": "rgb(31, 119, 119)"
                    },
                    "title": {
                        "text": "Increase in misconfiguration incidents in the Charitable sector"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            2019.5,
                            2024.5
                        ],
                        "domain": [
                            0,
                            0.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            30.526315789473685
                        ],
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.5487388022633408,
                        "y": 0.9792207792207792
                    },
                    "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/~Marketing_Texa",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/11.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-04-30 09:09:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Marketing_Texa",
                "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": "2025-08-12T15:24:13.293385Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ManonCLOTEAUX/4.embed",
            "fid": "ManonCLOTEAUX:4",
            "filename": "fonctionne_stp",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ManonCLOTEAUX/4/9_T105U88GYKUUTWZ2EYVZUJU09F23W0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ManonCLOTEAUX/4/2_R1ZS64ZMRG5VK0UB5PV8TDNGJRKXGF.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ManonCLOTEAUX/4/8_HHBIWUCAGR6OLYFBNDUPV7CTOPIDHG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ManonCLOTEAUX/4/9_T105U88GYKUUTWZ2EYVZUJU09F23W0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ManonCLOTEAUX:4",
                "plots": "https://api.plotly.com/v2/plots/ManonCLOTEAUX:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=ManonCLOTEAUX"
            },
            "owner": "ManonCLOTEAUX",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "<b></b>",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~ManonCLOTEAUX/4/",
            "world_readable": true,
            "date_modified": "2025-08-12T15:24:21.693Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ManonCLOTEAUX/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "x": [],
                        "y": [],
                        "mode": "none",
                        "name": "",
                        "type": "scatter",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:83252a",
                        "ysrc": "ManonCLOTEAUX:5:09d4f8",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(255,0,0)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,0,255)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:91fb88",
                        "ysrc": "ManonCLOTEAUX:5:664480",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(0,0,255)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(193,124,11)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:9d24fb",
                        "ysrc": "ManonCLOTEAUX:5:dec241",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(193,124,11)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:d6256f",
                        "ysrc": "ManonCLOTEAUX:5:0979c3",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:e9186b",
                        "ysrc": "ManonCLOTEAUX:5:0979c3",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:83252a",
                        "ysrc": "ManonCLOTEAUX:5:09d4f8",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(255,0,0)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,0,255)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:91fb88",
                        "ysrc": "ManonCLOTEAUX:5:664480",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(0,0,255)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(193,124,11)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:50cbd7",
                        "ysrc": "ManonCLOTEAUX:5:bc0d90",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(193,124,11)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:b71e3d",
                        "ysrc": "ManonCLOTEAUX:5:0979c3",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:780c40",
                        "ysrc": "ManonCLOTEAUX:5:0979c3",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:83252a",
                        "ysrc": "ManonCLOTEAUX:5:09d4f8",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(255,0,0)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,0,255)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:91fb88",
                        "ysrc": "ManonCLOTEAUX:5:664480",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(0,0,255)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(193,124,11)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:50cbd7",
                        "ysrc": "ManonCLOTEAUX:5:bc0d90",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(193,124,11)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:78816e",
                        "ysrc": "ManonCLOTEAUX:5:0979c3",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:c7e6a1",
                        "ysrc": "ManonCLOTEAUX:5:0979c3",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:83252a",
                        "ysrc": "ManonCLOTEAUX:5:09d4f8",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(255,0,0)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,0,255)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:91fb88",
                        "ysrc": "ManonCLOTEAUX:5:664480",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(0,0,255)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(193,124,11)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:50cbd7",
                        "ysrc": "ManonCLOTEAUX:5:bc0d90",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(193,124,11)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:bc5428",
                        "ysrc": "ManonCLOTEAUX:5:0979c3",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:5887f0",
                        "ysrc": "ManonCLOTEAUX:5:0979c3",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:83252a",
                        "ysrc": "ManonCLOTEAUX:5:09d4f8",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(255,0,0)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,0,255)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:91fb88",
                        "ysrc": "ManonCLOTEAUX:5:664480",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(0,0,255)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(193,124,11)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:50cbd7",
                        "ysrc": "ManonCLOTEAUX:5:bc0d90",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(193,124,11)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:c91494",
                        "ysrc": "ManonCLOTEAUX:5:0979c3",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:bbfe04",
                        "ysrc": "ManonCLOTEAUX:5:0979c3",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:83252a",
                        "ysrc": "ManonCLOTEAUX:5:09d4f8",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(255,0,0)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,0,255)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:91fb88",
                        "ysrc": "ManonCLOTEAUX:5:664480",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(0,0,255)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(193,124,11)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:50cbd7",
                        "ysrc": "ManonCLOTEAUX:5:bc0d90",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(193,124,11)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:13a67a",
                        "ysrc": "ManonCLOTEAUX:5:0979c3",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:fecee9",
                        "ysrc": "ManonCLOTEAUX:5:0979c3",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:83252a",
                        "ysrc": "ManonCLOTEAUX:5:09d4f8",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(255,0,0)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,0,255)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:91fb88",
                        "ysrc": "ManonCLOTEAUX:5:664480",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(0,0,255)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(193,124,11)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:50cbd7",
                        "ysrc": "ManonCLOTEAUX:5:bc0d90",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(193,124,11)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:99c4dd",
                        "ysrc": "ManonCLOTEAUX:5:0979c3",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:09403a",
                        "ysrc": "ManonCLOTEAUX:5:0979c3",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:83252a",
                        "ysrc": "ManonCLOTEAUX:5:09d4f8",
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(255,0,0)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,0,255)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:91fb88",
                        "ysrc": "ManonCLOTEAUX:5:664480",
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(0,0,255)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(193,124,11)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:50cbd7",
                        "ysrc": "ManonCLOTEAUX:5:bc0d90",
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(193,124,11)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:708945",
                        "ysrc": "ManonCLOTEAUX:5:0979c3",
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:f7c31e",
                        "ysrc": "ManonCLOTEAUX:5:0979c3",
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "x": [],
                        "y": [],
                        "mode": "none",
                        "name": "",
                        "type": "scatter",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:83252a",
                        "ysrc": "ManonCLOTEAUX:5:203f4b",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(255,0,0)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,0,255)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:91fb88",
                        "ysrc": "ManonCLOTEAUX:5:45ee9b",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(0,0,255)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(193,124,11)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:9d24fb",
                        "ysrc": "ManonCLOTEAUX:5:dec241",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(193,124,11)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:d6256f",
                        "ysrc": "ManonCLOTEAUX:5:34f38b",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:e9186b",
                        "ysrc": "ManonCLOTEAUX:5:34f38b",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:83252a",
                        "ysrc": "ManonCLOTEAUX:5:203f4b",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(255,0,0)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,0,255)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:91fb88",
                        "ysrc": "ManonCLOTEAUX:5:45ee9b",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(0,0,255)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(193,124,11)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:50cbd7",
                        "ysrc": "ManonCLOTEAUX:5:1f0959",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(193,124,11)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:b71e3d",
                        "ysrc": "ManonCLOTEAUX:5:34f38b",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:780c40",
                        "ysrc": "ManonCLOTEAUX:5:34f38b",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:83252a",
                        "ysrc": "ManonCLOTEAUX:5:203f4b",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(255,0,0)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,0,255)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:91fb88",
                        "ysrc": "ManonCLOTEAUX:5:45ee9b",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(0,0,255)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(193,124,11)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:50cbd7",
                        "ysrc": "ManonCLOTEAUX:5:1f0959",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(193,124,11)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:78816e",
                        "ysrc": "ManonCLOTEAUX:5:34f38b",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:c7e6a1",
                        "ysrc": "ManonCLOTEAUX:5:34f38b",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:83252a",
                        "ysrc": "ManonCLOTEAUX:5:203f4b",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(255,0,0)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,0,255)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:91fb88",
                        "ysrc": "ManonCLOTEAUX:5:45ee9b",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(0,0,255)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(193,124,11)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:50cbd7",
                        "ysrc": "ManonCLOTEAUX:5:1f0959",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(193,124,11)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:bc5428",
                        "ysrc": "ManonCLOTEAUX:5:34f38b",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:5887f0",
                        "ysrc": "ManonCLOTEAUX:5:34f38b",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:83252a",
                        "ysrc": "ManonCLOTEAUX:5:203f4b",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(255,0,0)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,0,255)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:91fb88",
                        "ysrc": "ManonCLOTEAUX:5:45ee9b",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(0,0,255)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(193,124,11)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:50cbd7",
                        "ysrc": "ManonCLOTEAUX:5:1f0959",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(193,124,11)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:c91494",
                        "ysrc": "ManonCLOTEAUX:5:34f38b",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:bbfe04",
                        "ysrc": "ManonCLOTEAUX:5:34f38b",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:83252a",
                        "ysrc": "ManonCLOTEAUX:5:203f4b",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(255,0,0)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,0,255)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:91fb88",
                        "ysrc": "ManonCLOTEAUX:5:45ee9b",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(0,0,255)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(193,124,11)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:50cbd7",
                        "ysrc": "ManonCLOTEAUX:5:1f0959",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(193,124,11)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:13a67a",
                        "ysrc": "ManonCLOTEAUX:5:34f38b",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:fecee9",
                        "ysrc": "ManonCLOTEAUX:5:34f38b",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:83252a",
                        "ysrc": "ManonCLOTEAUX:5:203f4b",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(255,0,0)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,0,255)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:91fb88",
                        "ysrc": "ManonCLOTEAUX:5:45ee9b",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(0,0,255)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(193,124,11)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:50cbd7",
                        "ysrc": "ManonCLOTEAUX:5:1f0959",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(193,124,11)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:99c4dd",
                        "ysrc": "ManonCLOTEAUX:5:34f38b",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:09403a",
                        "ysrc": "ManonCLOTEAUX:5:34f38b",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:83252a",
                        "ysrc": "ManonCLOTEAUX:5:203f4b",
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(255,0,0)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,0,255)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:91fb88",
                        "ysrc": "ManonCLOTEAUX:5:45ee9b",
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(0,0,255)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(193,124,11)",
                            "width": 0.5
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:50cbd7",
                        "ysrc": "ManonCLOTEAUX:5:1f0959",
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 2,
                            "color": "rgb(193,124,11)",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:708945",
                        "ysrc": "ManonCLOTEAUX:5:34f38b",
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(38,38,38)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "ManonCLOTEAUX:5:f7c31e",
                        "ysrc": "ManonCLOTEAUX:5:34f38b",
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "visible": true,
                        "showlegend": true
                    }
                ],
                "layout": {
                    "title": "<b></b>",
                    "width": 167472,
                    "height": 54051.84,
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0,
                        "pad": 0
                    },
                    "scene1": {
                        "domain": {
                            "x": [
                                0.00125656984980271,
                                0.998743430150197
                            ],
                            "y": [
                                0.00459152010764301,
                                0.99568060193735
                            ]
                        }
                    },
                    "scene2": {
                        "domain": {
                            "x": [
                                0.00125656984980271,
                                0.240058385554303
                            ],
                            "y": [
                                0.00459152010764301,
                                0.99568060193735
                            ]
                        }
                    },
                    "scene3": {
                        "domain": {
                            "x": [
                                0.240841320774822,
                                0.379816156927231
                            ],
                            "y": [
                                0.00459152010764301,
                                0.99568060193735
                            ]
                        }
                    },
                    "scene4": {
                        "domain": {
                            "x": [
                                0.38059909214775,
                                0.519573928300159
                            ],
                            "y": [
                                0.00459152010764301,
                                0.99568060193735
                            ]
                        }
                    },
                    "scene5": {
                        "domain": {
                            "x": [
                                0.520356863520677,
                                0.629383605807459
                            ],
                            "y": [
                                0.00459152010764301,
                                0.99568060193735
                            ]
                        }
                    },
                    "scene6": {
                        "domain": {
                            "x": [
                                0.630166541027978,
                                0.73919328331476
                            ],
                            "y": [
                                0.00459152010764301,
                                0.99568060193735
                            ]
                        }
                    },
                    "scene7": {
                        "domain": {
                            "x": [
                                0.739976218535278,
                                0.84900296082206
                            ],
                            "y": [
                                0.00459152010764301,
                                0.99568060193735
                            ]
                        }
                    },
                    "scene8": {
                        "domain": {
                            "x": [
                                0.849785896042579,
                                0.928864544463733
                            ],
                            "y": [
                                0.00459152010764301,
                                0.99568060193735
                            ]
                        }
                    },
                    "scene9": {
                        "domain": {
                            "x": [
                                0.929647479684252,
                                1
                            ],
                            "y": [
                                0.00459152010764301,
                                0.99568060193735
                            ]
                        }
                    },
                    "xaxis1": {
                        "side": "bottom",
                        "type": "linear",
                        "ticks": "",
                        "anchor": "y1",
                        "domain": [
                            0.00125656984980271,
                            0.998743430150197
                        ],
                        "mirror": false,
                        "ticklen": 0,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "zeroline": false,
                        "autorange": true,
                        "gridcolor": "rgba(0,0,0,0.150000)",
                        "gridwidth": 1.5,
                        "linecolor": "rgb(0,0,0)",
                        "linewidth": 1.5,
                        "tickangle": 0,
                        "tickcolor": "rgb(0,0,0)",
                        "tickwidth": 1.5,
                        "titlefont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": false
                    },
                    "xaxis2": {
                        "side": "bottom",
                        "type": "date",
                        "range": [
                            "2023-01-01 09:00:00",
                            "2023-01-01 10:50:00"
                        ],
                        "ticks": "outside",
                        "title": "S1",
                        "anchor": "y2",
                        "domain": [
                            0.00125656984980271,
                            0.240058385554303
                        ],
                        "mirror": false,
                        "ticklen": 0,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "09:00",
                            "10:50"
                        ],
                        "tickvals": [
                            "2023-01-01 09:00:00",
                            "2023-01-01 10:50:00"
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(0,0,0,0.150000)",
                        "gridwidth": 1.5,
                        "linecolor": "rgb(0,0,0)",
                        "linewidth": 1.5,
                        "tickangle": -90,
                        "tickcolor": "rgb(0,0,0)",
                        "tickwidth": 1.5,
                        "titlefont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis3": {
                        "side": "bottom",
                        "type": "date",
                        "range": [
                            "2023-01-01 14:10:00",
                            "2023-01-01 15:15:00"
                        ],
                        "ticks": "outside",
                        "title": "S2",
                        "anchor": "y3",
                        "domain": [
                            0.240841320774822,
                            0.379816156927231
                        ],
                        "mirror": false,
                        "ticklen": 0,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "14:10",
                            "15:15"
                        ],
                        "tickvals": [
                            "2023-01-01 14:10:00",
                            "2023-01-01 15:15:00"
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(0,0,0,0.150000)",
                        "gridwidth": 1.5,
                        "linecolor": "rgb(0,0,0)",
                        "linewidth": 1.5,
                        "tickangle": -90,
                        "tickcolor": "rgb(0,0,0)",
                        "tickwidth": 1.5,
                        "titlefont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis4": {
                        "side": "bottom",
                        "type": "date",
                        "range": [
                            "2023-01-01 16:05:00",
                            "2023-01-01 17:10:00"
                        ],
                        "ticks": "outside",
                        "title": "S3",
                        "anchor": "y4",
                        "domain": [
                            0.38059909214775,
                            0.519573928300159
                        ],
                        "mirror": false,
                        "ticklen": 0,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "16:05",
                            "17:10"
                        ],
                        "tickvals": [
                            "2023-01-01 16:05:00",
                            "2023-01-01 17:10:00"
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(0,0,0,0.150000)",
                        "gridwidth": 1.5,
                        "linecolor": "rgb(0,0,0)",
                        "linewidth": 1.5,
                        "tickangle": -90,
                        "tickcolor": "rgb(0,0,0)",
                        "tickwidth": 1.5,
                        "titlefont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis5": {
                        "side": "bottom",
                        "type": "date",
                        "range": [
                            "2023-01-01 09:49:00",
                            "2023-01-01 10:39:00"
                        ],
                        "ticks": "outside",
                        "title": "FP1",
                        "anchor": "y5",
                        "domain": [
                            0.520356863520677,
                            0.629383605807459
                        ],
                        "mirror": false,
                        "ticklen": 0,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "09:49",
                            "10:39"
                        ],
                        "tickvals": [
                            "2023-01-01 09:49:00",
                            "2023-01-01 10:39:00"
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(0,0,0,0.150000)",
                        "gridwidth": 1.5,
                        "linecolor": "rgb(0,0,0)",
                        "linewidth": 1.5,
                        "tickangle": -90,
                        "tickcolor": "rgb(0,0,0)",
                        "tickwidth": 1.5,
                        "titlefont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis6": {
                        "side": "bottom",
                        "type": "date",
                        "range": [
                            "2023-01-01 14:29:00",
                            "2023-01-01 15:20:00"
                        ],
                        "ticks": "outside",
                        "title": "FP2",
                        "anchor": "y6",
                        "domain": [
                            0.630166541027978,
                            0.73919328331476
                        ],
                        "mirror": false,
                        "ticklen": 0,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "14:29",
                            "15:20"
                        ],
                        "tickvals": [
                            "2023-01-01 14:29:00",
                            "2023-01-01 15:20:00"
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(0,0,0,0.150000)",
                        "gridwidth": 1.5,
                        "linecolor": "rgb(0,0,0)",
                        "linewidth": 1.5,
                        "tickangle": -90,
                        "tickcolor": "rgb(0,0,0)",
                        "tickwidth": 1.5,
                        "titlefont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis7": {
                        "side": "bottom",
                        "type": "date",
                        "range": [
                            "2023-01-01 14:20:00",
                            "2023-01-01 15:10:00"
                        ],
                        "ticks": "outside",
                        "title": "R1",
                        "anchor": "y7",
                        "domain": [
                            0.739976218535278,
                            0.84900296082206
                        ],
                        "mirror": false,
                        "ticklen": 0,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "14:20",
                            "15:10"
                        ],
                        "tickvals": [
                            "2023-01-01 14:20:00",
                            "2023-01-01 15:10:00"
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(0,0,0,0.150000)",
                        "gridwidth": 1.5,
                        "linecolor": "rgb(0,0,0)",
                        "linewidth": 1.5,
                        "tickangle": -90,
                        "tickcolor": "rgb(0,0,0)",
                        "tickwidth": 1.5,
                        "titlefont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis8": {
                        "side": "bottom",
                        "type": "date",
                        "range": [
                            "2023-01-01 09:30:00",
                            "2023-01-01 10:05:00"
                        ],
                        "ticks": "outside",
                        "title": "Q2",
                        "anchor": "y8",
                        "domain": [
                            0.849785896042579,
                            0.928864544463733
                        ],
                        "mirror": false,
                        "ticklen": 0,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "09:30",
                            "10:05"
                        ],
                        "tickvals": [
                            "2023-01-01 09:30:00",
                            "2023-01-01 10:05:00"
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(0,0,0,0.150000)",
                        "gridwidth": 1.5,
                        "linecolor": "rgb(0,0,0)",
                        "linewidth": 1.5,
                        "tickangle": -90,
                        "tickcolor": "rgb(0,0,0)",
                        "tickwidth": 1.5,
                        "titlefont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis9": {
                        "side": "bottom",
                        "type": "date",
                        "range": [
                            "2023-01-01 16:15:00",
                            "2023-01-01 16:50:00"
                        ],
                        "ticks": "outside",
                        "title": "R2",
                        "anchor": "y9",
                        "domain": [
                            0.929647479684252,
                            1
                        ],
                        "mirror": false,
                        "ticklen": 0,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "16:15",
                            "16:50"
                        ],
                        "tickvals": [
                            "2023-01-01 16:15:00",
                            "2023-01-01 16:50:00"
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(0,0,0,0.150000)",
                        "gridwidth": 1.5,
                        "linecolor": "rgb(0,0,0)",
                        "linewidth": 1.5,
                        "tickangle": -90,
                        "tickcolor": "rgb(0,0,0)",
                        "tickwidth": 1.5,
                        "titlefont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis1": {
                        "side": "left",
                        "type": "linear",
                        "ticks": "",
                        "anchor": "x1",
                        "domain": [
                            0.00459152010764301,
                            0.99568060193735
                        ],
                        "mirror": false,
                        "ticklen": 0,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "zeroline": false,
                        "autorange": true,
                        "gridcolor": "rgba(0,0,0,0.150000)",
                        "gridwidth": 1.5,
                        "linecolor": "rgb(0,0,0)",
                        "linewidth": 1.5,
                        "tickangle": 0,
                        "tickcolor": "rgb(0,0,0)",
                        "tickwidth": 1.5,
                        "titlefont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": false
                    },
                    "yaxis2": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            245.2,
                            269.3
                        ],
                        "ticks": "outside",
                        "anchor": "x2",
                        "domain": [
                            0.00459152010764301,
                            0.99568060193735
                        ],
                        "mirror": false,
                        "ticklen": 0,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "250",
                            "255",
                            "260",
                            "265"
                        ],
                        "tickvals": [
                            250,
                            255,
                            260,
                            265
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(0,0,0,0.150000)",
                        "gridwidth": 1.5,
                        "linecolor": "rgb(0,0,0)",
                        "linewidth": 1.5,
                        "tickangle": 0,
                        "tickcolor": "rgb(0,0,0)",
                        "tickwidth": 1.5,
                        "titlefont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis3": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            245.2,
                            269.3
                        ],
                        "ticks": "outside",
                        "anchor": "x3",
                        "domain": [
                            0.00459152010764301,
                            0.99568060193735
                        ],
                        "mirror": false,
                        "ticklen": 0,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "250",
                            "255",
                            "260",
                            "265"
                        ],
                        "tickvals": [
                            250,
                            255,
                            260,
                            265
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(0,0,0,0.150000)",
                        "gridwidth": 1.5,
                        "linecolor": "rgb(0,0,0)",
                        "linewidth": 1.5,
                        "tickangle": 0,
                        "tickcolor": "rgb(0,0,0)",
                        "tickwidth": 1.5,
                        "titlefont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis4": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            245.2,
                            269.3
                        ],
                        "ticks": "outside",
                        "anchor": "x4",
                        "domain": [
                            0.00459152010764301,
                            0.99568060193735
                        ],
                        "mirror": false,
                        "ticklen": 0,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "250",
                            "255",
                            "260",
                            "265"
                        ],
                        "tickvals": [
                            250,
                            255,
                            260,
                            265
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(0,0,0,0.150000)",
                        "gridwidth": 1.5,
                        "linecolor": "rgb(0,0,0)",
                        "linewidth": 1.5,
                        "tickangle": 0,
                        "tickcolor": "rgb(0,0,0)",
                        "tickwidth": 1.5,
                        "titlefont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis5": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            245.2,
                            269.3
                        ],
                        "ticks": "outside",
                        "anchor": "x5",
                        "domain": [
                            0.00459152010764301,
                            0.99568060193735
                        ],
                        "mirror": false,
                        "ticklen": 0,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "250",
                            "255",
                            "260",
                            "265"
                        ],
                        "tickvals": [
                            250,
                            255,
                            260,
                            265
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(0,0,0,0.150000)",
                        "gridwidth": 1.5,
                        "linecolor": "rgb(0,0,0)",
                        "linewidth": 1.5,
                        "tickangle": 0,
                        "tickcolor": "rgb(0,0,0)",
                        "tickwidth": 1.5,
                        "titlefont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis6": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            245.2,
                            269.3
                        ],
                        "ticks": "outside",
                        "anchor": "x6",
                        "domain": [
                            0.00459152010764301,
                            0.99568060193735
                        ],
                        "mirror": false,
                        "ticklen": 0,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "250",
                            "255",
                            "260",
                            "265"
                        ],
                        "tickvals": [
                            250,
                            255,
                            260,
                            265
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(0,0,0,0.150000)",
                        "gridwidth": 1.5,
                        "linecolor": "rgb(0,0,0)",
                        "linewidth": 1.5,
                        "tickangle": 0,
                        "tickcolor": "rgb(0,0,0)",
                        "tickwidth": 1.5,
                        "titlefont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis7": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            245.2,
                            269.3
                        ],
                        "ticks": "outside",
                        "anchor": "x7",
                        "domain": [
                            0.00459152010764301,
                            0.99568060193735
                        ],
                        "mirror": false,
                        "ticklen": 0,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "250",
                            "255",
                            "260",
                            "265"
                        ],
                        "tickvals": [
                            250,
                            255,
                            260,
                            265
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(0,0,0,0.150000)",
                        "gridwidth": 1.5,
                        "linecolor": "rgb(0,0,0)",
                        "linewidth": 1.5,
                        "tickangle": 0,
                        "tickcolor": "rgb(0,0,0)",
                        "tickwidth": 1.5,
                        "titlefont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis8": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            245.2,
                            269.3
                        ],
                        "ticks": "outside",
                        "anchor": "x8",
                        "domain": [
                            0.00459152010764301,
                            0.99568060193735
                        ],
                        "mirror": false,
                        "ticklen": 0,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "250",
                            "255",
                            "260",
                            "265"
                        ],
                        "tickvals": [
                            250,
                            255,
                            260,
                            265
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(0,0,0,0.150000)",
                        "gridwidth": 1.5,
                        "linecolor": "rgb(0,0,0)",
                        "linewidth": 1.5,
                        "tickangle": 0,
                        "tickcolor": "rgb(0,0,0)",
                        "tickwidth": 1.5,
                        "titlefont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis9": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            245.2,
                            269.3
                        ],
                        "ticks": "outside",
                        "anchor": "x9",
                        "domain": [
                            0.00459152010764301,
                            0.99568060193735
                        ],
                        "mirror": false,
                        "ticklen": 0,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "250",
                            "255",
                            "260",
                            "265"
                        ],
                        "tickvals": [
                            250,
                            255,
                            260,
                            265
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(0,0,0,0.150000)",
                        "gridwidth": 1.5,
                        "linecolor": "rgb(0,0,0)",
                        "linewidth": 1.5,
                        "tickangle": 0,
                        "tickcolor": "rgb(0,0,0)",
                        "tickwidth": 1.5,
                        "titlefont": {
                            "size": 24,
                            "color": "rgb(0,0,0)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "autosize": false,
                    "hovermode": "closest",
                    "titlefont": {
                        "color": "rgba(0,0,0,0)"
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.5,
                            "y": 1.00568060193735,
                            "font": {
                                "size": 24,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "<b></b>",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.120657477702053,
                            "y": 1.00568060193735,
                            "font": {
                                "size": 24,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "<b></b>",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.310328738851027,
                            "y": 1.00568060193735,
                            "font": {
                                "size": 24,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "<b></b>",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.450086510223954,
                            "y": 1.00568060193735,
                            "font": {
                                "size": 24,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "<b></b>",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.574870234664068,
                            "y": 1.00568060193735,
                            "font": {
                                "size": 24,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "<b></b>",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.684679912171369,
                            "y": 1.00568060193735,
                            "font": {
                                "size": 24,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "<b></b>",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.794489589678669,
                            "y": 1.00568060193735,
                            "font": {
                                "size": 24,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "<b></b>",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.889325220253156,
                            "y": 1.00568060193735,
                            "font": {
                                "size": 24,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "<b></b>",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.964823739842126,
                            "y": 1.00568060193735,
                            "font": {
                                "size": 24,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "<b></b>",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.5,
                            "y": 0.95,
                            "font": {
                                "size": 15.6,
                                "color": "rgb(38,38,38)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 0
                        }
                    ],
                    "paper_bgcolor": "rgb(255,255,255)"
                }
            },
            "height": 54051,
            "width": 167472,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ManonCLOTEAUX",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/93.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-01 12:53:02",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ManonCLOTEAUX",
                "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": "2025-08-12T15:18:33.267097Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~salamj/1.embed",
            "fid": "salamj:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/salamj:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/salamj:1/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/salamj/1/8_EHHKGMFQ2EKBZ2K7HEKLKAM1S8OIVU.png",
                "list-thumb": "https://api.plotly.com/v2/files/salamj:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/salamj:1",
                "plots": "https://api.plotly.com/v2/plots/salamj:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=salamj"
            },
            "owner": "salamj",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~salamj/1/",
            "world_readable": true,
            "date_modified": "2025-08-12T15:18:33.279Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~salamj/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "bar",
                        "xsrc": "salamj:0:ae59f1",
                        "ysrc": "salamj:0:07eed2",
                        "marker": {
                            "color": "rgb(184, 202, 229)"
                        },
                        "error_x": {
                            "type": "percent",
                            "color": "#444",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": true,
                            "thickness": 2
                        },
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "$\\text{Impact of Process Improvements}$"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -1.0046583850931676,
                            3.0046583850931676
                        ],
                        "title": {
                            "text": "Improvement Stage"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            0,
                            124.21052631578948
                        ],
                        "title": {
                            "text": "Performance (% of Standard Achieved)"
                        },
                        "autorange": true
                    },
                    "shapes": [
                        {
                            "x0": -1,
                            "x1": 3,
                            "y0": 95,
                            "y1": 95,
                            "line": {
                                "dash": "dash",
                                "color": "rgb(3, 35, 250)",
                                "width": 3
                            },
                            "type": "line",
                            "opacity": 1,
                            "visible": true,
                            "fillcolor": "rgb(255, 0, 0)"
                        }
                    ],
                    "barmode": "group",
                    "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"
                    },
                    "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"
                            ]
                        ],
                        "sequentialminus": [
                            [
                                0,
                                "#000004"
                            ],
                            [
                                0.1111111111111111,
                                "#1b0c41"
                            ],
                            [
                                0.2222222222222222,
                                "#4a0c6b"
                            ],
                            [
                                0.3333333333333333,
                                "#781c6d"
                            ],
                            [
                                0.4444444444444444,
                                "#a52c60"
                            ],
                            [
                                0.5555555555555556,
                                "#cf4446"
                            ],
                            [
                                0.6666666666666666,
                                "#ed6925"
                            ],
                            [
                                0.7777777777777778,
                                "#fb9b06"
                            ],
                            [
                                0.8888888888888888,
                                "#f7d13d"
                            ],
                            [
                                1,
                                "#fcffa4"
                            ]
                        ]
                    },
                    "annotations": []
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~salamj",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.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": "2025-08-12 15:16:17",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "salamj",
                "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": "2025-08-12T15:01:15.781014Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jmoxley/18753.embed",
            "fid": "jmoxley:18753",
            "filename": "20250811_linkage_history",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jmoxley/18753/9_RO6TIG4XR1XE0Z6NVIJCGMQJZU5E4X.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jmoxley/18753/2_EJCRUSLDMPJUUY3JTT3BY0JLZ6U5RS.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jmoxley/18753/8_DMMWZSFHS3OG5DURZ6TC005LES5PWG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jmoxley/18753/9_RO6TIG4XR1XE0Z6NVIJCGMQJZU5E4X.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jmoxley:18753",
                "plots": "https://api.plotly.com/v2/plots/jmoxley:18753",
                "parent": "https://api.plotly.com/v2/folders/home?user=jmoxley"
            },
            "owner": "jmoxley",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~jmoxley/18753/",
            "world_readable": true,
            "date_modified": "2025-08-19T15:13:50.734Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jmoxley/18753/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines",
                        "name": "Mean",
                        "type": "scatter",
                        "xsrc": "jmoxley:18752:b8ab19",
                        "ysrc": "jmoxley:18752:7651b1"
                    },
                    {
                        "mode": "lines",
                        "name": "Median",
                        "type": "scatter",
                        "xsrc": "jmoxley:18752:0acaf7",
                        "ysrc": "jmoxley:18752:9ce501"
                    },
                    {
                        "mode": "lines",
                        "name": "Min",
                        "type": "scatter",
                        "xsrc": "jmoxley:18752:715d5c",
                        "ysrc": "jmoxley:18752:ac8a91"
                    },
                    {
                        "mode": "lines",
                        "name": "StDev",
                        "type": "scatter",
                        "xsrc": "jmoxley:18752:3617f7",
                        "ysrc": "jmoxley:18752:828e05"
                    },
                    {
                        "mode": "lines",
                        "name": "Orders Scaled",
                        "type": "scatter",
                        "xsrc": "jmoxley:18752:c9f3d1",
                        "ysrc": "jmoxley:18752:fe0da8"
                    }
                ],
                "layout": {
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        }
                                    },
                                    "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",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "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
                                        }
                                    }
                                }
                            ],
                            "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": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "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
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jmoxley",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/46.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": "2019-07-02 18:27:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jmoxley",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}