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

{
    "next": "https://api.plot.ly/v2/plots/?cursor=cD0yMDI0LTA0LTI1KzE0JTNBMTIlM0ExMi4wNzMwMDIlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNC0wNC0yNSsxNCUzQTI2JTNBMzEuMTQ0NTE3JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-25T14:26:31.144517Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~25rmburke/27.embed",
            "fid": "25rmburke:27",
            "filename": "Plot 27",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/25rmburke/27/9_OY3JEY12NPV50P83JERY8WFJZNNLUM.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/25rmburke/27/2_4PD6MBHMNSCSKZY9ES0KTQEBRZK1VD.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/25rmburke/27/8_JJEJAGEDAEPXGU55NP0BEWMSNGUU4T.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/25rmburke/27/9_OY3JEY12NPV50P83JERY8WFJZNNLUM.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/25rmburke:27",
                "plots": "https://api.plotly.com/v2/plots/25rmburke:27",
                "parent": "https://api.plotly.com/v2/folders/home?user=25rmburke"
            },
            "owner": "25rmburke",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~25rmburke/27/",
            "world_readable": true,
            "date_modified": "2024-04-25T14:37:16.658Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~25rmburke/27/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "25rmburke:26:d27026",
                        "ysrc": "25rmburke:26:93bb43"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "C"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "25rmburke:26:d27026",
                        "ysrc": "25rmburke:26:4f522d",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "D"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "25rmburke:26:d27026",
                        "ysrc": "25rmburke:26:b5f949",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Time vs difference graph "
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -6.521226415094339,
                            111.52122641509433
                        ],
                        "title": {
                            "text": "Time "
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.719774011299435,
                            9.819774011299435
                        ],
                        "title": {
                            "text": "difference "
                        },
                        "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/~25rmburke",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/8.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-01-04 15:35:02",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "25rmburke",
                "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-25T14:25:53.678100Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~24wjranallo/37.embed",
            "fid": "24wjranallo:37",
            "filename": "Plot 37",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/24wjranallo/37/9_6C613RZMPKIBB1ZHA6MPW2LB4NC3F3.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/24wjranallo/37/2_NFEVK6DJS67THEXWTM5VDLAMXGU06F.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/24wjranallo/37/8_02H0DX3PBGOZTLAT1ICXA5567FP6W7.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/24wjranallo/37/9_6C613RZMPKIBB1ZHA6MPW2LB4NC3F3.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/24wjranallo:37",
                "plots": "https://api.plotly.com/v2/plots/24wjranallo:37",
                "parent": "https://api.plotly.com/v2/folders/home?user=24wjranallo"
            },
            "owner": "24wjranallo",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~24wjranallo/37/",
            "world_readable": true,
            "date_modified": "2024-04-25T14:25:53.689Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~24wjranallo/37/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "24wjranallo:36:eb7e6c",
                        "ysrc": "24wjranallo:36:7c7e2f"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "24wjranallo:36:eb7e6c",
                        "ysrc": "24wjranallo:36:9f3fa9",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "24wjranallo:36:eb7e6c",
                        "ysrc": "24wjranallo:36:fa039e",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "time vs electric potential difference "
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -6.521226415094339,
                            111.52122641509433
                        ],
                        "title": {
                            "text": "time (s)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.7754123711340206,
                            9.985412371134021
                        ],
                        "title": {
                            "text": "e;electric potential difference (v)"
                        },
                        "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/~24wjranallo",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/27.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-01-04 15:35:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "24wjranallo",
                "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-25T14:24:49.691593Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~bpbewley/19.embed",
            "fid": "bpbewley:19",
            "filename": "Plot 19",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/bpbewley/19/9_GRLEPIAFQ2WXZCL2K55JSHVXMGOMXZ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/bpbewley/19/2_O59L7DYYGOJDRKI9Y1TK4NRMVQ9ESZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/bpbewley/19/8_M32ZIYJJAO1EMVJ7QA3SKUBCUDC8S3.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/bpbewley/19/9_GRLEPIAFQ2WXZCL2K55JSHVXMGOMXZ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/bpbewley:19",
                "plots": "https://api.plotly.com/v2/plots/bpbewley:19",
                "parent": "https://api.plotly.com/v2/folders/home?user=bpbewley"
            },
            "owner": "bpbewley",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~bpbewley/19/",
            "world_readable": true,
            "date_modified": "2024-04-25T14:24:49.703Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~bpbewley/19/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "1000 µF",
                        "type": "scatter",
                        "xsrc": "bpbewley:18:5b6999",
                        "ysrc": "bpbewley:18:7934b7"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "markers",
                        "name": "470 µF",
                        "type": "scatter",
                        "xsrc": "bpbewley:18:5b6999",
                        "ysrc": "bpbewley:18:5d2164",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "markers",
                        "name": "220 µF",
                        "type": "scatter",
                        "xsrc": "bpbewley:18:5b6999",
                        "ysrc": "bpbewley:18:ea5f47",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Electrical Potential over Time in Different Capacitors"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -6.40612725844462,
                            111.40612725844463
                        ],
                        "title": {
                            "text": "Time (s)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.674814563545907,
                            9.744814563545907
                        ],
                        "title": {
                            "text": "Electric Potential (v)"
                        },
                        "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/~bpbewley",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/95.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-01-04 15:33:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "bpbewley",
                "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-25T14:21:56.435665Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~24aestrandmark/24.embed",
            "fid": "24aestrandmark:24",
            "filename": "Plot 24",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/24aestrandmark/24/9_W7E71W1FEDJOV3NF66OAWFGET9NOB3.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/24aestrandmark/24/2_CBSDZ9F0W8V8HSMV60Z7DLZ33EVZ3A.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/24aestrandmark/24/8_GR3MQWAOJ4G347F19SJ97V0HLJ8UC8.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/24aestrandmark/24/9_W7E71W1FEDJOV3NF66OAWFGET9NOB3.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/24aestrandmark:24",
                "plots": "https://api.plotly.com/v2/plots/24aestrandmark:24",
                "parent": "https://api.plotly.com/v2/folders/home?user=24aestrandmark"
            },
            "owner": "24aestrandmark",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~24aestrandmark/24/",
            "world_readable": true,
            "date_modified": "2024-04-25T14:21:56.448Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~24aestrandmark/24/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "1000 uF",
                        "type": "scatter",
                        "xsrc": "24aestrandmark:23:bfcb97",
                        "ysrc": "24aestrandmark:23:323ad9"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "markers",
                        "name": "470 uF",
                        "type": "scatter",
                        "xsrc": "24aestrandmark:23:bfcb97",
                        "ysrc": "24aestrandmark:23:b3a763",
                        "xaxis": "x",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "markers",
                        "name": "220 uF",
                        "type": "scatter",
                        "xsrc": "24aestrandmark:23:bfcb97",
                        "ysrc": "24aestrandmark:23:71f52b",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Time vs. Potential Difference"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -6.52711703139867,
                            111.52711703139867
                        ],
                        "title": {
                            "text": "Time"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.7636254295532646,
                            9.833625429553265
                        ],
                        "title": {
                            "text": "Potential Difference"
                        },
                        "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/~24aestrandmark",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/48.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-18 16:43:26",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "24aestrandmark",
                "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-25T14:21:35.032131Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~25rwessman/15.embed",
            "fid": "25rwessman:15",
            "filename": "Plot 15",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/25rwessman/15/9_JJ3VSJPKB9VG1CJ2G06ND0JYB5VMSI.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/25rwessman/15/2_5LGMI8T1K8N7853LX8BY6Z50795PSP.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/25rwessman/15/8_A8EGFR7SIQP1F5TTLGPC9B42EU9S5U.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/25rwessman/15/9_JJ3VSJPKB9VG1CJ2G06ND0JYB5VMSI.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/25rwessman:15",
                "plots": "https://api.plotly.com/v2/plots/25rwessman:15",
                "parent": "https://api.plotly.com/v2/folders/home?user=25rwessman"
            },
            "owner": "25rwessman",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~25rwessman/15/",
            "world_readable": true,
            "date_modified": "2024-04-25T14:21:35.043Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~25rwessman/15/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "1000uF",
                        "type": "scatter",
                        "xsrc": "25rwessman:14:7760d1",
                        "ysrc": "25rwessman:14:b0c524"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "markers",
                        "name": "470uF",
                        "type": "scatter",
                        "xsrc": "25rwessman:14:7760d1",
                        "ysrc": "25rwessman:14:78f5ca",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "markers",
                        "name": "220uF",
                        "type": "scatter",
                        "xsrc": "25rwessman:14:7760d1",
                        "ysrc": "25rwessman:14:4104a1",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Time versus Potential Difference "
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -6.52415916627191,
                            111.52415916627191
                        ],
                        "title": {
                            "text": "Time (seconds)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.7636254295532646,
                            9.833625429553265
                        ],
                        "title": {
                            "text": "Potential Difference (v)"
                        },
                        "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/~25rwessman",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/4.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-01-04 15:33:54",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "25rwessman",
                "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-25T14:20:39.093208Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~25grmeyers/11.embed",
            "fid": "25grmeyers:11",
            "filename": "Plot 11",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/25grmeyers/11/9_CRS0AVC4CRMM0SJAYP3XWENGZMT5WS.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/25grmeyers/11/2_Z1WGM5H9C54K6HWN45TW42O35M4BQ4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/25grmeyers/11/8_6U4A1445UQJ3P4CB5ELXQ04HT8W97P.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/25grmeyers/11/9_CRS0AVC4CRMM0SJAYP3XWENGZMT5WS.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/25grmeyers:11",
                "plots": "https://api.plotly.com/v2/plots/25grmeyers:11",
                "parent": "https://api.plotly.com/v2/folders/home?user=25grmeyers"
            },
            "owner": "25grmeyers",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~25grmeyers/11/",
            "world_readable": true,
            "date_modified": "2024-04-25T14:23:03.031Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~25grmeyers/11/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "25grmeyers:10:0889ff",
                        "ysrc": "25grmeyers:10:d4b137"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "25grmeyers:10:0889ff",
                        "ysrc": "25grmeyers:10:f1b703",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "25grmeyers:10:0889ff",
                        "ysrc": "25grmeyers:10:eb7a35",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Time vs Voltage"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -6.521226415094339,
                            111.52122641509433
                        ],
                        "title": {
                            "text": "time"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.7754123711340206,
                            9.985412371134021
                        ],
                        "title": {
                            "text": "voltage"
                        },
                        "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/~25grmeyers",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/19.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-01-04 15:33:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "25grmeyers",
                "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-25T14:17:37.167009Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~24thluu/11.embed",
            "fid": "24thluu:11",
            "filename": "Plot 11",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/24thluu/11/9_DMWDCTMUERVJO1JYRU9WN5LQR09FG3.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/24thluu/11/2_3B19RAQZR9RMGNNVLKDACMEBOJOYHE.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/24thluu/11/8_BYP1L81C22KF49M7J73OMSXENNQCTE.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/24thluu/11/9_DMWDCTMUERVJO1JYRU9WN5LQR09FG3.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/24thluu:11",
                "plots": "https://api.plotly.com/v2/plots/24thluu:11",
                "parent": "https://api.plotly.com/v2/folders/home?user=24thluu"
            },
            "owner": "24thluu",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~24thluu/11/",
            "world_readable": true,
            "date_modified": "2024-04-25T14:17:37.177Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~24thluu/11/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "Voltage (v) across 1000  µF",
                        "type": "scatter",
                        "xsrc": "24thluu:10:a114b8",
                        "ysrc": "24thluu:10:9872e9"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "markers",
                        "name": "Voltage (v) across 470  µF",
                        "type": "scatter",
                        "xsrc": "24thluu:10:a114b8",
                        "ysrc": "24thluu:10:8213c1",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "markers",
                        "name": "Voltage (v) across 220  µF",
                        "type": "scatter",
                        "xsrc": "24thluu:10:a114b8",
                        "ysrc": "24thluu:10:f47a1a",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Different Potentials versus Different Times"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -6.643968871595331,
                            111.64396887159533
                        ],
                        "title": {
                            "text": "Time (s)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.7653092783505154,
                            9.855309278350516
                        ],
                        "title": {
                            "text": "Potential (V)"
                        },
                        "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/~24thluu",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/60.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-01-04 15:34:43",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "24thluu",
                "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-25T14:14:30.354097Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~juni8207/1.embed",
            "fid": "juni8207:1",
            "filename": "FileName",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/juni8207/1/9_SL0LPVWNSEQU8PAB6PM87MJ10VQ7ZJ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/juni8207/1/2_6Q6VJS572TW5EUOFRMOD54K6CKI4XU.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/juni8207/1/8_7YK0ZGL5OJ7S0CZ7D0K38M1FZZLJXE.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/juni8207/1/9_SL0LPVWNSEQU8PAB6PM87MJ10VQ7ZJ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/juni8207:1",
                "plots": "https://api.plotly.com/v2/plots/juni8207:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=juni8207"
            },
            "owner": "juni8207",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~juni8207/1/",
            "world_readable": true,
            "date_modified": "2024-04-25T16:00:58.540Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~juni8207/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "bar",
                        "xsrc": "juni8207:2:aedf75",
                        "ysrc": "juni8207:2:f8b768"
                    }
                ],
                "layout": {
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~juni8207",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-25 13:42:40",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "juni8207",
                "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-25T14:12:50.102602Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~myontar/2.embed",
            "fid": "myontar:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/myontar/2/9_035NQ5VIYJ8G6A5XG0WI764XK866EE.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/myontar/2/2_425MONNGKQE9AN8XCIFTEL15WBNA60.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/myontar/2/8_P12DY3X4YF02U6B8UB7IL4A3MKP79R.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/myontar/2/9_035NQ5VIYJ8G6A5XG0WI764XK866EE.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/myontar:2",
                "plots": "https://api.plotly.com/v2/plots/myontar:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=myontar"
            },
            "owner": "myontar",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~myontar/2/",
            "world_readable": true,
            "date_modified": "2024-04-25T14:12:50.114Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~myontar/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.0.hovertext",
                                "locations": "data.0.locations"
                            }
                        },
                        "name": "USA",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.0.marker.size"
                                }
                            },
                            "color": "#636efa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:c53ce7",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "USA",
                        "hovertextsrc": "myontar:0:f5f892",
                        "locationssrc": "myontar:0:2a5391",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.1.hovertext",
                                "locations": "data.1.locations"
                            }
                        },
                        "name": "BRA",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.1.marker.size"
                                }
                            },
                            "color": "#EF553B",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:54f811",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "BRA",
                        "hovertextsrc": "myontar:0:3082e8",
                        "locationssrc": "myontar:0:b53873",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.2.hovertext",
                                "locations": "data.2.locations"
                            }
                        },
                        "name": "RUS",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.2.marker.size"
                                }
                            },
                            "color": "#00cc96",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:ca1270",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "RUS",
                        "hovertextsrc": "myontar:0:96e327",
                        "locationssrc": "myontar:0:daebbb",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.3.hovertext",
                                "locations": "data.3.locations"
                            }
                        },
                        "name": "GBR",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.3.marker.size"
                                }
                            },
                            "color": "#ab63fa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:45674b",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "GBR",
                        "hovertextsrc": "myontar:0:145e08",
                        "locationssrc": "myontar:0:fbbb5b",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.4.hovertext",
                                "locations": "data.4.locations"
                            }
                        },
                        "name": "ESP",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.4.marker.size"
                                }
                            },
                            "color": "#FFA15A",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:5781ac",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "ESP",
                        "hovertextsrc": "myontar:0:c4af93",
                        "locationssrc": "myontar:0:71b2ab",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.5.hovertext",
                                "locations": "data.5.locations"
                            }
                        },
                        "name": "ITA",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.5.marker.size"
                                }
                            },
                            "color": "#19d3f3",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:2d0e9d",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "ITA",
                        "hovertextsrc": "myontar:0:5075fa",
                        "locationssrc": "myontar:0:1a1735",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.6.hovertext",
                                "locations": "data.6.locations"
                            }
                        },
                        "name": "FRA",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.6.marker.size"
                                }
                            },
                            "color": "#FF6692",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:7003a8",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "FRA",
                        "hovertextsrc": "myontar:0:f15c56",
                        "locationssrc": "myontar:0:09a99f",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.7.hovertext",
                                "locations": "data.7.locations"
                            }
                        },
                        "name": "DEU",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.7.marker.size"
                                }
                            },
                            "color": "#B6E880",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:8b04e4",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "DEU",
                        "hovertextsrc": "myontar:0:0b2fef",
                        "locationssrc": "myontar:0:dfdf94",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.8.hovertext",
                                "locations": "data.8.locations"
                            }
                        },
                        "name": "CAN",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.8.marker.size"
                                }
                            },
                            "color": "#FF97FF",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:1b07d9",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "CAN",
                        "hovertextsrc": "myontar:0:128726",
                        "locationssrc": "myontar:0:42b8a7",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.9.hovertext",
                                "locations": "data.9.locations"
                            }
                        },
                        "name": "CHN",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.9.marker.size"
                                }
                            },
                            "color": "#FECB52",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:019576",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "CHN",
                        "hovertextsrc": "myontar:0:05f406",
                        "locationssrc": "myontar:0:67111c",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.10.hovertext",
                                "locations": "data.10.locations"
                            }
                        },
                        "name": "TUR",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.10.marker.size"
                                }
                            },
                            "color": "#636efa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:bcb2da",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "TUR",
                        "hovertextsrc": "myontar:0:8574ff",
                        "locationssrc": "myontar:0:f126c7",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.11.hovertext",
                                "locations": "data.11.locations"
                            }
                        },
                        "name": "IND",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.11.marker.size"
                                }
                            },
                            "color": "#EF553B",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:6ece0f",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "IND",
                        "hovertextsrc": "myontar:0:312317",
                        "locationssrc": "myontar:0:79b21a",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.12.hovertext",
                                "locations": "data.12.locations"
                            }
                        },
                        "name": "IRN",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.12.marker.size"
                                }
                            },
                            "color": "#00cc96",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:854738",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "IRN",
                        "hovertextsrc": "myontar:0:48a211",
                        "locationssrc": "myontar:0:56ff06",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.13.hovertext",
                                "locations": "data.13.locations"
                            }
                        },
                        "name": "PER",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.13.marker.size"
                                }
                            },
                            "color": "#ab63fa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:d6443a",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "PER",
                        "hovertextsrc": "myontar:0:777609",
                        "locationssrc": "myontar:0:c286a3",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.14.hovertext",
                                "locations": "data.14.locations"
                            }
                        },
                        "name": "SAU",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.14.marker.size"
                                }
                            },
                            "color": "#FFA15A",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:14e7eb",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "SAU",
                        "hovertextsrc": "myontar:0:fe871a",
                        "locationssrc": "myontar:0:064b8b",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.15.hovertext",
                                "locations": "data.15.locations"
                            }
                        },
                        "name": "CHL",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.15.marker.size"
                                }
                            },
                            "color": "#19d3f3",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:d5f2db",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "CHL",
                        "hovertextsrc": "myontar:0:1146d8",
                        "locationssrc": "myontar:0:b70dcb",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.16.hovertext",
                                "locations": "data.16.locations"
                            }
                        },
                        "name": "MEX",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.16.marker.size"
                                }
                            },
                            "color": "#FF6692",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:a087e4",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "MEX",
                        "hovertextsrc": "myontar:0:490f57",
                        "locationssrc": "myontar:0:e03dd9",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.17.hovertext",
                                "locations": "data.17.locations"
                            }
                        },
                        "name": "BEL",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.17.marker.size"
                                }
                            },
                            "color": "#B6E880",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:2a4a44",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "BEL",
                        "hovertextsrc": "myontar:0:860e8d",
                        "locationssrc": "myontar:0:e009f0",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.18.hovertext",
                                "locations": "data.18.locations"
                            }
                        },
                        "name": "PAK",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.18.marker.size"
                                }
                            },
                            "color": "#FF97FF",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:f8c543",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "PAK",
                        "hovertextsrc": "myontar:0:3294f4",
                        "locationssrc": "myontar:0:91c4f3",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.19.hovertext",
                                "locations": "data.19.locations"
                            }
                        },
                        "name": "NLD",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.19.marker.size"
                                }
                            },
                            "color": "#FECB52",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:b2e0ce",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "NLD",
                        "hovertextsrc": "myontar:0:92887d",
                        "locationssrc": "myontar:0:1ee64b",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.20.hovertext",
                                "locations": "data.20.locations"
                            }
                        },
                        "name": "QAT",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.20.marker.size"
                                }
                            },
                            "color": "#636efa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:4d47c1",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "QAT",
                        "hovertextsrc": "myontar:0:cb8cac",
                        "locationssrc": "myontar:0:19b3df",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.21.hovertext",
                                "locations": "data.21.locations"
                            }
                        },
                        "name": "ECU",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.21.marker.size"
                                }
                            },
                            "color": "#EF553B",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:98869d",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "ECU",
                        "hovertextsrc": "myontar:0:543e7d",
                        "locationssrc": "myontar:0:186852",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.22.hovertext",
                                "locations": "data.22.locations"
                            }
                        },
                        "name": "BLR",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.22.marker.size"
                                }
                            },
                            "color": "#00cc96",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:73a4c0",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "BLR",
                        "hovertextsrc": "myontar:0:fc913e",
                        "locationssrc": "myontar:0:46f160",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.23.hovertext",
                                "locations": "data.23.locations"
                            }
                        },
                        "name": "BGD",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.23.marker.size"
                                }
                            },
                            "color": "#ab63fa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:c8de21",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "BGD",
                        "hovertextsrc": "myontar:0:590880",
                        "locationssrc": "myontar:0:a58563",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.24.hovertext",
                                "locations": "data.24.locations"
                            }
                        },
                        "name": "SWE",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.24.marker.size"
                                }
                            },
                            "color": "#FFA15A",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:4854b1",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "SWE",
                        "hovertextsrc": "myontar:0:da86d7",
                        "locationssrc": "myontar:0:9c8762",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.25.hovertext",
                                "locations": "data.25.locations"
                            }
                        },
                        "name": "SGP",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.25.marker.size"
                                }
                            },
                            "color": "#19d3f3",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:b89630",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "SGP",
                        "hovertextsrc": "myontar:0:4701f6",
                        "locationssrc": "myontar:0:a6b679",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.26.hovertext",
                                "locations": "data.26.locations"
                            }
                        },
                        "name": "PRT",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.26.marker.size"
                                }
                            },
                            "color": "#FF6692",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:78cd56",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "PRT",
                        "hovertextsrc": "myontar:0:3d2f89",
                        "locationssrc": "myontar:0:d81905",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.27.hovertext",
                                "locations": "data.27.locations"
                            }
                        },
                        "name": "CHE",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.27.marker.size"
                                }
                            },
                            "color": "#B6E880",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:82b51d",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "CHE",
                        "hovertextsrc": "myontar:0:05712b",
                        "locationssrc": "myontar:0:19e3e2",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.28.hovertext",
                                "locations": "data.28.locations"
                            }
                        },
                        "name": "ARE",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.28.marker.size"
                                }
                            },
                            "color": "#FF97FF",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:9a243b",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "ARE",
                        "hovertextsrc": "myontar:0:16ee1c",
                        "locationssrc": "myontar:0:78d018",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.29.hovertext",
                                "locations": "data.29.locations"
                            }
                        },
                        "name": "IRL",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.29.marker.size"
                                }
                            },
                            "color": "#FECB52",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:6576ad",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "IRL",
                        "hovertextsrc": "myontar:0:16ae98",
                        "locationssrc": "myontar:0:8955eb",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.30.hovertext",
                                "locations": "data.30.locations"
                            }
                        },
                        "name": "ZAF",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.30.marker.size"
                                }
                            },
                            "color": "#636efa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:5cfcf5",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "ZAF",
                        "hovertextsrc": "myontar:0:8d8238",
                        "locationssrc": "myontar:0:67594d",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.31.hovertext",
                                "locations": "data.31.locations"
                            }
                        },
                        "name": "IDN",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.31.marker.size"
                                }
                            },
                            "color": "#EF553B",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:408de0",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "IDN",
                        "hovertextsrc": "myontar:0:7e4a8a",
                        "locationssrc": "myontar:0:aee6a6",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.32.hovertext",
                                "locations": "data.32.locations"
                            }
                        },
                        "name": "COL",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.32.marker.size"
                                }
                            },
                            "color": "#00cc96",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:c1944f",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "COL",
                        "hovertextsrc": "myontar:0:4ce78f",
                        "locationssrc": "myontar:0:55e5ff",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.33.hovertext",
                                "locations": "data.33.locations"
                            }
                        },
                        "name": "KWT",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.33.marker.size"
                                }
                            },
                            "color": "#ab63fa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:332c21",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "KWT",
                        "hovertextsrc": "myontar:0:207d2e",
                        "locationssrc": "myontar:0:fb6ff2",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.34.hovertext",
                                "locations": "data.34.locations"
                            }
                        },
                        "name": "POL",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.34.marker.size"
                                }
                            },
                            "color": "#FFA15A",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:7ec8a0",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "POL",
                        "hovertextsrc": "myontar:0:61ab2d",
                        "locationssrc": "myontar:0:e92313",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.35.hovertext",
                                "locations": "data.35.locations"
                            }
                        },
                        "name": "UKR",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.35.marker.size"
                                }
                            },
                            "color": "#19d3f3",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:f0b348",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "UKR",
                        "hovertextsrc": "myontar:0:9d7b73",
                        "locationssrc": "myontar:0:6d35d9",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.36.hovertext",
                                "locations": "data.36.locations"
                            }
                        },
                        "name": "ROU",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.36.marker.size"
                                }
                            },
                            "color": "#FF6692",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:c63316",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "ROU",
                        "hovertextsrc": "myontar:0:340a37",
                        "locationssrc": "myontar:0:fe13b1",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.37.hovertext",
                                "locations": "data.37.locations"
                            }
                        },
                        "name": "EGY",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.37.marker.size"
                                }
                            },
                            "color": "#B6E880",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:b31955",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "EGY",
                        "hovertextsrc": "myontar:0:01ec3b",
                        "locationssrc": "myontar:0:72ce4d",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.38.hovertext",
                                "locations": "data.38.locations"
                            }
                        },
                        "name": "ISR",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.38.marker.size"
                                }
                            },
                            "color": "#FF97FF",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:66773e",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "ISR",
                        "hovertextsrc": "myontar:0:1cf024",
                        "locationssrc": "myontar:0:11a1aa",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.39.hovertext",
                                "locations": "data.39.locations"
                            }
                        },
                        "name": "JPN",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.39.marker.size"
                                }
                            },
                            "color": "#FECB52",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:cb1859",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "JPN",
                        "hovertextsrc": "myontar:0:7772fa",
                        "locationssrc": "myontar:0:cd8f6e",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.40.hovertext",
                                "locations": "data.40.locations"
                            }
                        },
                        "name": "AUT",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.40.marker.size"
                                }
                            },
                            "color": "#636efa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:bce221",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "AUT",
                        "hovertextsrc": "myontar:0:4fe05a",
                        "locationssrc": "myontar:0:2010db",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.41.hovertext",
                                "locations": "data.41.locations"
                            }
                        },
                        "name": "DOM",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.41.marker.size"
                                }
                            },
                            "color": "#EF553B",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:55a25b",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "DOM",
                        "hovertextsrc": "myontar:0:8299af",
                        "locationssrc": "myontar:0:edde61",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.42.hovertext",
                                "locations": "data.42.locations"
                            }
                        },
                        "name": "PHL",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.42.marker.size"
                                }
                            },
                            "color": "#00cc96",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:aea1c8",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "PHL",
                        "hovertextsrc": "myontar:0:e6719e",
                        "locationssrc": "myontar:0:2942f7",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.43.hovertext",
                                "locations": "data.43.locations"
                            }
                        },
                        "name": "AUS",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.43.marker.size"
                                }
                            },
                            "color": "#ab63fa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:6eff34",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "AUS",
                        "hovertextsrc": "myontar:0:ed94ab",
                        "locationssrc": "myontar:0:f184f6",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.44.hovertext",
                                "locations": "data.44.locations"
                            }
                        },
                        "name": "ARG",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.44.marker.size"
                                }
                            },
                            "color": "#FFA15A",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:d7b3b8",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "ARG",
                        "hovertextsrc": "myontar:0:a13e0a",
                        "locationssrc": "myontar:0:acd55d",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.45.hovertext",
                                "locations": "data.45.locations"
                            }
                        },
                        "name": "DNK",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.45.marker.size"
                                }
                            },
                            "color": "#19d3f3",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:e73b20",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "DNK",
                        "hovertextsrc": "myontar:0:3ce650",
                        "locationssrc": "myontar:0:41e3ba",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.46.hovertext",
                                "locations": "data.46.locations"
                            }
                        },
                        "name": "KOR",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.46.marker.size"
                                }
                            },
                            "color": "#FF6692",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:f5df63",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "KOR",
                        "hovertextsrc": "myontar:0:f64391",
                        "locationssrc": "myontar:0:d95c92",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.47.hovertext",
                                "locations": "data.47.locations"
                            }
                        },
                        "name": "SRB",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.47.marker.size"
                                }
                            },
                            "color": "#B6E880",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:f18fae",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "SRB",
                        "hovertextsrc": "myontar:0:857876",
                        "locationssrc": "myontar:0:cfeec4",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.48.hovertext",
                                "locations": "data.48.locations"
                            }
                        },
                        "name": "PAN",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.48.marker.size"
                                }
                            },
                            "color": "#FF97FF",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:a3d4b6",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "PAN",
                        "hovertextsrc": "myontar:0:a5aa49",
                        "locationssrc": "myontar:0:6fb9e2",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.49.hovertext",
                                "locations": "data.49.locations"
                            }
                        },
                        "name": "AFG",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.49.marker.size"
                                }
                            },
                            "color": "#FECB52",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:3bebcd",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "AFG",
                        "hovertextsrc": "myontar:0:46e629",
                        "locationssrc": "myontar:0:504a00",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.50.hovertext",
                                "locations": "data.50.locations"
                            }
                        },
                        "name": "BHR",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.50.marker.size"
                                }
                            },
                            "color": "#636efa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:7e8e18",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "BHR",
                        "hovertextsrc": "myontar:0:6a93c7",
                        "locationssrc": "myontar:0:045e5d",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.51.hovertext",
                                "locations": "data.51.locations"
                            }
                        },
                        "name": "CZE",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.51.marker.size"
                                }
                            },
                            "color": "#EF553B",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:af42ac",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "CZE",
                        "hovertextsrc": "myontar:0:797681",
                        "locationssrc": "myontar:0:47726c",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.52.hovertext",
                                "locations": "data.52.locations"
                            }
                        },
                        "name": "KAZ",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.52.marker.size"
                                }
                            },
                            "color": "#00cc96",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:96e9a0",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "KAZ",
                        "hovertextsrc": "myontar:0:88bc5d",
                        "locationssrc": "myontar:0:06cdf6",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.53.hovertext",
                                "locations": "data.53.locations"
                            }
                        },
                        "name": "DZA",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.53.marker.size"
                                }
                            },
                            "color": "#ab63fa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:0d511f",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "DZA",
                        "hovertextsrc": "myontar:0:5f2b28",
                        "locationssrc": "myontar:0:b9388f",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.54.hovertext",
                                "locations": "data.54.locations"
                            }
                        },
                        "name": "NOR",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.54.marker.size"
                                }
                            },
                            "color": "#FFA15A",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:b06b3f",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "NOR",
                        "hovertextsrc": "myontar:0:a40ef3",
                        "locationssrc": "myontar:0:cffeca",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.55.hovertext",
                                "locations": "data.55.locations"
                            }
                        },
                        "name": "NGA",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.55.marker.size"
                                }
                            },
                            "color": "#19d3f3",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:1a8843",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "NGA",
                        "hovertextsrc": "myontar:0:5578ec",
                        "locationssrc": "myontar:0:c6a489",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.56.hovertext",
                                "locations": "data.56.locations"
                            }
                        },
                        "name": "OMN",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.56.marker.size"
                                }
                            },
                            "color": "#FF6692",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:2900db",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "OMN",
                        "hovertextsrc": "myontar:0:2cdcfb",
                        "locationssrc": "myontar:0:922df9",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.57.hovertext",
                                "locations": "data.57.locations"
                            }
                        },
                        "name": "MAR",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.57.marker.size"
                                }
                            },
                            "color": "#B6E880",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:5bb676",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "MAR",
                        "hovertextsrc": "myontar:0:578b79",
                        "locationssrc": "myontar:0:e2572b",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.58.hovertext",
                                "locations": "data.58.locations"
                            }
                        },
                        "name": "MYS",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.58.marker.size"
                                }
                            },
                            "color": "#FF97FF",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:51d355",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "MYS",
                        "hovertextsrc": "myontar:0:aa2da4",
                        "locationssrc": "myontar:0:efbb8e",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.59.hovertext",
                                "locations": "data.59.locations"
                            }
                        },
                        "name": "MDA",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.59.marker.size"
                                }
                            },
                            "color": "#FECB52",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:08546e",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "MDA",
                        "hovertextsrc": "myontar:0:7afb7e",
                        "locationssrc": "myontar:0:1fe5de",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.60.hovertext",
                                "locations": "data.60.locations"
                            }
                        },
                        "name": "ARM",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.60.marker.size"
                                }
                            },
                            "color": "#636efa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:cc009c",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "ARM",
                        "hovertextsrc": "myontar:0:08c22a",
                        "locationssrc": "myontar:0:4aede1",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.61.hovertext",
                                "locations": "data.61.locations"
                            }
                        },
                        "name": "GHA",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.61.marker.size"
                                }
                            },
                            "color": "#EF553B",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:0f5513",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "GHA",
                        "hovertextsrc": "myontar:0:9e80cd",
                        "locationssrc": "myontar:0:9aae9f",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.62.hovertext",
                                "locations": "data.62.locations"
                            }
                        },
                        "name": "BOL",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.62.marker.size"
                                }
                            },
                            "color": "#00cc96",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:1397ef",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "BOL",
                        "hovertextsrc": "myontar:0:159da8",
                        "locationssrc": "myontar:0:3ad21c",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.63.hovertext",
                                "locations": "data.63.locations"
                            }
                        },
                        "name": "FIN",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.63.marker.size"
                                }
                            },
                            "color": "#ab63fa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:08993e",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "FIN",
                        "hovertextsrc": "myontar:0:fe1001",
                        "locationssrc": "myontar:0:d21ced",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.64.hovertext",
                                "locations": "data.64.locations"
                            }
                        },
                        "name": "CMR",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.64.marker.size"
                                }
                            },
                            "color": "#FFA15A",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:5b641f",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "CMR",
                        "hovertextsrc": "myontar:0:32243a",
                        "locationssrc": "myontar:0:c4eba6",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.65.hovertext",
                                "locations": "data.65.locations"
                            }
                        },
                        "name": "IRQ",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.65.marker.size"
                                }
                            },
                            "color": "#19d3f3",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:3ff53a",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "IRQ",
                        "hovertextsrc": "myontar:0:8b5981",
                        "locationssrc": "myontar:0:29a183",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.66.hovertext",
                                "locations": "data.66.locations"
                            }
                        },
                        "name": "AZE",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.66.marker.size"
                                }
                            },
                            "color": "#FF6692",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:49100c",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "AZE",
                        "hovertextsrc": "myontar:0:49b815",
                        "locationssrc": "myontar:0:9e66ef",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.67.hovertext",
                                "locations": "data.67.locations"
                            }
                        },
                        "name": "HND",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.67.marker.size"
                                }
                            },
                            "color": "#B6E880",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:472244",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "HND",
                        "hovertextsrc": "myontar:0:10fd78",
                        "locationssrc": "myontar:0:4ed8a8",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.68.hovertext",
                                "locations": "data.68.locations"
                            }
                        },
                        "name": "LUX",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.68.marker.size"
                                }
                            },
                            "color": "#FF97FF",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:ad730a",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "LUX",
                        "hovertextsrc": "myontar:0:9e8827",
                        "locationssrc": "myontar:0:894b23",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.69.hovertext",
                                "locations": "data.69.locations"
                            }
                        },
                        "name": "SDN",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.69.marker.size"
                                }
                            },
                            "color": "#FECB52",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:c931ce",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "SDN",
                        "hovertextsrc": "myontar:0:521a18",
                        "locationssrc": "myontar:0:29ddee",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.70.hovertext",
                                "locations": "data.70.locations"
                            }
                        },
                        "name": "GTM",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.70.marker.size"
                                }
                            },
                            "color": "#636efa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:20c7f9",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "GTM",
                        "hovertextsrc": "myontar:0:9bd1f0",
                        "locationssrc": "myontar:0:aec91b",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.71.hovertext",
                                "locations": "data.71.locations"
                            }
                        },
                        "name": "HUN",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.71.marker.size"
                                }
                            },
                            "color": "#EF553B",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:cdf01c",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "HUN",
                        "hovertextsrc": "myontar:0:688cfc",
                        "locationssrc": "myontar:0:c7b681",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.72.hovertext",
                                "locations": "data.72.locations"
                            }
                        },
                        "name": "GIN",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.72.marker.size"
                                }
                            },
                            "color": "#00cc96",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:0b8d53",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "GIN",
                        "hovertextsrc": "myontar:0:9a5490",
                        "locationssrc": "myontar:0:13a00c",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.73.hovertext",
                                "locations": "data.73.locations"
                            }
                        },
                        "name": "UZB",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.73.marker.size"
                                }
                            },
                            "color": "#ab63fa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:b72cb5",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "UZB",
                        "hovertextsrc": "myontar:0:13ed38",
                        "locationssrc": "myontar:0:5f08b8",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.74.hovertext",
                                "locations": "data.74.locations"
                            }
                        },
                        "name": "SEN",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.74.marker.size"
                                }
                            },
                            "color": "#FFA15A",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:9dbdd4",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "SEN",
                        "hovertextsrc": "myontar:0:65ebfa",
                        "locationssrc": "myontar:0:2fc961",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.75.hovertext",
                                "locations": "data.75.locations"
                            }
                        },
                        "name": "TJK",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.75.marker.size"
                                }
                            },
                            "color": "#19d3f3",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:436cbe",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "TJK",
                        "hovertextsrc": "myontar:0:9deeca",
                        "locationssrc": "myontar:0:0e8994",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.76.hovertext",
                                "locations": "data.76.locations"
                            }
                        },
                        "name": "THA",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.76.marker.size"
                                }
                            },
                            "color": "#FF6692",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:2e4ec0",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "THA",
                        "hovertextsrc": "myontar:0:ba3da3",
                        "locationssrc": "myontar:0:3e2034",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.77.hovertext",
                                "locations": "data.77.locations"
                            }
                        },
                        "name": "GRC",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.77.marker.size"
                                }
                            },
                            "color": "#B6E880",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:013f0e",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "GRC",
                        "hovertextsrc": "myontar:0:226ed0",
                        "locationssrc": "myontar:0:0ae0f3",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.78.hovertext",
                                "locations": "data.78.locations"
                            }
                        },
                        "name": "DJI",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.78.marker.size"
                                }
                            },
                            "color": "#FF97FF",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:a9e1dd",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "DJI",
                        "hovertextsrc": "myontar:0:049c65",
                        "locationssrc": "myontar:0:8abf39",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.79.hovertext",
                                "locations": "data.79.locations"
                            }
                        },
                        "name": "BGR",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.79.marker.size"
                                }
                            },
                            "color": "#FECB52",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:e3edf2",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "BGR",
                        "hovertextsrc": "myontar:0:72fb34",
                        "locationssrc": "myontar:0:ff952d",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.80.hovertext",
                                "locations": "data.80.locations"
                            }
                        },
                        "name": "CIV",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.80.marker.size"
                                }
                            },
                            "color": "#636efa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:af564c",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "CIV",
                        "hovertextsrc": "myontar:0:21c310",
                        "locationssrc": "myontar:0:403f62",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.81.hovertext",
                                "locations": "data.81.locations"
                            }
                        },
                        "name": "BIH",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.81.marker.size"
                                }
                            },
                            "color": "#EF553B",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:1dbc13",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "BIH",
                        "hovertextsrc": "myontar:0:7e008c",
                        "locationssrc": "myontar:0:c8b66d",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.82.hovertext",
                                "locations": "data.82.locations"
                            }
                        },
                        "name": "COG",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.82.marker.size"
                                }
                            },
                            "color": "#00cc96",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:086e1f",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "COG",
                        "hovertextsrc": "myontar:0:3fb845",
                        "locationssrc": "myontar:0:a02490",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.83.hovertext",
                                "locations": "data.83.locations"
                            }
                        },
                        "name": "HRV",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.83.marker.size"
                                }
                            },
                            "color": "#ab63fa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:d0919f",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "HRV",
                        "hovertextsrc": "myontar:0:97dbc2",
                        "locationssrc": "myontar:0:31cfa1",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.84.hovertext",
                                "locations": "data.84.locations"
                            }
                        },
                        "name": "GAB",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.84.marker.size"
                                }
                            },
                            "color": "#FFA15A",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:156833",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "GAB",
                        "hovertextsrc": "myontar:0:5fffde",
                        "locationssrc": "myontar:0:2a9aa4",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.85.hovertext",
                                "locations": "data.85.locations"
                            }
                        },
                        "name": "MKD",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.85.marker.size"
                                }
                            },
                            "color": "#19d3f3",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:a04d7c",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "MKD",
                        "hovertextsrc": "myontar:0:8db8e3",
                        "locationssrc": "myontar:0:094d7c",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.86.hovertext",
                                "locations": "data.86.locations"
                            }
                        },
                        "name": "SLV",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.86.marker.size"
                                }
                            },
                            "color": "#FF6692",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:2d1637",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "SLV",
                        "hovertextsrc": "myontar:0:6e81df",
                        "locationssrc": "myontar:0:e31f6f",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.87.hovertext",
                                "locations": "data.87.locations"
                            }
                        },
                        "name": "CUB",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.87.marker.size"
                                }
                            },
                            "color": "#B6E880",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:865bff",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "CUB",
                        "hovertextsrc": "myontar:0:ff3809",
                        "locationssrc": "myontar:0:8921af",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.88.hovertext",
                                "locations": "data.88.locations"
                            }
                        },
                        "name": "EST",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.88.marker.size"
                                }
                            },
                            "color": "#FF97FF",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:bed4a3",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "EST",
                        "hovertextsrc": "myontar:0:d93fde",
                        "locationssrc": "myontar:0:6e0476",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.89.hovertext",
                                "locations": "data.89.locations"
                            }
                        },
                        "name": "ISL",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.89.marker.size"
                                }
                            },
                            "color": "#FECB52",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:d4d7e0",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "ISL",
                        "hovertextsrc": "myontar:0:ae0f9d",
                        "locationssrc": "myontar:0:626afd",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.90.hovertext",
                                "locations": "data.90.locations"
                            }
                        },
                        "name": "SOM",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.90.marker.size"
                                }
                            },
                            "color": "#636efa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:bb8f5a",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "SOM",
                        "hovertextsrc": "myontar:0:87f519",
                        "locationssrc": "myontar:0:769a88",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.91.hovertext",
                                "locations": "data.91.locations"
                            }
                        },
                        "name": "LTU",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.91.marker.size"
                                }
                            },
                            "color": "#EF553B",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:7ca87d",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "LTU",
                        "hovertextsrc": "myontar:0:ffb57d",
                        "locationssrc": "myontar:0:caba5f",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.92.hovertext",
                                "locations": "data.92.locations"
                            }
                        },
                        "name": "SVK",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.92.marker.size"
                                }
                            },
                            "color": "#00cc96",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:0237a9",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "SVK",
                        "hovertextsrc": "myontar:0:f55032",
                        "locationssrc": "myontar:0:d5c99f",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.93.hovertext",
                                "locations": "data.93.locations"
                            }
                        },
                        "name": "NZL",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.93.marker.size"
                                }
                            },
                            "color": "#ab63fa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:c6dd51",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "NZL",
                        "hovertextsrc": "myontar:0:108966",
                        "locationssrc": "myontar:0:c8624e",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.94.hovertext",
                                "locations": "data.94.locations"
                            }
                        },
                        "name": "SVN",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.94.marker.size"
                                }
                            },
                            "color": "#FFA15A",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:4f7d3f",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "SVN",
                        "hovertextsrc": "myontar:0:1df0de",
                        "locationssrc": "myontar:0:c5e4fe",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.95.hovertext",
                                "locations": "data.95.locations"
                            }
                        },
                        "name": "KGZ",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.95.marker.size"
                                }
                            },
                            "color": "#19d3f3",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:ffbcda",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "KGZ",
                        "hovertextsrc": "myontar:0:aeb924",
                        "locationssrc": "myontar:0:2c80db",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.96.hovertext",
                                "locations": "data.96.locations"
                            }
                        },
                        "name": "MDV",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.96.marker.size"
                                }
                            },
                            "color": "#FF6692",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:fe86a7",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "MDV",
                        "hovertextsrc": "myontar:0:3ceb85",
                        "locationssrc": "myontar:0:610e33",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.97.hovertext",
                                "locations": "data.97.locations"
                            }
                        },
                        "name": "KEN",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.97.marker.size"
                                }
                            },
                            "color": "#B6E880",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:44ca7e",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "KEN",
                        "hovertextsrc": "myontar:0:c0cca7",
                        "locationssrc": "myontar:0:a7bca7",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.98.hovertext",
                                "locations": "data.98.locations"
                            }
                        },
                        "name": "LKA",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.98.marker.size"
                                }
                            },
                            "color": "#FF97FF",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:cf96e3",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "LKA",
                        "hovertextsrc": "myontar:0:d8193c",
                        "locationssrc": "myontar:0:6a65ca",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.99.hovertext",
                                "locations": "data.99.locations"
                            }
                        },
                        "name": "GNB",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.99.marker.size"
                                }
                            },
                            "color": "#FECB52",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:de786a",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "GNB",
                        "hovertextsrc": "myontar:0:b9dc80",
                        "locationssrc": "myontar:0:c8d895",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.100.hovertext",
                                "locations": "data.100.locations"
                            }
                        },
                        "name": "VEN",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.100.marker.size"
                                }
                            },
                            "color": "#636efa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:748fb5",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "VEN",
                        "hovertextsrc": "myontar:0:1d9bbb",
                        "locationssrc": "myontar:0:d013f7",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.101.hovertext",
                                "locations": "data.101.locations"
                            }
                        },
                        "name": "LBN",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.101.marker.size"
                                }
                            },
                            "color": "#EF553B",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:3a5323",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "LBN",
                        "hovertextsrc": "myontar:0:989461",
                        "locationssrc": "myontar:0:a54287",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.102.hovertext",
                                "locations": "data.102.locations"
                            }
                        },
                        "name": "MLI",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.102.marker.size"
                                }
                            },
                            "color": "#00cc96",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:5b5fe4",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "MLI",
                        "hovertextsrc": "myontar:0:8e7fc4",
                        "locationssrc": "myontar:0:74e7c3",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.103.hovertext",
                                "locations": "data.103.locations"
                            }
                        },
                        "name": "TUN",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.103.marker.size"
                                }
                            },
                            "color": "#ab63fa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:d20847",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "TUN",
                        "hovertextsrc": "myontar:0:57c8ad",
                        "locationssrc": "myontar:0:b8f771",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.104.hovertext",
                                "locations": "data.104.locations"
                            }
                        },
                        "name": "LVA",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.104.marker.size"
                                }
                            },
                            "color": "#FFA15A",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:262468",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "LVA",
                        "hovertextsrc": "myontar:0:78d2c6",
                        "locationssrc": "myontar:0:19546e",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.105.hovertext",
                                "locations": "data.105.locations"
                            }
                        },
                        "name": "GNQ",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.105.marker.size"
                                }
                            },
                            "color": "#19d3f3",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:ad07f2",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "GNQ",
                        "hovertextsrc": "myontar:0:5bc948",
                        "locationssrc": "myontar:0:43eb74",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.106.hovertext",
                                "locations": "data.106.locations"
                            }
                        },
                        "name": "XK",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.106.marker.size"
                                }
                            },
                            "color": "#FF6692",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:3f8c80",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "XK",
                        "hovertextsrc": "myontar:0:88887b",
                        "locationssrc": "myontar:0:54ffea",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.107.hovertext",
                                "locations": "data.107.locations"
                            }
                        },
                        "name": "ALB",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.107.marker.size"
                                }
                            },
                            "color": "#B6E880",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:4a3a59",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "ALB",
                        "hovertextsrc": "myontar:0:0c4983",
                        "locationssrc": "myontar:0:43e719",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.108.hovertext",
                                "locations": "data.108.locations"
                            }
                        },
                        "name": "HTI",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.108.marker.size"
                                }
                            },
                            "color": "#FF97FF",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:91c75f",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "HTI",
                        "hovertextsrc": "myontar:0:fd9f18",
                        "locationssrc": "myontar:0:6c4b6d",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.109.hovertext",
                                "locations": "data.109.locations"
                            }
                        },
                        "name": "NER",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.109.marker.size"
                                }
                            },
                            "color": "#FECB52",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:cf1eda",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "NER",
                        "hovertextsrc": "myontar:0:f3b1b3",
                        "locationssrc": "myontar:0:3bd912",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.110.hovertext",
                                "locations": "data.110.locations"
                            }
                        },
                        "name": "CRI",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.110.marker.size"
                                }
                            },
                            "color": "#636efa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:bb816a",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "CRI",
                        "hovertextsrc": "myontar:0:99ae5a",
                        "locationssrc": "myontar:0:819e2a",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.111.hovertext",
                                "locations": "data.111.locations"
                            }
                        },
                        "name": "CYP",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.111.marker.size"
                                }
                            },
                            "color": "#EF553B",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:600690",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "CYP",
                        "hovertextsrc": "myontar:0:6980d4",
                        "locationssrc": "myontar:0:abcdac",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.112.hovertext",
                                "locations": "data.112.locations"
                            }
                        },
                        "name": "ZMB",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.112.marker.size"
                                }
                            },
                            "color": "#00cc96",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:ca70ba",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "ZMB",
                        "hovertextsrc": "myontar:0:5bc569",
                        "locationssrc": "myontar:0:d0273d",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.113.hovertext",
                                "locations": "data.113.locations"
                            }
                        },
                        "name": "PRY",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.113.marker.size"
                                }
                            },
                            "color": "#ab63fa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:8a227f",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "PRY",
                        "hovertextsrc": "myontar:0:ce582c",
                        "locationssrc": "myontar:0:429cb8",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.114.hovertext",
                                "locations": "data.114.locations"
                            }
                        },
                        "name": "BFA",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.114.marker.size"
                                }
                            },
                            "color": "#FFA15A",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:28aba5",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "BFA",
                        "hovertextsrc": "myontar:0:864e92",
                        "locationssrc": "myontar:0:be3cc9",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.115.hovertext",
                                "locations": "data.115.locations"
                            }
                        },
                        "name": "SSD",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.115.marker.size"
                                }
                            },
                            "color": "#19d3f3",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:af18be",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "SSD",
                        "hovertextsrc": "myontar:0:888a9b",
                        "locationssrc": "myontar:0:c468b8",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.116.hovertext",
                                "locations": "data.116.locations"
                            }
                        },
                        "name": "URY",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.116.marker.size"
                                }
                            },
                            "color": "#FF6692",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:012164",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "URY",
                        "hovertextsrc": "myontar:0:ba3609",
                        "locationssrc": "myontar:0:b2e9be",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.117.hovertext",
                                "locations": "data.117.locations"
                            }
                        },
                        "name": "AND",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.117.marker.size"
                                }
                            },
                            "color": "#B6E880",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:0db64a",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "AND",
                        "hovertextsrc": "myontar:0:3ed788",
                        "locationssrc": "myontar:0:5d6d8c",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.118.hovertext",
                                "locations": "data.118.locations"
                            }
                        },
                        "name": "SLE",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.118.marker.size"
                                }
                            },
                            "color": "#FF97FF",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:ce1121",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "SLE",
                        "hovertextsrc": "myontar:0:ba2368",
                        "locationssrc": "myontar:0:6f8ec6",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.119.hovertext",
                                "locations": "data.119.locations"
                            }
                        },
                        "name": "GEO",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.119.marker.size"
                                }
                            },
                            "color": "#FECB52",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:348223",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "GEO",
                        "hovertextsrc": "myontar:0:c7484b",
                        "locationssrc": "myontar:0:111ebd",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.120.hovertext",
                                "locations": "data.120.locations"
                            }
                        },
                        "name": "Diamond Princess",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.120.marker.size"
                                }
                            },
                            "color": "#636efa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:6e12c3",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Diamond Princess",
                        "hovertextsrc": "myontar:0:bd073c",
                        "locationssrc": "myontar:0:d3d729",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.121.hovertext",
                                "locations": "data.121.locations"
                            }
                        },
                        "name": "JOR",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.121.marker.size"
                                }
                            },
                            "color": "#EF553B",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:ab1f3e",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "JOR",
                        "hovertextsrc": "myontar:0:9ab2fa",
                        "locationssrc": "myontar:0:8115f7",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.122.hovertext",
                                "locations": "data.122.locations"
                            }
                        },
                        "name": "TCD",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.122.marker.size"
                                }
                            },
                            "color": "#00cc96",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:5ea588",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "TCD",
                        "hovertextsrc": "myontar:0:de8478",
                        "locationssrc": "myontar:0:2ecdfe",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.123.hovertext",
                                "locations": "data.123.locations"
                            }
                        },
                        "name": "NPL",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.123.marker.size"
                                }
                            },
                            "color": "#ab63fa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:b6c189",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "NPL",
                        "hovertextsrc": "myontar:0:10e96a",
                        "locationssrc": "myontar:0:533b0a",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.124.hovertext",
                                "locations": "data.124.locations"
                            }
                        },
                        "name": "SMR",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.124.marker.size"
                                }
                            },
                            "color": "#FFA15A",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:0b8549",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "SMR",
                        "hovertextsrc": "myontar:0:480c5d",
                        "locationssrc": "myontar:0:ad2249",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.125.hovertext",
                                "locations": "data.125.locations"
                            }
                        },
                        "name": "ETH",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.125.marker.size"
                                }
                            },
                            "color": "#19d3f3",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:b8393a",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "ETH",
                        "hovertextsrc": "myontar:0:9c7a09",
                        "locationssrc": "myontar:0:5f4ae6",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.126.hovertext",
                                "locations": "data.126.locations"
                            }
                        },
                        "name": "CAF",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.126.marker.size"
                                }
                            },
                            "color": "#FF6692",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:b35d0b",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "CAF",
                        "hovertextsrc": "myontar:0:9ed64a",
                        "locationssrc": "myontar:0:8a8b12",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.127.hovertext",
                                "locations": "data.127.locations"
                            }
                        },
                        "name": "MLT",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.127.marker.size"
                                }
                            },
                            "color": "#B6E880",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:0f42c9",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "MLT",
                        "hovertextsrc": "myontar:0:8c823d",
                        "locationssrc": "myontar:0:ccf911",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.128.hovertext",
                                "locations": "data.128.locations"
                            }
                        },
                        "name": "JAM",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.128.marker.size"
                                }
                            },
                            "color": "#FF97FF",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:09f2ac",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "JAM",
                        "hovertextsrc": "myontar:0:b9efe3",
                        "locationssrc": "myontar:0:0fb0e4",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.129.hovertext",
                                "locations": "data.129.locations"
                            }
                        },
                        "name": "MDG",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.129.marker.size"
                                }
                            },
                            "color": "#FECB52",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:01aac8",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "MDG",
                        "hovertextsrc": "myontar:0:be5c98",
                        "locationssrc": "myontar:0:8b5e2a",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.130.hovertext",
                                "locations": "data.130.locations"
                            }
                        },
                        "name": "TZA",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.130.marker.size"
                                }
                            },
                            "color": "#636efa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:10ecd5",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "TZA",
                        "hovertextsrc": "myontar:0:a662dc",
                        "locationssrc": "myontar:0:565c63",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.131.hovertext",
                                "locations": "data.131.locations"
                            }
                        },
                        "name": "COD",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.131.marker.size"
                                }
                            },
                            "color": "#EF553B",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:e9b21a",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "COD",
                        "hovertextsrc": "myontar:0:24f166",
                        "locationssrc": "myontar:0:1510e0",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.132.hovertext",
                                "locations": "data.132.locations"
                            }
                        },
                        "name": "TWN",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.132.marker.size"
                                }
                            },
                            "color": "#00cc96",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:6af0ef",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "TWN",
                        "hovertextsrc": "myontar:0:4c8aec",
                        "locationssrc": "myontar:0:d49a7a",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.133.hovertext",
                                "locations": "data.133.locations"
                            }
                        },
                        "name": "West Bank and Gaza",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.133.marker.size"
                                }
                            },
                            "color": "#ab63fa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:038ba4",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "West Bank and Gaza",
                        "hovertextsrc": "myontar:0:60b222",
                        "locationssrc": "myontar:0:274458",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.134.hovertext",
                                "locations": "data.134.locations"
                            }
                        },
                        "name": "CPV",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.134.marker.size"
                                }
                            },
                            "color": "#FFA15A",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:de54ed",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "CPV",
                        "hovertextsrc": "myontar:0:38395a",
                        "locationssrc": "myontar:0:c5ea7c",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.135.hovertext",
                                "locations": "data.135.locations"
                            }
                        },
                        "name": "TGO",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.135.marker.size"
                                }
                            },
                            "color": "#19d3f3",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:660e96",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "TGO",
                        "hovertextsrc": "myontar:0:5dbaae",
                        "locationssrc": "myontar:0:59b1cd",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.136.hovertext",
                                "locations": "data.136.locations"
                            }
                        },
                        "name": "RWA",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.136.marker.size"
                                }
                            },
                            "color": "#FF6692",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:e94365",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "RWA",
                        "hovertextsrc": "myontar:0:cab090",
                        "locationssrc": "myontar:0:6f1300",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.137.hovertext",
                                "locations": "data.137.locations"
                            }
                        },
                        "name": "MUS",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.137.marker.size"
                                }
                            },
                            "color": "#B6E880",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:2c8a6d",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "MUS",
                        "hovertextsrc": "myontar:0:358d7c",
                        "locationssrc": "myontar:0:501887",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.138.hovertext",
                                "locations": "data.138.locations"
                            }
                        },
                        "name": "VNM",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.138.marker.size"
                                }
                            },
                            "color": "#FF97FF",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:b7b22e",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "VNM",
                        "hovertextsrc": "myontar:0:c1a935",
                        "locationssrc": "myontar:0:eff7ba",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.139.hovertext",
                                "locations": "data.139.locations"
                            }
                        },
                        "name": "MNE",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.139.marker.size"
                                }
                            },
                            "color": "#FECB52",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:326048",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "MNE",
                        "hovertextsrc": "myontar:0:5862cb",
                        "locationssrc": "myontar:0:7c07ca",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.140.hovertext",
                                "locations": "data.140.locations"
                            }
                        },
                        "name": "STP",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.140.marker.size"
                                }
                            },
                            "color": "#636efa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:061482",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "STP",
                        "hovertextsrc": "myontar:0:77bdd6",
                        "locationssrc": "myontar:0:64b8ab",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.141.hovertext",
                                "locations": "data.141.locations"
                            }
                        },
                        "name": "NIC",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.141.marker.size"
                                }
                            },
                            "color": "#EF553B",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:2da453",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "NIC",
                        "hovertextsrc": "myontar:0:b89059",
                        "locationssrc": "myontar:0:c51a13",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.142.hovertext",
                                "locations": "data.142.locations"
                            }
                        },
                        "name": "LBR",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.142.marker.size"
                                }
                            },
                            "color": "#00cc96",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:2c5e6c",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "LBR",
                        "hovertextsrc": "myontar:0:37d3b4",
                        "locationssrc": "myontar:0:8f86d7",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.143.hovertext",
                                "locations": "data.143.locations"
                            }
                        },
                        "name": "MRT",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.143.marker.size"
                                }
                            },
                            "color": "#ab63fa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:ec97f5",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "MRT",
                        "hovertextsrc": "myontar:0:b06aa0",
                        "locationssrc": "myontar:0:98d9b6",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.144.hovertext",
                                "locations": "data.144.locations"
                            }
                        },
                        "name": "SWZ",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.144.marker.size"
                                }
                            },
                            "color": "#FFA15A",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:a234ca",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "SWZ",
                        "hovertextsrc": "myontar:0:85abf0",
                        "locationssrc": "myontar:0:529b96",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.145.hovertext",
                                "locations": "data.145.locations"
                            }
                        },
                        "name": "YEM",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.145.marker.size"
                                }
                            },
                            "color": "#19d3f3",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:fdbd44",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "YEM",
                        "hovertextsrc": "myontar:0:2813cb",
                        "locationssrc": "myontar:0:06a677",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.146.hovertext",
                                "locations": "data.146.locations"
                            }
                        },
                        "name": "UGA",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.146.marker.size"
                                }
                            },
                            "color": "#FF6692",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:1cbb09",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "UGA",
                        "hovertextsrc": "myontar:0:ef9303",
                        "locationssrc": "myontar:0:7d9957",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.147.hovertext",
                                "locations": "data.147.locations"
                            }
                        },
                        "name": "MOZ",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.147.marker.size"
                                }
                            },
                            "color": "#B6E880",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:bb7e3a",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "MOZ",
                        "hovertextsrc": "myontar:0:ee4a50",
                        "locationssrc": "myontar:0:494391",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.148.hovertext",
                                "locations": "data.148.locations"
                            }
                        },
                        "name": "MM",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.148.marker.size"
                                }
                            },
                            "color": "#FF97FF",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:ae6805",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "MM",
                        "hovertextsrc": "myontar:0:843883",
                        "locationssrc": "myontar:0:5a5e28",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.149.hovertext",
                                "locations": "data.149.locations"
                            }
                        },
                        "name": "BEN",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.149.marker.size"
                                }
                            },
                            "color": "#FECB52",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:e4211a",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "BEN",
                        "hovertextsrc": "myontar:0:d683d3",
                        "locationssrc": "myontar:0:7d4f25",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.150.hovertext",
                                "locations": "data.150.locations"
                            }
                        },
                        "name": "BRN",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.150.marker.size"
                                }
                            },
                            "color": "#636efa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:ca120a",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "BRN",
                        "hovertextsrc": "myontar:0:ee6717",
                        "locationssrc": "myontar:0:4354e3",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.151.hovertext",
                                "locations": "data.151.locations"
                            }
                        },
                        "name": "MNG",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.151.marker.size"
                                }
                            },
                            "color": "#EF553B",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:358d77",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "MNG",
                        "hovertextsrc": "myontar:0:bcaf10",
                        "locationssrc": "myontar:0:348967",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.152.hovertext",
                                "locations": "data.152.locations"
                            }
                        },
                        "name": "GUY",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.152.marker.size"
                                }
                            },
                            "color": "#00cc96",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:090553",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "GUY",
                        "hovertextsrc": "myontar:0:926eb0",
                        "locationssrc": "myontar:0:a5f6c2",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.153.hovertext",
                                "locations": "data.153.locations"
                            }
                        },
                        "name": "KHM",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.153.marker.size"
                                }
                            },
                            "color": "#ab63fa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:b9fec0",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "KHM",
                        "hovertextsrc": "myontar:0:1f6286",
                        "locationssrc": "myontar:0:2a6e73",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.154.hovertext",
                                "locations": "data.154.locations"
                            }
                        },
                        "name": "TTO",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.154.marker.size"
                                }
                            },
                            "color": "#FFA15A",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:e6ccaf",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "TTO",
                        "hovertextsrc": "myontar:0:4af76a",
                        "locationssrc": "myontar:0:2532bd",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.155.hovertext",
                                "locations": "data.155.locations"
                            }
                        },
                        "name": "SYR",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.155.marker.size"
                                }
                            },
                            "color": "#19d3f3",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:bdd104",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "SYR",
                        "hovertextsrc": "myontar:0:725b65",
                        "locationssrc": "myontar:0:d10dd1",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.156.hovertext",
                                "locations": "data.156.locations"
                            }
                        },
                        "name": "MWI",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.156.marker.size"
                                }
                            },
                            "color": "#FF6692",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:d417ec",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "MWI",
                        "hovertextsrc": "myontar:0:a655e5",
                        "locationssrc": "myontar:0:2ce4fe",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.157.hovertext",
                                "locations": "data.157.locations"
                            }
                        },
                        "name": "BHS",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.157.marker.size"
                                }
                            },
                            "color": "#B6E880",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:eb96d0",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "BHS",
                        "hovertextsrc": "myontar:0:4707f3",
                        "locationssrc": "myontar:0:5eff59",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.158.hovertext",
                                "locations": "data.158.locations"
                            }
                        },
                        "name": "MCO",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.158.marker.size"
                                }
                            },
                            "color": "#FF97FF",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:88e9e4",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "MCO",
                        "hovertextsrc": "myontar:0:080a38",
                        "locationssrc": "myontar:0:88ab87",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.159.hovertext",
                                "locations": "data.159.locations"
                            }
                        },
                        "name": "BRB",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.159.marker.size"
                                }
                            },
                            "color": "#FECB52",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:167814",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "BRB",
                        "hovertextsrc": "myontar:0:086a5e",
                        "locationssrc": "myontar:0:9f974b",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.160.hovertext",
                                "locations": "data.160.locations"
                            }
                        },
                        "name": "COM",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.160.marker.size"
                                }
                            },
                            "color": "#636efa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:cfa928",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "COM",
                        "hovertextsrc": "myontar:0:29fff0",
                        "locationssrc": "myontar:0:33abb3",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.161.hovertext",
                                "locations": "data.161.locations"
                            }
                        },
                        "name": "LIE",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.161.marker.size"
                                }
                            },
                            "color": "#EF553B",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:159abc",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "LIE",
                        "hovertextsrc": "myontar:0:3194c7",
                        "locationssrc": "myontar:0:dcbde1",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.162.hovertext",
                                "locations": "data.162.locations"
                            }
                        },
                        "name": "LBY",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.162.marker.size"
                                }
                            },
                            "color": "#00cc96",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:30af14",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "LBY",
                        "hovertextsrc": "myontar:0:03919d",
                        "locationssrc": "myontar:0:61803a",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.163.hovertext",
                                "locations": "data.163.locations"
                            }
                        },
                        "name": "AGO",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.163.marker.size"
                                }
                            },
                            "color": "#ab63fa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:49a4db",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "AGO",
                        "hovertextsrc": "myontar:0:6b0ae6",
                        "locationssrc": "myontar:0:7bf5ff",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.164.hovertext",
                                "locations": "data.164.locations"
                            }
                        },
                        "name": "ZWE",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.164.marker.size"
                                }
                            },
                            "color": "#FFA15A",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:355c0e",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "ZWE",
                        "hovertextsrc": "myontar:0:083af0",
                        "locationssrc": "myontar:0:598ca3",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.165.hovertext",
                                "locations": "data.165.locations"
                            }
                        },
                        "name": "BDI",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.165.marker.size"
                                }
                            },
                            "color": "#19d3f3",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:134025",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "BDI",
                        "hovertextsrc": "myontar:0:90b818",
                        "locationssrc": "myontar:0:017c32",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.166.hovertext",
                                "locations": "data.166.locations"
                            }
                        },
                        "name": "ERI",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.166.marker.size"
                                }
                            },
                            "color": "#FF6692",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:937667",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "ERI",
                        "hovertextsrc": "myontar:0:7b080d",
                        "locationssrc": "myontar:0:86cdae",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.167.hovertext",
                                "locations": "data.167.locations"
                            }
                        },
                        "name": "BWA",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.167.marker.size"
                                }
                            },
                            "color": "#B6E880",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:b56612",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "BWA",
                        "hovertextsrc": "myontar:0:55acce",
                        "locationssrc": "myontar:0:8b0485",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.168.hovertext",
                                "locations": "data.168.locations"
                            }
                        },
                        "name": "BTN",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.168.marker.size"
                                }
                            },
                            "color": "#FF97FF",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:3a7845",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "BTN",
                        "hovertextsrc": "myontar:0:5af2fc",
                        "locationssrc": "myontar:0:adc6b7",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.169.hovertext",
                                "locations": "data.169.locations"
                            }
                        },
                        "name": "ATG",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.169.marker.size"
                                }
                            },
                            "color": "#FECB52",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:a9642b",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "ATG",
                        "hovertextsrc": "myontar:0:a8288a",
                        "locationssrc": "myontar:0:69c7ce",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.170.hovertext",
                                "locations": "data.170.locations"
                            }
                        },
                        "name": "GMB",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.170.marker.size"
                                }
                            },
                            "color": "#636efa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:602f03",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "GMB",
                        "hovertextsrc": "myontar:0:2a4f42",
                        "locationssrc": "myontar:0:340193",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.171.hovertext",
                                "locations": "data.171.locations"
                            }
                        },
                        "name": "TLS",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.171.marker.size"
                                }
                            },
                            "color": "#EF553B",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:1cc71c",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "TLS",
                        "hovertextsrc": "myontar:0:c4730b",
                        "locationssrc": "myontar:0:644873",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.172.hovertext",
                                "locations": "data.172.locations"
                            }
                        },
                        "name": "GRD",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.172.marker.size"
                                }
                            },
                            "color": "#00cc96",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:306f13",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "GRD",
                        "hovertextsrc": "myontar:0:1b627a",
                        "locationssrc": "myontar:0:e4c6f2",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.173.hovertext",
                                "locations": "data.173.locations"
                            }
                        },
                        "name": "NAM",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.173.marker.size"
                                }
                            },
                            "color": "#ab63fa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:89266b",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "NAM",
                        "hovertextsrc": "myontar:0:a83f25",
                        "locationssrc": "myontar:0:a38a2a",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.174.hovertext",
                                "locations": "data.174.locations"
                            }
                        },
                        "name": "LAO",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.174.marker.size"
                                }
                            },
                            "color": "#FFA15A",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:4bacbb",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "LAO",
                        "hovertextsrc": "myontar:0:0dd969",
                        "locationssrc": "myontar:0:499202",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.175.hovertext",
                                "locations": "data.175.locations"
                            }
                        },
                        "name": "VCT",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.175.marker.size"
                                }
                            },
                            "color": "#19d3f3",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:2bac4d",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "VCT",
                        "hovertextsrc": "myontar:0:9a7859",
                        "locationssrc": "myontar:0:ecabf8",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.176.hovertext",
                                "locations": "data.176.locations"
                            }
                        },
                        "name": "LCA",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.176.marker.size"
                                }
                            },
                            "color": "#FF6692",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:6aecdf",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "LCA",
                        "hovertextsrc": "myontar:0:a69fce",
                        "locationssrc": "myontar:0:2dfc74",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.177.hovertext",
                                "locations": "data.177.locations"
                            }
                        },
                        "name": "FJI",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.177.marker.size"
                                }
                            },
                            "color": "#B6E880",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:d3b8e1",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "FJI",
                        "hovertextsrc": "myontar:0:121ca7",
                        "locationssrc": "myontar:0:bd4fe3",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.178.hovertext",
                                "locations": "data.178.locations"
                            }
                        },
                        "name": "BLZ",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.178.marker.size"
                                }
                            },
                            "color": "#FF97FF",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:da4523",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "BLZ",
                        "hovertextsrc": "myontar:0:d092f5",
                        "locationssrc": "myontar:0:ac7d8e",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.179.hovertext",
                                "locations": "data.179.locations"
                            }
                        },
                        "name": "DMA",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.179.marker.size"
                                }
                            },
                            "color": "#FECB52",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:5d5cde",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "DMA",
                        "hovertextsrc": "myontar:0:f5a860",
                        "locationssrc": "myontar:0:a9516f",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.180.hovertext",
                                "locations": "data.180.locations"
                            }
                        },
                        "name": "KNA",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.180.marker.size"
                                }
                            },
                            "color": "#636efa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:d02d18",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "KNA",
                        "hovertextsrc": "myontar:0:eb6422",
                        "locationssrc": "myontar:0:f03309",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.181.hovertext",
                                "locations": "data.181.locations"
                            }
                        },
                        "name": "VAT",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.181.marker.size"
                                }
                            },
                            "color": "#EF553B",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:db1a25",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "VAT",
                        "hovertextsrc": "myontar:0:1d1c8f",
                        "locationssrc": "myontar:0:0fd76d",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.182.hovertext",
                                "locations": "data.182.locations"
                            }
                        },
                        "name": "SYC",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.182.marker.size"
                                }
                            },
                            "color": "#00cc96",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:40a2b7",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "SYC",
                        "hovertextsrc": "myontar:0:0064b4",
                        "locationssrc": "myontar:0:8a4c94",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.183.hovertext",
                                "locations": "data.183.locations"
                            }
                        },
                        "name": "SUR",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.183.marker.size"
                                }
                            },
                            "color": "#ab63fa",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:badb16",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "SUR",
                        "hovertextsrc": "myontar:0:0b627a",
                        "locationssrc": "myontar:0:a9a0e8",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.184.hovertext",
                                "locations": "data.184.locations"
                            }
                        },
                        "name": "MA",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.184.marker.size"
                                }
                            },
                            "color": "#FFA15A",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:5bd6c8",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "MA",
                        "hovertextsrc": "myontar:0:f0f4a0",
                        "locationssrc": "myontar:0:17f37a",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.185.hovertext",
                                "locations": "data.185.locations"
                            }
                        },
                        "name": "ESH",
                        "type": "scattergeo",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.185.marker.size"
                                }
                            },
                            "color": "#19d3f3",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:b1305b",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "ESH",
                        "hovertextsrc": "myontar:0:c012b7",
                        "locationssrc": "myontar:0:fdf15d",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "meta": {
                            "columnNames": {
                                "hovertext": "data.186.hovertext",
                                "locations": "data.186.locations"
                            }
                        },
                        "name": "PNG",
                        "type": "choropleth",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "data.186.marker.size"
                                }
                            },
                            "color": "#FF6692",
                            "sizeref": 12426.075,
                            "sizesrc": "myontar:0:5eb3aa",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "PNG",
                        "hovertextsrc": "myontar:0:80bf39",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CODE=%{location}<br>size=%{marker.size}<extra></extra>"
                    }
                ],
                "frames": [],
                "layout": {
                    "geo": {
                        "scope": "world",
                        "center": {
                            "lat": 7.248517930858941,
                            "lon": -30.439140851658976
                        },
                        "domain": {
                            "x": [
                                0,
                                1
                            ],
                            "y": [
                                0,
                                1
                            ]
                        },
                        "fitbounds": false,
                        "landcolor": "rgb(237, 237, 237)",
                        "showocean": false,
                        "framewidth": 2,
                        "projection": {
                            "type": "equirectangular",
                            "scale": 1.3031471493632945,
                            "rotation": {
                                "lon": -30.439140851658976
                            }
                        },
                        "countrywidth": 1,
                        "showcountries": true
                    },
                    "legend": {
                        "title": {
                            "text": "CODE"
                        },
                        "itemsizing": "constant",
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "t": 60
                    },
                    "autosize": true,
                    "dragmode": "orbit",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(237,237,237)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(217,217,217)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(51,51,51)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(51,51,51)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(51,51,51)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(51,51,51)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "rgb(237,237,237)",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(51,51,51)"
                            },
                            "polar": {
                                "bgcolor": "rgb(237,237,237)",
                                "radialaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "angularaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                },
                                "yaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                },
                                "zaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                }
                            },
                            "xaxis": {
                                "ticks": "outside",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "tickcolor": "rgb(51,51,51)",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "yaxis": {
                                "ticks": "outside",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "tickcolor": "rgb(51,51,51)",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "baxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "caxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "bgcolor": "rgb(237,237,237)"
                            },
                            "colorway": [
                                "#F8766D",
                                "#A3A500",
                                "#00BF7D",
                                "#00B0F6",
                                "#E76BF3"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#40004b"
                                    ],
                                    [
                                        0.1,
                                        "#762a83"
                                    ],
                                    [
                                        0.2,
                                        "#9970ab"
                                    ],
                                    [
                                        0.3,
                                        "#c2a5cf"
                                    ],
                                    [
                                        0.4,
                                        "#e7d4e8"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#d9f0d3"
                                    ],
                                    [
                                        0.7,
                                        "#a6dba0"
                                    ],
                                    [
                                        0.8,
                                        "#5aae61"
                                    ],
                                    [
                                        0.9,
                                        "#1b7837"
                                    ],
                                    [
                                        1,
                                        "#00441b"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "rgb(20,44,66)"
                                    ],
                                    [
                                        1,
                                        "rgb(90,179,244)"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "rgb(20,44,66)"
                                    ],
                                    [
                                        1,
                                        "rgb(90,179,244)"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "rgb(237,237,237)",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.3,
                                "fillcolor": "black"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "GGPLOT2"
                    },
                    "uniformtext": {
                        "mode": "show",
                        "minsize": 2
                    },
                    "paper_bgcolor": "rgb(255, 255, 255)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~myontar",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/71.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-25 12:54:24",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "myontar",
                "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-25T14:12:12.073002Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~25ebkanneman/25.embed",
            "fid": "25ebkanneman:25",
            "filename": "Plot 25",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/25ebkanneman/25/9_CK27LE0UNH6HMKSW58LKTF0VVST8IY.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/25ebkanneman/25/2_LK8NQI1Q3YUNTR2EN8NTKEN4P4O9JU.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/25ebkanneman/25/8_15V8KKI3H7PFMYVF088SWL7ZJH39DO.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/25ebkanneman/25/9_CK27LE0UNH6HMKSW58LKTF0VVST8IY.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/25ebkanneman:25",
                "plots": "https://api.plotly.com/v2/plots/25ebkanneman:25",
                "parent": "https://api.plotly.com/v2/folders/home?user=25ebkanneman"
            },
            "owner": "25ebkanneman",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~25ebkanneman/25/",
            "world_readable": true,
            "date_modified": "2024-04-25T14:12:12.085Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~25ebkanneman/25/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "25ebkanneman:24:285c33",
                        "ysrc": "25ebkanneman:24:0ab23d"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "25ebkanneman:24:285c33",
                        "ysrc": "25ebkanneman:24:bebe14",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "25ebkanneman:24:285c33",
                        "ysrc": "25ebkanneman:24:451425",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -6.521226415094339,
                            111.52122641509433
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.7041626921038687,
                            9.77416269210387
                        ],
                        "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/~25ebkanneman",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/45.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-01-04 15:35:32",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "25ebkanneman",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}