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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE3KzE2JTNBMjElM0E0Mi43MjMwMDclMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysxNiUzQTI1JTNBNTQuMDg0NTk1JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-17T16:25:54.084595Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~bounteous-ds-sm/44.embed",
            "fid": "bounteous-ds-sm:44",
            "filename": "plot from API (20)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/bounteous-ds-sm/44/9_EGXFEOPO4T3LVWCAPVTFX2A7Z6C2HA.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/bounteous-ds-sm/44/2_SQW98GATWUC0T6VAABGAJ61Y6T9MLV.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/bounteous-ds-sm/44/8_ETN2O5FFDRO3SAWN9JNFKMRS3SVN0D.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/bounteous-ds-sm/44/9_EGXFEOPO4T3LVWCAPVTFX2A7Z6C2HA.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/bounteous-ds-sm:44",
                "plots": "https://api.plotly.com/v2/plots/bounteous-ds-sm:44",
                "parent": "https://api.plotly.com/v2/folders/home?user=bounteous-ds-sm"
            },
            "owner": "bounteous-ds-sm",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Returning users who have not already completed SIF, starting home, 2-6 steps, 250+ users",
            "views": 14,
            "web_url": "https://chart-studio.plotly.com/~bounteous-ds-sm/44/returning-users-who-have-not-already-completed-sif-starting-home-2-6-steps-250-u/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:25:54.540Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~bounteous-ds-sm/44/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "valuesrc": "bounteous-ds-sm:45:54db45",
                            "sourcesrc": "bounteous-ds-sm:45:55bef7",
                            "targetsrc": "bounteous-ds-sm:45:b45ffe"
                        },
                        "node": {
                            "pad": 10,
                            "line": {
                                "color": "black",
                                "width": 0.5
                            },
                            "labelsrc": "bounteous-ds-sm:45:d1f2bc",
                            "thickness": 30
                        },
                        "type": "sankey",
                        "domain": {
                            "x": [
                                0,
                                1
                            ],
                            "y": [
                                0,
                                1
                            ]
                        },
                        "orientation": "h",
                        "valueformat": ".0f"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 10
                    },
                    "title": "Returning users who have not already completed SIF, starting home, 2-6 steps, 250+ users",
                    "width": 950,
                    "height": 772
                }
            },
            "height": 772,
            "width": 950,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~bounteous-ds-sm",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/26.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": "2019-06-07 22:33:44",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "bounteous-ds-sm",
                "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": "2019-06-17T16:25:49.146907Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~SPAddict25/26.embed",
            "fid": "SPAddict25:26",
            "filename": "Plotly Playground 2019-06-17 10:25:32",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/SPAddict25/26/9_A0A2QF4B1Z0PELF1LYSU1BHWJBY1BF.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/SPAddict25:26/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/SPAddict25/26/8_WXDMGBEGOHGV0GK3B2MRE1HBLDNY16.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/SPAddict25/26/9_A0A2QF4B1Z0PELF1LYSU1BHWJBY1BF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/SPAddict25:26",
                "plots": "https://api.plotly.com/v2/plots/SPAddict25:26",
                "parent": "https://api.plotly.com/v2/folders/home?user=SPAddict25"
            },
            "owner": "SPAddict25",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~SPAddict25/26/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:25:49.746Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~SPAddict25/26/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "c4125efd-134b-450a-a7f9-e1853888824c",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Gbl Mkt",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:27:96b224",
                        "ysrc": "SPAddict25:27:c0e426",
                        "xaxis": "x",
                        "yaxis": "y"
                    },
                    {
                        "uid": "95a072b4-384d-46c3-a895-d08a94109784",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Gbl ex-US Mkt",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:27:96b224",
                        "ysrc": "SPAddict25:27:af419c",
                        "xaxis": "x2",
                        "yaxis": "y2"
                    },
                    {
                        "uid": "80e14e27-d3e7-4796-9de0-4876959a8de1",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(50, 171, 96, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Euro Mkt",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:27:96b224",
                        "ysrc": "SPAddict25:27:00c5b6",
                        "xaxis": "x3",
                        "yaxis": "y3"
                    },
                    {
                        "uid": "9779b1bf-0e34-46e3-a9e1-6ed655a9e481",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 0, 128, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Japan Mkt",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:27:96b224",
                        "ysrc": "SPAddict25:27:16a7b6",
                        "xaxis": "x4",
                        "yaxis": "y4"
                    },
                    {
                        "uid": "14820cdb-d281-4958-958a-e608e82a4dfe",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(219, 64, 82, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Asia Mkt",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:27:96b224",
                        "ysrc": "SPAddict25:27:631f18",
                        "xaxis": "x5",
                        "yaxis": "y5"
                    },
                    {
                        "uid": "43a7031f-cd08-4c02-af9e-ea5c8698dc46",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0, 128, 128, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "NA Mkt",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:27:96b224",
                        "ysrc": "SPAddict25:27:fb1e72",
                        "xaxis": "x6",
                        "yaxis": "y6"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x",
                        "domain": [
                            0.7777777777777778,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "xaxis2": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y2",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis3": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y3",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis4": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y4",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis5": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y5",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis6": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y6",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis2": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x2",
                        "domain": [
                            0.7777777777777778,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis3": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x3",
                        "domain": [
                            0.3888888888888889,
                            0.6111111111111112
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis4": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x4",
                        "domain": [
                            0.3888888888888889,
                            0.6111111111111112
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis5": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x5",
                        "domain": [
                            0.0,
                            0.22222222222222224
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis6": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x6",
                        "domain": [
                            0.0,
                            0.22222222222222224
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.225,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Gbl Mkt",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Gbl ex-US Mkt",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.6111111111111112,
                            "font": {
                                "size": 16
                            },
                            "text": "Euro Mkt",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.6111111111111112,
                            "font": {
                                "size": 16
                            },
                            "text": "Japan Mkt",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.22222222222222224,
                            "font": {
                                "size": 16
                            },
                            "text": "Asia Mkt",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.22222222222222224,
                            "font": {
                                "size": 16
                            },
                            "text": "NA Mkt",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ],
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~SPAddict25",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/60.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": "2019-06-13 18:07:12",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "SPAddict25",
                "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": "2019-06-17T16:25:27.560340Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sophielaw96/40.embed",
            "fid": "sophielaw96:40",
            "filename": "Plot 40",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/sophielaw96:40/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/sophielaw96:40/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/sophielaw96:40/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/sophielaw96:40/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sophielaw96:40",
                "plots": "https://api.plotly.com/v2/plots/sophielaw96:40",
                "parent": "https://api.plotly.com/v2/folders/home?user=sophielaw96"
            },
            "owner": "sophielaw96",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~sophielaw96/40/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:41:06.180Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sophielaw96/40/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "contour",
                        "xsrc": "sophielaw96:39:b42017",
                        "ysrc": "sophielaw96:39:7b8404",
                        "zsrc": "sophielaw96:39:c89cb6",
                        "contours": {
                            "end": 3.3000000000000003,
                            "size": 0.1,
                            "start": 0.5
                        },
                        "ncontours": 40,
                        "autocontour": true,
                        "autocolorscale": true
                    }
                ],
                "frames": [],
                "layout": {
                    "polar": {
                        "radialaxis": {
                            "range": [
                                0,
                                1
                            ],
                            "autorange": true
                        },
                        "angularaxis": {}
                    },
                    "title": {
                        "text": "Electrical Potential for planar like terminals"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            9.977777777777778
                        ],
                        "title": {
                            "text": "X position"
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            1,
                            9
                        ],
                        "title": {
                            "text": "Y position"
                        },
                        "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/~sophielaw96",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/43.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": "2017-06-08 10:13:31",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sophielaw96",
                "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": "2019-06-17T16:25:12.830768Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~lorenzotara/114.embed",
            "fid": "lorenzotara:114",
            "filename": "Plot 114",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/lorenzotara:114/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/lorenzotara/114/2_0GIWY656IKYR6DIXM3T58UKGOUCDIY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/lorenzotara/114/8_EVWHS6ETMP3JTB3ABM4CCYKYQX7VB2.png",
                "list-thumb": "https://api.plotly.com/v2/files/lorenzotara:114/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/lorenzotara:114",
                "plots": "https://api.plotly.com/v2/plots/lorenzotara:114",
                "parent": "https://api.plotly.com/v2/folders/home?user=lorenzotara"
            },
            "owner": "lorenzotara",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~lorenzotara/114/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:27:11.001Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~lorenzotara/114/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "bar",
                        "ysrc": "lorenzotara:113:72b76f",
                        "marker": {
                            "color": "rgb(191, 0, 4)"
                        },
                        "opacity": 0.9,
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 18,
                        "color": "rgb(255, 255, 255)"
                    },
                    "title": {
                        "x": 0.5,
                        "text": "Durata del processo di claim"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.5,
                            4.5
                        ],
                        "tickfont": {
                            "size": 15
                        },
                        "autorange": true,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "range": [
                            0,
                            90.52631578947368
                        ],
                        "title": {
                            "text": "Percentuale di clienti soddisfatti"
                        },
                        "autorange": true
                    },
                    "bargap": 0,
                    "barmode": "group",
                    "barnorm": "",
                    "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"
                    },
                    "bargroupgap": 0.61,
                    "plot_bgcolor": "rgba(0, 0, 0, 0.01)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~lorenzotara",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/42.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": "2018-03-15 12:00:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "lorenzotara",
                "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": "2019-06-17T16:25:12.519562Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~SPAddict25/24.embed",
            "fid": "SPAddict25:24",
            "filename": "Plotly Playground 2019-06-17 10:24:46",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/SPAddict25:24/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/SPAddict25:24/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/SPAddict25:24/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/SPAddict25:24/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/SPAddict25:24",
                "plots": "https://api.plotly.com/v2/plots/SPAddict25:24",
                "parent": "https://api.plotly.com/v2/folders/home?user=SPAddict25"
            },
            "owner": "SPAddict25",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~SPAddict25/24/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:25:13.691Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~SPAddict25/24/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "c7de1275-0b05-4d0b-a237-f40eb9b78119",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Gbl Mkt",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:170719",
                        "xaxis": "x",
                        "yaxis": "y"
                    },
                    {
                        "uid": "eda35398-8046-416d-8d87-be20ac33796e",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Gbl Small",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:b494e1",
                        "xaxis": "x2",
                        "yaxis": "y2"
                    },
                    {
                        "uid": "5c937e38-5a2e-44b8-ae98-ba61a4b9fad3",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(50, 171, 96, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Gbl Val",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:319315",
                        "xaxis": "x3",
                        "yaxis": "y3"
                    },
                    {
                        "uid": "d6105c88-022f-4003-95e3-152f72df6f74",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 0, 128, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Gbl Profit",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:bdf175",
                        "xaxis": "x4",
                        "yaxis": "y4"
                    },
                    {
                        "uid": "f4342471-c910-4eaf-8ec4-9721e4edbcf9",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(219, 64, 82, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Gbl Inv",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:ddb6b8",
                        "xaxis": "x5",
                        "yaxis": "y5"
                    },
                    {
                        "uid": "5e102c04-740a-4136-b897-ac514c8f4b16",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0, 128, 128, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Gbl RF",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:f8aacc",
                        "xaxis": "x6",
                        "yaxis": "y6"
                    },
                    {
                        "uid": "418cdb57-a428-43e7-b962-c50c0ba04d94",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 255, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Gbl ex-US Mkt",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:18fe15",
                        "xaxis": "x7",
                        "yaxis": "y7"
                    },
                    {
                        "uid": "004d73bc-77f1-4999-a696-9f7e1b0c60a8",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 128, 0, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Gbl ex-US Small",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:f1cb2d",
                        "xaxis": "x8",
                        "yaxis": "y8"
                    },
                    {
                        "uid": "7a52dc9e-67af-4650-b11b-ef2d872cbf4f",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(251, 128, 114, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Gbl ex-US Val",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:99e0f7",
                        "xaxis": "x9",
                        "yaxis": "y9"
                    },
                    {
                        "uid": "d2ec0565-b5cf-4bea-8489-9618958d0e33",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 177, 211, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Gbl ex-US Profit",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:f87cfc",
                        "xaxis": "x10",
                        "yaxis": "y10"
                    },
                    {
                        "uid": "37fee38d-4262-4a6a-a122-d6f8c34ab4f8",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 177, 211, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Gbl ex-US Inv",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:3400ee",
                        "xaxis": "x11",
                        "yaxis": "y11"
                    },
                    {
                        "uid": "f6893ae3-2d7f-43ce-9ffc-b367e93afa46",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Gbl ex-US RF",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:f8aacc",
                        "xaxis": "x12",
                        "yaxis": "y12"
                    },
                    {
                        "uid": "d0335807-d4bc-466f-bf0f-f5e2e389db1b",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Euro Mkt",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:4b11b0",
                        "xaxis": "x13",
                        "yaxis": "y13"
                    },
                    {
                        "uid": "97428b4b-ad7b-40db-8ce2-5cc03fd7d6e2",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(50, 171, 96, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Euro Small",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:03acc3",
                        "xaxis": "x14",
                        "yaxis": "y14"
                    },
                    {
                        "uid": "0345bd5f-7ecf-4b51-b7c2-f85159b23e74",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 0, 128, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Euro Val",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:eb070d",
                        "xaxis": "x15",
                        "yaxis": "y15"
                    },
                    {
                        "uid": "2dde5dee-a8eb-4ee4-9fdb-b4e0d105e07c",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(219, 64, 82, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Euro Profit",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:1c9bb3",
                        "xaxis": "x16",
                        "yaxis": "y16"
                    },
                    {
                        "uid": "526c9fbf-e292-428b-a4b0-0a54768d478e",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0, 128, 128, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Euro Inv",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:bb70a1",
                        "xaxis": "x17",
                        "yaxis": "y17"
                    },
                    {
                        "uid": "7ce8c720-d873-4193-9cb1-75d7a99ea0ea",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 255, 51, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Euro RF",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:f8aacc",
                        "xaxis": "x18",
                        "yaxis": "y18"
                    },
                    {
                        "uid": "5b65e727-c961-4cd5-872c-f8c5aa833317",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 128, 0, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Japan Mkt",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:28db9a",
                        "xaxis": "x19",
                        "yaxis": "y19"
                    },
                    {
                        "uid": "9f55f22d-5550-4e84-a6af-71a6be930cc9",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(251, 128, 114, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Japan Small",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:b5e586",
                        "xaxis": "x20",
                        "yaxis": "y20"
                    },
                    {
                        "uid": "1a46233f-0fa6-4f9b-92e1-7c87930fa77f",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(251, 128, 114, 0.7999999999999998)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Japan Val",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:4a08c0",
                        "xaxis": "x21",
                        "yaxis": "y21"
                    },
                    {
                        "uid": "21f16aab-ce07-4cdf-86ed-35ac54ba1b84",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 177, 211, 0.7999999999999998)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Japan Profit",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:1f40d6",
                        "xaxis": "x22",
                        "yaxis": "y22"
                    },
                    {
                        "uid": "b32cedd6-f36f-49ee-a7f3-6985cb48b688",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 0.7999999999999998)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Japan Inv",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:e65d0a",
                        "xaxis": "x23",
                        "yaxis": "y23"
                    },
                    {
                        "uid": "fca4ad58-bfbd-4894-8e3e-f359c9c63a71",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 0.7999999999999998)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Japan RF",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:f8aacc",
                        "xaxis": "x24",
                        "yaxis": "y24"
                    },
                    {
                        "uid": "473e9d65-34cb-4a7d-ad17-7914011fd55d",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(50, 171, 96, 0.7999999999999998)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Asia Mkt",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:9c1738",
                        "xaxis": "x25",
                        "yaxis": "y25"
                    },
                    {
                        "uid": "a708dc4e-6c93-42cb-b126-cc4124c62fdd",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 0, 128, 0.7999999999999998)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Asia Small",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:c0080b",
                        "xaxis": "x26",
                        "yaxis": "y26"
                    },
                    {
                        "uid": "e697033a-b12b-41e1-9174-16f8f41e4754",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(219, 64, 82, 0.7999999999999998)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Asia Val",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:f57347",
                        "xaxis": "x27",
                        "yaxis": "y27"
                    },
                    {
                        "uid": "73b488a0-a407-460f-9036-ada919a1021e",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0, 128, 128, 0.7999999999999998)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Asia Profit",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:668f56",
                        "xaxis": "x28",
                        "yaxis": "y28"
                    },
                    {
                        "uid": "ea595cd6-9843-443c-8814-81807b23b438",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 255, 51, 0.7999999999999998)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Asia Inv",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:97b127",
                        "xaxis": "x29",
                        "yaxis": "y29"
                    },
                    {
                        "uid": "f4b274a0-b702-4218-83e5-709e38b56bec",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 128, 0, 0.7999999999999998)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Asia RF",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:f8aacc",
                        "xaxis": "x30",
                        "yaxis": "y30"
                    },
                    {
                        "uid": "8b9fc75d-6829-49ea-9b89-dff59341ac53",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 128, 0, 0.7)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "NA Mkt",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:240de8",
                        "xaxis": "x31",
                        "yaxis": "y31"
                    },
                    {
                        "uid": "06414676-f75c-4293-9092-b20dc977ea77",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(251, 128, 114, 0.7)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "NA Small",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:4b8c8e",
                        "xaxis": "x32",
                        "yaxis": "y32"
                    },
                    {
                        "uid": "2e0033ec-bdce-4ea2-87a8-5c1c97b6c441",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 177, 211, 0.7)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "NA Val",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:95917b",
                        "xaxis": "x33",
                        "yaxis": "y33"
                    },
                    {
                        "uid": "03f8176a-f8f5-4bd0-8ec5-4d778b639942",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 0.7)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "NA Profit",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:969269",
                        "xaxis": "x34",
                        "yaxis": "y34"
                    },
                    {
                        "uid": "5b527f0d-98cd-4958-907d-4916f79c2161",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 0.7)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "NA Inv",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:65b2e4",
                        "xaxis": "x35",
                        "yaxis": "y35"
                    },
                    {
                        "uid": "98c6487c-db0c-423e-9dae-cb0b258322cc",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(50, 171, 96, 0.7)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "NA RF",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:25:ccd029",
                        "ysrc": "SPAddict25:25:f8aacc",
                        "xaxis": "x36",
                        "yaxis": "y36"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x",
                        "domain": [
                            0.9706790123456792,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "xaxis2": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y2",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis3": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y3",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis4": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y4",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis5": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y5",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis6": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y6",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis7": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y7",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis8": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y8",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis9": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y9",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis2": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x2",
                        "domain": [
                            0.9706790123456792,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis3": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x3",
                        "domain": [
                            0.9135802469135803,
                            0.9429012345679013
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis4": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x4",
                        "domain": [
                            0.9135802469135803,
                            0.9429012345679013
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis5": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x5",
                        "domain": [
                            0.8564814814814816,
                            0.8858024691358026
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis6": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x6",
                        "domain": [
                            0.8564814814814816,
                            0.8858024691358026
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis7": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x7",
                        "domain": [
                            0.7993827160493827,
                            0.8287037037037037
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis8": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x8",
                        "domain": [
                            0.7993827160493827,
                            0.8287037037037037
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis9": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x9",
                        "domain": [
                            0.742283950617284,
                            0.771604938271605
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis10": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y10",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis11": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y11",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis12": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y12",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis13": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y13",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis14": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y14",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis15": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y15",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis16": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y16",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis17": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y17",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis18": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y18",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis19": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y19",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis20": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y20",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis21": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y21",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis22": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y22",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis23": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y23",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis24": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y24",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis25": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y25",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis26": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y26",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis27": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y27",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis28": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y28",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis29": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y29",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis30": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y30",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis31": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y31",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis32": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y32",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis33": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y33",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis34": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y34",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis35": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y35",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "xaxis36": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "y36",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis10": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x10",
                        "domain": [
                            0.742283950617284,
                            0.771604938271605
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis11": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x11",
                        "domain": [
                            0.6851851851851852,
                            0.7145061728395062
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis12": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x12",
                        "domain": [
                            0.6851851851851852,
                            0.7145061728395062
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis13": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x13",
                        "domain": [
                            0.6280864197530864,
                            0.6574074074074074
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis14": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x14",
                        "domain": [
                            0.6280864197530864,
                            0.6574074074074074
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis15": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x15",
                        "domain": [
                            0.5709876543209877,
                            0.6003086419753088
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis16": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x16",
                        "domain": [
                            0.5709876543209877,
                            0.6003086419753088
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis17": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x17",
                        "domain": [
                            0.5138888888888888,
                            0.5432098765432098
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis18": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x18",
                        "domain": [
                            0.5138888888888888,
                            0.5432098765432098
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis19": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x19",
                        "domain": [
                            0.4567901234567901,
                            0.4861111111111111
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis20": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x20",
                        "domain": [
                            0.4567901234567901,
                            0.4861111111111111
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis21": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x21",
                        "domain": [
                            0.39969135802469136,
                            0.42901234567901236
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis22": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x22",
                        "domain": [
                            0.39969135802469136,
                            0.42901234567901236
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis23": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x23",
                        "domain": [
                            0.34259259259259256,
                            0.37191358024691357
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis24": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x24",
                        "domain": [
                            0.34259259259259256,
                            0.37191358024691357
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis25": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x25",
                        "domain": [
                            0.2854938271604939,
                            0.3148148148148149
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis26": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x26",
                        "domain": [
                            0.2854938271604939,
                            0.3148148148148149
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis27": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x27",
                        "domain": [
                            0.22839506172839508,
                            0.2577160493827161
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis28": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x28",
                        "domain": [
                            0.22839506172839508,
                            0.2577160493827161
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis29": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x29",
                        "domain": [
                            0.17129629629629628,
                            0.20061728395061726
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis30": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x30",
                        "domain": [
                            0.17129629629629628,
                            0.20061728395061726
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis31": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x31",
                        "domain": [
                            0.11419753086419754,
                            0.14351851851851852
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis32": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x32",
                        "domain": [
                            0.11419753086419754,
                            0.14351851851851852
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis33": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x33",
                        "domain": [
                            0.05709876543209877,
                            0.08641975308641976
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis34": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x34",
                        "domain": [
                            0.05709876543209877,
                            0.08641975308641976
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis35": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x35",
                        "domain": [
                            0.0,
                            0.02932098765432099
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis36": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "anchor": "x36",
                        "domain": [
                            0.0,
                            0.02932098765432099
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.225,
                            "y": 1.0000000000000002,
                            "font": {
                                "size": 16
                            },
                            "text": "Gbl Mkt",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 1.0000000000000002,
                            "font": {
                                "size": 16
                            },
                            "text": "Gbl Small",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.9429012345679013,
                            "font": {
                                "size": 16
                            },
                            "text": "Gbl Val",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.9429012345679013,
                            "font": {
                                "size": 16
                            },
                            "text": "Gbl Profit",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.8858024691358026,
                            "font": {
                                "size": 16
                            },
                            "text": "Gbl Inv",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.8858024691358026,
                            "font": {
                                "size": 16
                            },
                            "text": "Gbl RF",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.8287037037037037,
                            "font": {
                                "size": 16
                            },
                            "text": "Gbl ex-US Mkt",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.8287037037037037,
                            "font": {
                                "size": 16
                            },
                            "text": "Gbl ex-US Small",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.771604938271605,
                            "font": {
                                "size": 16
                            },
                            "text": "Gbl ex-US Val",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.771604938271605,
                            "font": {
                                "size": 16
                            },
                            "text": "Gbl ex-US Profit",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.7145061728395062,
                            "font": {
                                "size": 16
                            },
                            "text": "Gbl ex-US Inv",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.7145061728395062,
                            "font": {
                                "size": 16
                            },
                            "text": "Gbl ex-US RF",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.6574074074074074,
                            "font": {
                                "size": 16
                            },
                            "text": "Euro Mkt",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.6574074074074074,
                            "font": {
                                "size": 16
                            },
                            "text": "Euro Small",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.6003086419753088,
                            "font": {
                                "size": 16
                            },
                            "text": "Euro Val",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.6003086419753088,
                            "font": {
                                "size": 16
                            },
                            "text": "Euro Profit",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.5432098765432098,
                            "font": {
                                "size": 16
                            },
                            "text": "Euro Inv",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.5432098765432098,
                            "font": {
                                "size": 16
                            },
                            "text": "Euro RF",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.4861111111111111,
                            "font": {
                                "size": 16
                            },
                            "text": "Japan Mkt",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.4861111111111111,
                            "font": {
                                "size": 16
                            },
                            "text": "Japan Small",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.42901234567901236,
                            "font": {
                                "size": 16
                            },
                            "text": "Japan Val",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.42901234567901236,
                            "font": {
                                "size": 16
                            },
                            "text": "Japan Profit",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.37191358024691357,
                            "font": {
                                "size": 16
                            },
                            "text": "Japan Inv",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.37191358024691357,
                            "font": {
                                "size": 16
                            },
                            "text": "Japan RF",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.3148148148148149,
                            "font": {
                                "size": 16
                            },
                            "text": "Asia Mkt",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.3148148148148149,
                            "font": {
                                "size": 16
                            },
                            "text": "Asia Small",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.2577160493827161,
                            "font": {
                                "size": 16
                            },
                            "text": "Asia Val",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.2577160493827161,
                            "font": {
                                "size": 16
                            },
                            "text": "Asia Profit",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.20061728395061726,
                            "font": {
                                "size": 16
                            },
                            "text": "Asia Inv",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.20061728395061726,
                            "font": {
                                "size": 16
                            },
                            "text": "Asia RF",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.14351851851851852,
                            "font": {
                                "size": 16
                            },
                            "text": "NA Mkt",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.14351851851851852,
                            "font": {
                                "size": 16
                            },
                            "text": "NA Small",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.08641975308641976,
                            "font": {
                                "size": 16
                            },
                            "text": "NA Val",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.08641975308641976,
                            "font": {
                                "size": 16
                            },
                            "text": "NA Profit",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.02932098765432099,
                            "font": {
                                "size": 16
                            },
                            "text": "NA Inv",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.02932098765432099,
                            "font": {
                                "size": 16
                            },
                            "text": "NA RF",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ],
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~SPAddict25",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/60.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": "2019-06-13 18:07:12",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "SPAddict25",
                "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": "2019-06-17T16:25:07.749092Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dangnguyen/18.embed",
            "fid": "dangnguyen:18",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/dangnguyen/18/9_SS9Z65UZZ8F8QYF8G0EN4CAGPNWEJO.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/dangnguyen:18/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/dangnguyen/18/8_JS3E8HYR2QOHDGRZ47HKINSAUVQCI3.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dangnguyen/18/9_SS9Z65UZZ8F8QYF8G0EN4CAGPNWEJO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dangnguyen:18",
                "plots": "https://api.plotly.com/v2/plots/dangnguyen:18",
                "parent": "https://api.plotly.com/v2/folders/home?user=dangnguyen"
            },
            "owner": "dangnguyen",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "distplot, distplot, distplot",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~dangnguyen/18/distplot-distplot-distplot/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:25:08.621Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dangnguyen/18/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "8fee7b13-67a6-48da-bde6-6359bb565ec8",
                        "name": "distplot",
                        "type": "histogram",
                        "xsrc": "dangnguyen:19:cf8369",
                        "xaxis": "x",
                        "xbins": {
                            "end": 0.944169,
                            "size": 1.0,
                            "start": 0.0
                        },
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(31, 119, 180)"
                        },
                        "opacity": 0.7,
                        "autobinx": false,
                        "histnorm": "probability density",
                        "legendgroup": "distplot"
                    },
                    {
                        "uid": "253e12e6-95de-451f-9211-6013e9dd53b3",
                        "mode": "lines",
                        "name": "distplot",
                        "type": "scatter",
                        "xsrc": "dangnguyen:19:bccadb",
                        "ysrc": "dangnguyen:19:870e37",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": false,
                        "legendgroup": "distplot"
                    },
                    {
                        "uid": "6b9c147b-3762-4a0e-9ecd-98e10161d218",
                        "mode": "markers",
                        "name": "distplot",
                        "type": "scatter",
                        "xsrc": "dangnguyen:19:cf8369",
                        "ysrc": "dangnguyen:19:3733dd",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(31, 119, 180)",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "distplot"
                    }
                ],
                "layout": {
                    "xaxis": {
                        "anchor": "y2",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "zeroline": false
                    },
                    "yaxis": {
                        "anchor": "free",
                        "domain": [
                            0.35,
                            1
                        ],
                        "position": 0.0
                    },
                    "legend": {
                        "traceorder": "reversed"
                    },
                    "yaxis2": {
                        "dtick": 1,
                        "anchor": "x",
                        "domain": [
                            0,
                            0.25
                        ],
                        "showticklabels": false
                    },
                    "barmode": "overlay",
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dangnguyen",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-28 20:14:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dangnguyen",
                "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": "2019-06-17T16:24:41.986828Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dangnguyen/16.embed",
            "fid": "dangnguyen:16",
            "filename": "Plotly Playground 2019-06-17 16:24:40",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/dangnguyen/16/9_NLZQQ3434IYP29A2O3ETSD42B1C629.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/dangnguyen/16/2_UNHAQUKD7AX9H2CEB7PN1HKVZL9P05.png",
                "block-thumb": "https://api.plotly.com/v2/files/dangnguyen:16/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dangnguyen/16/9_NLZQQ3434IYP29A2O3ETSD42B1C629.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dangnguyen:16",
                "plots": "https://api.plotly.com/v2/plots/dangnguyen:16",
                "parent": "https://api.plotly.com/v2/folders/home?user=dangnguyen"
            },
            "owner": "dangnguyen",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~dangnguyen/16/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:24:42.693Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dangnguyen/16/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "8525b8c7-35f6-4a1d-911e-12fe944c91de",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "# 0",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "dangnguyen:17:b66672",
                        "ysrc": "dangnguyen:17:c88f51"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dangnguyen",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-28 20:14:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dangnguyen",
                "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": "2019-06-17T16:22:52.299118Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~elliewilliams/32.embed",
            "fid": "elliewilliams:32",
            "filename": "Difference between model environments total excess water",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/elliewilliams/32/9_GJN7YQBIB49X8BPYJBCVQPG9VNTU7L.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/elliewilliams/32/2_J3CCWQ36SXXFS6XAPQZC2OLTTOPD43.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/elliewilliams/32/8_FH1YS7LEMQNML5ZTGI9A2EXQ6RPVWW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/elliewilliams/32/9_GJN7YQBIB49X8BPYJBCVQPG9VNTU7L.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/elliewilliams:32",
                "plots": "https://api.plotly.com/v2/plots/elliewilliams:32",
                "parent": "https://api.plotly.com/v2/folders/home?user=elliewilliams"
            },
            "owner": "elliewilliams",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~elliewilliams/32/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:22:52.312Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~elliewilliams/32/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "Percentage difference between modelling environments",
                        "type": "bar",
                        "xsrc": "elliewilliams:31:74008d",
                        "ysrc": "elliewilliams:31:12a772",
                        "marker": {
                            "color": "rgb(157, 220, 245)"
                        },
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 23,
                        "family": "Droid Serif"
                    },
                    "title": {
                        "x": 0.02,
                        "font": {
                            "size": 28
                        },
                        "text": "Difference between modelling environments for total excess water averaged across neighbourhoods"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            17.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            0,
                            9.76842105263158
                        ],
                        "title": {
                            "text": "Difference in total excess water (%)"
                        },
                        "autorange": true
                    },
                    "barmode": "group",
                    "autosize": true,
                    "colorway": [
                        "#b3e2cd",
                        "#fdcdac",
                        "#cbd5e8",
                        "#f4cae4",
                        "#e6f5c9",
                        "#fff2ae",
                        "#f1e2cc",
                        "#cccccc"
                    ],
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hovermode": "x"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~elliewilliams",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/55.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-15 13:21:40",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "elliewilliams",
                "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": "2019-06-17T16:22:08.283244Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dangnguyen/14.embed",
            "fid": "dangnguyen:14",
            "filename": "Plotly Playground 2019-06-17 16:22:06",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/dangnguyen/14/9_TVJ3TU3Z3720NA2LUKSJ36MII5SBVJ.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/dangnguyen:14/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/dangnguyen:14/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dangnguyen/14/9_TVJ3TU3Z3720NA2LUKSJ36MII5SBVJ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dangnguyen:14",
                "plots": "https://api.plotly.com/v2/plots/dangnguyen:14",
                "parent": "https://api.plotly.com/v2/folders/home?user=dangnguyen"
            },
            "owner": "dangnguyen",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~dangnguyen/14/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:22:08.962Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dangnguyen/14/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "610619e3-accb-4367-8af8-25591366273c",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "# 0",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "dangnguyen:15:949588",
                        "ysrc": "dangnguyen:15:0753a3"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dangnguyen",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-28 20:14:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dangnguyen",
                "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": "2019-06-17T16:21:42.723007Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dangnguyen/12.embed",
            "fid": "dangnguyen:12",
            "filename": "Plotly Playground 2019-06-17 16:21:40",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/dangnguyen/12/9_8X7OOMTT69K4M6YL9PDC7YQMCHI01C.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/dangnguyen/12/2_BTXNHVAOFLNG0U4VKHIFQTHRJSE4LN.png",
                "block-thumb": "https://api.plotly.com/v2/files/dangnguyen:12/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dangnguyen/12/9_8X7OOMTT69K4M6YL9PDC7YQMCHI01C.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dangnguyen:12",
                "plots": "https://api.plotly.com/v2/plots/dangnguyen:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=dangnguyen"
            },
            "owner": "dangnguyen",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~dangnguyen/12/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:21:43.603Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dangnguyen/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "16e5686c-5b7b-42d4-9a83-23997a3497a6",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "1",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "dangnguyen:13:013277",
                        "ysrc": "dangnguyen:13:a1da98"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dangnguyen",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-28 20:14:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dangnguyen",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}