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=cj0xJnA9MjAyNC0wNC0xNysxNSUzQTAyJTNBMzMuOTE3NjU2JTJCMDAlM0EwMA%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=cD0yMDI0LTA0LTE3KzE1JTNBNDUlM0E0Mi41OTc2NjklMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0xNysxNiUzQTQ1JTNBMzEuMzM5MzA1JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-17T16:45:31.339305Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~robbiePEcw1/51.embed",
            "fid": "robbiePEcw1:51",
            "filename": "Plot 51",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/robbiePEcw1/51/9_NOEQ4T6CF7LUCYOO4P1HF1W3CR7SRJ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/robbiePEcw1/51/2_9ZDG92DNRAI3GLAYHIZUYQQH8ACA5K.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/robbiePEcw1/51/8_JML5WETN36W7JCAAAJMGNJ9JOMEUI3.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/robbiePEcw1/51/9_NOEQ4T6CF7LUCYOO4P1HF1W3CR7SRJ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/robbiePEcw1:51",
                "plots": "https://api.plotly.com/v2/plots/robbiePEcw1:51",
                "parent": "https://api.plotly.com/v2/folders/home?user=robbiePEcw1"
            },
            "owner": "robbiePEcw1",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~robbiePEcw1/51/",
            "world_readable": true,
            "date_modified": "2024-04-17T16:45:31.353Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~robbiePEcw1/51/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "Vq",
                        "type": "scatter",
                        "xsrc": "robbiePEcw1:50:f8f885",
                        "ysrc": "robbiePEcw1:50:0138bf"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "Iq",
                        "type": "scatter",
                        "xsrc": "robbiePEcw1:50:f8f885",
                        "ysrc": "robbiePEcw1:50:16bded",
                        "yaxis": "y2",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "x": 0.5,
                        "font": {
                            "size": 18
                        },
                        "text": "Current Controller with Anti-Windup Response"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            0.5
                        ],
                        "ticks": "inside",
                        "title": {
                            "text": "Time (seconds)"
                        },
                        "showline": true,
                        "autorange": true,
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -30,
                            30
                        ],
                        "ticks": "inside",
                        "title": {
                            "text": "Voltage (V)"
                        },
                        "showline": true,
                        "autorange": false,
                        "showticklabels": true
                    },
                    "yaxis2": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            -10,
                            20
                        ],
                        "ticks": "inside",
                        "title": {
                            "text": "Current (A)"
                        },
                        "showline": true,
                        "autorange": false,
                        "overlaying": "y",
                        "showticklabels": 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/~robbiePEcw1",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/66.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": "2023-11-02 15:47:57",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "robbiePEcw1",
                "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-17T16:44:54.148624Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~akoogler/2.embed",
            "fid": "akoogler:2",
            "filename": "3D Line Cant",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/akoogler/2/9_2XOW8QNWPGWAA1EHEGBNB4W18YDFYD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/akoogler/2/2_2Q321H6I41NJD0Z2JP52S0WGSSY0XC.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/akoogler/2/8_972N6BLT5XXSRBVP5L3IZPESH7OUH7.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/akoogler/2/9_2XOW8QNWPGWAA1EHEGBNB4W18YDFYD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/akoogler:2",
                "plots": "https://api.plotly.com/v2/plots/akoogler:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=akoogler"
            },
            "owner": "akoogler",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~akoogler/2/",
            "world_readable": true,
            "date_modified": "2024-04-17T21:07:29.372Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~akoogler/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Left X 1",
                                "y": "Left Y 1",
                                "z": "Zpos 1",
                                "intensity": "Zpos 1"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Left Offset 1</b>",
                        "type": "scatter3d",
                        "xsrc": "akoogler:1:fa5ed6",
                        "ysrc": "akoogler:1:f126ec",
                        "zsrc": "akoogler:1:ce9fcd",
                        "intensitysrc": "akoogler:1:ce9fcd"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Left X 2",
                                "y": "Left Y 2",
                                "z": "Zpos 2",
                                "intensity": "Zpos 2"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Left Offset 2</b>",
                        "type": "scatter3d",
                        "xsrc": "akoogler:1:e321ab",
                        "ysrc": "akoogler:1:80ba78",
                        "zsrc": "akoogler:1:d7c3e3",
                        "intensitysrc": "akoogler:1:d7c3e3"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Left X 3",
                                "y": "Left Y 3",
                                "z": "Zpos 3",
                                "intensity": "Zpos 3"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Left Offset 3</b>",
                        "type": "scatter3d",
                        "xsrc": "akoogler:1:1b9494",
                        "ysrc": "akoogler:1:77ddfd",
                        "zsrc": "akoogler:1:057c6c",
                        "intensitysrc": "akoogler:1:057c6c"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Left X 3",
                                "y": "Left Y 3",
                                "z": "Zpos 3"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Left Offset 4</b>",
                        "type": "scatter3d",
                        "xsrc": "akoogler:1:1b9494",
                        "ysrc": "akoogler:1:77ddfd",
                        "zsrc": "akoogler:1:057c6c"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Left X 4",
                                "y": "Left Y 4",
                                "z": "Zpos 4"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Left Offset 5</b>",
                        "type": "scatter3d",
                        "xsrc": "akoogler:1:59145f",
                        "ysrc": "akoogler:1:05f448",
                        "zsrc": "akoogler:1:e19ac0"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Left X 5",
                                "y": "Left Y 5",
                                "z": "Zpos 5"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Left Offset 6</b>",
                        "type": "scatter3d",
                        "xsrc": "akoogler:1:7232a3",
                        "ysrc": "akoogler:1:90812c",
                        "zsrc": "akoogler:1:9dd0ad"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Left X 6",
                                "y": "Left Y 6",
                                "z": "Zpos 6"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Left Offset 7</b>",
                        "type": "scatter3d",
                        "xsrc": "akoogler:1:5b761b",
                        "ysrc": "akoogler:1:4e01fa",
                        "zsrc": "akoogler:1:c73cda"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Left X 7",
                                "y": "Left Y 7",
                                "z": "Zpos 7"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Left Offset 8</b>",
                        "type": "scatter3d",
                        "xsrc": "akoogler:1:5e1517",
                        "ysrc": "akoogler:1:09aafd",
                        "zsrc": "akoogler:1:147145"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Left X 8",
                                "y": "Left Y 8",
                                "z": "Zpos 8"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Left Offset 9</b>",
                        "type": "scatter3d",
                        "xsrc": "akoogler:1:dc4cf9",
                        "ysrc": "akoogler:1:6e6f37",
                        "zsrc": "akoogler:1:6f33ee"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Left X 9",
                                "y": "Left Y 9",
                                "z": "Zpos 9"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Left Offset 10</b>",
                        "type": "scatter3d",
                        "xsrc": "akoogler:1:6bef95",
                        "ysrc": "akoogler:1:b6ce60",
                        "zsrc": "akoogler:1:1bf393"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Left X 10",
                                "y": "Left Y 10",
                                "z": "Zpos 10"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Left Offset 11</b>",
                        "type": "scatter3d",
                        "xsrc": "akoogler:1:5cea36",
                        "ysrc": "akoogler:1:c2e2e6",
                        "zsrc": "akoogler:1:1dc922"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Right X 1",
                                "y": "Right Y 1",
                                "z": "Zpos 1"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Right Offset 1</b>",
                        "type": "scatter3d",
                        "xsrc": "akoogler:1:f49b86",
                        "ysrc": "akoogler:1:99b535",
                        "zsrc": "akoogler:1:ce9fcd"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Right X 2",
                                "y": "Right Y 2",
                                "z": "Zpos 2"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Right Offset 2</b>",
                        "type": "scatter3d",
                        "xsrc": "akoogler:1:af7a76",
                        "ysrc": "akoogler:1:ffa59c",
                        "zsrc": "akoogler:1:d7c3e3"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Right X 3",
                                "y": "Right Y 3",
                                "z": "Zpos 3"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Right Offset 3</b>",
                        "type": "scatter3d",
                        "xsrc": "akoogler:1:1e256b",
                        "ysrc": "akoogler:1:94381c",
                        "zsrc": "akoogler:1:057c6c"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Right X 4",
                                "y": "Right Y 4",
                                "z": "Zpos 4"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Right Offset 4</b>",
                        "type": "scatter3d",
                        "xsrc": "akoogler:1:5dcde8",
                        "ysrc": "akoogler:1:9624a0",
                        "zsrc": "akoogler:1:e19ac0"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Right X 5",
                                "y": "Right Y 5",
                                "z": "Zpos 5"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Right Offset 5</b>",
                        "type": "scatter3d",
                        "xsrc": "akoogler:1:faab66",
                        "ysrc": "akoogler:1:092a51",
                        "zsrc": "akoogler:1:9dd0ad"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Right X 6",
                                "y": "Right Y 6",
                                "z": "Zpos 6"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Right Offset 6</b>",
                        "type": "scatter3d",
                        "xsrc": "akoogler:1:36d8be",
                        "ysrc": "akoogler:1:0ec380",
                        "zsrc": "akoogler:1:c73cda"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Right X 7",
                                "y": "Right Y 7",
                                "z": "Zpos 7"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Right Offset 7</b>",
                        "type": "scatter3d",
                        "xsrc": "akoogler:1:c7bee6",
                        "ysrc": "akoogler:1:1e64e9",
                        "zsrc": "akoogler:1:147145"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Right X 8",
                                "y": "Right Y 8",
                                "z": "Zpos 8"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Right Offset 8</b>",
                        "type": "scatter3d",
                        "xsrc": "akoogler:1:d6354d",
                        "ysrc": "akoogler:1:ae542b",
                        "zsrc": "akoogler:1:6f33ee"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Right X 9",
                                "y": "Right Y 9",
                                "z": "Zpos 9"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Right Offset 9</b>",
                        "type": "scatter3d",
                        "xsrc": "akoogler:1:ddace6",
                        "ysrc": "akoogler:1:597ccb",
                        "zsrc": "akoogler:1:1bf393"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Right X 10",
                                "y": "Right Y 10",
                                "z": "Zpos 10"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Right Offset 10</b>",
                        "type": "scatter3d",
                        "xsrc": "akoogler:1:14030a",
                        "ysrc": "akoogler:1:1ebd6f",
                        "zsrc": "akoogler:1:1dc922"
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -0.004791920696476079,
                                "y": -0.7398905168952459,
                                "z": -1.3611331280656622
                            },
                            "center": {
                                "x": 0,
                                "y": 0,
                                "z": 0
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.9969291964996023,
                        "y": 1
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#506784"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#2a3f5f"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    },
                                    "baxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    }
                                }
                            ],
                            "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": "rgb(17,17,17)",
                                "showland": true,
                                "lakecolor": "rgb(17,17,17)",
                                "landcolor": "rgb(17,17,17)",
                                "showlakes": true,
                                "subunitcolor": "#506784"
                            },
                            "font": {
                                "color": "#f2f5fa"
                            },
                            "polar": {
                                "bgcolor": "rgb(17,17,17)",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "bgcolor": "rgb(17,17,17)"
                            },
                            "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": "rgb(17,17,17)",
                            "paper_bgcolor": "rgb(17,17,17)",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#f2f5fa"
                            },
                            "sliderdefaults": {
                                "bgcolor": "#C8D4E3",
                                "tickwidth": 0,
                                "bordercolor": "rgb(17,17,17)",
                                "borderwidth": 1
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#f2f5fa",
                                "arrowwidth": 1
                            },
                            "updatemenudefaults": {
                                "bgcolor": "#506784",
                                "borderwidth": 0
                            }
                        },
                        "themeRef": "PLOTLY_DARK"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~akoogler",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-11 00:59:56",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "akoogler",
                "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-17T16:26:10.949211Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~wklimpert/57.embed",
            "fid": "wklimpert:57",
            "filename": "2024 Waste Expo",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/wklimpert/57/9_JENHX22JYXEP0ZYK13XUHV0D5Y45MP.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/wklimpert/57/2_825GIL74C2F0RID1EE1BU5XJUN1MXH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/wklimpert/57/8_WDXHEJDQDST5BGJRRR261TFNA6A6UH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/wklimpert/57/9_JENHX22JYXEP0ZYK13XUHV0D5Y45MP.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/wklimpert:57",
                "plots": "https://api.plotly.com/v2/plots/wklimpert:57",
                "parent": "https://api.plotly.com/v2/folders/home?user=wklimpert"
            },
            "owner": "wklimpert",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~wklimpert/57/",
            "world_readable": true,
            "date_modified": "2024-04-17T16:54:03.484Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~wklimpert/57/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "line": {
                                "width": 0
                            },
                            "meta": {
                                "columnNames": {
                                    "color": "Flow Color",
                                    "label": "Link Label",
                                    "value": "Value",
                                    "source": "Source",
                                    "target": "Target"
                                }
                            },
                            "colorsrc": "wklimpert:56:dfdf02",
                            "labelsrc": "wklimpert:56:adb2ea",
                            "valuesrc": "wklimpert:56:cdf822",
                            "sourcesrc": "wklimpert:56:0e7873",
                            "targetsrc": "wklimpert:56:81774d"
                        },
                        "meta": {
                            "columnNames": {
                                "link": {
                                    "color": "Flow Color",
                                    "label": "Link Label",
                                    "value": "Size",
                                    "source": "Source",
                                    "target": "Target"
                                },
                                "node": {
                                    "x": "x",
                                    "y": "y",
                                    "color": "Node Color",
                                    "label": "",
                                    "groups": ""
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "Diversion Potential",
                        "node": {
                            "pad": 20,
                            "line": {
                                "width": 0
                            },
                            "meta": {
                                "columnNames": {
                                    "x": "x",
                                    "y": "y",
                                    "color": "Node Color",
                                    "label": "Node Label",
                                    "groups": "Source"
                                }
                            },
                            "xsrc": "wklimpert:56:7d3431",
                            "ysrc": "wklimpert:56:5a6c29",
                            "colorsrc": "wklimpert:56:f13570",
                            "thickness": 200
                        },
                        "type": "sankey",
                        "hoverinfo": "name",
                        "hoverlabel": {
                            "align": "right",
                            "namelength": -1
                        },
                        "arrangement": "snap",
                        "orientation": "h",
                        "valueformat": ""
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 20,
                        "family": "Roboto"
                    },
                    "title": {
                        "x": 0.2,
                        "font": {
                            "size": 25
                        },
                        "text": "<br>"
                    },
                    "width": 1500,
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -1,
                            1
                        ],
                        "title": {
                            "font": {
                                "size": 1
                            }
                        },
                        "autorange": true,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "range": [
                            -0.5,
                            0.5
                        ],
                        "autorange": true,
                        "showticklabels": false
                    },
                    "height": 1200,
                    "legend": {
                        "x": 0.5,
                        "y": 0,
                        "font": {
                            "size": 24
                        },
                        "xanchor": "center",
                        "yanchor": "bottom",
                        "orientation": "h"
                    },
                    "margin": {
                        "l": 80,
                        "r": 220,
                        "t": 100,
                        "pad": 0
                    },
                    "barmode": "group",
                    "modebar": {
                        "orientation": "v"
                    },
                    "autosize": false,
                    "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"
                    },
                    "clickmode": "event",
                    "hoverlabel": {
                        "font": {
                            "size": 20,
                            "color": "rgb(255, 255, 255)",
                            "family": "Roboto"
                        },
                        "align": "left",
                        "bordercolor": "rgba(255, 255, 255, 0)"
                    },
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": 0.1678030303030303,
                            "y": 1.0803527722284583,
                            "ax": 60,
                            "ay": 65,
                            "font": {
                                "size": 24
                            },
                            "text": "<b>Actual</b>",
                            "xref": "paper",
                            "yref": "paper",
                            "yanchor": "top",
                            "showarrow": false
                        },
                        {
                            "x": 0.16678030303030306,
                            "y": 1.0424709082243881,
                            "ax": -543,
                            "ay": -130,
                            "font": {
                                "size": 24
                            },
                            "text": "56% Diversion",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.747348484848485,
                            "y": 1.0815280385224129,
                            "font": {
                                "size": 24
                            },
                            "text": "<b>Potential</b>",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.6641666666666666,
                            "y": 1.0410001451664757,
                            "font": {
                                "size": 24
                            },
                            "text": "82% Diversion",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.86,
                            "y": 0.936144067357245,
                            "font": {
                                "size": 24
                            },
                            "text": "Trash",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.86,
                            "y": 0.23051964413475592,
                            "font": {
                                "size": 24
                            },
                            "text": "Organics<br>Recycling",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.86,
                            "y": 0.6863317468711443,
                            "font": {
                                "size": 24
                            },
                            "text": "Mixed<br>Recycling",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.86,
                            "y": 0.042917120311900536,
                            "font": {
                                "size": 24
                            },
                            "text": "E-Waste Recycling",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.86,
                            "y": -0.0007629535156209385,
                            "ax": -53,
                            "ay": 33,
                            "font": {
                                "size": 24
                            },
                            "text": "Donations",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        }
                    ],
                    "uniformtext": {
                        "mode": false,
                        "minsize": 100
                    }
                }
            },
            "height": 1200,
            "width": 1500,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~wklimpert",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/58.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2021-02-01 17:06:46",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "wklimpert",
                "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-17T16:24:41.715699Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~melsozkal/41.embed",
            "fid": "melsozkal:41",
            "filename": "Plot 41",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/melsozkal/41/9_34GOWJKKN2XBLOB8W2X974YTLM5ED7.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/melsozkal/41/2_QYATASGZWNXDPPX5TE3ONK0335CNG9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/melsozkal/41/8_M620PX5OESG5D7KTJBIBZQ1GQ7XYW8.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/melsozkal/41/9_34GOWJKKN2XBLOB8W2X974YTLM5ED7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/melsozkal:41",
                "plots": "https://api.plotly.com/v2/plots/melsozkal:41",
                "parent": "https://api.plotly.com/v2/folders/home?user=melsozkal"
            },
            "owner": "melsozkal",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~melsozkal/41/",
            "world_readable": true,
            "date_modified": "2024-04-17T17:16:32.102Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~melsozkal/41/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(18, 32, 221)",
                            "shape": "spline",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "G",
                                "y": "E"
                            }
                        },
                        "mode": "lines",
                        "name": "Vc",
                        "type": "scatter",
                        "xsrc": "melsozkal:40:5fc744",
                        "ysrc": "melsozkal:40:67aef4"
                    },
                    {
                        "line": {
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "G",
                                "y": "F"
                            }
                        },
                        "mode": "lines",
                        "name": "Vr",
                        "type": "scatter",
                        "xsrc": "melsozkal:40:5fc744",
                        "ysrc": "melsozkal:40:00a149",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Vc and Vr versus Time"
                    },
                    "xaxis": {
                        "type": "linear",
                        "dtick": 5,
                        "range": [
                            0,
                            100
                        ],
                        "title": {
                            "text": "time (seconds)"
                        },
                        "tickmode": "linear",
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "dtick": 1,
                        "range": [
                            -0.6666666666666667,
                            12.666666666666666
                        ],
                        "title": {
                            "text": "Vc and Vr"
                        },
                        "tickmode": "linear",
                        "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/~melsozkal",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/62.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": "2023-11-16 13:23:58",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "melsozkal",
                "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-17T16:17:29.803530Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~diegopena/5.embed",
            "fid": "diegopena:5",
            "filename": "Plot 5",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/diegopena/5/9_FE2GIMQQ0PPEEM84SFTQKG1JNPO7RH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/diegopena/5/2_NAEAMQPTT3O4NSDNVZUTJRQVCPT6RY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/diegopena/5/8_159JC9YWK10R2RQXB5H5WCMSAKZFSY.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/diegopena/5/9_FE2GIMQQ0PPEEM84SFTQKG1JNPO7RH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/diegopena:5",
                "plots": "https://api.plotly.com/v2/plots/diegopena:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=diegopena"
            },
            "owner": "diegopena",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~diegopena/5/",
            "world_readable": true,
            "date_modified": "2024-04-17T16:19:39.172Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~diegopena/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "diegopena:4:647380",
                        "ysrc": "diegopena:4:aac901"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "UV-Vis spectrum Synthetic Indigo"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            341.9344262295082,
                            774.0655737704918
                        ],
                        "title": {
                            "text": "wavelength (nm)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -2.0971302428256067,
                            307.0971302428256
                        ],
                        "title": {
                            "text": "absorbance"
                        },
                        "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/~diegopena",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/13.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-17 15:48:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "diegopena",
                "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-17T16:04:35.109126Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~diegopena/3.embed",
            "fid": "diegopena:3",
            "filename": "Plot 1 copy",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/diegopena/3/9_21CYCE1FKHFIIDD0X4MFGPLABXRWEV.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/diegopena/3/2_09JR8NQ336XG3E7UFIPYM6V24YFSW4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/diegopena/3/8_IIP09G3UB8W8U306T4V5XBMPWBJ5VA.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/diegopena/3/9_21CYCE1FKHFIIDD0X4MFGPLABXRWEV.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/diegopena:3",
                "plots": "https://api.plotly.com/v2/plots/diegopena:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=diegopena"
            },
            "owner": "diegopena",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~diegopena/3/",
            "world_readable": true,
            "date_modified": "2024-04-17T16:04:35.421Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~diegopena/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "diegopena:2:d8a1ea",
                        "ysrc": "diegopena:2:286227"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "FT-IR spectra synthetic Indigo"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            499.41882011478754,
                            4324.075016421133
                        ],
                        "title": {
                            "text": " 1/CM"
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            60.88189397792806,
                            99.1332411192084
                        ],
                        "title": {
                            "text": "%T"
                        },
                        "autorange": false
                    },
                    "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"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~diegopena",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/13.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-17 15:48:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "diegopena",
                "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-17T16:04:12.837173Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~diegopena/1.embed",
            "fid": "diegopena:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/diegopena/1/9_SDMUUAU4U2MF95JHS7SCD846HMTE02.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/diegopena/1/2_6T30RW8PJJ7IRTVCQUVT7A3OMC2966.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/diegopena/1/8_9N3TXEEGH0NZ1VVB9KLI371R9ZGZKM.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/diegopena/1/9_SDMUUAU4U2MF95JHS7SCD846HMTE02.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/diegopena:1",
                "plots": "https://api.plotly.com/v2/plots/diegopena:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=diegopena"
            },
            "owner": "diegopena",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 12,
            "web_url": "https://chart-studio.plotly.com/~diegopena/1/",
            "world_readable": true,
            "date_modified": "2024-04-17T16:04:12.849Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~diegopena/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "diegopena:0:d8a1ea",
                        "ysrc": "diegopena:0:286227"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "FT-IR spectra synthetic Indigo"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            499.41882011478754,
                            4324.075016421133
                        ],
                        "title": {
                            "text": " 1/CM"
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            60.88189397792806,
                            99.1332411192084
                        ],
                        "title": {
                            "text": "%T"
                        },
                        "autorange": false
                    },
                    "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"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~diegopena",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/13.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-17 15:48:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "diegopena",
                "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-17T15:58:21.659369Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~OliverLy/27.embed",
            "fid": "OliverLy:27",
            "filename": "china_plot_weight",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/OliverLy/27/9_BB3DCKQOAMZM4G4GZ21A6N19HZURSI.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/OliverLy/27/2_VLXW3LMWA6VH0OXJTUTI9HBBA1OGTN.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/OliverLy/27/8_LUYU6L6OHUTQWDHL81SZLVB4A4LM8J.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/OliverLy/27/9_BB3DCKQOAMZM4G4GZ21A6N19HZURSI.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/OliverLy:27",
                "plots": "https://api.plotly.com/v2/plots/OliverLy:27",
                "parent": "https://api.plotly.com/v2/folders/home?user=OliverLy"
            },
            "owner": "OliverLy",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~OliverLy/27/",
            "world_readable": true,
            "date_modified": "2024-04-17T15:58:21.672Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~OliverLy/27/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgba(102,194,165,1)"
                        },
                        "mode": "lines",
                        "name": "0001",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:f8544e",
                        "ysrc": "OliverLy:26:17f250",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(102,194,165,1)"
                            },
                            "color": "rgba(102,194,165,1)"
                        },
                        "error_x": {
                            "color": "rgba(102,194,165,1)"
                        },
                        "error_y": {
                            "color": "rgba(102,194,165,1)"
                        },
                        "textfont": {
                            "color": "rgba(102,194,165,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(134,188,156,1)"
                        },
                        "mode": "lines",
                        "name": "0002",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:30df37",
                        "ysrc": "OliverLy:26:2eb69c",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(134,188,156,1)"
                            },
                            "color": "rgba(134,188,156,1)"
                        },
                        "error_x": {
                            "color": "rgba(134,188,156,1)"
                        },
                        "error_y": {
                            "color": "rgba(134,188,156,1)"
                        },
                        "textfont": {
                            "color": "rgba(134,188,156,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(159,183,147,1)"
                        },
                        "mode": "lines",
                        "name": "0101",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:c2819f",
                        "ysrc": "OliverLy:26:60d8f4",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(159,183,147,1)"
                            },
                            "color": "rgba(159,183,147,1)"
                        },
                        "error_x": {
                            "color": "rgba(159,183,147,1)"
                        },
                        "error_y": {
                            "color": "rgba(159,183,147,1)"
                        },
                        "textfont": {
                            "color": "rgba(159,183,147,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(180,176,138,1)"
                        },
                        "mode": "lines",
                        "name": "0102",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:08ef7f",
                        "ysrc": "OliverLy:26:b10654",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(180,176,138,1)"
                            },
                            "color": "rgba(180,176,138,1)"
                        },
                        "error_x": {
                            "color": "rgba(180,176,138,1)"
                        },
                        "error_y": {
                            "color": "rgba(180,176,138,1)"
                        },
                        "textfont": {
                            "color": "rgba(180,176,138,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(199,169,129,1)"
                        },
                        "mode": "lines",
                        "name": "0103",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:a8ede5",
                        "ysrc": "OliverLy:26:fd0a92",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(199,169,129,1)"
                            },
                            "color": "rgba(199,169,129,1)"
                        },
                        "error_x": {
                            "color": "rgba(199,169,129,1)"
                        },
                        "error_y": {
                            "color": "rgba(199,169,129,1)"
                        },
                        "textfont": {
                            "color": "rgba(199,169,129,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(216,162,120,1)"
                        },
                        "mode": "lines",
                        "name": "0104",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:cecb2b",
                        "ysrc": "OliverLy:26:a0ae7a",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(216,162,120,1)"
                            },
                            "color": "rgba(216,162,120,1)"
                        },
                        "error_x": {
                            "color": "rgba(216,162,120,1)"
                        },
                        "error_y": {
                            "color": "rgba(216,162,120,1)"
                        },
                        "textfont": {
                            "color": "rgba(216,162,120,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(231,154,111,1)"
                        },
                        "mode": "lines",
                        "name": "0105",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:fb9ecd",
                        "ysrc": "OliverLy:26:9c7371",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(231,154,111,1)"
                            },
                            "color": "rgba(231,154,111,1)"
                        },
                        "error_x": {
                            "color": "rgba(231,154,111,1)"
                        },
                        "error_y": {
                            "color": "rgba(231,154,111,1)"
                        },
                        "textfont": {
                            "color": "rgba(231,154,111,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(246,145,102,1)"
                        },
                        "mode": "lines",
                        "name": "0106",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:4677c7",
                        "ysrc": "OliverLy:26:3dee5b",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(246,145,102,1)"
                            },
                            "color": "rgba(246,145,102,1)"
                        },
                        "error_x": {
                            "color": "rgba(246,145,102,1)"
                        },
                        "error_y": {
                            "color": "rgba(246,145,102,1)"
                        },
                        "textfont": {
                            "color": "rgba(246,145,102,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(246,143,106,1)"
                        },
                        "mode": "lines",
                        "name": "0108",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:472df5",
                        "ysrc": "OliverLy:26:488094",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(246,143,106,1)"
                            },
                            "color": "rgba(246,143,106,1)"
                        },
                        "error_x": {
                            "color": "rgba(246,143,106,1)"
                        },
                        "error_y": {
                            "color": "rgba(246,143,106,1)"
                        },
                        "textfont": {
                            "color": "rgba(246,143,106,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(234,146,121,1)"
                        },
                        "mode": "lines",
                        "name": "0109",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:991c2f",
                        "ysrc": "OliverLy:26:affb51",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(234,146,121,1)"
                            },
                            "color": "rgba(234,146,121,1)"
                        },
                        "error_x": {
                            "color": "rgba(234,146,121,1)"
                        },
                        "error_y": {
                            "color": "rgba(234,146,121,1)"
                        },
                        "textfont": {
                            "color": "rgba(234,146,121,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(222,148,135,1)"
                        },
                        "mode": "lines",
                        "name": "0111",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:45f0b6",
                        "ysrc": "OliverLy:26:a62ad6",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(222,148,135,1)"
                            },
                            "color": "rgba(222,148,135,1)"
                        },
                        "error_x": {
                            "color": "rgba(222,148,135,1)"
                        },
                        "error_y": {
                            "color": "rgba(222,148,135,1)"
                        },
                        "textfont": {
                            "color": "rgba(222,148,135,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(209,151,149,1)"
                        },
                        "mode": "lines",
                        "name": "0112",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:5b1dc7",
                        "ysrc": "OliverLy:26:a0a328",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(209,151,149,1)"
                            },
                            "color": "rgba(209,151,149,1)"
                        },
                        "error_x": {
                            "color": "rgba(209,151,149,1)"
                        },
                        "error_y": {
                            "color": "rgba(209,151,149,1)"
                        },
                        "textfont": {
                            "color": "rgba(209,151,149,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(195,154,163,1)"
                        },
                        "mode": "lines",
                        "name": "0113",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:f3c9fd",
                        "ysrc": "OliverLy:26:3f5795",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(195,154,163,1)"
                            },
                            "color": "rgba(195,154,163,1)"
                        },
                        "error_x": {
                            "color": "rgba(195,154,163,1)"
                        },
                        "error_y": {
                            "color": "rgba(195,154,163,1)"
                        },
                        "textfont": {
                            "color": "rgba(195,154,163,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(178,156,177,1)"
                        },
                        "mode": "lines",
                        "name": "0114",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:b0b230",
                        "ysrc": "OliverLy:26:fdd9e8",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(178,156,177,1)"
                            },
                            "color": "rgba(178,156,177,1)"
                        },
                        "error_x": {
                            "color": "rgba(178,156,177,1)"
                        },
                        "error_y": {
                            "color": "rgba(178,156,177,1)"
                        },
                        "textfont": {
                            "color": "rgba(178,156,177,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(160,158,191,1)"
                        },
                        "mode": "lines",
                        "name": "0201",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:a2c24f",
                        "ysrc": "OliverLy:26:9d7b27",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(160,158,191,1)"
                            },
                            "color": "rgba(160,158,191,1)"
                        },
                        "error_x": {
                            "color": "rgba(160,158,191,1)"
                        },
                        "error_y": {
                            "color": "rgba(160,158,191,1)"
                        },
                        "textfont": {
                            "color": "rgba(160,158,191,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(143,160,203,1)"
                        },
                        "mode": "lines",
                        "name": "0202",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:4c8564",
                        "ysrc": "OliverLy:26:636235",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(143,160,203,1)"
                            },
                            "color": "rgba(143,160,203,1)"
                        },
                        "error_x": {
                            "color": "rgba(143,160,203,1)"
                        },
                        "error_y": {
                            "color": "rgba(143,160,203,1)"
                        },
                        "textfont": {
                            "color": "rgba(143,160,203,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(157,157,202,1)"
                        },
                        "mode": "lines",
                        "name": "0203",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:597250",
                        "ysrc": "OliverLy:26:e062f5",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(157,157,202,1)"
                            },
                            "color": "rgba(157,157,202,1)"
                        },
                        "error_x": {
                            "color": "rgba(157,157,202,1)"
                        },
                        "error_y": {
                            "color": "rgba(157,157,202,1)"
                        },
                        "textfont": {
                            "color": "rgba(157,157,202,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(171,155,201,1)"
                        },
                        "mode": "lines",
                        "name": "0204",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:95b0d5",
                        "ysrc": "OliverLy:26:44d0d5",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(171,155,201,1)"
                            },
                            "color": "rgba(171,155,201,1)"
                        },
                        "error_x": {
                            "color": "rgba(171,155,201,1)"
                        },
                        "error_y": {
                            "color": "rgba(171,155,201,1)"
                        },
                        "textfont": {
                            "color": "rgba(171,155,201,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(183,152,200,1)"
                        },
                        "mode": "lines",
                        "name": "0205",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:9de522",
                        "ysrc": "OliverLy:26:c1004c",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(183,152,200,1)"
                            },
                            "color": "rgba(183,152,200,1)"
                        },
                        "error_x": {
                            "color": "rgba(183,152,200,1)"
                        },
                        "error_y": {
                            "color": "rgba(183,152,200,1)"
                        },
                        "textfont": {
                            "color": "rgba(183,152,200,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(195,149,198,1)"
                        },
                        "mode": "lines",
                        "name": "0301",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:45c492",
                        "ysrc": "OliverLy:26:6c112c",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(195,149,198,1)"
                            },
                            "color": "rgba(195,149,198,1)"
                        },
                        "error_x": {
                            "color": "rgba(195,149,198,1)"
                        },
                        "error_y": {
                            "color": "rgba(195,149,198,1)"
                        },
                        "textfont": {
                            "color": "rgba(195,149,198,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(206,146,197,1)"
                        },
                        "mode": "lines",
                        "name": "0302",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:69f6c9",
                        "ysrc": "OliverLy:26:78bb03",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(206,146,197,1)"
                            },
                            "color": "rgba(206,146,197,1)"
                        },
                        "error_x": {
                            "color": "rgba(206,146,197,1)"
                        },
                        "error_y": {
                            "color": "rgba(206,146,197,1)"
                        },
                        "textfont": {
                            "color": "rgba(206,146,197,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(217,143,196,1)"
                        },
                        "mode": "lines",
                        "name": "0303",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:cd3dba",
                        "ysrc": "OliverLy:26:b06bac",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(217,143,196,1)"
                            },
                            "color": "rgba(217,143,196,1)"
                        },
                        "error_x": {
                            "color": "rgba(217,143,196,1)"
                        },
                        "error_y": {
                            "color": "rgba(217,143,196,1)"
                        },
                        "textfont": {
                            "color": "rgba(217,143,196,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(228,139,195,1)"
                        },
                        "mode": "lines",
                        "name": "0304",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:0ed420",
                        "ysrc": "OliverLy:26:395af4",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(228,139,195,1)"
                            },
                            "color": "rgba(228,139,195,1)"
                        },
                        "error_x": {
                            "color": "rgba(228,139,195,1)"
                        },
                        "error_y": {
                            "color": "rgba(228,139,195,1)"
                        },
                        "textfont": {
                            "color": "rgba(228,139,195,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(227,147,185,1)"
                        },
                        "mode": "lines",
                        "name": "0305",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:c5f8bf",
                        "ysrc": "OliverLy:26:106d59",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(227,147,185,1)"
                            },
                            "color": "rgba(227,147,185,1)"
                        },
                        "error_x": {
                            "color": "rgba(227,147,185,1)"
                        },
                        "error_y": {
                            "color": "rgba(227,147,185,1)"
                        },
                        "textfont": {
                            "color": "rgba(227,147,185,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(220,159,172,1)"
                        },
                        "mode": "lines",
                        "name": "0306",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:34ad90",
                        "ysrc": "OliverLy:26:0b62dc",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(220,159,172,1)"
                            },
                            "color": "rgba(220,159,172,1)"
                        },
                        "error_x": {
                            "color": "rgba(220,159,172,1)"
                        },
                        "error_y": {
                            "color": "rgba(220,159,172,1)"
                        },
                        "textfont": {
                            "color": "rgba(220,159,172,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(213,170,158,1)"
                        },
                        "mode": "lines",
                        "name": "0307",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:8f55cf",
                        "ysrc": "OliverLy:26:b32079",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(213,170,158,1)"
                            },
                            "color": "rgba(213,170,158,1)"
                        },
                        "error_x": {
                            "color": "rgba(213,170,158,1)"
                        },
                        "error_y": {
                            "color": "rgba(213,170,158,1)"
                        },
                        "textfont": {
                            "color": "rgba(213,170,158,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(205,180,144,1)"
                        },
                        "mode": "lines",
                        "name": "0308",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:a4f97e",
                        "ysrc": "OliverLy:26:7886ef",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(205,180,144,1)"
                            },
                            "color": "rgba(205,180,144,1)"
                        },
                        "error_x": {
                            "color": "rgba(205,180,144,1)"
                        },
                        "error_y": {
                            "color": "rgba(205,180,144,1)"
                        },
                        "textfont": {
                            "color": "rgba(205,180,144,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(196,191,129,1)"
                        },
                        "mode": "lines",
                        "name": "0309",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:22c05a",
                        "ysrc": "OliverLy:26:1a1449",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(196,191,129,1)"
                            },
                            "color": "rgba(196,191,129,1)"
                        },
                        "error_x": {
                            "color": "rgba(196,191,129,1)"
                        },
                        "error_y": {
                            "color": "rgba(196,191,129,1)"
                        },
                        "textfont": {
                            "color": "rgba(196,191,129,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(186,200,114,1)"
                        },
                        "mode": "lines",
                        "name": "0401",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:c3dd5c",
                        "ysrc": "OliverLy:26:3a9b6d",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(186,200,114,1)"
                            },
                            "color": "rgba(186,200,114,1)"
                        },
                        "error_x": {
                            "color": "rgba(186,200,114,1)"
                        },
                        "error_y": {
                            "color": "rgba(186,200,114,1)"
                        },
                        "textfont": {
                            "color": "rgba(186,200,114,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(175,210,97,1)"
                        },
                        "mode": "lines",
                        "name": "0402",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:31252d",
                        "ysrc": "OliverLy:26:9f3695",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(175,210,97,1)"
                            },
                            "color": "rgba(175,210,97,1)"
                        },
                        "error_x": {
                            "color": "rgba(175,210,97,1)"
                        },
                        "error_y": {
                            "color": "rgba(175,210,97,1)"
                        },
                        "textfont": {
                            "color": "rgba(175,210,97,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(170,216,83,1)"
                        },
                        "mode": "lines",
                        "name": "0403",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:443c63",
                        "ysrc": "OliverLy:26:c6e2b0",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(170,216,83,1)"
                            },
                            "color": "rgba(170,216,83,1)"
                        },
                        "error_x": {
                            "color": "rgba(170,216,83,1)"
                        },
                        "error_y": {
                            "color": "rgba(170,216,83,1)"
                        },
                        "textfont": {
                            "color": "rgba(170,216,83,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(183,217,79,1)"
                        },
                        "mode": "lines",
                        "name": "0404",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:a6a293",
                        "ysrc": "OliverLy:26:152d3f",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(183,217,79,1)"
                            },
                            "color": "rgba(183,217,79,1)"
                        },
                        "error_x": {
                            "color": "rgba(183,217,79,1)"
                        },
                        "error_y": {
                            "color": "rgba(183,217,79,1)"
                        },
                        "textfont": {
                            "color": "rgba(183,217,79,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(196,217,74,1)"
                        },
                        "mode": "lines",
                        "name": "0405",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:5074ac",
                        "ysrc": "OliverLy:26:b4d7e8",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(196,217,74,1)"
                            },
                            "color": "rgba(196,217,74,1)"
                        },
                        "error_x": {
                            "color": "rgba(196,217,74,1)"
                        },
                        "error_y": {
                            "color": "rgba(196,217,74,1)"
                        },
                        "textfont": {
                            "color": "rgba(196,217,74,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(208,217,70,1)"
                        },
                        "mode": "lines",
                        "name": "0406",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:189441",
                        "ysrc": "OliverLy:26:ad104e",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(208,217,70,1)"
                            },
                            "color": "rgba(208,217,70,1)"
                        },
                        "error_x": {
                            "color": "rgba(208,217,70,1)"
                        },
                        "error_y": {
                            "color": "rgba(208,217,70,1)"
                        },
                        "textfont": {
                            "color": "rgba(208,217,70,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(220,217,65,1)"
                        },
                        "mode": "lines",
                        "name": "0407",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:04a73e",
                        "ysrc": "OliverLy:26:142b49",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(220,217,65,1)"
                            },
                            "color": "rgba(220,217,65,1)"
                        },
                        "error_x": {
                            "color": "rgba(220,217,65,1)"
                        },
                        "error_y": {
                            "color": "rgba(220,217,65,1)"
                        },
                        "textfont": {
                            "color": "rgba(220,217,65,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(231,217,60,1)"
                        },
                        "mode": "lines",
                        "name": "0408",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:2e931f",
                        "ysrc": "OliverLy:26:d06809",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(231,217,60,1)"
                            },
                            "color": "rgba(231,217,60,1)"
                        },
                        "error_x": {
                            "color": "rgba(231,217,60,1)"
                        },
                        "error_y": {
                            "color": "rgba(231,217,60,1)"
                        },
                        "textfont": {
                            "color": "rgba(231,217,60,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(242,217,54,1)"
                        },
                        "mode": "lines",
                        "name": "0501",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:bc08d4",
                        "ysrc": "OliverLy:26:81ca8d",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(242,217,54,1)"
                            },
                            "color": "rgba(242,217,54,1)"
                        },
                        "error_x": {
                            "color": "rgba(242,217,54,1)"
                        },
                        "error_y": {
                            "color": "rgba(242,217,54,1)"
                        },
                        "textfont": {
                            "color": "rgba(242,217,54,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(253,217,48,1)"
                        },
                        "mode": "lines",
                        "name": "0502",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:126f7c",
                        "ysrc": "OliverLy:26:7ba326",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(253,217,48,1)"
                            },
                            "color": "rgba(253,217,48,1)"
                        },
                        "error_x": {
                            "color": "rgba(253,217,48,1)"
                        },
                        "error_y": {
                            "color": "rgba(253,217,48,1)"
                        },
                        "textfont": {
                            "color": "rgba(253,217,48,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(253,215,64,1)"
                        },
                        "mode": "lines",
                        "name": "0503",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:8eeb24",
                        "ysrc": "OliverLy:26:cfde42",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(253,215,64,1)"
                            },
                            "color": "rgba(253,215,64,1)"
                        },
                        "error_x": {
                            "color": "rgba(253,215,64,1)"
                        },
                        "error_y": {
                            "color": "rgba(253,215,64,1)"
                        },
                        "textfont": {
                            "color": "rgba(253,215,64,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(250,212,80,1)"
                        },
                        "mode": "lines",
                        "name": "0504",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:555767",
                        "ysrc": "OliverLy:26:a2e694",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(250,212,80,1)"
                            },
                            "color": "rgba(250,212,80,1)"
                        },
                        "error_x": {
                            "color": "rgba(250,212,80,1)"
                        },
                        "error_y": {
                            "color": "rgba(250,212,80,1)"
                        },
                        "textfont": {
                            "color": "rgba(250,212,80,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(246,209,94,1)"
                        },
                        "mode": "lines",
                        "name": "0505",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:ddf16e",
                        "ysrc": "OliverLy:26:d83c8a",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(246,209,94,1)"
                            },
                            "color": "rgba(246,209,94,1)"
                        },
                        "error_x": {
                            "color": "rgba(246,209,94,1)"
                        },
                        "error_y": {
                            "color": "rgba(246,209,94,1)"
                        },
                        "textfont": {
                            "color": "rgba(246,209,94,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(243,206,107,1)"
                        },
                        "mode": "lines",
                        "name": "0506",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:1f9d42",
                        "ysrc": "OliverLy:26:d723b1",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(243,206,107,1)"
                            },
                            "color": "rgba(243,206,107,1)"
                        },
                        "error_x": {
                            "color": "rgba(243,206,107,1)"
                        },
                        "error_y": {
                            "color": "rgba(243,206,107,1)"
                        },
                        "textfont": {
                            "color": "rgba(243,206,107,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(239,203,119,1)"
                        },
                        "mode": "lines",
                        "name": "0601",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:1cb977",
                        "ysrc": "OliverLy:26:3016ef",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(239,203,119,1)"
                            },
                            "color": "rgba(239,203,119,1)"
                        },
                        "error_x": {
                            "color": "rgba(239,203,119,1)"
                        },
                        "error_y": {
                            "color": "rgba(239,203,119,1)"
                        },
                        "textfont": {
                            "color": "rgba(239,203,119,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(236,200,131,1)"
                        },
                        "mode": "lines",
                        "name": "0602",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:6b545c",
                        "ysrc": "OliverLy:26:7a180b",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(236,200,131,1)"
                            },
                            "color": "rgba(236,200,131,1)"
                        },
                        "error_x": {
                            "color": "rgba(236,200,131,1)"
                        },
                        "error_y": {
                            "color": "rgba(236,200,131,1)"
                        },
                        "textfont": {
                            "color": "rgba(236,200,131,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(231,198,142,1)"
                        },
                        "mode": "lines",
                        "name": "0701",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:3cee75",
                        "ysrc": "OliverLy:26:ed5747",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(231,198,142,1)"
                            },
                            "color": "rgba(231,198,142,1)"
                        },
                        "error_x": {
                            "color": "rgba(231,198,142,1)"
                        },
                        "error_y": {
                            "color": "rgba(231,198,142,1)"
                        },
                        "textfont": {
                            "color": "rgba(231,198,142,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(226,195,150,1)"
                        },
                        "mode": "lines",
                        "name": "0702",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:f7f362",
                        "ysrc": "OliverLy:26:957d0e",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(226,195,150,1)"
                            },
                            "color": "rgba(226,195,150,1)"
                        },
                        "error_x": {
                            "color": "rgba(226,195,150,1)"
                        },
                        "error_y": {
                            "color": "rgba(226,195,150,1)"
                        },
                        "textfont": {
                            "color": "rgba(226,195,150,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(220,193,154,1)"
                        },
                        "mode": "lines",
                        "name": "0703",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:f45deb",
                        "ysrc": "OliverLy:26:42b49a",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(220,193,154,1)"
                            },
                            "color": "rgba(220,193,154,1)"
                        },
                        "error_x": {
                            "color": "rgba(220,193,154,1)"
                        },
                        "error_y": {
                            "color": "rgba(220,193,154,1)"
                        },
                        "textfont": {
                            "color": "rgba(220,193,154,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(214,190,158,1)"
                        },
                        "mode": "lines",
                        "name": "0801",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:41b818",
                        "ysrc": "OliverLy:26:bae3c1",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(214,190,158,1)"
                            },
                            "color": "rgba(214,190,158,1)"
                        },
                        "error_x": {
                            "color": "rgba(214,190,158,1)"
                        },
                        "error_y": {
                            "color": "rgba(214,190,158,1)"
                        },
                        "textfont": {
                            "color": "rgba(214,190,158,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(207,188,163,1)"
                        },
                        "mode": "lines",
                        "name": "0802",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:e158da",
                        "ysrc": "OliverLy:26:cebfc2",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(207,188,163,1)"
                            },
                            "color": "rgba(207,188,163,1)"
                        },
                        "error_x": {
                            "color": "rgba(207,188,163,1)"
                        },
                        "error_y": {
                            "color": "rgba(207,188,163,1)"
                        },
                        "textfont": {
                            "color": "rgba(207,188,163,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(200,186,167,1)"
                        },
                        "mode": "lines",
                        "name": "0901",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:7a22cd",
                        "ysrc": "OliverLy:26:8b1eb8",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(200,186,167,1)"
                            },
                            "color": "rgba(200,186,167,1)"
                        },
                        "error_x": {
                            "color": "rgba(200,186,167,1)"
                        },
                        "error_y": {
                            "color": "rgba(200,186,167,1)"
                        },
                        "textfont": {
                            "color": "rgba(200,186,167,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(193,184,171,1)"
                        },
                        "mode": "lines",
                        "name": "0902",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:4b7712",
                        "ysrc": "OliverLy:26:aebb48",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(193,184,171,1)"
                            },
                            "color": "rgba(193,184,171,1)"
                        },
                        "error_x": {
                            "color": "rgba(193,184,171,1)"
                        },
                        "error_y": {
                            "color": "rgba(193,184,171,1)"
                        },
                        "textfont": {
                            "color": "rgba(193,184,171,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(186,181,175,1)"
                        },
                        "mode": "lines",
                        "name": "1001",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:44be64",
                        "ysrc": "OliverLy:26:d71417",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(186,181,175,1)"
                            },
                            "color": "rgba(186,181,175,1)"
                        },
                        "error_x": {
                            "color": "rgba(186,181,175,1)"
                        },
                        "error_y": {
                            "color": "rgba(186,181,175,1)"
                        },
                        "textfont": {
                            "color": "rgba(186,181,175,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(179,179,179,1)"
                        },
                        "mode": "lines",
                        "name": "1002",
                        "type": "scatter",
                        "xsrc": "OliverLy:26:895c69",
                        "ysrc": "OliverLy:26:0d5e3f",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(179,179,179,1)"
                            },
                            "color": "rgba(179,179,179,1)"
                        },
                        "error_x": {
                            "color": "rgba(179,179,179,1)"
                        },
                        "error_y": {
                            "color": "rgba(179,179,179,1)"
                        },
                        "textfont": {
                            "color": "rgba(179,179,179,1)"
                        }
                    }
                ],
                "layout": {
                    "xaxis": {
                        "title": "year",
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true
                    },
                    "yaxis": {
                        "title": "weight_per_unit",
                        "domain": [
                            0,
                            1
                        ],
                        "rangemode": "tozero",
                        "automargin": true
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "hovermode": "closest",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~OliverLy",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/51.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": "2022-12-19 02:13:36",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "OliverLy",
                "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-17T15:52:09.467329Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~JaydenHawn/1.embed",
            "fid": "JaydenHawn:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/JaydenHawn/1/9_I5627V5GUU1EVZV7908VV1X0038233.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/JaydenHawn/1/2_SJJDY2MATCA1JM56UQ7R4U72MD70XF.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/JaydenHawn/1/8_2KXWLQ7BR7AACCX825M0GFG85OASJK.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/JaydenHawn/1/9_I5627V5GUU1EVZV7908VV1X0038233.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/JaydenHawn:1",
                "plots": "https://api.plotly.com/v2/plots/JaydenHawn:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=JaydenHawn"
            },
            "owner": "JaydenHawn",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 7,
            "web_url": "https://chart-studio.plotly.com/~JaydenHawn/1/",
            "world_readable": true,
            "date_modified": "2024-04-17T15:52:34.544Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~JaydenHawn/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "723fe8",
                        "meta": {
                            "columnNames": {
                                "x": "title length",
                                "y": "Avg per project"
                            }
                        },
                        "mode": "lines",
                        "name": "Avg per project",
                        "type": "scatter",
                        "xsrc": "JaydenHawn:0:a57a25",
                        "ysrc": "JaydenHawn:0:d932dd",
                        "marker": {
                            "color": "rgb(255, 127, 14)",
                            "sizeref": 0.028149617325,
                            "sizemode": "area"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Project reads by the length of the project's title"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            2016.8786808009422,
                            2016.8786808009422
                        ],
                        "title": {
                            "text": "Year"
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            907.073143495254,
                            907.073143495254
                        ],
                        "title": {
                            "text": "Distance (ft)"
                        },
                        "autorange": false
                    },
                    "bargap": 0.38,
                    "autosize": true,
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~JaydenHawn",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.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-17 15:51:52",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "JaydenHawn",
                "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-17T15:45:42.597669Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~aaioanei/14.embed",
            "fid": "aaioanei:14",
            "filename": "specific-user-requests",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/aaioanei:14/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/aaioanei:14/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/aaioanei/14/8_Z6VQPZO362WR0W7HGTVF7MLMNRCNAX.png",
                "list-thumb": "https://api.plotly.com/v2/files/aaioanei:14/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/aaioanei:14",
                "plots": "https://api.plotly.com/v2/plots/aaioanei:14",
                "parent": "https://api.plotly.com/v2/folders/home?user=aaioanei"
            },
            "owner": "aaioanei",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Categorized User Requests",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~aaioanei/14/categorized-user-requests/",
            "world_readable": true,
            "date_modified": "2024-05-01T15:52:28.696Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~aaioanei/14/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "bar",
                        "xsrc": "aaioanei:15:2a571c",
                        "ysrc": "aaioanei:15:7a9d6e",
                        "marker": {
                            "line": {
                                "color": "rgba(0, 0, 0, 1.0)",
                                "width": 1.2
                            },
                            "colorsrc": "aaioanei:15:5c40d5"
                        },
                        "textsrc": "aaioanei:15:cc619a",
                        "textposition": "auto"
                    }
                ],
                "layout": {
                    "title": "Categorized User Requests",
                    "xaxis": {
                        "title": "Type of Requests"
                    },
                    "yaxis": {
                        "range": [
                            0,
                            20
                        ],
                        "title": "Count"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~aaioanei",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/67.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-12 15:02:09",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "aaioanei",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}