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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTAzLTI5KzAyJTNBMjclM0E1OS42NDYwMjQlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wMy0yOSswMyUzQTE2JTNBMjYuOTU0MDAwJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-03-29T03:16:26.954000Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~asongupup/160.embed",
            "fid": "asongupup:160",
            "filename": "CH1_1hz50uv",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/asongupup/160/9_CL4ZL0ILRRRUWH51MG8ELZVUY3PL8E.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/asongupup/160/2_0Z1L57JA2DPSI3RVITVDW0PINLWLK7.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/asongupup/160/8_U65TEAUK6IMNC7EUG30IE7H8IEKJ8R.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/asongupup/160/9_CL4ZL0ILRRRUWH51MG8ELZVUY3PL8E.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/asongupup:160",
                "plots": "https://api.plotly.com/v2/plots/asongupup:160",
                "parent": "https://api.plotly.com/v2/folders/home?user=asongupup"
            },
            "owner": "asongupup",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Raw eeg",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~asongupup/160/raw-eeg/",
            "world_readable": true,
            "date_modified": "2024-03-29T03:16:27.548Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~asongupup/160/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,113.985,188.955)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:161:ef5dcf",
                        "ysrc": "asongupup:161:a62fbe",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(0,113.985,188.955)"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,113.985,188.955)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:161:aa1fe6",
                        "ysrc": "asongupup:161:661024",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(0,113.985,188.955)"
                        },
                        "visible": true,
                        "showlegend": false
                    }
                ],
                "layout": {
                    "title": "Raw eeg",
                    "width": 840,
                    "height": 630,
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0,
                        "pad": 0
                    },
                    "scene1": {
                        "domain": {
                            "x": [
                                0.13,
                                0.905
                            ],
                            "y": [
                                0.583837209302326,
                                0.925
                            ]
                        }
                    },
                    "scene2": {
                        "domain": {
                            "x": [
                                0.13,
                                0.905
                            ],
                            "y": [
                                0.11,
                                0.451162790697674
                            ]
                        }
                    },
                    "xaxis1": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            50
                        ],
                        "ticks": "inside",
                        "title": "Time (s)",
                        "anchor": "y1",
                        "domain": [
                            0.13,
                            0.905
                        ],
                        "mirror": "ticks",
                        "ticklen": 6.51,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "5",
                            "10",
                            "15",
                            "20",
                            "25",
                            "30",
                            "35",
                            "40",
                            "45",
                            "50"
                        ],
                        "tickvals": [
                            0,
                            5,
                            10,
                            15,
                            20,
                            25,
                            30,
                            35,
                            40,
                            45,
                            50
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis2": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            250
                        ],
                        "ticks": "inside",
                        "title": "Frequency (Hz)",
                        "anchor": "y2",
                        "domain": [
                            0.13,
                            0.905
                        ],
                        "mirror": "ticks",
                        "ticklen": 6.51,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "50",
                            "100",
                            "150",
                            "200",
                            "250"
                        ],
                        "tickvals": [
                            0,
                            50,
                            100,
                            150,
                            200,
                            250
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis1": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -60,
                            -12.449921661606
                        ],
                        "ticks": "inside",
                        "title": "uV",
                        "anchor": "x1",
                        "domain": [
                            0.583837209302326,
                            0.925
                        ],
                        "mirror": "ticks",
                        "ticklen": 6.51,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "-60",
                            "-50",
                            "-40",
                            "-30",
                            "-20"
                        ],
                        "tickvals": [
                            -60,
                            -50,
                            -40,
                            -30,
                            -20
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis2": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0,
                            80
                        ],
                        "ticks": "inside",
                        "title": "Amplitude",
                        "anchor": "x2",
                        "domain": [
                            0.11,
                            0.451162790697674
                        ],
                        "mirror": "ticks",
                        "ticklen": 6.51,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "20",
                            "40",
                            "60",
                            "80"
                        ],
                        "tickvals": [
                            0,
                            20,
                            40,
                            60,
                            80
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "autosize": false,
                    "hovermode": "closest",
                    "titlefont": {
                        "color": "rgba(0,0,0,0)"
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.5175,
                            "y": 0.935,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Raw eeg",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.5175,
                            "y": 0.461162790697674,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Raw FFT",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        }
                    ],
                    "paper_bgcolor": "rgb(255,255,255)"
                }
            },
            "height": 630,
            "width": 840,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~asongupup",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/6.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-02-27 02:46:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "asongupup",
                "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-03-29T03:12:01.852551Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~asongupup/158.embed",
            "fid": "asongupup:158",
            "filename": "CH1_06hz",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/asongupup/158/9_8X1O3XATX1FYHXUM77AMCA310DNS6X.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/asongupup/158/2_KDJLFZZRHZM5XWTAVVJSGD6IZSOTRD.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/asongupup/158/8_QGUQ2UYU9USL4VHH8O0W85NO6VPM6Q.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/asongupup/158/9_8X1O3XATX1FYHXUM77AMCA310DNS6X.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/asongupup:158",
                "plots": "https://api.plotly.com/v2/plots/asongupup:158",
                "parent": "https://api.plotly.com/v2/folders/home?user=asongupup"
            },
            "owner": "asongupup",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Raw eeg",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~asongupup/158/raw-eeg/",
            "world_readable": true,
            "date_modified": "2024-03-29T03:12:02.313Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~asongupup/158/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,113.985,188.955)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:159:a5ad83",
                        "ysrc": "asongupup:159:dcf823",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(0,113.985,188.955)"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,113.985,188.955)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:159:78256d",
                        "ysrc": "asongupup:159:0855dd",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(0,113.985,188.955)"
                        },
                        "visible": true,
                        "showlegend": false
                    }
                ],
                "layout": {
                    "title": "Raw eeg",
                    "width": 840,
                    "height": 630,
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0,
                        "pad": 0
                    },
                    "scene1": {
                        "domain": {
                            "x": [
                                0.13,
                                0.905
                            ],
                            "y": [
                                0.583837209302326,
                                0.925
                            ]
                        }
                    },
                    "scene2": {
                        "domain": {
                            "x": [
                                0.13,
                                0.905
                            ],
                            "y": [
                                0.11,
                                0.451162790697674
                            ]
                        }
                    },
                    "xaxis1": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            30
                        ],
                        "ticks": "inside",
                        "title": "Time (s)",
                        "anchor": "y1",
                        "domain": [
                            0.13,
                            0.905
                        ],
                        "mirror": "ticks",
                        "ticklen": 6.51,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "5",
                            "10",
                            "15",
                            "20",
                            "25",
                            "30"
                        ],
                        "tickvals": [
                            0,
                            5,
                            10,
                            15,
                            20,
                            25,
                            30
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis2": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            250
                        ],
                        "ticks": "inside",
                        "title": "Frequency (Hz)",
                        "anchor": "y2",
                        "domain": [
                            0.13,
                            0.905
                        ],
                        "mirror": "ticks",
                        "ticklen": 6.51,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "50",
                            "100",
                            "150",
                            "200",
                            "250"
                        ],
                        "tickvals": [
                            0,
                            50,
                            100,
                            150,
                            200,
                            250
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis1": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -60,
                            -14.8862618072345
                        ],
                        "ticks": "inside",
                        "title": "uV",
                        "anchor": "x1",
                        "domain": [
                            0.583837209302326,
                            0.925
                        ],
                        "mirror": "ticks",
                        "ticklen": 6.51,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "-60",
                            "-50",
                            "-40",
                            "-30",
                            "-20"
                        ],
                        "tickvals": [
                            -60,
                            -50,
                            -40,
                            -30,
                            -20
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis2": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0,
                            80
                        ],
                        "ticks": "inside",
                        "title": "Amplitude",
                        "anchor": "x2",
                        "domain": [
                            0.11,
                            0.451162790697674
                        ],
                        "mirror": "ticks",
                        "ticklen": 6.51,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "20",
                            "40",
                            "60",
                            "80"
                        ],
                        "tickvals": [
                            0,
                            20,
                            40,
                            60,
                            80
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "autosize": false,
                    "hovermode": "closest",
                    "titlefont": {
                        "color": "rgba(0,0,0,0)"
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.5175,
                            "y": 0.935,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Raw eeg",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.5175,
                            "y": 0.461162790697674,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Raw FFT",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        }
                    ],
                    "paper_bgcolor": "rgb(255,255,255)"
                }
            },
            "height": 630,
            "width": 840,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~asongupup",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/6.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-02-27 02:46:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "asongupup",
                "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-03-29T03:01:46.577449Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jmoney23/2.embed",
            "fid": "jmoney23:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/jmoney23:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/jmoney23:2/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/jmoney23:2/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/jmoney23:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jmoney23:2",
                "plots": "https://api.plotly.com/v2/plots/jmoney23:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=jmoney23"
            },
            "owner": "jmoney23",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~jmoney23/2/",
            "world_readable": true,
            "date_modified": "2024-03-29T03:01:46.587Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jmoney23/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y"
                            }
                        },
                        "name": "Submissions",
                        "type": "bar",
                        "xsrc": "jmoney23:1:21cfa4",
                        "ysrc": "jmoney23:1:2d65b6"
                    },
                    {
                        "x": [],
                        "y": [],
                        "name": "Comments",
                        "type": "bar"
                    },
                    {
                        "x": [],
                        "y": [],
                        "name": "Replies",
                        "type": "bar"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "2024-03-10 12:00",
                            "2024-03-28 12:00"
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            26.31578947368421
                        ],
                        "autorange": true
                    },
                    "barmode": "stack",
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jmoney23",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/82.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-29 02:44:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jmoney23",
                "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-03-29T03:00:31.954482Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~rajputankur57/1.embed",
            "fid": "rajputankur57:1",
            "filename": "first_chart",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/rajputankur57:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/rajputankur57:1/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/rajputankur57/1/8_CZGQWQ4GVEHUB15PVO5TN833U9A40C.png",
                "list-thumb": "https://api.plotly.com/v2/files/rajputankur57:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/rajputankur57:1",
                "plots": "https://api.plotly.com/v2/plots/rajputankur57:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=rajputankur57"
            },
            "owner": "rajputankur57",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~rajputankur57/1/",
            "world_readable": true,
            "date_modified": "2024-03-29T03:00:45.692Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~rajputankur57/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "rajputankur57:2:3bd107",
                        "ysrc": "rajputankur57:2:38caa4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa",
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "",
                        "orientation": "v",
                        "hovertemplate": "x=%{x}<br>y=%{y}<extra></extra>"
                    }
                ],
                "layout": {
                    "xaxis": {
                        "title": {
                            "text": "x"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "y"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "t": 60
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~rajputankur57",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/55.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-29 02:51:47",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "rajputankur57",
                "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-03-29T02:56:49.177501Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~asongupup/156.embed",
            "fid": "asongupup:156",
            "filename": "Ch1_eee",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/asongupup/156/9_VFDKUKXZTRVRI0H8FSFD6MBBLZQ6F9.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/asongupup/156/2_3L4URWP2C25YPY44LNZXVU9GL1OZEA.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/asongupup/156/8_ZR12WWF16GJJZKULEEJSRYS08AN5YR.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/asongupup/156/9_VFDKUKXZTRVRI0H8FSFD6MBBLZQ6F9.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/asongupup:156",
                "plots": "https://api.plotly.com/v2/plots/asongupup:156",
                "parent": "https://api.plotly.com/v2/folders/home?user=asongupup"
            },
            "owner": "asongupup",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Raw eeg",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~asongupup/156/raw-eeg/",
            "world_readable": true,
            "date_modified": "2024-03-29T02:56:51.226Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~asongupup/156/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,113.985,188.955)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:157:4d78b3",
                        "ysrc": "asongupup:157:84c374",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(0,113.985,188.955)"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,113.985,188.955)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:157:47e1d5",
                        "ysrc": "asongupup:157:b55f5b",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(0,113.985,188.955)"
                        },
                        "visible": true,
                        "showlegend": false
                    }
                ],
                "layout": {
                    "title": "Raw eeg",
                    "width": 840,
                    "height": 630,
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0,
                        "pad": 0
                    },
                    "scene1": {
                        "domain": {
                            "x": [
                                0.13,
                                0.905
                            ],
                            "y": [
                                0.583837209302326,
                                0.925
                            ]
                        }
                    },
                    "scene2": {
                        "domain": {
                            "x": [
                                0.13,
                                0.905
                            ],
                            "y": [
                                0.11,
                                0.451162790697674
                            ]
                        }
                    },
                    "xaxis1": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            70
                        ],
                        "ticks": "inside",
                        "title": "Time (s)",
                        "anchor": "y1",
                        "domain": [
                            0.13,
                            0.905
                        ],
                        "mirror": "ticks",
                        "ticklen": 6.51,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "10",
                            "20",
                            "30",
                            "40",
                            "50",
                            "60",
                            "70"
                        ],
                        "tickvals": [
                            0,
                            10,
                            20,
                            30,
                            40,
                            50,
                            60,
                            70
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis2": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            250
                        ],
                        "ticks": "inside",
                        "title": "Frequency (Hz)",
                        "anchor": "y2",
                        "domain": [
                            0.13,
                            0.905
                        ],
                        "mirror": "ticks",
                        "ticklen": 6.51,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "50",
                            "100",
                            "150",
                            "200",
                            "250"
                        ],
                        "tickvals": [
                            0,
                            50,
                            100,
                            150,
                            200,
                            250
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis1": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -39,
                            -35
                        ],
                        "ticks": "inside",
                        "title": "uV",
                        "anchor": "x1",
                        "domain": [
                            0.583837209302326,
                            0.925
                        ],
                        "mirror": "ticks",
                        "ticklen": 6.51,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "-39",
                            "-38",
                            "-37",
                            "-36",
                            "-35"
                        ],
                        "tickvals": [
                            -39,
                            -38,
                            -37,
                            -36,
                            -35
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis2": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0,
                            80
                        ],
                        "ticks": "inside",
                        "title": "Amplitude",
                        "anchor": "x2",
                        "domain": [
                            0.11,
                            0.451162790697674
                        ],
                        "mirror": "ticks",
                        "ticklen": 6.51,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "20",
                            "40",
                            "60",
                            "80"
                        ],
                        "tickvals": [
                            0,
                            20,
                            40,
                            60,
                            80
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "autosize": false,
                    "hovermode": "closest",
                    "titlefont": {
                        "color": "rgba(0,0,0,0)"
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.5175,
                            "y": 0.935,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Raw eeg",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.5175,
                            "y": 0.461162790697674,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Raw FFT",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        }
                    ],
                    "paper_bgcolor": "rgb(255,255,255)"
                }
            },
            "height": 630,
            "width": 840,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~asongupup",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/6.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-02-27 02:46:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "asongupup",
                "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-03-29T02:55:01.366012Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~asongupup/154.embed",
            "fid": "asongupup:154",
            "filename": "Ch1_04hz4",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/asongupup/154/9_M17SNMAZITNOP3L5KVNV0FVYGL95OT.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/asongupup/154/2_QBRJNPHOR0NOI6YMAKZZGHQKK10YMY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/asongupup/154/8_YKDANMHZSRUJZQP0L9PU44ZDV4F41F.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/asongupup/154/9_M17SNMAZITNOP3L5KVNV0FVYGL95OT.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/asongupup:154",
                "plots": "https://api.plotly.com/v2/plots/asongupup:154",
                "parent": "https://api.plotly.com/v2/folders/home?user=asongupup"
            },
            "owner": "asongupup",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Raw eeg",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~asongupup/154/raw-eeg/",
            "world_readable": true,
            "date_modified": "2024-03-29T02:55:02.040Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~asongupup/154/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,113.985,188.955)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:155:4c985a",
                        "ysrc": "asongupup:155:52a916",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(0,113.985,188.955)"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,113.985,188.955)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:155:cc9873",
                        "ysrc": "asongupup:155:48a0c5",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(0,113.985,188.955)"
                        },
                        "visible": true,
                        "showlegend": false
                    }
                ],
                "layout": {
                    "title": "Raw eeg",
                    "width": 840,
                    "height": 630,
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0,
                        "pad": 0
                    },
                    "scene1": {
                        "domain": {
                            "x": [
                                0.13,
                                0.905
                            ],
                            "y": [
                                0.583837209302326,
                                0.925
                            ]
                        }
                    },
                    "scene2": {
                        "domain": {
                            "x": [
                                0.13,
                                0.905
                            ],
                            "y": [
                                0.11,
                                0.451162790697674
                            ]
                        }
                    },
                    "xaxis1": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            70
                        ],
                        "ticks": "inside",
                        "title": "Time (s)",
                        "anchor": "y1",
                        "domain": [
                            0.13,
                            0.905
                        ],
                        "mirror": "ticks",
                        "ticklen": 6.51,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "10",
                            "20",
                            "30",
                            "40",
                            "50",
                            "60",
                            "70"
                        ],
                        "tickvals": [
                            0,
                            10,
                            20,
                            30,
                            40,
                            50,
                            60,
                            70
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis2": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            250
                        ],
                        "ticks": "inside",
                        "title": "Frequency (Hz)",
                        "anchor": "y2",
                        "domain": [
                            0.13,
                            0.905
                        ],
                        "mirror": "ticks",
                        "ticklen": 6.51,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "50",
                            "100",
                            "150",
                            "200",
                            "250"
                        ],
                        "tickvals": [
                            0,
                            50,
                            100,
                            150,
                            200,
                            250
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis1": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -39,
                            -35
                        ],
                        "ticks": "inside",
                        "title": "uV",
                        "anchor": "x1",
                        "domain": [
                            0.583837209302326,
                            0.925
                        ],
                        "mirror": "ticks",
                        "ticklen": 6.51,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "-39",
                            "-38",
                            "-37",
                            "-36",
                            "-35"
                        ],
                        "tickvals": [
                            -39,
                            -38,
                            -37,
                            -36,
                            -35
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis2": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0,
                            80
                        ],
                        "ticks": "inside",
                        "title": "Amplitude",
                        "anchor": "x2",
                        "domain": [
                            0.11,
                            0.451162790697674
                        ],
                        "mirror": "ticks",
                        "ticklen": 6.51,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "20",
                            "40",
                            "60",
                            "80"
                        ],
                        "tickvals": [
                            0,
                            20,
                            40,
                            60,
                            80
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "autosize": false,
                    "hovermode": "closest",
                    "titlefont": {
                        "color": "rgba(0,0,0,0)"
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.5175,
                            "y": 0.935,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Raw eeg",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.5175,
                            "y": 0.461162790697674,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Raw FFT",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        }
                    ],
                    "paper_bgcolor": "rgb(255,255,255)"
                }
            },
            "height": 630,
            "width": 840,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~asongupup",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/6.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-02-27 02:46:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "asongupup",
                "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-03-29T02:48:38.094960Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~asongupup/152.embed",
            "fid": "asongupup:152",
            "filename": "Ch1_1mv6hz4",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/asongupup/152/9_AOZHRRLQGU23QVW7VZH7M4VBCYXUF5.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/asongupup/152/2_5H8PGVO3QUTMGUVQ26E1TY8ZK91O18.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/asongupup/152/8_6SFIMVNACNMY1ZP4Q8W5K33OSF16TG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/asongupup/152/9_AOZHRRLQGU23QVW7VZH7M4VBCYXUF5.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/asongupup:152",
                "plots": "https://api.plotly.com/v2/plots/asongupup:152",
                "parent": "https://api.plotly.com/v2/folders/home?user=asongupup"
            },
            "owner": "asongupup",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Raw eeg",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~asongupup/152/raw-eeg/",
            "world_readable": true,
            "date_modified": "2024-03-29T02:48:38.581Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~asongupup/152/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,113.985,188.955)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:153:167341",
                        "ysrc": "asongupup:153:62db22",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(0,113.985,188.955)"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,113.985,188.955)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:153:6b5fc1",
                        "ysrc": "asongupup:153:2f400a",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(0,113.985,188.955)"
                        },
                        "visible": true,
                        "showlegend": false
                    }
                ],
                "layout": {
                    "title": "Raw eeg",
                    "width": 840,
                    "height": 630,
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0,
                        "pad": 0
                    },
                    "scene1": {
                        "domain": {
                            "x": [
                                0.13,
                                0.905
                            ],
                            "y": [
                                0.583837209302326,
                                0.925
                            ]
                        }
                    },
                    "scene2": {
                        "domain": {
                            "x": [
                                0.13,
                                0.905
                            ],
                            "y": [
                                0.11,
                                0.451162790697674
                            ]
                        }
                    },
                    "xaxis1": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            30
                        ],
                        "ticks": "inside",
                        "title": "Time (s)",
                        "anchor": "y1",
                        "domain": [
                            0.13,
                            0.905
                        ],
                        "mirror": "ticks",
                        "ticklen": 6.51,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "5",
                            "10",
                            "15",
                            "20",
                            "25",
                            "30"
                        ],
                        "tickvals": [
                            0,
                            5,
                            10,
                            15,
                            20,
                            25,
                            30
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis2": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            250
                        ],
                        "ticks": "inside",
                        "title": "Frequency (Hz)",
                        "anchor": "y2",
                        "domain": [
                            0.13,
                            0.905
                        ],
                        "mirror": "ticks",
                        "ticklen": 6.51,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "50",
                            "100",
                            "150",
                            "200",
                            "250"
                        ],
                        "tickvals": [
                            0,
                            50,
                            100,
                            150,
                            200,
                            250
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis1": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -501.819014766099,
                            500
                        ],
                        "ticks": "inside",
                        "title": "uV",
                        "anchor": "x1",
                        "domain": [
                            0.583837209302326,
                            0.925
                        ],
                        "mirror": "ticks",
                        "ticklen": 6.51,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "-500",
                            "0",
                            "500"
                        ],
                        "tickvals": [
                            -500,
                            0,
                            500
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis2": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0,
                            301.751758537521
                        ],
                        "ticks": "inside",
                        "title": "Amplitude",
                        "anchor": "x2",
                        "domain": [
                            0.11,
                            0.451162790697674
                        ],
                        "mirror": "ticks",
                        "ticklen": 6.51,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "100",
                            "200",
                            "300"
                        ],
                        "tickvals": [
                            0,
                            100,
                            200,
                            300
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "autosize": false,
                    "hovermode": "closest",
                    "titlefont": {
                        "color": "rgba(0,0,0,0)"
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.5175,
                            "y": 0.935,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Raw eeg",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.5175,
                            "y": 0.461162790697674,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Raw FFT",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        }
                    ],
                    "paper_bgcolor": "rgb(255,255,255)"
                }
            },
            "height": 630,
            "width": 840,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~asongupup",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/6.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-02-27 02:46:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "asongupup",
                "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-03-29T02:29:38.719303Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Ai0eN/3.embed",
            "fid": "Ai0eN:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Ai0eN:3/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Ai0eN:3/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/Ai0eN:3/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/Ai0eN:3/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Ai0eN:3",
                "plots": "https://api.plotly.com/v2/plots/Ai0eN:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=Ai0eN"
            },
            "owner": "Ai0eN",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Ai0eN/3/",
            "world_readable": true,
            "date_modified": "2024-03-29T02:29:38.730Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Ai0eN/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "Ai0eN:2:73ed1a",
                        "ysrc": "Ai0eN:2:056988",
                        "error_x": {
                            "type": "constant",
                            "color": "#636efa",
                            "value": 5,
                            "width": 4,
                            "visible": true,
                            "symmetric": true,
                            "thickness": 2,
                            "valueminus": 5
                        },
                        "error_y": {
                            "type": "percent",
                            "color": "#636efa",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": false,
                            "thickness": 2,
                            "valueminus": 10
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Change of volume by the amount of water"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -44.44444444444446,
                            744.4444444444445
                        ],
                        "title": {
                            "text": "Amount of water (ml)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -41.46192185007974,
                            -23.038078149920253
                        ],
                        "title": {
                            "text": "Volume (dB)"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Ai0eN",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-29 00:25:21",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Ai0eN",
                "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-03-29T02:29:23.733423Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ryan.felter064/22.embed",
            "fid": "ryan.felter064:22",
            "filename": "Plot 22",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ryan.felter064/22/9_DT3MI3RYTW6W4QGP0LKQB718E5HVVK.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ryan.felter064/22/2_5MRTZOLTIGOM3HOTN160XRN99M0POF.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ryan.felter064/22/8_A1PLXSN05QYQGZB1KXUSMAB5DGPINU.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ryan.felter064/22/9_DT3MI3RYTW6W4QGP0LKQB718E5HVVK.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ryan.felter064:22",
                "plots": "https://api.plotly.com/v2/plots/ryan.felter064:22",
                "parent": "https://api.plotly.com/v2/folders/home?user=ryan.felter064"
            },
            "owner": "ryan.felter064",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~ryan.felter064/22/",
            "world_readable": true,
            "date_modified": "2024-03-29T02:29:23.745Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ryan.felter064/22/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "Grassland",
                        "type": "bar",
                        "ysrc": "ryan.felter064:21:fbec96",
                        "marker": {
                            "color": "rgb(91, 210, 203)"
                        },
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "B"
                            }
                        },
                        "name": "Shrubland",
                        "type": "bar",
                        "ysrc": "ryan.felter064:21:d14150",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "range": [
                            -0.5,
                            23.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -125.91616026367288,
                            4823.5575239468535
                        ],
                        "title": {
                            "text": "Area (meters squared)"
                        },
                        "autorange": false
                    },
                    "legend": {
                        "x": 0.6476849642004774,
                        "y": 0.7064579256360078
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(237,237,237)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(217,217,217)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(51,51,51)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(51,51,51)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(51,51,51)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(51,51,51)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "rgb(237,237,237)",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(51,51,51)"
                            },
                            "polar": {
                                "bgcolor": "rgb(237,237,237)",
                                "radialaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "angularaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                },
                                "yaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                },
                                "zaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                }
                            },
                            "xaxis": {
                                "ticks": "outside",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "tickcolor": "rgb(51,51,51)",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "yaxis": {
                                "ticks": "outside",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "tickcolor": "rgb(51,51,51)",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "baxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "caxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "bgcolor": "rgb(237,237,237)"
                            },
                            "colorway": [
                                "#F8766D",
                                "#A3A500",
                                "#00BF7D",
                                "#00B0F6",
                                "#E76BF3"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#40004b"
                                    ],
                                    [
                                        0.1,
                                        "#762a83"
                                    ],
                                    [
                                        0.2,
                                        "#9970ab"
                                    ],
                                    [
                                        0.3,
                                        "#c2a5cf"
                                    ],
                                    [
                                        0.4,
                                        "#e7d4e8"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#d9f0d3"
                                    ],
                                    [
                                        0.7,
                                        "#a6dba0"
                                    ],
                                    [
                                        0.8,
                                        "#5aae61"
                                    ],
                                    [
                                        0.9,
                                        "#1b7837"
                                    ],
                                    [
                                        1,
                                        "#00441b"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "rgb(20,44,66)"
                                    ],
                                    [
                                        1,
                                        "rgb(90,179,244)"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "rgb(20,44,66)"
                                    ],
                                    [
                                        1,
                                        "rgb(90,179,244)"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "rgb(237,237,237)",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.3,
                                "fillcolor": "black"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "GGPLOT2"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ryan.felter064",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/72.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-09-26 16:44:25",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ryan.felter064",
                "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-03-29T02:27:59.646024Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ng0621/41.embed",
            "fid": "ng0621:41",
            "filename": "매출증가율",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ng0621/41/9_QWF6EL9PW4LPDHC3FF350WIK8LTIXH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ng0621/41/2_EURHYIH62QIUN076N3YBULFH855VJG.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ng0621/41/8_RQPGUPU3OVS7NZLIZVUXTOSKFME8BF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ng0621/41/9_QWF6EL9PW4LPDHC3FF350WIK8LTIXH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ng0621:41",
                "plots": "https://api.plotly.com/v2/plots/ng0621:41",
                "parent": "https://api.plotly.com/v2/folders/home?user=ng0621"
            },
            "owner": "ng0621",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~ng0621/41/",
            "world_readable": true,
            "date_modified": "2024-03-29T02:27:59.656Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ng0621/41/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(59, 189, 239)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "C3012",
                        "type": "scatter",
                        "xsrc": "ng0621:40:f64246",
                        "ysrc": "ng0621:40:973fca",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "visible": true,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "E"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "C3040",
                        "type": "scatter",
                        "xsrc": "ng0621:40:f64246",
                        "ysrc": "ng0621:40:582992",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            2015.6444917509314,
                            2022.3555082490686
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            115071715.78947368
                        ],
                        "autorange": true
                    },
                    "yaxis2": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            -22.087199736755515,
                            308.0871997367555
                        ],
                        "title": {
                            "text": ""
                        },
                        "autorange": true,
                        "overlaying": "y"
                    },
                    "barmode": "group",
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ng0621",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/62.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-09-21 05:13:11",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ng0621",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}