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=cj0xJnA9MjAyNC0wNC0xOSsxMyUzQTE0JTNBNDMuMjQ2MDg3JTJCMDAlM0EwMA%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=cD0yMDI0LTA0LTE5KzEzJTNBMTQlM0E0My4zMjUyMTElMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0xOSsxMyUzQTQ3JTNBMDAuNjcyMDM4JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-19T13:47:00.672038Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~shailyd/158.embed",
            "fid": "shailyd:158",
            "filename": "bjp_media",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/shailyd/158/9_786A7DI5IERNL8H7ZPVIN3S1K2OEE1.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/shailyd/158/2_PFCXQ1DI7NETQ5Z2OVLH5P57JD7CIK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/shailyd/158/8_YR9TM6XOH6EV18GYLYT6DAAWZD37QW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/shailyd/158/9_786A7DI5IERNL8H7ZPVIN3S1K2OEE1.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/shailyd:158",
                "plots": "https://api.plotly.com/v2/plots/shailyd:158",
                "parent": "https://api.plotly.com/v2/folders/home?user=shailyd"
            },
            "owner": "shailyd",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~shailyd/158/",
            "world_readable": true,
            "date_modified": "2024-04-22T12:08:44.253Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~shailyd/158/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "70c983",
                        "meta": {
                            "columnNames": {
                                "x": "mean p_score",
                                "y": "pol_engagements",
                                "text": "influencer",
                                "marker": {
                                    "size": "politician RTs"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "bjp_media_houses",
                        "type": "scatter",
                        "xsrc": "shailyd:157:96b70b",
                        "ysrc": "shailyd:157:75f7a0",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "politician RTs"
                                }
                            },
                            "color": "rgb(203, 80, 29)",
                            "sizeref": 0.5876543209876544,
                            "sizesrc": "shailyd:157:27be6c",
                            "sizemode": "area"
                        },
                        "textsrc": "shailyd:157:0dd445",
                        "visible": true,
                        "textfont": {
                            "size": 11
                        },
                        "stackgroup": null,
                        "textposition": "middle center"
                    },
                    {
                        "uid": "bd17ab",
                        "fill": "none",
                        "line": {
                            "dash": "solid",
                            "shape": "linear",
                            "width": 2
                        },
                        "opacity": 0.69,
                        "showlegend": true,
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "70c983",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 6586.563113854038,
                                        "value": 12975.818348090288
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 4847.85619265624,
                                        "value": -1030.8003102455339
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ],
                        "connectgaps": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "BJP Leaning Media houses"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.20420528963725657,
                            1.0565312999367356
                        ],
                        "title": {
                            "text": "Polarity score "
                        },
                        "autorange": true,
                        "rangeslider": {
                            "range": [
                                -1.014836289222374,
                                -0.7351637107776262
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        }
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -7615.661945033138,
                            83900.93414862115
                        ],
                        "title": {
                            "text": "political engagements"
                        },
                        "autorange": true
                    },
                    "shapes": [
                        {
                            "x0": 0.8043033000203449,
                            "x1": 0.8274353211766983,
                            "y0": 6201.125919756114,
                            "y1": 7526.495782935048,
                            "line": {
                                "dash": "solid",
                                "color": "rgb(15, 15, 15)",
                                "width": 1
                            },
                            "type": "line",
                            "opacity": 1,
                            "fillcolor": "rgb(0, 0, 0)"
                        },
                        {
                            "x0": 0.7927372894421683,
                            "x1": 0.8274353211766983,
                            "y0": 4047.399892090345,
                            "y1": 1728.0026315272098,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "type": "line",
                            "opacity": 1,
                            "fillcolor": "rgb(18, 17, 17)"
                        },
                        {
                            "x0": 0.9635583687506234,
                            "x1": 0.9946976279995605,
                            "y0": 24424.96153846646,
                            "y1": 27738.386196413798,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "type": "line",
                            "opacity": 1,
                            "fillcolor": "rgb(31, 30, 30)"
                        },
                        {
                            "x0": 0.8514570354544497,
                            "x1": 1.018719342277312,
                            "y0": 78930.98177681978,
                            "y1": 83900.93414862115,
                            "line": {
                                "color": "#444444"
                            },
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        }
                    ],
                    "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"
                    },
                    "annotations": [
                        {
                            "x": 0.9844661571034812,
                            "y": 33205.53688202691,
                            "ax": 28,
                            "ay": 21,
                            "text": "OpIndia"
                        },
                        {
                            "x": 0.6179125910874212,
                            "y": 14153.34509882972,
                            "ax": 3,
                            "ay": 5,
                            "text": "republic"
                        },
                        {
                            "x": 0.6704044852499152,
                            "y": 14816.030030419188,
                            "ax": 1,
                            "ay": 2,
                            "text": "ZeeNews"
                        },
                        {
                            "x": 0.86613697195752,
                            "y": 13656.33140013762,
                            "ax": -1,
                            "ay": -7,
                            "text": "Republic_Bharat"
                        },
                        {
                            "x": 0.944429966640562,
                            "y": 72635.2903116002,
                            "ax": 7,
                            "ay": -4,
                            "text": "epanchjanya"
                        },
                        {
                            "x": 0.30740969171944815,
                            "y": 28401.071128003266,
                            "ax": 6,
                            "ay": 6,
                            "text": "TimesNow"
                        },
                        {
                            "x": 0.8198729296448135,
                            "y": 5372.76975526928,
                            "ax": -14,
                            "ay": 1,
                            "text": "All India Radio"
                        },
                        {
                            "x": 0.42929764935100206,
                            "y": 20945.86564762176,
                            "ax": -1,
                            "ay": 8,
                            "text": "ANI Hindi"
                        },
                        {
                            "x": 0.9399815010335709,
                            "y": -1585.4220264201263,
                            "ax": -41,
                            "ay": 17,
                            "text": "Frustrated Indian"
                        },
                        {
                            "x": 0.9684516809183135,
                            "y": 17301.09852387969,
                            "ax": 2,
                            "ay": 0,
                            "text": "Sudarshan News TV"
                        },
                        {
                            "x": 0.3607912790033404,
                            "y": 402.6327683482754,
                            "ax": 6,
                            "ay": 23,
                            "text": "NewsX"
                        },
                        {
                            "x": 0.5413989826471758,
                            "y": 1396.6601657324763,
                            "ax": 23,
                            "ay": 19,
                            "text": "WIO News"
                        },
                        {
                            "x": 0.9435402735191638,
                            "y": 81280.68708163314,
                            "ax": -7,
                            "ay": -3,
                            "text": "Note: Size = Median RT value "
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~shailyd",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/71.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2023-08-14 12:35:27",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "shailyd",
                "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-19T13:46:01.822218Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~saltwatercup/23.embed",
            "fid": "saltwatercup:23",
            "filename": "Plot 23",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/saltwatercup/23/9_8XT4UF53XDCP70KX0CIUQN9UNSWRDO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/saltwatercup/23/2_MPRIZJ4H692AI3S9TNGAIVCRAZPJ8B.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/saltwatercup/23/8_HKNEBJ7RHXNNVVTWH3O1NOWF3GC5OM.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/saltwatercup/23/9_8XT4UF53XDCP70KX0CIUQN9UNSWRDO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/saltwatercup:23",
                "plots": "https://api.plotly.com/v2/plots/saltwatercup:23",
                "parent": "https://api.plotly.com/v2/folders/home?user=saltwatercup"
            },
            "owner": "saltwatercup",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 6,
            "web_url": "https://chart-studio.plotly.com/~saltwatercup/23/",
            "world_readable": true,
            "date_modified": "2024-04-19T13:46:01.833Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~saltwatercup/23/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Optical absorption",
                        "type": "scatter",
                        "xsrc": "saltwatercup:22:308cd6",
                        "ysrc": "saltwatercup:22:cc1208",
                        "visible": true,
                        "showlegend": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Surface reflection",
                        "type": "scatter",
                        "xsrc": "saltwatercup:22:308cd6",
                        "ysrc": "saltwatercup:22:0ea660",
                        "visible": true,
                        "showlegend": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Bottom dissipation",
                        "type": "scatter",
                        "xsrc": "saltwatercup:22:308cd6",
                        "ysrc": "saltwatercup:22:4ac207",
                        "marker": {
                            "color": "rgb(66, 66, 21)"
                        },
                        "visible": true,
                        "showlegend": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "E"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Ideal responsivity",
                        "type": "scatter",
                        "xsrc": "saltwatercup:22:308cd6",
                        "ysrc": "saltwatercup:22:ed54cc",
                        "visible": "legendonly",
                        "showlegend": false,
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 12,
                        "color": "rgb(33, 33, 33)",
                        "family": "Raleway, sans-serif"
                    },
                    "smith": false,
                    "title": {
                        "font": {
                            "size": 19,
                            "color": "",
                            "family": ""
                        },
                        "text": "<b>Influence of the SiNx Thickness on Optical Absoprtion, Surface reflection, and Bottom Dissipation</b>"
                    },
                    "width": 1000,
                    "xaxis": {
                        "type": "linear",
                        "dtick": 10,
                        "range": [
                            500,
                            700
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>Surface SiNx thickness (nm)</b>"
                        },
                        "showgrid": true,
                        "showline": true,
                        "tickmode": "linear",
                        "zeroline": true,
                        "autorange": false,
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "dtick": 0.05,
                        "range": [
                            0,
                            0.55
                        ],
                        "ticks": "inside",
                        "title": {
                            "text": "<b>Rate</b>"
                        },
                        "showgrid": true,
                        "showline": true,
                        "tickmode": "linear",
                        "zeroline": false,
                        "autorange": false,
                        "showticklabels": true
                    },
                    "bargap": 0.2,
                    "boxgap": 0.3,
                    "height": 600,
                    "legend": {
                        "x": 0.031287646174692305,
                        "y": 1.0833333333333333,
                        "font": {
                            "size": 15,
                            "color": "",
                            "family": ""
                        },
                        "bgcolor": "rgba(67, 67, 67, 0.1)",
                        "xanchor": "auto",
                        "yanchor": "auto",
                        "traceorder": "normal",
                        "bordercolor": "rgba(0, 0, 0, 0)",
                        "borderwidth": 1
                    },
                    "margin": {
                        "b": 80,
                        "l": 80,
                        "r": 80,
                        "t": 100,
                        "pad": 2,
                        "autoexpand": true
                    },
                    "barmode": "stack",
                    "boxmode": "overlay",
                    "autosize": false,
                    "dragmode": "zoom",
                    "hovermode": "x",
                    "separators": ".,",
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": 0.11416096350027202,
                            "y": 0.3,
                            "ax": 520,
                            "ay": -227.5,
                            "tag": "",
                            "font": {
                                "size": 16,
                                "color": "rgb(33, 33, 33)",
                                "family": "Raleway, sans-serif"
                            },
                            "text": "",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "bgcolor": "rgba(0, 0, 0, 0)",
                            "opacity": 1,
                            "xanchor": "auto",
                            "yanchor": "auto",
                            "arrowhead": 1,
                            "arrowsize": 1,
                            "borderpad": 1,
                            "showarrow": true,
                            "arrowcolor": "rgba(0, 0, 0, 0)",
                            "arrowwidth": 0,
                            "bordercolor": "",
                            "borderwidth": 1
                        },
                        {
                            "x": 0.11416096350027202,
                            "y": 0.3,
                            "ax": 519,
                            "ay": -113.5,
                            "tag": "",
                            "font": {
                                "size": 16,
                                "color": "rgb(33, 33, 33)",
                                "family": "Raleway, sans-serif"
                            },
                            "text": "",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "bgcolor": "rgba(0, 0, 0, 0)",
                            "opacity": 1,
                            "xanchor": "auto",
                            "yanchor": "auto",
                            "arrowhead": 1,
                            "arrowsize": 1,
                            "borderpad": 1,
                            "showarrow": true,
                            "arrowcolor": "rgba(0, 0, 0, 0)",
                            "arrowwidth": 0,
                            "bordercolor": "",
                            "borderwidth": 1
                        },
                        {
                            "x": 0.11416096350027202,
                            "y": 0.3,
                            "ax": 539,
                            "ay": -131.5,
                            "tag": "",
                            "font": {
                                "size": 16,
                                "color": "rgb(33, 33, 33)",
                                "family": "Raleway, sans-serif"
                            },
                            "text": "",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "bgcolor": "rgba(0, 0, 0, 0)",
                            "opacity": 1,
                            "xanchor": "auto",
                            "yanchor": "auto",
                            "arrowhead": 1,
                            "arrowsize": 1,
                            "borderpad": 1,
                            "showarrow": true,
                            "arrowcolor": "rgba(0, 0, 0, 0)",
                            "arrowwidth": 0,
                            "bordercolor": "",
                            "borderwidth": 1
                        },
                        {
                            "x": 0.11416096350027202,
                            "y": 0.3,
                            "ax": 669,
                            "ay": -124.5,
                            "tag": "",
                            "font": {
                                "size": 16,
                                "color": "rgb(33, 33, 33)",
                                "family": "Raleway, sans-serif"
                            },
                            "text": "",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "bgcolor": "rgba(0, 0, 0, 0)",
                            "opacity": 1,
                            "xanchor": "auto",
                            "yanchor": "auto",
                            "arrowhead": 1,
                            "arrowsize": 1,
                            "borderpad": 1,
                            "showarrow": true,
                            "arrowcolor": "rgba(0, 0, 0, 0)",
                            "arrowwidth": 0,
                            "bordercolor": "",
                            "borderwidth": 1
                        },
                        {
                            "x": 0.11416096350027202,
                            "y": 0.3,
                            "ax": 518,
                            "ay": -86.5,
                            "tag": "",
                            "font": {
                                "size": 16,
                                "color": "rgb(33, 33, 33)",
                                "family": "Raleway, sans-serif"
                            },
                            "text": "",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "bgcolor": "rgba(0, 0, 0, 0)",
                            "opacity": 1,
                            "xanchor": "auto",
                            "yanchor": "auto",
                            "arrowhead": 1,
                            "arrowsize": 1,
                            "borderpad": 1,
                            "showarrow": true,
                            "arrowcolor": "rgba(0, 0, 0, 0)",
                            "arrowwidth": 0,
                            "bordercolor": "",
                            "borderwidth": 1
                        },
                        {
                            "x": 0.11416096350027202,
                            "y": 0.3,
                            "ax": 532,
                            "ay": -112.5,
                            "tag": "",
                            "font": {
                                "size": 16,
                                "color": "rgb(33, 33, 33)",
                                "family": "Raleway, sans-serif"
                            },
                            "text": "",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "bgcolor": "rgba(0, 0, 0, 0)",
                            "opacity": 1,
                            "xanchor": "auto",
                            "yanchor": "auto",
                            "arrowhead": 1,
                            "arrowsize": 1,
                            "borderpad": 1,
                            "showarrow": true,
                            "arrowcolor": "rgba(0, 0, 0, 0)",
                            "arrowwidth": 0,
                            "bordercolor": "",
                            "borderwidth": 1
                        },
                        {
                            "x": 0.11416096350027202,
                            "y": 0.3,
                            "ax": 546,
                            "ay": -72.5,
                            "tag": "",
                            "font": {
                                "size": 16,
                                "color": "rgb(33, 33, 33)",
                                "family": "Raleway, sans-serif"
                            },
                            "text": "",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "bgcolor": "rgba(0, 0, 0, 0)",
                            "opacity": 1,
                            "xanchor": "auto",
                            "yanchor": "auto",
                            "arrowhead": 1,
                            "arrowsize": 1,
                            "borderpad": 1,
                            "showarrow": true,
                            "arrowcolor": "rgba(0, 0, 0, 0)",
                            "arrowwidth": 0,
                            "bordercolor": "",
                            "borderwidth": 1
                        },
                        {
                            "x": 0.1,
                            "y": 0.3,
                            "ax": 61,
                            "ay": -268.5,
                            "tag": "",
                            "font": {
                                "size": 0,
                                "color": "",
                                "family": ""
                            },
                            "text": "",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "bgcolor": "rgba(0, 0, 0, 0)",
                            "opacity": 1,
                            "xanchor": "auto",
                            "yanchor": "auto",
                            "arrowhead": 1,
                            "arrowsize": 1,
                            "borderpad": 1,
                            "showarrow": true,
                            "arrowcolor": "rgba(0, 0, 0, 0)",
                            "arrowwidth": 0,
                            "bordercolor": "",
                            "borderwidth": 1
                        },
                        {
                            "x": 0.1,
                            "y": 0.3,
                            "ax": 51,
                            "ay": -89.5,
                            "tag": "",
                            "font": {
                                "size": 0,
                                "color": "",
                                "family": ""
                            },
                            "text": "",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "bgcolor": "rgba(0, 0, 0, 0)",
                            "opacity": 1,
                            "xanchor": "auto",
                            "yanchor": "auto",
                            "arrowhead": 1,
                            "arrowsize": 1,
                            "borderpad": 1,
                            "showarrow": true,
                            "arrowcolor": "rgba(0, 0, 0, 0)",
                            "arrowwidth": 0,
                            "bordercolor": "",
                            "borderwidth": 1
                        }
                    ],
                    "bargroupgap": 0,
                    "boxgroupgap": 0.3,
                    "hidesources": false,
                    "plot_bgcolor": "#fff",
                    "paper_bgcolor": "#fff"
                }
            },
            "height": 600,
            "width": 1000,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~saltwatercup",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/31.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2023-05-10 10:47:46",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "saltwatercup",
                "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-19T13:41:13.081901Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mblomfield/62.embed",
            "fid": "mblomfield:62",
            "filename": "Plot 62",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/mblomfield/62/9_784LU2NTZRTPVBE90N5NZSJABKD5NB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mblomfield/62/2_MMNUCOQRSSQVMUMVYE9YFGKNXMW6MI.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mblomfield/62/8_M8SPSQ6JJBSOX6UUVMDW4AB0QPZ3I4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/mblomfield/62/9_784LU2NTZRTPVBE90N5NZSJABKD5NB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mblomfield:62",
                "plots": "https://api.plotly.com/v2/plots/mblomfield:62",
                "parent": "https://api.plotly.com/v2/folders/home?user=mblomfield"
            },
            "owner": "mblomfield",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~mblomfield/62/",
            "world_readable": true,
            "date_modified": "2024-06-22T00:12:06.745Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mblomfield/62/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "error_y": {
                                    "array": "C"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "Borusyak et al",
                        "type": "scatter",
                        "xsrc": "mblomfield:61:f17dd9",
                        "ysrc": "mblomfield:61:cb819e",
                        "marker": {
                            "color": "rgb(19, 63, 96)",
                            "symbol": "diamond-open"
                        },
                        "error_x": {
                            "type": "percent",
                            "color": "#1f77b4",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": true,
                            "thickness": 2
                        },
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "C"
                                }
                            },
                            "type": "data",
                            "width": 0,
                            "visible": true,
                            "arraysrc": "mblomfield:61:c3bfbc",
                            "symmetric": true,
                            "thickness": 1
                        },
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "E",
                                "error_y": {
                                    "array": "G"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "Callaway-Sant'Anna",
                        "type": "scatter",
                        "xsrc": "mblomfield:61:aae866",
                        "ysrc": "mblomfield:61:daee47",
                        "marker": {
                            "line": {
                                "color": "rgb(17, 121, 48)"
                            },
                            "color": "rgb(17, 121, 48)",
                            "symbol": "circle-open",
                            "maxdisplayed": 0
                        },
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "G"
                                }
                            },
                            "type": "data",
                            "color": "rgb(17, 121, 48)",
                            "width": 0,
                            "visible": true,
                            "arraysrc": "mblomfield:61:3acecb",
                            "symmetric": true,
                            "thickness": 1
                        },
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "H",
                                "y": "I",
                                "error_y": {
                                    "array": "K"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "Sun-Abraham",
                        "type": "scatter",
                        "xsrc": "mblomfield:61:953e33",
                        "ysrc": "mblomfield:61:9c12d8",
                        "marker": {
                            "color": "rgb(238, 152, 69)",
                            "symbol": "square-open"
                        },
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "K"
                                }
                            },
                            "type": "data",
                            "width": 0,
                            "visible": true,
                            "arraysrc": "mblomfield:61:976704",
                            "symmetric": true,
                            "thickness": 1
                        },
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "P",
                                "y": "Q",
                                "error_y": {
                                    "array": "S"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "TWFE",
                        "type": "scatter",
                        "xsrc": "mblomfield:61:e7ac91",
                        "ysrc": "mblomfield:61:075650",
                        "marker": {
                            "symbol": "x-thin-open"
                        },
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "S"
                                }
                            },
                            "type": "data",
                            "width": 0,
                            "visible": true,
                            "arraysrc": "mblomfield:61:db4ce7",
                            "symmetric": true,
                            "thickness": 1
                        },
                        "visible": true,
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": ""
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -5.75,
                            9.5
                        ],
                        "title": {
                            "text": "Years Relative to EDCTP Grant Start Date<br>"
                        },
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "linear",
                        "zeroline": false,
                        "autorange": false,
                        "fixedrange": true,
                        "showspikes": true,
                        "rangeslider": {
                            "range": [
                                -0.22222222222222218,
                                4.222222222222222
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -0.08,
                            0.18
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": "Difference in Number of Clinical Trials (IHS)"
                        },
                        "mirror": false,
                        "showgrid": true,
                        "showline": false,
                        "zeroline": true,
                        "autorange": false,
                        "automargin": false,
                        "fixedrange": true,
                        "showspikes": true
                    },
                    "shapes": [],
                    "autosize": true,
                    "dragmode": "select",
                    "hovermode": "x",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mblomfield",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/44.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": "2019-05-30 19:12:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mblomfield",
                "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-19T13:31:52.766756Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Javitoy14/6.embed",
            "fid": "Javitoy14:6",
            "filename": "Plot 6",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Javitoy14/6/9_U7DMN5R9JGNYKI3KWLY8CHSMP2Y8PG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Javitoy14/6/2_VFEP0BSUPLLSMMQIL176C6YU9P8GB0.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Javitoy14/6/8_22PQ80O4RQM1GLBY9F5BSF5BSTV8W1.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Javitoy14/6/9_U7DMN5R9JGNYKI3KWLY8CHSMP2Y8PG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Javitoy14:6",
                "plots": "https://api.plotly.com/v2/plots/Javitoy14:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=Javitoy14"
            },
            "owner": "Javitoy14",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Javitoy14/6/",
            "world_readable": true,
            "date_modified": "2024-04-19T13:32:08.471Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Javitoy14/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(14, 14, 237)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "CPIAUCSL"
                            }
                        },
                        "mode": "lines",
                        "name": "CPI-U",
                        "type": "scatter",
                        "xsrc": "Javitoy14:5:ae5509",
                        "ysrc": "Javitoy14:5:733cf7",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(1, 0, 0)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "Gold_Indexed"
                            }
                        },
                        "mode": "lines",
                        "name": "Gold Price",
                        "type": "scatter",
                        "xsrc": "Javitoy14:5:ae5509",
                        "ysrc": "Javitoy14:5:1d9ea0",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "x": 0.5,
                        "font": {
                            "size": 17
                        },
                        "text": "US Dollar Price of Gold relative to the Consumer Price Index"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "category",
                        "range": [
                            0,
                            553
                        ],
                        "tick0": 0,
                        "title": {
                            "text": "<br>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": 7,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "family": "Roboto"
                        },
                        "tickmode": "auto",
                        "zeroline": true,
                        "autorange": true,
                        "linecolor": "rgb(7, 13, 23)",
                        "tickangle": "auto",
                        "automargin": true,
                        "showspikes": false,
                        "tickprefix": "",
                        "rangeslider": {
                            "range": [
                                0,
                                553
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true,
                            "thickness": 0
                        },
                        "showticklabels": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            28.165829665000008,
                            565.4396989649999
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14
                            },
                            "text": "Index 1983=100"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "size": 12,
                            "family": "Roboto"
                        },
                        "autorange": true,
                        "automargin": true,
                        "showspikes": false,
                        "showticklabels": true
                    },
                    "legend": {
                        "title": {
                            "text": "<br>"
                        }
                    },
                    "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"
                    },
                    "plot_bgcolor": "rgb(255, 255, 255)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Javitoy14",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/77.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2023-02-24 17:52:03",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Javitoy14",
                "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-19T13:27:02.854271Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~fustosfruzsina/12.embed",
            "fid": "fustosfruzsina:12",
            "filename": "Plot 12",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/fustosfruzsina/12/9_UBCID5XVO3PV4WOXUYJ0I9PUJCGCGN.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/fustosfruzsina/12/2_GLZPHR33K8MRBHNF5SSJ2O73KXYD79.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/fustosfruzsina/12/8_YBRQ1A9LE3JYR3HVI02XDQNR85RFO4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/fustosfruzsina/12/9_UBCID5XVO3PV4WOXUYJ0I9PUJCGCGN.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/fustosfruzsina:12",
                "plots": "https://api.plotly.com/v2/plots/fustosfruzsina:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=fustosfruzsina"
            },
            "owner": "fustosfruzsina",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~fustosfruzsina/12/",
            "world_readable": true,
            "date_modified": "2024-04-19T13:27:02.865Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~fustosfruzsina/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "707daf",
                        "meta": {
                            "columnNames": {
                                "x": "MEDS-EU",
                                "y": "GSE"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "fustosfruzsina:11:fd76cc",
                        "ysrc": "fustosfruzsina:11:581fb4",
                        "marker": {
                            "color": "rgb(93, 109, 229)",
                            "opacity": 0.58
                        }
                    },
                    {
                        "uid": "0af04b",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "707daf",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.12904319837297346,
                                        "value": 0.36344915503554404
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 4.605908935554655,
                                        "value": 18.162128591505066
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "color": "rgb(0, 0, 0)",
                        "family": "Times New Roman"
                    },
                    "title": {
                        "text": "<b>2. Ábra:<br></b><i>Énhatékonyság és az eustressz kapcsolata az \"Alap\" kondícióban</i>"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            22.890158172231985,
                            43.109841827768015
                        ],
                        "title": {
                            "text": "Eustressz"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            19.70828471411902,
                            40.29171528588098
                        ],
                        "title": {
                            "text": "Énhatékonyság"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "colorway": [
                        "#1f77b4",
                        "#ff7f0e",
                        "#2ca02c",
                        "#d62728",
                        "#9467bd",
                        "#8c564b",
                        "#e377c2",
                        "#7f7f7f",
                        "#bcbd22",
                        "#17becf"
                    ],
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "colorscale": {
                        "sequentialminus": [
                            [
                                0,
                                "#f7fcfd"
                            ],
                            [
                                0.125,
                                "#e0ecf4"
                            ],
                            [
                                0.25,
                                "#bfd3e6"
                            ],
                            [
                                0.375,
                                "#9ebcda"
                            ],
                            [
                                0.5,
                                "#8c96c6"
                            ],
                            [
                                0.625,
                                "#8c6bb1"
                            ],
                            [
                                0.75,
                                "#88419d"
                            ],
                            [
                                0.875,
                                "#810f7c"
                            ],
                            [
                                1,
                                "#4d004b"
                            ]
                        ]
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~fustosfruzsina",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/40.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": "2022-05-04 16:13:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "fustosfruzsina",
                "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-19T13:25:08.071855Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ASCIVOLETTO/70.embed",
            "fid": "ASCIVOLETTO:70",
            "filename": "NReviews",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ASCIVOLETTO/70/9_PRPHC17EC5SMW1R9HCXXTAWL197DIO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ASCIVOLETTO/70/2_NQH25EAFMIKF466I9ZXOJ50X1IBGTG.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ASCIVOLETTO/70/8_LOU9C9PMQY4V765HH2IAD2L7IZ10CW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ASCIVOLETTO/70/9_PRPHC17EC5SMW1R9HCXXTAWL197DIO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ASCIVOLETTO:70",
                "plots": "https://api.plotly.com/v2/plots/ASCIVOLETTO:70",
                "parent": "https://api.plotly.com/v2/folders/home?user=ASCIVOLETTO"
            },
            "owner": "ASCIVOLETTO",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~ASCIVOLETTO/70/",
            "world_readable": true,
            "date_modified": "2024-04-19T13:26:44.479Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ASCIVOLETTO/70/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "VC Backed",
                        "type": "scatter",
                        "xsrc": "ASCIVOLETTO:69:25d6d6",
                        "ysrc": "ASCIVOLETTO:69:d98e42",
                        "marker": {
                            "line": {
                                "color": "rgb(247, 246, 246)"
                            },
                            "size": 8,
                            "color": "rgb(58, 71, 232)"
                        },
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "markers",
                        "name": "No VC Backed",
                        "type": "scatter",
                        "xsrc": "ASCIVOLETTO:69:25d6d6",
                        "ysrc": "ASCIVOLETTO:69:11eda5",
                        "marker": {
                            "size": 8,
                            "color": "rgb(183, 167, 109)"
                        },
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "x": 0.5,
                        "text": "Excess Number of Reviews with Quarter Fixed-Effect (All Position Including Post-Joiner)"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -12,
                            12
                        ],
                        "title": {
                            "text": "Quarters to Deal"
                        },
                        "nticks": 15,
                        "showline": true,
                        "autorange": false,
                        "linewidth": 1
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -1,
                            1
                        ],
                        "title": {
                            "text": "N Reviews per Quarter"
                        },
                        "autorange": false
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 0.0001,
                            "y0": -1,
                            "y1": 1,
                            "line": {
                                "color": "rgb(13, 13, 13)",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(8, 8, 8)"
                        },
                        {
                            "x0": -12,
                            "x1": 12,
                            "y0": 0,
                            "y1": 0.001,
                            "line": {
                                "color": "rgb(8, 8, 8)",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(5, 5, 5)"
                        },
                        {
                            "x0": -12,
                            "x1": -11.9999,
                            "y0": -1,
                            "y1": 1,
                            "line": {
                                "color": "rgb(3, 3, 3)",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(5, 5, 5)"
                        },
                        {
                            "x0": -12,
                            "x1": 12,
                            "y0": -1,
                            "y1": -0.9999,
                            "line": {
                                "color": "rgb(5, 5, 5)",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(5, 5, 5)"
                        }
                    ],
                    "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/~ASCIVOLETTO",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/96.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": "2023-03-30 13:28:23",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ASCIVOLETTO",
                "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-19T13:24:55.687021Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Esanta/126.embed",
            "fid": "Esanta:126",
            "filename": "plot from API (67)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Esanta/126/9_M1LB0HM4Y2Y69TJLFASCJVU2UI2QA0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Esanta/126/2_7RD3P8JXC6MQ7MHWB4KFDX3CIOB17M.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Esanta/126/8_D4SW097H4F93YV2E89RZGHDFI0NK6F.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Esanta/126/9_M1LB0HM4Y2Y69TJLFASCJVU2UI2QA0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Esanta:126",
                "plots": "https://api.plotly.com/v2/plots/Esanta:126",
                "parent": "https://api.plotly.com/v2/folders/home?user=Esanta"
            },
            "owner": "Esanta",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Systolic vs Diastolic",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Esanta/126/systolic-vs-diastolic/",
            "world_readable": true,
            "date_modified": "2024-06-18T14:04:07.372Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Esanta/126/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "blue"
                        },
                        "mode": "lines markers",
                        "name": "Systolic",
                        "type": "scatter",
                        "xsrc": "Esanta:127:53db3d",
                        "ysrc": "Esanta:127:69d0c7",
                        "textsrc": "Esanta:127:7f39e5"
                    },
                    {
                        "line": {
                            "color": "green"
                        },
                        "mode": "lines markers",
                        "name": "Diastolic",
                        "type": "scatter",
                        "xsrc": "Esanta:127:53db3d",
                        "ysrc": "Esanta:127:a2d877",
                        "textsrc": "Esanta:127:7f39e5"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Esanta",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-27 19:43:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Esanta",
                "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-19T13:19:35.203293Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~pabitrag858/1.embed",
            "fid": "pabitrag858:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/pabitrag858/1/9_9A2WF0KBYN5MZSXHZZSF5FXZLUJMQO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/pabitrag858/1/2_Y4BT8EQJLD5UU9IWURHPRUKNDXZ61C.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/pabitrag858/1/8_C7PXL9Q3ENOPT7D1I79UWOFTT1O8KA.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/pabitrag858/1/9_9A2WF0KBYN5MZSXHZZSF5FXZLUJMQO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/pabitrag858:1",
                "plots": "https://api.plotly.com/v2/plots/pabitrag858:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=pabitrag858"
            },
            "owner": "pabitrag858",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~pabitrag858/1/",
            "world_readable": true,
            "date_modified": "2024-04-19T13:19:35.213Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~pabitrag858/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "bar",
                        "xsrc": "pabitrag858:0:24072e",
                        "ysrc": "pabitrag858:0:4a96ae",
                        "boxpoints": false,
                        "orientation": "v",
                        "autocolorscale": true
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            2.5
                        ],
                        "title": {
                            "text": "Ratio"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            36
                        ],
                        "title": {
                            "text": "KN"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~pabitrag858",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-19 13:17:41",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "pabitrag858",
                "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-19T13:18:53.614309Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Sam_C./34.embed",
            "fid": "Sam_C.:34",
            "filename": "Chronogramme Rocket League - 030424 Verbatims Plot",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Sam_C./34/9_TCU58TIMSCA2WKCYAIPPJKXF8DF7UF.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Sam_C./34/2_YG0MYCPIE0DV2EADBR28JH0VQ3X5C4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Sam_C./34/8_ERWVNAH8V47B2QYZ76B47HGEIVDBK1.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Sam_C./34/9_TCU58TIMSCA2WKCYAIPPJKXF8DF7UF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Sam_C.:34",
                "plots": "https://api.plotly.com/v2/plots/Sam_C.:34",
                "parent": "https://api.plotly.com/v2/folders/home?user=Sam_C."
            },
            "owner": "Sam_C.",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Sam_C./34/",
            "world_readable": true,
            "date_modified": "2024-04-24T13:41:21.404Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Sam_C./34/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": true,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "fill": "none",
                        "line": {
                            "color": "rgb(29, 186, 17)",
                            "shape": "hv",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "text": ""
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Sam_C.:14:435937",
                        "ysrc": "Sam_C.:14:3db9e8",
                        "error_x": {
                            "type": "percent",
                            "color": "rgb(229, 50, 6)",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": true,
                            "thickness": 2
                        },
                        "hoverinfo": "x+y+text",
                        "hoverlabel": {
                            "align": "auto"
                        },
                        "connectgaps": true,
                        "orientation": "v",
                        "hovertemplate": ""
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "family": "Open Sans"
                    },
                    "title": {
                        "text": "Chronogramme d'une session de jeu sur Rocket League - 030424"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -4.510705117246817,
                            48.92996961278567
                        ],
                        "title": {
                            "text": "Temps en heures et minutes (00:00:00)"
                        },
                        "showgrid": false,
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.6145611237349335,
                            14.034736651480676
                        ],
                        "title": {
                            "text": "Échelle de la sensation de présence (de 0 à 8)"
                        },
                        "showgrid": false,
                        "autorange": true
                    },
                    "modebar": {
                        "orientation": "h"
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 1.0672002225499793,
                            "y": 5.993955593052407,
                            "ax": -68,
                            "ay": -48,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "En général, <br>aux engagements, je <br>\nsuis assez concentré.&nbsp;",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 2.0099622766793948,
                            "y": 6.989136271294129,
                            "ax": -100,
                            "ay": -105,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Aux moments où <br>je peux marquer, <br>\nj'augmente d'un cran.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 3.039293746753504,
                            "y": 5.004528713687891,
                            "ax": -95,
                            "ay": 52,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "En général, quand je l'a <br>voit dedans, ça downgrade <br>\nmon sentiment de présence.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 3.9711316397228638,
                            "y": 5.999999999999999,
                            "ax": -54,
                            "ay": -115,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Je suis remonté <br>parce que c'était<br>\nun engagement",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 4.994996150885297,
                            "y": 4.996699669966996,
                            "ax": -85,
                            "ay": 108,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Je pousse mon allié et on marque,<br>mais je m'y attend pas.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 5.989692052771052,
                            "y": 7.004253207451828,
                            "ax": -115,
                            "ay": -180,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Je me dis, il reste une minute de jeu, <br>les conditions font qu'on marque un but.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 6.998964755736025,
                            "y": 7.984634088056643,
                            "ax": -18,
                            "ay": -58,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Je vais essayer de <br>m'impliquer<br>\nle plus possible.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 7.993457314515318,
                            "y": 7.004253207451828,
                            "ax": -45,
                            "ay": 127,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Je redescend un peu <br>parce qu'on est après <br>\nl'engagement.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 9.00273001748029,
                            "y": 4.985983661138786,
                            "ax": -31,
                            "ay": 142,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Au moment où je m'en rend compte,<br>[...] on perd la balle, on perd le but.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 10.012706536835058,
                            "y": 6.972539355372741,
                            "ax": -51,
                            "ay": -206,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Là, je vois que c'est moi qui est <br>l'engagement, du coup <br>\nje me réimplique direct",
                            "arrowhead": 4,
                            "arrowsize": 1.4,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 11.009310544783732,
                            "y": 6.0152686656862,
                            "ax": -10,
                            "ay": 74,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Là on a <br>marqué, du<br>\ncoup je <br>\nredescend à 6.",
                            "arrowhead": 4,
                            "arrowsize": 1.4,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 13.00463000985047,
                            "y": 5.007285196792071,
                            "ax": -10,
                            "ay": 100,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Là on a deux points <br>d'avance, je suis plutôt <br>\nchill dans ma game.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.4,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 14.01188214876259,
                            "y": 6.988461226389938,
                            "ax": -56,
                            "ay": -37,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Je suis remonté <br>d'un coup parce<br>\nqu'on a moyen de<br>\nmettre un but.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 15.014025802713087,
                            "y": 5.991181743138013,
                            "ax": 8,
                            "ay": 61,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Je suis à 6 <br>l'histoire d'assurer <br>\nl'engagement.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.4,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 16.02347959969207,
                            "y": 6.999162967576652,
                            "ax": -81,
                            "ay": -95,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "On prend un but, donc <br>je m'implique.",
                            "arrowhead": 4,
                            "arrowsize": 1.4,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 17.003545765321437,
                            "y": 7.983723156754357,
                            "ax": -60,
                            "ay": -107,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Genre vraiment into <br>the game, &nbsp;je suis <br>\nvraiment à fond.",
                            "arrowhead": 4,
                            "arrowsize": 1.4,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 18.012635531431542,
                            "y": 5.02440057134775,
                            "ax": -58,
                            "ay": 146,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Et là d'un coup, je me loupe, <br>et je redescend direct à 5.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.4,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 19.00255328367717,
                            "y": 5.984401973092478,
                            "ax": -64,
                            "ay": -222,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Là il essaie de me faire <br>la passe, je me <br>\nréimplique un peu plus.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 20.017456517760504,
                            "y": 4.024782030189051,
                            "ax": -9,
                            "ay": 45,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Là le seum, on est à 3-2, <br>j'ai un point d'avance.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 21.00648354683861,
                            "y": 5.986326624130148,
                            "ax": -38,
                            "ay": -123,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Puisque c'est <br>moi qui est <br>\nl'engagement.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 22.012992191580768,
                            "y": 6.977805384902647,
                            "ax": -68,
                            "ay": -243,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Je me dis, va vraiment pas <br>falloir la lâcher, on est revenu <br>\ncomme si c'était 0-0.",
                            "arrowhead": 4,
                            "arrowsize": 1.4,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 23.05420803096921,
                            "y": 5.004473870743789,
                            "ax": -33,
                            "ay": 141,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Là je me suis <br>désimpliqué,<br>\nje suis descendu.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 24.026009481065085,
                            "y": 5.976700616744007,
                            "ax": -27,
                            "ay": -147,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Je câble dans ma <br>tête quand je vois<br>\nqu'ils marquent,<br>\non est à 4-4.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 24.99767524864365,
                            "y": 6.989246104827298,
                            "ax": -6,
                            "ay": -181,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Et là c'est moi qui <br>engage, je me réimplique.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 26.039026770549405,
                            "y": 4.005254729183161,
                            "ax": -26,
                            "ay": 30,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Je suis vraiment full <br>détente, on a gagné.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 27.045535415291564,
                            "y": 4.9755958485853675,
                            "ax": -8,
                            "ay": -121,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Je remonte à 5, <br>je vais essayer <br>\nde follow <br>\non verra.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 27.982629670741158,
                            "y": 5.995952631516289,
                            "ax": 14,
                            "ay": -151,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "ça se trouve il <br>va faire des <br>\nconneries, <br>\nje suis remonté.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 28.989138315483316,
                            "y": 4.01299510997129,
                            "ax": -74,
                            "ay": 90,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Je redescend à 5, <br>parce que je suis <br>\nen mode trop <br>\nbizarre la game.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 30.03035415487176,
                            "y": 5.9908293077368135,
                            "ax": 11,
                            "ay": -259,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Je vois que mon mate <br>prend pas l'engagement. <br>\nEt je suis en mode, <br>\nqu'est-ce qu'il fait ce <br>\ngros crado ?!?<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 31.036862799613917,
                            "y": 4.002955342469942,
                            "ax": 4,
                            "ay": 99,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Et puis là je redescend <br>à 4 parce que je vois <br>\nqu'il vient de faire <br>\nun move de légende.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 32.043371444356076,
                            "y": 4.9840945213436365,
                            "ax": -12,
                            "ay": -88,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Là je passe <br>en mode <br>\nah ouais, <br>\nquand je la <br>\nvois rouler <br>\nsur le poteau.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 33.01517289445195,
                            "y": 5.975453899997265,
                            "ax": -6,
                            "ay": -170,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Je fonce dans la balle, <br>et je me dis, <br>\nva si elle passe.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 34.02168153919411,
                            "y": 6.977033478430828,
                            "ax": 41,
                            "ay": -229,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Je monte à 16, <br>je spam les messages <br>\npour troll et tout.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 35.062897378582555,
                            "y": 5.004534920903505,
                            "ax": -29,
                            "ay": 60,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Bon, en vrai on a <br>fait un belle échange.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.4,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 36.03469882867843,
                            "y": 4.0131755422498765,
                            "ax": 20,
                            "ay": 99,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "On est en full léger, <br>on a 4 points d'avance.",
                            "arrowhead": 4,
                            "arrowsize": 1.4,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 37.07591466806687,
                            "y": 5.985607992404754,
                            "ax": -20,
                            "ay": -79,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Je sais que <br>je suis observé, <br>\nje fais une last.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 38.013008923516466,
                            "y": 6.992370388837974,
                            "ax": -3,
                            "ay": -140,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Je vois que j'engage, <br>on est à 1-1.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 39.01951756825863,
                            "y": 7.978586613915413,
                            "ax": 58,
                            "ay": -204,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Puisqu'on est vraiment stuck <br>sur une partie du terrain <br>\ndepuis une minute entière.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.4,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 40.02602621300078,
                            "y": 6.0061541637605345,
                            "ax": -4,
                            "ay": 63,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "On est à 2-1, <br>[...] nous on fait <br>\nvraiment de la merde.",
                            "arrowhead": 4,
                            "arrowsize": 1.4,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 41.032534857742945,
                            "y": 6.982097303160083,
                            "ax": 48,
                            "ay": -165,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "là je vois que <br>c'est de ma faute,<br>\n[...] en plus<br>\nje suis dégoûté.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 42.0390435024851,
                            "y": 7.968108066523965,
                            "ax": 106,
                            "ay": -57,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Je vois les chiffres <br>qui apparaissent, <br>\nje me dis y a peut-être <br>\nmoyen de moyenner.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.4,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 43.04555214722726,
                            "y": 4.002902456571986,
                            "ax": -18,
                            "ay": 54,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "J'ai envie de quitter <br>le match, la désillusion totale.",
                            "arrowhead": 4,
                            "arrowsize": 1.4,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Sam_C.",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/4.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "Axergonomie",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-28 09:52:41",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Sam_C.",
                "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-19T13:14:43.325211Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ayaseminoli/2.embed",
            "fid": "ayaseminoli:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ayaseminoli/2/9_703BLT25HJ8R8AY0EPAH9IWT0HTTV8.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ayaseminoli/2/2_MPMXAWSLWWMRDLW72QSVCRRITBQDBZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ayaseminoli/2/8_0XK0OFMQZ3LXHA4QMA1ZM565UK5VD5.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ayaseminoli/2/9_703BLT25HJ8R8AY0EPAH9IWT0HTTV8.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ayaseminoli:2",
                "plots": "https://api.plotly.com/v2/plots/ayaseminoli:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=ayaseminoli"
            },
            "owner": "ayaseminoli",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~ayaseminoli/2/",
            "world_readable": true,
            "date_modified": "2024-04-19T13:14:43.339Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ayaseminoli/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "hole": 0.73,
                        "meta": {
                            "columnNames": {
                                "text": "A",
                                "labels": "A",
                                "values": "B",
                                "textposition": "A"
                            }
                        },
                        "mode": "markers",
                        "pull": 0,
                        "sort": true,
                        "type": "pie",
                        "marker": {
                            "line": {
                                "width": 0
                            }
                        },
                        "opacity": 1,
                        "textsrc": "ayaseminoli:0:63272a",
                        "rotation": 0,
                        "textfont": {
                            "size": 12,
                            "color": "rgb(253, 253, 253)",
                            "family": "Arial"
                        },
                        "textinfo": "percent",
                        "direction": "clockwise",
                        "hoverinfo": "percent+label+value+text",
                        "labelssrc": "ayaseminoli:0:63272a",
                        "valuessrc": "ayaseminoli:0:ab9c55",
                        "texttemplate": "",
                        "insidetextfont": {
                            "size": 12
                        },
                        "outsidetextfont": {
                            "size": 12
                        },
                        "textpositionsrc": "ayaseminoli:0:63272a",
                        "insidetextorientation": "auto"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 12,
                        "color": "rgb(10, 19, 37)"
                    },
                    "title": {
                        "font": {
                            "size": 17,
                            "color": "rgb(10, 19, 37)"
                        }
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.5,
                        "y": -0.08000000000000007,
                        "font": {
                            "size": 16,
                            "color": "rgb(10, 19, 37)"
                        },
                        "xanchor": "center",
                        "yanchor": "bottom",
                        "orientation": "h"
                    },
                    "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"
                    },
                    "piecolorway": [
                        "#50BCBA",
                        "#00829A",
                        "#587183",
                        "#F8AA00",
                        "#BC0079",
                        "#F8AA00",
                        "#002E67",
                        "#cccccc"
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ayaseminoli",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/27.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-19 12:48:26",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ayaseminoli",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}