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

{
    "next": "https://api.plotly.com/v2/plots?cursor=cD0yMDI0LTA0LTIyKzE0JTNBMjglM0EzOS4zODM4ODclMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0yMisxNSUzQTAyJTNBNDIuMDcwNTQ2JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-22T15:02:42.070546Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Agusga/27.embed",
            "fid": "Agusga:27",
            "filename": "Plot 27",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Agusga/27/9_PBQ4E4EEA6CERPFL2GIWUADRTEG48R.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Agusga/27/2_UKFTYRDXVCAB0CO1KBBB8DWUFEZP5A.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Agusga/27/8_Y6FHKP67QCLE4CX9YOZCBHLDRBXLQX.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Agusga/27/9_PBQ4E4EEA6CERPFL2GIWUADRTEG48R.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Agusga:27",
                "plots": "https://api.plotly.com/v2/plots/Agusga:27",
                "parent": "https://api.plotly.com/v2/folders/home?user=Agusga"
            },
            "owner": "Agusga",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Agusga/27/",
            "world_readable": true,
            "date_modified": "2024-04-22T15:02:47.346Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Agusga/27/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "z": "C"
                            }
                        },
                        "mode": "markers",
                        "name": "Galetti",
                        "type": "scatter3d",
                        "xsrc": "Agusga:25:df898e",
                        "ysrc": "Agusga:25:7cc3d7",
                        "zsrc": "Agusga:25:a75b38",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 16,
                            "color": "rgb(255, 255, 0)"
                        }
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "z": "C"
                            }
                        },
                        "mode": "markers",
                        "name": "Sintetizadas",
                        "type": "scatter3d",
                        "xsrc": "Agusga:26:714514",
                        "ysrc": "Agusga:26:403c1f",
                        "zsrc": "Agusga:26:dc81ca",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 16,
                            "color": "rgb(255, 0, 0)"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 15
                    },
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "size": 23
                                },
                                "text": "<b>PC1</b>"
                            },
                            "nticks": 2,
                            "showline": true,
                            "gridwidth": 4,
                            "linewidth": 5
                        },
                        "yaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "size": 23
                                },
                                "text": "<b>PC2</b>"
                            },
                            "nticks": 2,
                            "showline": true,
                            "gridwidth": 4,
                            "linewidth": 5
                        },
                        "zaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "size": 23
                                },
                                "text": "<b>PC3</b>"
                            },
                            "nticks": 3,
                            "showline": true,
                            "gridwidth": 4,
                            "linewidth": 5
                        },
                        "camera": {
                            "up": {
                                "x": 0.09506256965884452,
                                "y": 0.017443747271920884,
                                "z": -0.9953184533258546
                            },
                            "eye": {
                                "x": -2.2444122088105027,
                                "y": 0.46362710773408616,
                                "z": -0.12241365058739946
                            },
                            "center": {
                                "x": 0.14028934726548312,
                                "y": 0.3002229189417573,
                                "z": 0.10248469794575917
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "dragmode": "orbit",
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 0.8067567372740283,
                            "y": 1.0206404969199,
                            "z": 1.2144638802294874
                        }
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "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/~Agusga",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/93.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-01-05 21:06:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Agusga",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-22T15:02:10.314648Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~franciscoferradaferrada/1.embed",
            "fid": "franciscoferradaferrada:1",
            "filename": "capacity-expantion-vector-500KWFramework",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/franciscoferradaferrada/1/9_HREEQYS552J5OKQOOGP1NKPJBP1JGH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/franciscoferradaferrada/1/2_YKKI9RY9RMIRITM4FD3GCL7VXH1BIE.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/franciscoferradaferrada/1/8_P9RX64TNF1O4HWUVKGFCSV3LCGXDGG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/franciscoferradaferrada/1/9_HREEQYS552J5OKQOOGP1NKPJBP1JGH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/franciscoferradaferrada:1",
                "plots": "https://api.plotly.com/v2/plots/franciscoferradaferrada:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=franciscoferradaferrada"
            },
            "owner": "franciscoferradaferrada",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~franciscoferradaferrada/1/",
            "world_readable": true,
            "date_modified": "2024-04-22T15:02:10.327Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~franciscoferradaferrada/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(243, 232, 189, 0.37)",
                            "shape": "spline"
                        },
                        "name": " Solar",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:a6c880",
                        "ysrc": "franciscoferradaferrada:0:a36acf",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "fillcolor": "rgba(243, 232, 189, 0.37)",
                        "showlegend": false,
                        "legendgroup": " Solar"
                    },
                    {
                        "line": {
                            "color": "rgba(255, 224, 98, 0.68)",
                            "shape": "spline"
                        },
                        "name": " Solar",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:6fe162",
                        "ysrc": "franciscoferradaferrada:0:b93ba8",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "showlegend": true,
                        "legendgroup": " Solar"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgba(255, 224, 98, 0.68)",
                            "shape": "spline"
                        },
                        "name": " Solar lcoea",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:49bfc3",
                        "ysrc": "franciscoferradaferrada:0:1fe9b9",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "showlegend": true,
                        "legendgroup": " Solar"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(17, 114, 30, 0.2)",
                            "shape": "spline"
                        },
                        "name": " Wind",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:bce21d",
                        "ysrc": "franciscoferradaferrada:0:ff8853",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "fillcolor": "rgba(17, 114, 30, 0.2)",
                        "showlegend": false,
                        "legendgroup": " Wind"
                    },
                    {
                        "line": {
                            "color": "rgba(17, 114, 30, 1)",
                            "shape": "spline"
                        },
                        "name": " Wind",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:974cc5",
                        "ysrc": "franciscoferradaferrada:0:2d23d9",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "showlegend": true,
                        "legendgroup": " Wind"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgba(17, 114, 30, 1)",
                            "shape": "spline"
                        },
                        "name": " Wind lcoea",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:800729",
                        "ysrc": "franciscoferradaferrada:0:130889",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "showlegend": true,
                        "legendgroup": " Wind"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(0, 40, 255, 0.2)",
                            "shape": "spline"
                        },
                        "name": " bess stand Alone",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:6b39e4",
                        "ysrc": "franciscoferradaferrada:0:c1221a",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "fillcolor": "rgba(0, 40, 255, 0.2)",
                        "showlegend": false,
                        "legendgroup": " bess stand Alone"
                    },
                    {
                        "line": {
                            "color": "rgba(0, 40, 255, 1)",
                            "shape": "spline"
                        },
                        "name": " bess stand Alone",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:1e27c0",
                        "ysrc": "franciscoferradaferrada:0:8ab108",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "showlegend": true,
                        "legendgroup": " bess stand Alone"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgba(0, 40, 255, 1)",
                            "shape": "spline"
                        },
                        "name": " bess stand Alone lcoea",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:ab4b31",
                        "ysrc": "franciscoferradaferrada:0:e69bd1",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "showlegend": true,
                        "legendgroup": " bess stand Alone"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(255, 151, 0, 0.2)",
                            "shape": "spline"
                        },
                        "name": " Solar+ bess",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:2442e7",
                        "ysrc": "franciscoferradaferrada:0:5f57c3",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "fillcolor": "rgba(255, 151, 0, 0.2)",
                        "showlegend": false,
                        "legendgroup": " Solar+ bess"
                    },
                    {
                        "line": {
                            "color": "rgba(255, 151, 0, 1)",
                            "shape": "spline"
                        },
                        "name": " Solar+ bess",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:fa76e0",
                        "ysrc": "franciscoferradaferrada:0:119670",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "showlegend": true,
                        "legendgroup": " Solar+ bess"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgba(255, 151, 0, 1)",
                            "shape": "spline"
                        },
                        "name": " Solar+ bess lcoea",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:c1ddd3",
                        "ysrc": "franciscoferradaferrada:0:d9915e",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "showlegend": true,
                        "legendgroup": " Solar+ bess"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(0, 255, 153, 0.2)",
                            "shape": "spline"
                        },
                        "name": " Wind+ bess",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:bd6616",
                        "ysrc": "franciscoferradaferrada:0:866343",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "fillcolor": "rgba(0, 255, 153, 0.2)",
                        "showlegend": false,
                        "legendgroup": " Wind+ bess"
                    },
                    {
                        "line": {
                            "color": "rgba(0, 255, 153, 1)",
                            "shape": "spline"
                        },
                        "name": " Wind+ bess",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:5e6a8c",
                        "ysrc": "franciscoferradaferrada:0:b118ef",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "showlegend": true,
                        "legendgroup": " Wind+ bess"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgba(0, 255, 153, 1)",
                            "shape": "spline"
                        },
                        "name": " Wind+ bess lcoea",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:813ed7",
                        "ysrc": "franciscoferradaferrada:0:71f316",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "showlegend": true,
                        "legendgroup": " Wind+ bess"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(243, 232, 189, 0.37)",
                            "shape": "spline"
                        },
                        "name": " Solar",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:60bcee",
                        "ysrc": "franciscoferradaferrada:0:b78976",
                        "xaxis": "x",
                        "yaxis": "y",
                        "fillcolor": "rgba(243, 232, 189, 0.37)",
                        "showlegend": false,
                        "legendgroup": " Solar"
                    },
                    {
                        "line": {
                            "color": "rgba(255, 224, 98, 0.68)",
                            "shape": "spline"
                        },
                        "name": " Solar",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:62b3d8",
                        "ysrc": "franciscoferradaferrada:0:13617a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "showlegend": false,
                        "legendgroup": " Solar"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgba(255, 224, 98, 0.68)",
                            "shape": "spline"
                        },
                        "name": " Solar lcoea",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:a766d6",
                        "ysrc": "franciscoferradaferrada:0:54a2bc",
                        "xaxis": "x",
                        "yaxis": "y",
                        "showlegend": false,
                        "legendgroup": " Solar"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(17, 114, 30, 0.2)",
                            "shape": "spline"
                        },
                        "name": " Wind",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:1b32d7",
                        "ysrc": "franciscoferradaferrada:0:5a77fd",
                        "xaxis": "x",
                        "yaxis": "y",
                        "fillcolor": "rgba(17, 114, 30, 0.2)",
                        "showlegend": false,
                        "legendgroup": " Wind"
                    },
                    {
                        "line": {
                            "color": "rgba(17, 114, 30, 1)",
                            "shape": "spline"
                        },
                        "name": " Wind",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:ab66ef",
                        "ysrc": "franciscoferradaferrada:0:09cc91",
                        "xaxis": "x",
                        "yaxis": "y",
                        "showlegend": false,
                        "legendgroup": " Wind"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgba(17, 114, 30, 1)",
                            "shape": "spline"
                        },
                        "name": " Wind lcoea",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:b58798",
                        "ysrc": "franciscoferradaferrada:0:ea926c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "showlegend": false,
                        "legendgroup": " Wind"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(0, 40, 255, 0.2)",
                            "shape": "spline"
                        },
                        "name": " bess stand Alone",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:6731a2",
                        "ysrc": "franciscoferradaferrada:0:04b471",
                        "xaxis": "x",
                        "yaxis": "y",
                        "fillcolor": "rgba(0, 40, 255, 0.2)",
                        "showlegend": false,
                        "legendgroup": " bess stand Alone"
                    },
                    {
                        "line": {
                            "color": "rgba(0, 40, 255, 1)",
                            "shape": "spline"
                        },
                        "name": " bess stand Alone",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:c7e3a7",
                        "ysrc": "franciscoferradaferrada:0:3eefd7",
                        "xaxis": "x",
                        "yaxis": "y",
                        "showlegend": false,
                        "legendgroup": " bess stand Alone"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgba(0, 40, 255, 1)",
                            "shape": "spline"
                        },
                        "name": " bess stand Alone lcoea",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:69a09f",
                        "ysrc": "franciscoferradaferrada:0:180cb8",
                        "xaxis": "x",
                        "yaxis": "y",
                        "showlegend": false,
                        "legendgroup": " bess stand Alone"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(255, 151, 0, 0.2)",
                            "shape": "spline"
                        },
                        "name": " Solar+ bess",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:ba6e58",
                        "ysrc": "franciscoferradaferrada:0:e00230",
                        "xaxis": "x",
                        "yaxis": "y",
                        "fillcolor": "rgba(255, 151, 0, 0.2)",
                        "showlegend": false,
                        "legendgroup": " Solar+ bess"
                    },
                    {
                        "line": {
                            "color": "rgba(255, 151, 0, 1)",
                            "shape": "spline"
                        },
                        "name": " Solar+ bess",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:27cf4e",
                        "ysrc": "franciscoferradaferrada:0:a3f87f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "showlegend": false,
                        "legendgroup": " Solar+ bess"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgba(255, 151, 0, 1)",
                            "shape": "spline"
                        },
                        "name": " Solar+ bess lcoea",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:49bf5e",
                        "ysrc": "franciscoferradaferrada:0:b0b7cd",
                        "xaxis": "x",
                        "yaxis": "y",
                        "showlegend": false,
                        "legendgroup": " Solar+ bess"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(0, 255, 153, 0.2)",
                            "shape": "spline"
                        },
                        "name": " Wind+ bess",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:e03524",
                        "ysrc": "franciscoferradaferrada:0:ee7301",
                        "xaxis": "x",
                        "yaxis": "y",
                        "fillcolor": "rgba(0, 255, 153, 0.2)",
                        "showlegend": false,
                        "legendgroup": " Wind+ bess"
                    },
                    {
                        "line": {
                            "color": "rgba(0, 255, 153, 1)",
                            "shape": "spline"
                        },
                        "name": " Wind+ bess",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:e2ffbc",
                        "ysrc": "franciscoferradaferrada:0:90c3f7",
                        "xaxis": "x",
                        "yaxis": "y",
                        "showlegend": false,
                        "legendgroup": " Wind+ bess"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgba(0, 255, 153, 1)",
                            "shape": "spline"
                        },
                        "name": " Wind+ bess lcoea",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:381ccb",
                        "ysrc": "franciscoferradaferrada:0:e2bbe6",
                        "xaxis": "x",
                        "yaxis": "y",
                        "showlegend": false,
                        "legendgroup": " Wind+ bess"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(243, 232, 189, 0.37)",
                            "shape": "spline"
                        },
                        "name": " Solar",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:b4f7ad",
                        "ysrc": "franciscoferradaferrada:0:279212",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "fillcolor": "rgba(243, 232, 189, 0.37)",
                        "showlegend": false,
                        "legendgroup": " Solar"
                    },
                    {
                        "line": {
                            "color": "rgba(255, 224, 98, 0.68)",
                            "shape": "spline"
                        },
                        "name": " Solar",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:ef10f6",
                        "ysrc": "franciscoferradaferrada:0:2d155c",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showlegend": false,
                        "legendgroup": " Solar"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgba(255, 224, 98, 0.68)",
                            "shape": "spline"
                        },
                        "name": " Solar lcoea",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:42cad8",
                        "ysrc": "franciscoferradaferrada:0:494c9b",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showlegend": false,
                        "legendgroup": " Solar"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(17, 114, 30, 0.2)",
                            "shape": "spline"
                        },
                        "name": " Wind",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:6dfa66",
                        "ysrc": "franciscoferradaferrada:0:b89309",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "fillcolor": "rgba(17, 114, 30, 0.2)",
                        "showlegend": false,
                        "legendgroup": " Wind"
                    },
                    {
                        "line": {
                            "color": "rgba(17, 114, 30, 1)",
                            "shape": "spline"
                        },
                        "name": " Wind",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:455eb2",
                        "ysrc": "franciscoferradaferrada:0:a790b5",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showlegend": false,
                        "legendgroup": " Wind"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgba(17, 114, 30, 1)",
                            "shape": "spline"
                        },
                        "name": " Wind lcoea",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:068335",
                        "ysrc": "franciscoferradaferrada:0:c36a77",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showlegend": false,
                        "legendgroup": " Wind"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(0, 40, 255, 0.2)",
                            "shape": "spline"
                        },
                        "name": " bess stand Alone",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:ce0251",
                        "ysrc": "franciscoferradaferrada:0:be73d6",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "fillcolor": "rgba(0, 40, 255, 0.2)",
                        "showlegend": false,
                        "legendgroup": " bess stand Alone"
                    },
                    {
                        "line": {
                            "color": "rgba(0, 40, 255, 1)",
                            "shape": "spline"
                        },
                        "name": " bess stand Alone",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:7715b0",
                        "ysrc": "franciscoferradaferrada:0:090186",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showlegend": false,
                        "legendgroup": " bess stand Alone"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgba(0, 40, 255, 1)",
                            "shape": "spline"
                        },
                        "name": " bess stand Alone lcoea",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:3aaed3",
                        "ysrc": "franciscoferradaferrada:0:3d2732",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showlegend": false,
                        "legendgroup": " bess stand Alone"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(255, 151, 0, 0.2)",
                            "shape": "spline"
                        },
                        "name": " Solar+ bess",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:4d1f2b",
                        "ysrc": "franciscoferradaferrada:0:527e7f",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "fillcolor": "rgba(255, 151, 0, 0.2)",
                        "showlegend": false,
                        "legendgroup": " Solar+ bess"
                    },
                    {
                        "line": {
                            "color": "rgba(255, 151, 0, 1)",
                            "shape": "spline"
                        },
                        "name": " Solar+ bess",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:861271",
                        "ysrc": "franciscoferradaferrada:0:63313b",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showlegend": false,
                        "legendgroup": " Solar+ bess"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgba(255, 151, 0, 1)",
                            "shape": "spline"
                        },
                        "name": " Solar+ bess lcoea",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:e8321b",
                        "ysrc": "franciscoferradaferrada:0:ecbf0c",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showlegend": false,
                        "legendgroup": " Solar+ bess"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(0, 255, 153, 0.2)",
                            "shape": "spline"
                        },
                        "name": " Wind+ bess",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:3047f0",
                        "ysrc": "franciscoferradaferrada:0:89a386",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "fillcolor": "rgba(0, 255, 153, 0.2)",
                        "showlegend": false,
                        "legendgroup": " Wind+ bess"
                    },
                    {
                        "line": {
                            "color": "rgba(0, 255, 153, 1)",
                            "shape": "spline"
                        },
                        "name": " Wind+ bess",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:181b9b",
                        "ysrc": "franciscoferradaferrada:0:650686",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showlegend": false,
                        "legendgroup": " Wind+ bess"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgba(0, 255, 153, 1)",
                            "shape": "spline"
                        },
                        "name": " Wind+ bess lcoea",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:d2fa90",
                        "ysrc": "franciscoferradaferrada:0:a4fc2c",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showlegend": false,
                        "legendgroup": " Wind+ bess"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(243, 232, 189, 0.37)",
                            "shape": "spline"
                        },
                        "name": " Solar",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:d1f06f",
                        "ysrc": "franciscoferradaferrada:0:bcdaee",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "fillcolor": "rgba(243, 232, 189, 0.37)",
                        "showlegend": false,
                        "legendgroup": " Solar"
                    },
                    {
                        "line": {
                            "color": "rgba(255, 224, 98, 0.68)",
                            "shape": "spline"
                        },
                        "name": " Solar",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:c8a09a",
                        "ysrc": "franciscoferradaferrada:0:3d17cf",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "showlegend": false,
                        "legendgroup": " Solar"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgba(255, 224, 98, 0.68)",
                            "shape": "spline"
                        },
                        "name": " Solar lcoea",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:576465",
                        "ysrc": "franciscoferradaferrada:0:945518",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "showlegend": false,
                        "legendgroup": " Solar"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(17, 114, 30, 0.2)",
                            "shape": "spline"
                        },
                        "name": " Wind",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:740b57",
                        "ysrc": "franciscoferradaferrada:0:1fd5b7",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "fillcolor": "rgba(17, 114, 30, 0.2)",
                        "showlegend": false,
                        "legendgroup": " Wind"
                    },
                    {
                        "line": {
                            "color": "rgba(17, 114, 30, 1)",
                            "shape": "spline"
                        },
                        "name": " Wind",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:397557",
                        "ysrc": "franciscoferradaferrada:0:e35b42",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "showlegend": false,
                        "legendgroup": " Wind"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgba(17, 114, 30, 1)",
                            "shape": "spline"
                        },
                        "name": " Wind lcoea",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:3bc8b9",
                        "ysrc": "franciscoferradaferrada:0:085671",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "showlegend": false,
                        "legendgroup": " Wind"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(0, 40, 255, 0.2)",
                            "shape": "spline"
                        },
                        "name": " bess stand Alone",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:adc7b8",
                        "ysrc": "franciscoferradaferrada:0:d9a76f",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "fillcolor": "rgba(0, 40, 255, 0.2)",
                        "showlegend": false,
                        "legendgroup": " bess stand Alone"
                    },
                    {
                        "line": {
                            "color": "rgba(0, 40, 255, 1)",
                            "shape": "spline"
                        },
                        "name": " bess stand Alone",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:4f3c60",
                        "ysrc": "franciscoferradaferrada:0:7b6d59",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "showlegend": false,
                        "legendgroup": " bess stand Alone"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgba(0, 40, 255, 1)",
                            "shape": "spline"
                        },
                        "name": " bess stand Alone lcoea",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:a69d66",
                        "ysrc": "franciscoferradaferrada:0:41cf85",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "showlegend": false,
                        "legendgroup": " bess stand Alone"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(255, 151, 0, 0.2)",
                            "shape": "spline"
                        },
                        "name": " Solar+ bess",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:5e1f6c",
                        "ysrc": "franciscoferradaferrada:0:fe2e65",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "fillcolor": "rgba(255, 151, 0, 0.2)",
                        "showlegend": false,
                        "legendgroup": " Solar+ bess"
                    },
                    {
                        "line": {
                            "color": "rgba(255, 151, 0, 1)",
                            "shape": "spline"
                        },
                        "name": " Solar+ bess",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:0c9902",
                        "ysrc": "franciscoferradaferrada:0:ca0970",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "showlegend": false,
                        "legendgroup": " Solar+ bess"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgba(255, 151, 0, 1)",
                            "shape": "spline"
                        },
                        "name": " Solar+ bess lcoea",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:37d1a2",
                        "ysrc": "franciscoferradaferrada:0:504141",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "showlegend": false,
                        "legendgroup": " Solar+ bess"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(0, 255, 153, 0.2)",
                            "shape": "spline"
                        },
                        "name": " Wind+ bess",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:e0cc9a",
                        "ysrc": "franciscoferradaferrada:0:23aada",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "fillcolor": "rgba(0, 255, 153, 0.2)",
                        "showlegend": false,
                        "legendgroup": " Wind+ bess"
                    },
                    {
                        "line": {
                            "color": "rgba(0, 255, 153, 1)",
                            "shape": "spline"
                        },
                        "name": " Wind+ bess",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:cf3fa7",
                        "ysrc": "franciscoferradaferrada:0:6e33e9",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "showlegend": false,
                        "legendgroup": " Wind+ bess"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgba(0, 255, 153, 1)",
                            "shape": "spline"
                        },
                        "name": " Wind+ bess lcoea",
                        "type": "scatter",
                        "xsrc": "franciscoferradaferrada:0:c44070",
                        "ysrc": "franciscoferradaferrada:0:e6fa91",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "showlegend": false,
                        "legendgroup": " Wind+ bess"
                    }
                ],
                "layout": {
                    "width": 1200,
                    "xaxis": {
                        "anchor": "y",
                        "domain": [
                            0.0,
                            0.46499999999999997
                        ],
                        "matches": "x3",
                        "tickmode": "array",
                        "ticktext": [
                            "2026, It:0",
                            "2026, It:1",
                            "2026, It:2",
                            "2026, It:3",
                            "2026, It:4",
                            "2026, It:5",
                            "2026, It:6",
                            "2026, It:7",
                            "2026, It:8",
                            "2026, It:9",
                            "2026, It:10",
                            "2026, It:11",
                            "2026, It:12",
                            "2027, It:0",
                            "2027, It:1",
                            "2028, It:0",
                            "2028, It:1",
                            "2028, It:2",
                            "2029, It:0",
                            "2029, It:1",
                            "2030, It:0",
                            "2030, It:1",
                            "2030, It:2",
                            "2031, It:0",
                            "2031, It:1",
                            "2032, It:0",
                            "2032, It:1",
                            "2032, It:2",
                            "2033, It:0",
                            "2033, It:1",
                            "2034, It:0",
                            "2034, It:1",
                            "2035, It:0",
                            "2035, It:1"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20,
                            21,
                            22,
                            23,
                            24,
                            25,
                            26,
                            27,
                            28,
                            29,
                            30,
                            31,
                            32,
                            33
                        ],
                        "tickangle": -45,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "range": [
                            0,
                            155
                        ],
                        "anchor": "x",
                        "domain": [
                            0.55,
                            1.0
                        ]
                    },
                    "height": 675.0,
                    "legend": {
                        "x": 1,
                        "y": 1.05,
                        "xanchor": "right",
                        "yanchor": "bottom",
                        "orientation": "h"
                    },
                    "xaxis2": {
                        "anchor": "y2",
                        "domain": [
                            0.5349999999999999,
                            0.9999999999999999
                        ],
                        "matches": "x4",
                        "tickmode": "array",
                        "ticktext": [
                            "2026, It:0",
                            "2026, It:1",
                            "2026, It:2",
                            "2026, It:3",
                            "2026, It:4",
                            "2026, It:5",
                            "2026, It:6",
                            "2026, It:7",
                            "2026, It:8",
                            "2026, It:9",
                            "2026, It:10",
                            "2026, It:11",
                            "2026, It:12",
                            "2027, It:0",
                            "2027, It:1",
                            "2028, It:0",
                            "2028, It:1",
                            "2028, It:2",
                            "2029, It:0",
                            "2029, It:1",
                            "2030, It:0",
                            "2030, It:1",
                            "2030, It:2",
                            "2031, It:0",
                            "2031, It:1",
                            "2032, It:0",
                            "2032, It:1",
                            "2032, It:2",
                            "2033, It:0",
                            "2033, It:1",
                            "2034, It:0",
                            "2034, It:1",
                            "2035, It:0",
                            "2035, It:1"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20,
                            21,
                            22,
                            23,
                            24,
                            25,
                            26,
                            27,
                            28,
                            29,
                            30,
                            31,
                            32,
                            33
                        ],
                        "tickangle": -45,
                        "showticklabels": false
                    },
                    "xaxis3": {
                        "anchor": "y3",
                        "domain": [
                            0.0,
                            0.46499999999999997
                        ],
                        "tickmode": "array",
                        "ticktext": [
                            "2026, It:0",
                            "2026, It:1",
                            "2026, It:2",
                            "2026, It:3",
                            "2026, It:4",
                            "2026, It:5",
                            "2026, It:6",
                            "2026, It:7",
                            "2026, It:8",
                            "2026, It:9",
                            "2026, It:10",
                            "2026, It:11",
                            "2026, It:12",
                            "2027, It:0",
                            "2027, It:1",
                            "2028, It:0",
                            "2028, It:1",
                            "2028, It:2",
                            "2029, It:0",
                            "2029, It:1",
                            "2030, It:0",
                            "2030, It:1",
                            "2030, It:2",
                            "2031, It:0",
                            "2031, It:1",
                            "2032, It:0",
                            "2032, It:1",
                            "2032, It:2",
                            "2033, It:0",
                            "2033, It:1",
                            "2034, It:0",
                            "2034, It:1",
                            "2035, It:0",
                            "2035, It:1"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20,
                            21,
                            22,
                            23,
                            24,
                            25,
                            26,
                            27,
                            28,
                            29,
                            30,
                            31,
                            32,
                            33
                        ],
                        "tickangle": -45
                    },
                    "xaxis4": {
                        "anchor": "y4",
                        "domain": [
                            0.5349999999999999,
                            0.9999999999999999
                        ],
                        "tickmode": "array",
                        "ticktext": [
                            "2026, It:0",
                            "2026, It:1",
                            "2026, It:2",
                            "2026, It:3",
                            "2026, It:4",
                            "2026, It:5",
                            "2026, It:6",
                            "2026, It:7",
                            "2026, It:8",
                            "2026, It:9",
                            "2026, It:10",
                            "2026, It:11",
                            "2026, It:12",
                            "2027, It:0",
                            "2027, It:1",
                            "2028, It:0",
                            "2028, It:1",
                            "2028, It:2",
                            "2029, It:0",
                            "2029, It:1",
                            "2030, It:0",
                            "2030, It:1",
                            "2030, It:2",
                            "2031, It:0",
                            "2031, It:1",
                            "2032, It:0",
                            "2032, It:1",
                            "2032, It:2",
                            "2033, It:0",
                            "2033, It:1",
                            "2034, It:0",
                            "2034, It:1",
                            "2035, It:0",
                            "2035, It:1"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20,
                            21,
                            22,
                            23,
                            24,
                            25,
                            26,
                            27,
                            28,
                            29,
                            30,
                            31,
                            32,
                            33
                        ],
                        "tickangle": -45
                    },
                    "yaxis2": {
                        "range": [
                            0,
                            155
                        ],
                        "anchor": "x2",
                        "domain": [
                            0.55,
                            1.0
                        ]
                    },
                    "yaxis3": {
                        "range": [
                            0,
                            155
                        ],
                        "anchor": "x3",
                        "domain": [
                            0.0,
                            0.45
                        ]
                    },
                    "yaxis4": {
                        "range": [
                            0,
                            155
                        ],
                        "anchor": "x4",
                        "domain": [
                            0.0,
                            0.45
                        ]
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "annotations": [
                        {
                            "x": 0.23249999999999998,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Los Changos 500",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.7674999999999998,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Polpaico 500",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.23249999999999998,
                            "y": 0.45,
                            "font": {
                                "size": 16
                            },
                            "text": "Alto Jahuel 500",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.7674999999999998,
                            "y": 0.45,
                            "font": {
                                "size": 16
                            },
                            "text": "Charrua 500",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": 675,
            "width": 1200,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~franciscoferradaferrada",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/62.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": "2024-04-22 14:37:25",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "franciscoferradaferrada",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-22T15:00:53.750449Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sefmallinternational111/1.embed",
            "fid": "sefmallinternational111:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/sefmallinternational111/1/9_EG6DJFLY9O3TGBLA5POF0903QB9324.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/sefmallinternational111/1/2_EJ616WD99QW8529GO6E3JGJKJOLSUF.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sefmallinternational111/1/8_5KB703D6COODA5HCG9HFLICJ3X02JU.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/sefmallinternational111/1/9_EG6DJFLY9O3TGBLA5POF0903QB9324.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sefmallinternational111:1",
                "plots": "https://api.plotly.com/v2/plots/sefmallinternational111:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=sefmallinternational111"
            },
            "owner": "sefmallinternational111",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~sefmallinternational111/1/",
            "world_readable": true,
            "date_modified": "2024-04-22T15:00:53.763Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sefmallinternational111/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Time",
                                "y": "W (10 min)"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "sefmallinternational111:0:36a9d6",
                        "ysrc": "sefmallinternational111:0:40721b"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "POWER DEMAND (W)"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            196
                        ],
                        "title": {
                            "text": "TIME"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -356.6666666666667,
                            7336.666666666667
                        ],
                        "title": {
                            "text": "W (10MIN)"
                        },
                        "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/~sefmallinternational111",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/55.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-22 15:00:21",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sefmallinternational111",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-22T14:53:38.722100Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~herbert.farias/1.embed",
            "fid": "herbert.farias:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/herbert.farias/1/9_Z5BLJBPOW33X4VZMYMNTMW0BD7E2WR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/herbert.farias/1/2_SRHDDGBPOKZE19JJ3EUDNLRHZAZUDJ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/herbert.farias/1/8_J6VMJLGET0BE2LDZIQ8ALOHOCG7QA2.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/herbert.farias/1/9_Z5BLJBPOW33X4VZMYMNTMW0BD7E2WR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/herbert.farias:1",
                "plots": "https://api.plotly.com/v2/plots/herbert.farias:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=herbert.farias"
            },
            "owner": "herbert.farias",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~herbert.farias/1/",
            "world_readable": true,
            "date_modified": "2024-04-22T14:53:38.735Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~herbert.farias/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "herbert.farias:0:f1fd03",
                        "ysrc": "herbert.farias:0:aff551",
                        "marker": {
                            "color": "rgb(31, 119, 180)"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.0005566926787410086,
                            0.014310782117496507
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -85.68015170980173,
                            1742.594308297508
                        ],
                        "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/~herbert.farias",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/98.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-22 14:42:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "herbert.farias",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-22T14:47:49.287192Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Marshall_Low/1.embed",
            "fid": "Marshall_Low:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Marshall_Low/1/9_AVRYBQXFKJTZ398HMQBLU6O3GSFE8X.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Marshall_Low/1/2_4KX61I06YOO54KSI67HH7W8SJIUVFX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Marshall_Low/1/8_YT43O2M6HQM2AY2FFV0TU64GQ3FTP6.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Marshall_Low/1/9_AVRYBQXFKJTZ398HMQBLU6O3GSFE8X.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Marshall_Low:1",
                "plots": "https://api.plotly.com/v2/plots/Marshall_Low:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Marshall_Low"
            },
            "owner": "Marshall_Low",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Marshall_Low/1/",
            "world_readable": true,
            "date_modified": "2024-04-22T14:47:49.299Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Marshall_Low/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Pharmacists Baseline"
                            }
                        },
                        "mode": "markers",
                        "name": "<sub>Pharmacists Baseline</sub>",
                        "type": "box",
                        "ysrc": "Marshall_Low:0:dc2064",
                        "marker": {
                            "size": 3,
                            "color": "#636efa"
                        },
                        "boxmean": false,
                        "opacity": 1,
                        "pointpos": 0,
                        "boxpoints": "all",
                        "whiskerwidth": 0.5
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "Pharmacists Post-evaluation"
                            }
                        },
                        "name": "<sub>Pharmacists Post-evaluation</sub>",
                        "type": "box",
                        "ysrc": "Marshall_Low:0:ecc115",
                        "marker": {
                            "size": 3
                        },
                        "pointpos": 0,
                        "boxpoints": "all",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "Allergists Baseline"
                            }
                        },
                        "name": "<sub>Allergists Baseline</sub>",
                        "type": "box",
                        "ysrc": "Marshall_Low:0:3bb197",
                        "yaxis": "y",
                        "marker": {
                            "size": 3
                        },
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "Allergists Post-evaluation"
                            }
                        },
                        "name": "<sub>Allergists Post-evaluation</sub>",
                        "type": "box",
                        "ysrc": "Marshall_Low:0:83e96b",
                        "yaxis": "y",
                        "marker": {
                            "size": 3
                        },
                        "pointpos": 0,
                        "boxpoints": "all"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            3.5
                        ],
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -5.555555555555555,
                            105.55555555555556
                        ],
                        "title": {
                            "text": "DrHy-Q Score"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "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/~Marshall_Low",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-22 14:47:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Marshall_Low",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-22T14:37:19.313154Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dgorea/3.embed",
            "fid": "dgorea:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/dgorea/3/9_29WH6JLCUGI142KM1JZJB06B9611L5.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/dgorea/3/2_IB918HUET62E8DG9T105ZG5HYF8KD2.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/dgorea/3/8_0XI180Y7IZO6R9LFVWH6TK4B1OZB3F.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dgorea/3/9_29WH6JLCUGI142KM1JZJB06B9611L5.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dgorea:3",
                "plots": "https://api.plotly.com/v2/plots/dgorea:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=dgorea"
            },
            "owner": "dgorea",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~dgorea/3/",
            "world_readable": true,
            "date_modified": "2024-04-22T14:59:50.292Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dgorea/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0; Trace 3, x"
                            }
                        },
                        "type": "histogram",
                        "xsrc": "dgorea:2:760216",
                        "xaxis": "x",
                        "yaxis": "y"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Trace 1, x",
                                "y": "Trace 1, y"
                            }
                        },
                        "mode": "markers",
                        "text": "asd",
                        "type": "scatter",
                        "xsrc": "dgorea:2:d8f383",
                        "ysrc": "dgorea:2:9c5d00",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "size"
                                }
                            },
                            "sizesrc": "dgorea:2:9bdc6a"
                        }
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Trace 2, x",
                                "y": "Trace 2, y"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "dgorea:2:d08cf9",
                        "ysrc": "dgorea:2:4bbdb5",
                        "xaxis": "x3",
                        "yaxis": "y3"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0; Trace 3, x",
                                "y": "Trace 3, y"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "dgorea:2:760216",
                        "ysrc": "dgorea:2:9cd351",
                        "xaxis": "x4",
                        "yaxis": "y4"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Multiple Subplots"
                    },
                    "width": 600,
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            2,
                            128
                        ],
                        "anchor": "y",
                        "domain": [
                            0,
                            0.45
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            0,
                            182.10526315789474
                        ],
                        "anchor": "x",
                        "domain": [
                            0.625,
                            1
                        ],
                        "showgrid": true,
                        "zeroline": true,
                        "autorange": true,
                        "gridcolor": "rgb(238, 238, 238)",
                        "gridwidth": 1,
                        "rangemode": "normal",
                        "zerolinecolor": "#444",
                        "zerolinewidth": 1
                    },
                    "height": 500,
                    "xaxis2": {
                        "type": "linear",
                        "range": [
                            -2.0020129569643688,
                            28.30201295696437
                        ],
                        "anchor": "y5",
                        "domain": [
                            0.55,
                            1
                        ],
                        "autorange": true
                    },
                    "xaxis3": {
                        "type": "date",
                        "range": [
                            "2016-02-20 14:31:50",
                            "2016-02-20 14:59:37"
                        ],
                        "title": {
                            "text": "Click to enter X axis title"
                        },
                        "anchor": "y3",
                        "domain": [
                            0,
                            0.45
                        ],
                        "autorange": true
                    },
                    "xaxis4": {
                        "type": "linear",
                        "range": [
                            2.8,
                            126.34
                        ],
                        "anchor": "y4",
                        "domain": [
                            0.55,
                            1
                        ],
                        "autorange": true
                    },
                    "yaxis2": {
                        "type": "linear",
                        "range": [
                            -5.1764705882352935,
                            97.17647058823529
                        ],
                        "anchor": "x2",
                        "domain": [
                            0.625,
                            1
                        ],
                        "autorange": true
                    },
                    "yaxis3": {
                        "type": "linear",
                        "range": [
                            -4.0633333333333335,
                            133.20333333333335
                        ],
                        "anchor": "x3",
                        "domain": [
                            0,
                            0.375
                        ],
                        "autorange": true
                    },
                    "yaxis4": {
                        "type": "linear",
                        "range": [
                            -1.4611111111111112,
                            27.761111111111113
                        ],
                        "anchor": "x4",
                        "domain": [
                            0,
                            0.375
                        ],
                        "autorange": true
                    },
                    "annotations": [
                        {
                            "x": 0.225,
                            "y": 1,
                            "font": {
                                "size": 16
                            },
                            "text": "Histogramm",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 1,
                            "font": {
                                "size": 16
                            },
                            "text": "Bubbles chart",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.375,
                            "font": {
                                "size": 16
                            },
                            "text": "Timeseries",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.375,
                            "font": {
                                "size": 16
                            },
                            "text": "Line chart",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": 500,
            "width": 600,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dgorea",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.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": "2024-03-29 09:29:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dgorea",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-22T14:36:45.780488Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~lovelyvarshney2001/3.embed",
            "fid": "lovelyvarshney2001:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/lovelyvarshney2001/3/9_0AXX9PP6LXU19WLFLGPRLCE2JKOSJ9.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/lovelyvarshney2001/3/2_DVX9UHNMLDCH5FHA4S5Y6XA5CZWGE5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/lovelyvarshney2001/3/8_CKDUGD72INZPDYIVMWYDMTBUQ8STLG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/lovelyvarshney2001/3/9_0AXX9PP6LXU19WLFLGPRLCE2JKOSJ9.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/lovelyvarshney2001:3",
                "plots": "https://api.plotly.com/v2/plots/lovelyvarshney2001:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=lovelyvarshney2001"
            },
            "owner": "lovelyvarshney2001",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~lovelyvarshney2001/3/",
            "world_readable": true,
            "date_modified": "2024-04-22T20:27:14.985Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~lovelyvarshney2001/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers+lines+text",
                        "name": "Variation",
                        "type": "scatter",
                        "xsrc": "lovelyvarshney2001:2:60f873",
                        "ysrc": "lovelyvarshney2001:2:2f9cde",
                        "yaxis": "y",
                        "marker": {
                            "size": 9
                        }
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "Reference",
                        "type": "scatter",
                        "xsrc": "lovelyvarshney2001:2:60f873",
                        "ysrc": "lovelyvarshney2001:2:c6fefc",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Iteration V/S Longitude"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0.23406789755807023,
                            13.76593210244193
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "color": "rgb(0, 0, 0)"
                            },
                            "text": "Iteration"
                        },
                        "mirror": "ticks",
                        "nticks": 23,
                        "showline": true,
                        "tickfont": {
                            "color": "rgb(0, 0, 0)"
                        },
                        "autorange": true,
                        "tickcolor": "rgb(0, 0, 0)",
                        "fixedrange": false,
                        "showspikes": true,
                        "zerolinecolor": "rgb(0, 0, 0)",
                        "zerolinewidth": 1
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            72.823909,
                            72.823912
                        ],
                        "title": {
                            "text": "Longitude"
                        },
                        "autorange": false,
                        "showspikes": true
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~lovelyvarshney2001",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-22 12:32:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "lovelyvarshney2001",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-22T14:35:33.198198Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~lovelyvarshney2001/1.embed",
            "fid": "lovelyvarshney2001:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/lovelyvarshney2001/1/9_CU2122PCHYD2RKVFVJDI58P4BLBUYS.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/lovelyvarshney2001/1/2_PC9G4II9K39267MUPU7QLTBNY73DVX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/lovelyvarshney2001/1/8_N59AQPD2FK6TQTW9X86FM1DVFXKBU8.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/lovelyvarshney2001/1/9_CU2122PCHYD2RKVFVJDI58P4BLBUYS.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/lovelyvarshney2001:1",
                "plots": "https://api.plotly.com/v2/plots/lovelyvarshney2001:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=lovelyvarshney2001"
            },
            "owner": "lovelyvarshney2001",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~lovelyvarshney2001/1/",
            "world_readable": true,
            "date_modified": "2024-04-22T14:35:33.209Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~lovelyvarshney2001/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers+lines+text",
                        "name": "Variation",
                        "type": "scatter",
                        "xsrc": "lovelyvarshney2001:0:e001cb",
                        "ysrc": "lovelyvarshney2001:0:6ae25d",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 0, 0)"
                            }
                        },
                        "textfont": {
                            "color": "rgb(0, 0, 0)"
                        },
                        "cliponaxis": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "Reference",
                        "type": "scatter",
                        "xsrc": "lovelyvarshney2001:0:e001cb",
                        "ysrc": "lovelyvarshney2001:0:01e7c2"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Iteration V/S Latitude"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1,
                            13
                        ],
                        "title": {
                            "text": "Iteration"
                        },
                        "showline": false,
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            18.939598,
                            18.9395995
                        ],
                        "title": {
                            "text": "Latitude"
                        },
                        "autorange": false
                    },
                    "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/~lovelyvarshney2001",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-22 12:32:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "lovelyvarshney2001",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-22T14:28:46.361982Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~aregateiro25/1.embed",
            "fid": "aregateiro25:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/aregateiro25/1/9_JZM5DTZMP93HWY53Z7K6XT9Z78KEZ7.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/aregateiro25/1/2_4K0JLMVDS7VAN5DQA3C79X7Z4L6XQB.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/aregateiro25/1/8_2ZW9VFIBT64ELGJI5V5M7DW5WAYTEP.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/aregateiro25/1/9_JZM5DTZMP93HWY53Z7K6XT9Z78KEZ7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/aregateiro25:1",
                "plots": "https://api.plotly.com/v2/plots/aregateiro25:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=aregateiro25"
            },
            "owner": "aregateiro25",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~aregateiro25/1/",
            "world_readable": true,
            "date_modified": "2024-04-22T14:28:46.375Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~aregateiro25/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "z": "C - D - E - F - G - H - I - J - K - L - M - N - O - P - Q - R"
                            }
                        },
                        "mode": "markers",
                        "type": "surface",
                        "xsrc": "aregateiro25:0:fdf8e7",
                        "ysrc": "aregateiro25:0:ea13ba",
                        "zsrc": "aregateiro25:0:4ab6c0,acf3bd,f76a06,8eab0d,075621,8c8dd3,5346ba,2b9e23,019ff5,101a98,cf329a,8ef245,3cb2c6,810d36,02375f,984b9f"
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "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/~aregateiro25",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/88.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-18 11:58:51",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "aregateiro25",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-22T14:28:39.383887Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~eobasuyi24/1.embed",
            "fid": "eobasuyi24:1",
            "filename": "Pd. 2  Esosa",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/eobasuyi24/1/9_A58T08QJGCO1452YEER33PGCRV2I52.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/eobasuyi24/1/2_0QD8CKBI9XCA89QEFCM9X4FD7G39BZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/eobasuyi24/1/8_WHGTEA0080YOLJWAWN6IWFRP7I8CU1.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/eobasuyi24/1/9_A58T08QJGCO1452YEER33PGCRV2I52.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/eobasuyi24:1",
                "plots": "https://api.plotly.com/v2/plots/eobasuyi24:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=eobasuyi24"
            },
            "owner": "eobasuyi24",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~eobasuyi24/1/",
            "world_readable": true,
            "date_modified": "2024-04-22T14:28:39.394Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~eobasuyi24/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "z": "C - D - E - F - G - H - I - J - K - L - M - N - O - P - Q - R"
                            }
                        },
                        "mode": "markers",
                        "type": "surface",
                        "xsrc": "eobasuyi24:0:7bee1d",
                        "ysrc": "eobasuyi24:0:ff7155",
                        "zsrc": "eobasuyi24:0:15f29f,3993ed,4a83ce,796dbc,79e713,22aa85,57bc75,14c708,1610bf,ebdc75,bc4c5e,5401ef,742664,6df4ac,e630c4,562f75"
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "camera": {
                            "up": {
                                "x": -0.13189281586800083,
                                "y": 0.15241671624571695,
                                "z": 0.979476099622284
                            },
                            "eye": {
                                "x": -0.07307610713313129,
                                "y": 1.8356687155817073,
                                "z": -0.7187839902252866
                            },
                            "center": {
                                "x": 0,
                                "y": 0,
                                "z": 0
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1.709975946676697,
                            "y": 1.0259855680060184,
                            "z": 0.5699919822255657
                        }
                    },
                    "title": {
                        "text": "Graph"
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "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/~eobasuyi24",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/25.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": "2024-04-19 13:14:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "eobasuyi24",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}