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

{
    "next": "https://api.plotly.com/v2/plots?cursor=cD0yMDI0LTA0LTE2KzE0JTNBNTQlM0ExNi4wNTcwNDElMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0xNisxNSUzQTUxJTNBMTEuNTMxMjU4JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-16T15:51:11.531258Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Naty_/15.embed",
            "fid": "Naty_:15",
            "filename": "Number of wins of each country",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Naty_/15/9_TJW78UXUOVBEBPDLJQ3O177DRBJSEG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Naty_/15/2_J799BQ126PFII2QEXLO4TDPN87O723.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Naty_/15/8_ZFOMK419PDCWFRWD4W9Z0VFL1554EH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Naty_/15/9_TJW78UXUOVBEBPDLJQ3O177DRBJSEG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Naty_:15",
                "plots": "https://api.plotly.com/v2/plots/Naty_:15",
                "parent": "https://api.plotly.com/v2/folders/home?user=Naty_"
            },
            "owner": "Naty_",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Naty_/15/",
            "world_readable": true,
            "date_modified": "2024-04-16T16:01:04.858Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Naty_/15/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "z": "Win",
                                "lat": "Win",
                                "lon": "Win",
                                "locations": "Country"
                            }
                        },
                        "mode": "markers",
                        "type": "choropleth",
                        "zsrc": "Naty_:14:281f3f",
                        "latsrc": "Naty_:14:281f3f",
                        "lonsrc": "Naty_:14:281f3f",
                        "locationmode": "country names",
                        "locationssrc": "Naty_:14:04a8c2"
                    }
                ],
                "frames": [],
                "layout": {
                    "geo": {
                        "center": {
                            "lat": 47.93084237904301,
                            "lon": 21.697124338562247
                        },
                        "lataxis": {
                            "range": [
                                0,
                                0
                            ]
                        },
                        "lonaxis": {
                            "range": [
                                0,
                                0
                            ]
                        },
                        "projection": {
                            "scale": 5.3221161643227415,
                            "rotation": {
                                "lon": 21.697124338562247
                            }
                        }
                    },
                    "title": {
                        "x": 0.5,
                        "font": {
                            "size": 19
                        },
                        "text": "<b>Number of wins of each country</b>"
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "mapbox": {
                        "zoom": 2.00205855736507,
                        "pitch": 0,
                        "center": {
                            "lat": 42.91369017822677,
                            "lon": 17.47281243170346
                        },
                        "bearing": 0
                    },
                    "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"
                    },
                    "colorscale": {
                        "diverging": [
                            [
                                0,
                                "#67001f"
                            ],
                            [
                                0.1,
                                "#b2182b"
                            ],
                            [
                                0.2,
                                "#d6604d"
                            ],
                            [
                                0.3,
                                "#f4a582"
                            ],
                            [
                                0.4,
                                "#fddbc7"
                            ],
                            [
                                0.5,
                                "#f7f7f7"
                            ],
                            [
                                0.6,
                                "#d1e5f0"
                            ],
                            [
                                0.7,
                                "#92c5de"
                            ],
                            [
                                0.8,
                                "#4393c3"
                            ],
                            [
                                0.9,
                                "#2166ac"
                            ],
                            [
                                1,
                                "#053061"
                            ]
                        ],
                        "sequential": [
                            [
                                0,
                                "#f7fbff"
                            ],
                            [
                                0.125,
                                "#deebf7"
                            ],
                            [
                                0.25,
                                "#c6dbef"
                            ],
                            [
                                0.375,
                                "#9ecae1"
                            ],
                            [
                                0.5,
                                "#6baed6"
                            ],
                            [
                                0.625,
                                "#4292c6"
                            ],
                            [
                                0.75,
                                "#2171b5"
                            ],
                            [
                                0.875,
                                "#08519c"
                            ],
                            [
                                1,
                                "#08306b"
                            ]
                        ],
                        "sequentialminus": [
                            [
                                0,
                                "#ffffe5"
                            ],
                            [
                                0.125,
                                "#f7fcb9"
                            ],
                            [
                                0.25,
                                "#d9f0a3"
                            ],
                            [
                                0.375,
                                "#addd8e"
                            ],
                            [
                                0.5,
                                "#78c679"
                            ],
                            [
                                0.625,
                                "#41ab5d"
                            ],
                            [
                                0.75,
                                "#238443"
                            ],
                            [
                                0.875,
                                "#006837"
                            ],
                            [
                                1,
                                "#004529"
                            ]
                        ]
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Naty_",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-16 07:33:57",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Naty_",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-16T15:47:17.369598Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~andreiciocoiu/24.embed",
            "fid": "andreiciocoiu:24",
            "filename": "sentiment-DOGE",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/andreiciocoiu/24/9_91JJRPJA0OS8K4GJQ4J3FWEXNLBECC.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/andreiciocoiu/24/2_6RUF1C45LTRXVUUCUEVULG710A5ERL.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/andreiciocoiu/24/8_6DQWQMGKI861UC5HJGJ7YQVUMV1HUG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/andreiciocoiu/24/9_91JJRPJA0OS8K4GJQ4J3FWEXNLBECC.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/andreiciocoiu:24",
                "plots": "https://api.plotly.com/v2/plots/andreiciocoiu:24",
                "parent": "https://api.plotly.com/v2/folders/home?user=andreiciocoiu"
            },
            "owner": "andreiciocoiu",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "DOGE Sentiment Analysis",
            "views": 18,
            "web_url": "https://chart-studio.plotly.com/~andreiciocoiu/24/doge-sentiment-analysis/",
            "world_readable": true,
            "date_modified": "2024-04-16T15:56:58.882Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~andreiciocoiu/24/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "pie",
                        "marker": {
                            "colors": [
                                "green",
                                "gray",
                                "red"
                            ]
                        },
                        "labelssrc": "andreiciocoiu:25:2b7e81",
                        "valuessrc": "andreiciocoiu:25:ea571b"
                    }
                ],
                "layout": {
                    "title": "DOGE Sentiment Analysis",
                    "width": 500,
                    "height": 400
                }
            },
            "height": 400,
            "width": 500,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~andreiciocoiu",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/66.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-03 21:49:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "andreiciocoiu",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-16T15:46:52.137146Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~vilassoocol/1.embed",
            "fid": "vilassoocol:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/vilassoocol/1/9_P7FW10TR6CMMNDABCO01DNNICK6C9L.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/vilassoocol/1/2_METH6Y4CF8T8MZ18D1TXMRVG18TLN7.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/vilassoocol/1/8_4AVUTDT1Y6C92NB3LJ1EZGL8DT2N9W.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/vilassoocol/1/9_P7FW10TR6CMMNDABCO01DNNICK6C9L.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/vilassoocol:1",
                "plots": "https://api.plotly.com/v2/plots/vilassoocol:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=vilassoocol"
            },
            "owner": "vilassoocol",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~vilassoocol/1/",
            "world_readable": true,
            "date_modified": "2024-04-16T15:46:52.151Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~vilassoocol/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "32aa32",
                        "meta": {
                            "columnNames": {
                                "x": "title length",
                                "y": "Avg per project"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "vilassoocol:0:21fda8",
                        "ysrc": "vilassoocol:0:50178b"
                    },
                    {
                        "uid": "2208fd",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "32aa32",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 7.806964278296436e-05,
                                        "value": 0.0005617415730337053
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.0029001585114417027,
                                        "value": -0.0013157303370785881
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "How does temperature affect rate of reaction?"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            55.00000000000004
                        ],
                        "title": {
                            "text": "Temperature(C)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.003032162921348245,
                            0.03129648876404488
                        ],
                        "title": {
                            "text": "Rate of reaction(1/t)"
                        },
                        "autorange": true
                    },
                    "bargap": 0.38,
                    "autosize": true,
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~vilassoocol",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/70.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-16 15:46:34",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "vilassoocol",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-16T15:45:00.915130Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~pattharamon.d/3.embed",
            "fid": "pattharamon.d:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/pattharamon.d/3/9_V5QTFHVKAEGAIANLF1H7Y69DQ429R5.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/pattharamon.d/3/2_9NMM0T5Y6IEPIBQR4202CBUW42Y39H.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/pattharamon.d/3/8_5I6GQN2Z8LZ5D2FRSKIM05BFUNH62U.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/pattharamon.d/3/9_V5QTFHVKAEGAIANLF1H7Y69DQ429R5.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/pattharamon.d:3",
                "plots": "https://api.plotly.com/v2/plots/pattharamon.d:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=pattharamon.d"
            },
            "owner": "pattharamon.d",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~pattharamon.d/3/",
            "world_readable": true,
            "date_modified": "2024-04-16T15:45:00.927Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~pattharamon.d/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "z": "A - B - C - D - E"
                            }
                        },
                        "mode": "markers",
                        "type": "surface",
                        "zsrc": "pattharamon.d:2:9c3f37,1ab7f3,786954,bb5239,971870"
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": 1.8199774886353777,
                                "y": 1.8199774886353774,
                                "z": 1.8199774886353777
                            },
                            "center": {
                                "x": 0,
                                "y": 0,
                                "z": 0
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "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/~pattharamon.d",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/38.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-15 20:32:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "pattharamon.d",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-16T15:43:02.160891Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~aewang2/0.embed",
            "fid": "aewang2:0",
            "filename": "etf_galaxy",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/aewang2/0/9_EJXSXRRO3Q138YKQUK5W7IZ1X9XJMJ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/aewang2/0/2_UM5THSV7424XYHVGVYB8FKIEIK1Y1C.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/aewang2/0/8_00712F1CA3NMFYAT9J52F4RTJPYQ84.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/aewang2/0/9_EJXSXRRO3Q138YKQUK5W7IZ1X9XJMJ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/aewang2:0",
                "plots": "https://api.plotly.com/v2/plots/aewang2:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=aewang2"
            },
            "owner": "aewang2",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Energy Select Sector SPDR® ETF, iShares MSCI Brazil ETF, Invesco QQQ Trust, SPDR® S&P 500 ETF Trust, iShares Russell 2000 ETF, iShares MSCI EAFE ETF, iShares Core US Aggregate Bond ETF",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~aewang2/0/energy-select-sector-spdr-etf-ishares-msci-brazil-etf-invesco-qqq-trust-spdr-sp-/",
            "world_readable": true,
            "date_modified": "2024-04-17T14:41:50.163Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~aewang2/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "Energy Select Sector SPDR® ETF",
                        "type": "scatter",
                        "xsrc": "aewang2:1:a4ff8b",
                        "ysrc": "aewang2:1:306f77",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0)",
                                "width": 0.75
                            },
                            "color": "rgb(0.000000,113.985000,188.955000)",
                            "symbol": "star",
                            "opacity": 1,
                            "sizeref": 1,
                            "sizesrc": "aewang2:1:1554c5",
                            "sizemode": "area"
                        },
                        "visible": true
                    },
                    {
                        "mode": "markers",
                        "name": "iShares MSCI Brazil ETF",
                        "type": "scatter",
                        "xsrc": "aewang2:1:4c0dcb",
                        "ysrc": "aewang2:1:f0fc3e",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0)",
                                "width": 0.75
                            },
                            "color": "rgb(216.750000,82.875000,24.990000)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizeref": 1,
                            "sizesrc": "aewang2:1:e31511",
                            "sizemode": "area"
                        },
                        "visible": true
                    },
                    {
                        "mode": "markers",
                        "name": "Invesco QQQ Trust",
                        "type": "scatter",
                        "xsrc": "aewang2:1:841f5a",
                        "ysrc": "aewang2:1:6841ce",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0)",
                                "width": 0.75
                            },
                            "color": "rgb(236.895000,176.970000,31.875000)",
                            "symbol": "square",
                            "opacity": 1,
                            "sizeref": 1,
                            "sizesrc": "aewang2:1:d58f5f",
                            "sizemode": "area"
                        },
                        "visible": true
                    },
                    {
                        "mode": "markers",
                        "name": "SPDR® S&P 500 ETF Trust",
                        "type": "scatter",
                        "xsrc": "aewang2:1:6918cc",
                        "ysrc": "aewang2:1:ef14d1",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0)",
                                "width": 0.75
                            },
                            "color": "rgb(125.970000,46.920000,141.780000)",
                            "symbol": "diamond",
                            "opacity": 1,
                            "sizeref": 1,
                            "sizesrc": "aewang2:1:6def11",
                            "sizemode": "area"
                        },
                        "visible": true
                    },
                    {
                        "mode": "markers",
                        "name": "iShares Russell 2000 ETF",
                        "type": "scatter",
                        "xsrc": "aewang2:1:c8b77f",
                        "ysrc": "aewang2:1:a70a17",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0)",
                                "width": 0.75
                            },
                            "color": "rgb(118.830000,171.870000,47.940000)",
                            "symbol": "triangle-up",
                            "opacity": 1,
                            "sizeref": 1,
                            "sizesrc": "aewang2:1:6648c0",
                            "sizemode": "area"
                        },
                        "visible": true
                    },
                    {
                        "mode": "markers",
                        "name": "iShares MSCI EAFE ETF",
                        "type": "scatter",
                        "xsrc": "aewang2:1:1c70c8",
                        "ysrc": "aewang2:1:747fe5",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0)",
                                "width": 0.75
                            },
                            "color": "rgb(76.755000,189.975000,237.915000)",
                            "symbol": "triangle-down",
                            "opacity": 1,
                            "sizeref": 1,
                            "sizesrc": "aewang2:1:9ed734",
                            "sizemode": "area"
                        },
                        "visible": true
                    },
                    {
                        "mode": "markers",
                        "name": "iShares Core US Aggregate Bond ETF",
                        "type": "scatter",
                        "xsrc": "aewang2:1:fbf6b7",
                        "ysrc": "aewang2:1:0036ad",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0)",
                                "width": 0.75
                            },
                            "color": "rgb(161.925000,19.890000,46.920000)",
                            "symbol": "triangle-left",
                            "opacity": 1,
                            "sizeref": 1,
                            "sizesrc": "aewang2:1:7f0ccf",
                            "sizemode": "area"
                        },
                        "visible": true
                    }
                ],
                "layout": {
                    "width": 840,
                    "height": 630,
                    "legend": {
                        "x": 0.1494,
                        "y": 0.6529,
                        "font": {
                            "size": 9,
                            "color": "rgb(0,0,0_)",
                            "family": "Arial, sans-serif"
                        },
                        "xref": "paper",
                        "yref": "paper",
                        "bgcolor": "rgb(255,255,255)",
                        "xanchor": "left",
                        "yanchor": "bottom",
                        "traceorder": "normal",
                        "bordercolor": "rgb(38.25,38.25,38.25)",
                        "borderwidth": 0.5
                    },
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0,
                        "pad": 0
                    },
                    "scene1": {
                        "domain": {
                            "x": [
                                0.13,
                                0.905
                            ],
                            "y": [
                                0.11,
                                0.925
                            ]
                        }
                    },
                    "xaxis1": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            0.5
                        ],
                        "ticks": "inside",
                        "title": "Annulized Vol",
                        "anchor": "y1",
                        "domain": [
                            0.13,
                            0.905
                        ],
                        "mirror": false,
                        "ticklen": 6.51,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "0.05",
                            "0.1",
                            "0.15",
                            "0.2",
                            "0.25",
                            "0.3",
                            "0.35",
                            "0.4",
                            "0.45",
                            "0.5"
                        ],
                        "tickvals": [
                            0,
                            0.05,
                            0.1,
                            0.15,
                            0.2,
                            0.25,
                            0.3,
                            0.35,
                            0.4,
                            0.45,
                            0.5
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 11,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis1": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0,
                            0.25
                        ],
                        "ticks": "inside",
                        "title": "Annulized Ret",
                        "anchor": "x1",
                        "domain": [
                            0.11,
                            0.925
                        ],
                        "mirror": false,
                        "ticklen": 6.51,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "0.05",
                            "0.1",
                            "0.15",
                            "0.2",
                            "0.25"
                        ],
                        "tickvals": [
                            0,
                            0.05,
                            0.1,
                            0.15,
                            0.2,
                            0.25
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 11,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "autosize": false,
                    "hovermode": "closest",
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": 0.5175,
                            "y": 0.935,
                            "font": {
                                "size": 11,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "<b>ETF Clusters</b>",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.0762444124040345,
                            "y": 0.0433699850691208,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares iBoxx $ Invmt Grade Corp Bd ETF $21353mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.138948270314861,
                            "y": 0.0912392667654046,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares US Utilities ETF $756mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.169717229340314,
                            "y": 0.0366136219623863,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares US Telecommunications ETF $513mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.19384997988232,
                            "y": 0.136331263046035,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares US Technology ETF $3251mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.216469175367256,
                            "y": 0.0768645487159066,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares US Real Estate ETF $3403mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.184760440982429,
                            "y": 0.100538544491612,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares US Industrials ETF $735mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.13776222585876,
                            "y": 0.104018908389079,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares US Healthcare ETF $1653mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.20115847021482,
                            "y": 0.0582068466300614,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares US Financials ETF $1136mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.227349861941798,
                            "y": 0.0510346091944596,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares US Financial Services ETF $778mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.259223722678107,
                            "y": 0.0812093710579525,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares US Energy ETF $1127mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.133425549700296,
                            "y": 0.0995353684368697,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares US Consumer Staples ETF $566mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.170750780093274,
                            "y": 0.103620203440434,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares US Consumer Discretionary ETF $568mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.224848978495435,
                            "y": 0.0817494055200854,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares US Basic Materials ETF $621mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.245784222738487,
                            "y": 0.0538383656019764,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares U.S. Digital Infras & RE ETF $149mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.20638250879056,
                            "y": 0.100101472435324,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Transportation Average ETF $697mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.0586886972225549,
                            "y": 0.0371099946210166,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares TIPS Bond ETF $16561mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.253207415135992,
                            "y": 0.133401194903639,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Semiconductor ETF $1698mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.150679499169294,
                            "y": 0.0822693328950717,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Select Dividend ETF $11770mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.206133784685125,
                            "y": 0.0930948597385271,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares S&P Small-Cap 600 Value ETF $3633mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.190048597442388,
                            "y": 0.102288080761928,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares S&P Small-Cap 600 Growth ETF $3037mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.189396779352133,
                            "y": 0.097715711001764,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares S&P Mid-Cap 400 Value ETF $4022mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.175975876100098,
                            "y": 0.100797265165561,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares S&P Mid-Cap 400 Growth ETF $4443mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.156230333555016,
                            "y": 0.086027506886067,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares S&P 500 Value ETF $9845mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.153101239358585,
                            "y": 0.105369728323419,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares S&P 500 Growth ETF $13843mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.146888918387745,
                            "y": 0.0962815834851246,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares S&P 100 ETF $4260mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.176662677727976,
                            "y": 0.0937932251144074,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Russell Mid-Cap Value ETF $6498mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.180115349038335,
                            "y": 0.10262956921081,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Russell Mid-Cap Growth ETF $6079mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.17437152633698,
                            "y": 0.099281177996315,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Russell Mid-Cap ETF $11797mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.154320125027147,
                            "y": 0.0977207779127781,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Russell 3000 ETF $5807mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.20190909375447,
                            "y": 0.0784409732325438,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Russell 2000 Value ETF $6572mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.204843538014461,
                            "y": 0.0859460280449891,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Russell 2000 Growth ETF $5942mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.199663112808065,
                            "y": 0.0834794904744818,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Russell 2000 ETF $27492mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.15437729135514,
                            "y": 0.0808322549385252,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Russell 1000 Value ETF $23943mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.160366686628067,
                            "y": 0.113589558699514,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Russell 1000 Growth ETF $28444mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.152133316262113,
                            "y": 0.0986315564893013,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Russell 1000 ETF $12532mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.243867546075575,
                            "y": 0.0696312626792771,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares North American Natural Res ETF $1273mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.170214711067129,
                            "y": 0.047526808181406,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI United Kingdom ETF $1903mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.214385855405723,
                            "y": 0.0846571966552079,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI Taiwan ETF $3096mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.154160927894739,
                            "y": 0.0870248040715711,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI Switzerland ETF $805mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.228081508346529,
                            "y": 0.0881514460309255,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI Sweden ETF $317mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.239639520008602,
                            "y": 0.0490229117951764,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI Spain ETF $618mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.256406814836075,
                            "y": 0.0718013565839442,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI South Korea ETF $3288mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.260840781697511,
                            "y": 0.0640025904242281,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI South Africa ETF $404mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.206811235114511,
                            "y": 0.0692665708501595,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI Singapore ETF $907mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.202033967064596,
                            "y": 0.0778850931376747,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI Pacific ex Japan ETF $2614mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.20714280149953,
                            "y": 0.0810846420193643,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI Netherlands ETF $178mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.239596552216362,
                            "y": 0.0976555626376959,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI Mexico ETF $1200mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.165424307306456,
                            "y": 0.0480479728324202,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI Malaysia ETF $532mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.152302935307735,
                            "y": 0.0468297007210586,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI Japan ETF $11057mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.241425139770378,
                            "y": 0.0294030540157025,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI Italy ETF $382mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.203787059640438,
                            "y": 0.0651027905257798,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI Hong Kong ETF $1679mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.221607030596388,
                            "y": 0.0602681585337841,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI Germany ETF $2545mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.206634344312857,
                            "y": 0.0663089201863403,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI France ETF $465mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.210609360955118,
                            "y": 0.0567702682491176,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI Eurozone ETF $4911mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.207987938786282,
                            "y": 0.0693400418300612,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI Emerging Markets ETF $26913mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.168537532368263,
                            "y": 0.05904713097255,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI EAFE ETF $45440mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.198930139948204,
                            "y": 0.0746724941518052,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI Canada ETF $2737mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.334695437425839,
                            "y": 0.083397219681769,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI Brazil ETF $5734mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.204567363926682,
                            "y": 0.0548493205132899,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI Belgium ETF $86mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.26067826887687,
                            "y": 0.057892840787978,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI Austria ETF $143mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.223257980282626,
                            "y": 0.0843098304240897,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares MSCI Australia ETF $1575mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.273478182005755,
                            "y": 0.0868818480470913,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Latin America 40 ETF $1444mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.153656134596739,
                            "y": 0.0466759802599899,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares JPX-Nikkei 400 ETF $121mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.187398813669385,
                            "y": 0.125599543020347,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Global Tech ETF $1412mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.129787604609889,
                            "y": 0.0908830662647349,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Global Healthcare ETF $1404mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.210642225827307,
                            "y": 0.0468693607305173,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Global Financials ETF $406mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.235378903802681,
                            "y": 0.0726951462633124,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Global Energy ETF $1067mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.148925321439345,
                            "y": 0.067283090448747,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Global Comm Services ETF $312mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.152173697115578,
                            "y": 0.0832329662914578,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Global 100 ETF $1577mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.198900601861909,
                            "y": 0.133584703979752,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Expanded Tech-Software Sect ETF $1648mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.194389373376163,
                            "y": 0.132371481329258,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Expanded Tech Sector ETF $1139mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.183308249064149,
                            "y": 0.0614686467238497,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Europe ETF $1882mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.152964803460498,
                            "y": 0.0985931163565932,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Dow Jones US ETF $897mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.0421085369570409,
                            "y": 0.0321104289861738,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Core US Aggregate Bond ETF $33738mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.156610106458283,
                            "y": 0.0889080908684561,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Core S&P US Value ETF $3030mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.158923935525577,
                            "y": 0.10462389986459,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Core S&P US Growth ETF $3205mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.19589087902816,
                            "y": 0.0977447235669813,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Core S&P Small-Cap ETF $23495mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.179395674054281,
                            "y": 0.0991639145677968,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Core S&P Mid-Cap ETF $26122mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.149260725668112,
                            "y": 0.0976494342613013,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Core S&P 500 ETF $100058mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.231939840038459,
                            "y": 0.0845415847967735,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Cohen & Steers REIT ETF $2395mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.201227665805794,
                            "y": 0.0979655571467871,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares Biotechnology ETF $4901mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.0655438702372938,
                            "y": 0.0352249919386206,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares 7-10 Year Treasury Bond ETF $8152mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.136367222554364,
                            "y": 0.0423754823326508,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares 20+ Year Treasury Bond ETF $8172mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.0150674582124323,
                            "y": 0.0187919017423162,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "iShares 1-3 Year Treasury Bond ETF $11752mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.154498673682486,
                            "y": 0.0986663068970469,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Vanguard Total Stock Market ETF $78441mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.191482827105819,
                            "y": 0.0958113100856466,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Vanguard Extended Market ETF $4711mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.140206628152181,
                            "y": 0.091048461254514,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Utilities Select Sector SPDR® ETF $6670mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.180329455231641,
                            "y": 0.136292615741917,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Technology Select Sector SPDR® ETF $15370mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.178928676688971,
                            "y": 0.0982894174195066,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "SPDR® S&P MIDCAP 400 ETF Trust $13549mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.205302938064731,
                            "y": 0.0934856802325113,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "SPDR® S&P 600 Small Cap Value ETF $1049mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.195447255836064,
                            "y": 0.103373412882456,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "SPDR® S&P 600 Small Cap Growth ETF $823mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.14902977201575,
                            "y": 0.0974606189227747,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "SPDR® S&P 500 ETF Trust $177987mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.150428064184045,
                            "y": 0.0848287266584487,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "SPDR® Portfolio S&P 500 Value ETF $2682mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.157584871754459,
                            "y": 0.105415334437174,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "SPDR® Portfolio S&P 500 Growth ETF $3187mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.180407054285877,
                            "y": 0.0481188502739907,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "SPDR® Portfolio Europe ETF $151mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.15193166375802,
                            "y": 0.0986953236572388,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "SPDR® Port S&P 1500 Comps Stk Mkt ETF $1496mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.212407361264778,
                            "y": 0.128666202628414,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "SPDR® NYSE Technology ETF $345mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.154346160377793,
                            "y": 0.0658070441131913,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "SPDR® Global Dow ETF $104mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.214066043851149,
                            "y": 0.0525153598468671,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "SPDR® EURO STOXX 50 ETF $1784mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.229535942620079,
                            "y": 0.0771251957297874,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "SPDR® Dow Jones REIT ETF $1822mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.144382888421117,
                            "y": 0.0930439076225898,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "SPDR® Dow Jones Industrial Avrg ETF Tr $14600mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.200609285590803,
                            "y": 0.085802035322945,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Materials Select Sector SPDR® ETF $3119mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.170897156100869,
                            "y": 0.100998800665509,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Invesco S&P 500® Equal Weight ETF $10233mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.183770146094606,
                            "y": 0.140109148456804,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Invesco QQQ Trust $59580mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.161665044996877,
                            "y": 0.0848721071949335,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Invesco Bloomberg MVP Multi-factor ETF $261mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.185017603827854,
                            "y": 0.098319296489519,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Industrial Select Sector SPDR® ETF $6939mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.136171601541709,
                            "y": 0.0989747324158499,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Health Care Select Sector SPDR® ETF $12381mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.218446331194499,
                            "y": 0.0487597693037212,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Financial Select Sector SPDR® ETF $15809mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.179124145832849,
                            "y": 0.119298282219888,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Fidelity Nasdaq Composite ETF $1198mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.263566366987405,
                            "y": 0.0887853680804105,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Energy Select Sector SPDR® ETF $12269mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.116867042945273,
                            "y": 0.0912846159829784,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Consumer Staples Select Sector SPDR® ETF $7010mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.188660810738138,
                            "y": 0.106875694371847,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Consumer Discret Sel Sect SPDR® ETF $7563mm",
                            "xref": "x1",
                            "yref": "y1",
                            "align": "left",
                            "xanchor": "left",
                            "yanchor": "middle",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        }
                    ],
                    "paper_bgcolor": "rgb(255,255,255)"
                }
            },
            "height": 630,
            "width": 840,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~aewang2",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/61.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-16 15:26:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "aewang2",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-16T15:42:06.497831Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~SriniNeru/55.embed",
            "fid": "SriniNeru:55",
            "filename": "Plot 55",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/SriniNeru/55/9_5DAIFYNMKMW8N3L0DXGSO0INDXMROX.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/SriniNeru/55/2_TV1INZ2FKW7MBNBEOMJNHEDVZY99NN.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/SriniNeru/55/8_LIXVJ4S8O0BWULXA3XLN3OK9PEHQ9O.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/SriniNeru/55/9_5DAIFYNMKMW8N3L0DXGSO0INDXMROX.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/SriniNeru:55",
                "plots": "https://api.plotly.com/v2/plots/SriniNeru:55",
                "parent": "https://api.plotly.com/v2/folders/home?user=SriniNeru"
            },
            "owner": "SriniNeru",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~SriniNeru/55/",
            "world_readable": true,
            "date_modified": "2024-04-16T15:42:44.663Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~SriniNeru/55/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "2 process",
                        "type": "scatter",
                        "xsrc": "SriniNeru:54:0a2c15",
                        "ysrc": "SriniNeru:54:5af121"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "4 process",
                        "type": "scatter",
                        "xsrc": "SriniNeru:54:0a2c15",
                        "ysrc": "SriniNeru:54:5cde83",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "8 process",
                        "type": "scatter",
                        "xsrc": "SriniNeru:54:0a2c15",
                        "ysrc": "SriniNeru:54:979bdb",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "F"
                            }
                        },
                        "mode": "lines",
                        "name": "serial",
                        "type": "scatter",
                        "xsrc": "SriniNeru:54:0a2c15",
                        "ysrc": "SriniNeru:54:dcb3dd",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "RED BLACK GAUSS SEIDEL Phi vs y (at x = 0)"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -1,
                            1
                        ],
                        "title": {
                            "text": "x"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.011751944444444445,
                            0.22328694444444444
                        ],
                        "title": {
                            "text": "Phi"
                        },
                        "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/~SriniNeru",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/77.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": "2022-10-04 05:08:13",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "SriniNeru",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-16T15:41:08.363457Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~554901/11.embed",
            "fid": "554901:11",
            "filename": "Plot 11",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/554901/11/9_FKV70VGE2YFLEUG2RFJA7LKRB96UY6.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/554901/11/2_DUR7YKYR4AL4CVNNUBNF3DZ8IPGAUS.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/554901/11/8_43C9CPLPZRVCHCIIUDER8WJG9P8KS7.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/554901/11/9_FKV70VGE2YFLEUG2RFJA7LKRB96UY6.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/554901:11",
                "plots": "https://api.plotly.com/v2/plots/554901:11",
                "parent": "https://api.plotly.com/v2/folders/home?user=554901"
            },
            "owner": "554901",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~554901/11/",
            "world_readable": true,
            "date_modified": "2024-04-16T15:41:08.378Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~554901/11/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "f2d550",
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "554901:10:96dbc2",
                        "ysrc": "554901:10:37dfba",
                        "stackgroup": null
                    },
                    {
                        "uid": "eeca74",
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "D"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "554901:10:8c0e4e",
                        "ysrc": "554901:10:36f2ec",
                        "stackgroup": null
                    },
                    {
                        "uid": "7d395f",
                        "meta": {
                            "columnNames": {
                                "x": "E",
                                "y": "F"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "554901:10:c50add",
                        "ysrc": "554901:10:73a60e",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "uid": "7ab45b",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "f2d550",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.00047152696412080944,
                                        "value": 0.01617383173873868
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.04934164136839547,
                                        "value": 18.082259882432442
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    },
                    {
                        "uid": "5473be",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "eeca74",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.00038968655217906314,
                                        "value": 0.017233958352773904
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.040777676711580314,
                                        "value": 18.132188865817916
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    },
                    {
                        "uid": "d1e949",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "7d395f",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.0005261461091811086,
                                        "value": 0.01653660882693185
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.05505711147400122,
                                        "value": 18.044968180981538
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -11.011736139214895,
                            191.0117361392149
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            17.524959848125775,
                            21.429529870432553
                        ],
                        "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/~554901",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2021-10-14 18:13:32",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "554901",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-16T15:24:46.940016Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~meny6048/1.embed",
            "fid": "meny6048:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/meny6048/1/9_QF1MIV9FY99KDXPW82DOBW0UJOOIQ7.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/meny6048/1/2_W125LHLCFHJKK60A8YERHM086O1T3G.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/meny6048/1/8_7UVNXG55TY3EN5K3AWZYLWKWZGR8NW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/meny6048/1/9_QF1MIV9FY99KDXPW82DOBW0UJOOIQ7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/meny6048:1",
                "plots": "https://api.plotly.com/v2/plots/meny6048:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=meny6048"
            },
            "owner": "meny6048",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~meny6048/1/",
            "world_readable": true,
            "date_modified": "2024-04-16T15:29:11.102Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~meny6048/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "Transmittance (%)",
                        "type": "scatter",
                        "ysrc": "meny6048:2:ee072b",
                        "error_y": {},
                        "textfont": {}
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 12,
                        "color": "#000",
                        "family": "Arial, sans-serif"
                    },
                    "title": {
                        "font": {
                            "size": 0,
                            "color": "",
                            "family": ""
                        },
                        "text": "IR indigo"
                    },
                    "width": 1000,
                    "xaxis": {
                        "unit": "",
                        "dtick": 500,
                        "range": [
                            0,
                            2365
                        ],
                        "tick0": 0,
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 0,
                                "color": "",
                                "family": ""
                            },
                            "text": "Wavenumber (cm-1)"
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "mirror": true,
                        "nticks": 0,
                        "ticklen": 5,
                        "position": 0,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 0,
                            "color": "",
                            "family": ""
                        },
                        "tickmode": "auto",
                        "zeroline": true,
                        "autorange": true,
                        "gridcolor": "#ddd",
                        "gridwidth": 1,
                        "linecolor": "#000",
                        "linewidth": 1,
                        "tickangle": "auto",
                        "tickcolor": "#000",
                        "tickwidth": 1,
                        "overlaying": false,
                        "showspikes": false,
                        "showexponent": "all",
                        "zerolinecolor": "#000",
                        "zerolinewidth": 1,
                        "exponentformat": "e",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "unit": "",
                        "dtick": 5,
                        "range": [
                            40.721504555555555,
                            100.70315344444444
                        ],
                        "tick0": 0,
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 0,
                                "color": "",
                                "family": ""
                            },
                            "text": "Transmittance (%)"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "mirror": true,
                        "nticks": 0,
                        "ticklen": 5,
                        "position": 0,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 0,
                            "color": "",
                            "family": ""
                        },
                        "tickmode": "auto",
                        "zeroline": true,
                        "autorange": true,
                        "gridcolor": "#ddd",
                        "gridwidth": 1,
                        "linecolor": "#000",
                        "linewidth": 1,
                        "tickangle": "auto",
                        "tickcolor": "#000",
                        "tickwidth": 1,
                        "overlaying": false,
                        "showspikes": false,
                        "showexponent": "all",
                        "zerolinecolor": "#000",
                        "zerolinewidth": 1,
                        "exponentformat": "e",
                        "showticklabels": true
                    },
                    "bargap": 0.2,
                    "boxgap": 0.3,
                    "height": 500,
                    "legend": {
                        "font": {
                            "size": 0,
                            "color": "",
                            "family": ""
                        },
                        "bgcolor": "#fff",
                        "traceorder": "normal",
                        "bordercolor": "#000",
                        "borderwidth": 1
                    },
                    "margin": {
                        "b": 80,
                        "l": 80,
                        "r": 80,
                        "t": 80,
                        "pad": 2
                    },
                    "barmode": "stack",
                    "boxmode": "overlay",
                    "autosize": false,
                    "dragmode": "zoom",
                    "hovermode": "x",
                    "bargroupgap": 0,
                    "boxgroupgap": 0.3,
                    "plot_bgcolor": "#fff",
                    "paper_bgcolor": "#fff"
                }
            },
            "height": 500,
            "width": 1000,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~meny6048",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/59.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-16 15:24:35",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "meny6048",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-16T15:10:04.091061Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~SriniNeru/53.embed",
            "fid": "SriniNeru:53",
            "filename": "Plot 53",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/SriniNeru/53/9_2OZ9ZU61MNS84J0US7R21FGLD7K7N7.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/SriniNeru/53/2_A6097W293FQS8UHQO96S8PO03TZVLS.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/SriniNeru/53/8_KR2414RARPRFH2U1R2MWBTXVL4VRBG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/SriniNeru/53/9_2OZ9ZU61MNS84J0US7R21FGLD7K7N7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/SriniNeru:53",
                "plots": "https://api.plotly.com/v2/plots/SriniNeru:53",
                "parent": "https://api.plotly.com/v2/folders/home?user=SriniNeru"
            },
            "owner": "SriniNeru",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~SriniNeru/53/",
            "world_readable": true,
            "date_modified": "2024-04-16T15:10:04.105Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~SriniNeru/53/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "2 process",
                        "type": "scatter",
                        "xsrc": "SriniNeru:52:8f7812",
                        "ysrc": "SriniNeru:52:46abec"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "4 process",
                        "type": "scatter",
                        "xsrc": "SriniNeru:52:8f7812",
                        "ysrc": "SriniNeru:52:332caf"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "8 process",
                        "type": "scatter",
                        "xsrc": "SriniNeru:52:8f7812",
                        "ysrc": "SriniNeru:52:55ce67"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "F"
                            }
                        },
                        "mode": "lines",
                        "name": "serial",
                        "type": "scatter",
                        "xsrc": "SriniNeru:52:8f7812",
                        "ysrc": "SriniNeru:52:08ff34"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "PARALLEL JACOBI - Phi vs x (at y = 0)"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -1,
                            1
                        ],
                        "title": {
                            "text": "x"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.007417611111111112,
                            0.1409346111111111
                        ],
                        "title": {
                            "text": "Phi"
                        },
                        "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/~SriniNeru",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/77.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": "2022-10-04 05:08:13",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "SriniNeru",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-16T14:54:16.057041Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~harshpanara/2.embed",
            "fid": "harshpanara:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/harshpanara/2/9_3EEGWNVRTVG9J49GLN1D7AMOI6B0F1.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/harshpanara/2/2_IHAE80CMOVQV09HKJN5DY52T3NKQ95.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/harshpanara/2/8_3GFDEP3NJSANL25PETOVL33NVHBBA5.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/harshpanara/2/9_3EEGWNVRTVG9J49GLN1D7AMOI6B0F1.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/harshpanara:2",
                "plots": "https://api.plotly.com/v2/plots/harshpanara:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=harshpanara"
            },
            "owner": "harshpanara",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~harshpanara/2/",
            "world_readable": true,
            "date_modified": "2024-04-16T14:54:16.078Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~harshpanara/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "SF-5",
                        "type": "scatter",
                        "xsrc": "harshpanara:1:db71f5",
                        "ysrc": "harshpanara:1:8e0d92",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "SF-7",
                        "type": "scatter",
                        "xsrc": "harshpanara:1:db71f5",
                        "ysrc": "harshpanara:1:60552f",
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "SF-10",
                        "type": "scatter",
                        "xsrc": "harshpanara:1:db71f5",
                        "ysrc": "harshpanara:1:d02f1a",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "E"
                            }
                        },
                        "mode": "lines",
                        "name": "SF-12",
                        "type": "scatter",
                        "xsrc": "harshpanara:1:db71f5",
                        "ysrc": "harshpanara:1:606752",
                        "visible": true,
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "SNR Chart Over Distance"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            100,
                            3500
                        ],
                        "title": {
                            "text": "Distance (meters)"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -66.22222222222223,
                            18.22222222222222
                        ],
                        "title": {
                            "text": "SNR (dB)"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "legend": {
                        "x": 1.004924623115578,
                        "y": 1,
                        "title": {
                            "text": "<br>"
                        }
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "showlegend": true,
                    "annotations": []
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~harshpanara",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/53.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-16 14:53:52",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "harshpanara",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}