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

{
    "next": "https://api.plot.ly/v2/plots/?cursor=cD0yMDI0LTA0LTMwKzAzJTNBNTElM0EwOC40NzQ0ODYlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNC0wNC0zMCswNiUzQTQyJTNBMjAuNTYxODk0JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-30T06:42:20.561894Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Priyansh998/1.embed",
            "fid": "Priyansh998:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Priyansh998/1/9_1SHXB89UV7OM4JQB91LC9HVYA2VQTM.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Priyansh998/1/2_XTNHAKWFW3JFVJQW41W0BZ48UCR4CX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Priyansh998/1/8_PFNIGNCZDALQG1O02DFC6GCU67EBGW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Priyansh998/1/9_1SHXB89UV7OM4JQB91LC9HVYA2VQTM.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Priyansh998:1",
                "plots": "https://api.plotly.com/v2/plots/Priyansh998:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Priyansh998"
            },
            "owner": "Priyansh998",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Priyansh998/1/",
            "world_readable": true,
            "date_modified": "2024-04-30T07:15:47.315Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Priyansh998/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "Weight",
                        "type": "scatter",
                        "xsrc": "Priyansh998:0:e6de23",
                        "ysrc": "Priyansh998:0:908106"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "Deflection",
                        "type": "scatter",
                        "xsrc": "Priyansh998:0:e6de23",
                        "ysrc": "Priyansh998:0:92fe57",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "Stress",
                        "type": "scatter",
                        "xsrc": "Priyansh998:0:e6de23",
                        "ysrc": "Priyansh998:0:d42a75",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            2
                        ],
                        "title": {
                            "text": "Weight, deflection and stress curve under 1000 kN load"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.6320194444444445,
                            3.1246305555555556
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "annotations": []
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Priyansh998",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/36.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-04-30 06:41:36",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Priyansh998",
                "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-30T06:32:54.656234Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~T_Oshima/4.embed",
            "fid": "T_Oshima:4",
            "filename": "歴史年表",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/T_Oshima/4/9_6WJRATW9GUJGXCEDAPF6DR2HLXMM2V.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/T_Oshima:4/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/T_Oshima:4/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/T_Oshima/4/9_6WJRATW9GUJGXCEDAPF6DR2HLXMM2V.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/T_Oshima:4",
                "plots": "https://api.plotly.com/v2/plots/T_Oshima:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=T_Oshima"
            },
            "owner": "T_Oshima",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 51,
            "web_url": "https://chart-studio.plotly.com/~T_Oshima/4/",
            "world_readable": true,
            "date_modified": "2024-12-06T15:32:10.884Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~T_Oshima/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "00_人類の起源",
                        "type": "bar",
                        "xsrc": "T_Oshima:208:460d1a",
                        "ysrc": "T_Oshima:208:81171b",
                        "basesrc": "T_Oshima:208:21887d",
                        "textsrc": "T_Oshima:208:98ae78",
                        "hoverinfo": "text",
                        "orientation": "h",
                        "hovertextsrc": "T_Oshima:208:5413e1",
                        "textposition": "outside"
                    },
                    {
                        "name": "01_時代",
                        "type": "bar",
                        "xsrc": "T_Oshima:208:358222",
                        "ysrc": "T_Oshima:208:878a0f",
                        "basesrc": "T_Oshima:208:a43cd3",
                        "textsrc": "T_Oshima:208:b2b867",
                        "hoverinfo": "text",
                        "orientation": "h",
                        "hovertextsrc": "T_Oshima:208:4f7018",
                        "textposition": "outside"
                    },
                    {
                        "name": "02_国家",
                        "type": "bar",
                        "xsrc": "T_Oshima:208:5f998a",
                        "ysrc": "T_Oshima:208:681f5b",
                        "basesrc": "T_Oshima:208:4ca627",
                        "textsrc": "T_Oshima:208:6552c3",
                        "hoverinfo": "text",
                        "orientation": "h",
                        "hovertextsrc": "T_Oshima:208:5a37e5",
                        "textposition": "outside"
                    },
                    {
                        "name": "05_宗教",
                        "type": "bar",
                        "xsrc": "T_Oshima:208:77cfa7",
                        "ysrc": "T_Oshima:208:452620",
                        "basesrc": "T_Oshima:208:b4d741",
                        "textsrc": "T_Oshima:208:f00a6e",
                        "hoverinfo": "text",
                        "orientation": "h",
                        "hovertextsrc": "T_Oshima:208:3bc477",
                        "textposition": "outside"
                    },
                    {
                        "name": "06_哲学",
                        "type": "bar",
                        "xsrc": "T_Oshima:208:bfa4df",
                        "ysrc": "T_Oshima:208:5ff961",
                        "basesrc": "T_Oshima:208:36e666",
                        "textsrc": "T_Oshima:208:d27b35",
                        "hoverinfo": "text",
                        "orientation": "h",
                        "hovertextsrc": "T_Oshima:208:d3372f",
                        "textposition": "outside"
                    },
                    {
                        "name": "04_争い",
                        "type": "bar",
                        "xsrc": "T_Oshima:208:e5f475",
                        "ysrc": "T_Oshima:208:31bbdb",
                        "basesrc": "T_Oshima:208:f822e6",
                        "textsrc": "T_Oshima:208:7183e2",
                        "hoverinfo": "text",
                        "orientation": "h",
                        "hovertextsrc": "T_Oshima:208:6b306a",
                        "textposition": "outside"
                    },
                    {
                        "name": "03_社会",
                        "type": "bar",
                        "xsrc": "T_Oshima:208:86980e",
                        "ysrc": "T_Oshima:208:5806b9",
                        "basesrc": "T_Oshima:208:3a9e95",
                        "textsrc": "T_Oshima:208:31e04b",
                        "hoverinfo": "text",
                        "orientation": "h",
                        "hovertextsrc": "T_Oshima:208:bdc2ce",
                        "textposition": "outside"
                    },
                    {
                        "name": "09_科学・技術",
                        "type": "bar",
                        "xsrc": "T_Oshima:208:a9c114",
                        "ysrc": "T_Oshima:208:b9ec16",
                        "basesrc": "T_Oshima:208:a4c86f",
                        "textsrc": "T_Oshima:208:e99743",
                        "hoverinfo": "text",
                        "orientation": "h",
                        "hovertextsrc": "T_Oshima:208:59d8de",
                        "textposition": "outside"
                    },
                    {
                        "name": "08_音楽",
                        "type": "bar",
                        "xsrc": "T_Oshima:208:d4abeb",
                        "ysrc": "T_Oshima:208:36facb",
                        "basesrc": "T_Oshima:208:809b11",
                        "textsrc": "T_Oshima:208:e13508",
                        "hoverinfo": "text",
                        "orientation": "h",
                        "hovertextsrc": "T_Oshima:208:43bd84",
                        "textposition": "outside"
                    },
                    {
                        "name": "07_芸術",
                        "type": "bar",
                        "xsrc": "T_Oshima:208:a17dc9",
                        "ysrc": "T_Oshima:208:3b23ef",
                        "basesrc": "T_Oshima:208:06aabb",
                        "textsrc": "T_Oshima:208:43d8af",
                        "hoverinfo": "text",
                        "orientation": "h",
                        "hovertextsrc": "T_Oshima:208:0def86",
                        "textposition": "outside"
                    },
                    {
                        "name": "11_環境",
                        "type": "bar",
                        "xsrc": "T_Oshima:208:801a78",
                        "ysrc": "T_Oshima:208:956bfc",
                        "basesrc": "T_Oshima:208:75f70a",
                        "textsrc": "T_Oshima:208:e53b59",
                        "hoverinfo": "text",
                        "orientation": "h",
                        "hovertextsrc": "T_Oshima:208:a68ef6",
                        "textposition": "outside"
                    },
                    {
                        "name": "10_病気",
                        "type": "bar",
                        "xsrc": "T_Oshima:208:ff0b1e",
                        "ysrc": "T_Oshima:208:e975fc",
                        "basesrc": "T_Oshima:208:c23269",
                        "textsrc": "T_Oshima:208:461880",
                        "hoverinfo": "text",
                        "orientation": "h",
                        "hovertextsrc": "T_Oshima:208:e470b8",
                        "textposition": "outside"
                    }
                ],
                "layout": {
                    "font": {
                        "color": "white"
                    },
                    "title": {
                        "font": {
                            "size": 20
                        },
                        "text": "歴史年表"
                    },
                    "xaxis": {
                        "title": {
                            "text": "year"
                        }
                    },
                    "yaxis": {
                        "autorange": "reversed",
                        "showticklabels": false
                    },
                    "colorway": [
                        "#709fb0",
                        "#BDB76B",
                        "#e76f51",
                        "#f4a261",
                        "#2a9d8f",
                        "#f2cc8f",
                        "#6A5ACD",
                        "#9db4c0"
                    ],
                    "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
                            }
                        }
                    },
                    "plot_bgcolor": "#46607A",
                    "paper_bgcolor": "#2c3e50"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~T_Oshima",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-30 05:43:36",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "T_Oshima",
                "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-30T06:32:04.231316Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~iamolvr/2.embed",
            "fid": "iamolvr:2",
            "filename": "agent_stats_mean",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/iamolvr/2/9_IZOF4HNX8WBUFEKZZMAI2UAZDZ7HIY.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/iamolvr/2/2_HUCZFZU1KQ0PB8J616UYCE2DUA0V3X.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/iamolvr/2/8_51WQDNTMY6NRG7P4B1T2GBYUFONQDD.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/iamolvr/2/9_IZOF4HNX8WBUFEKZZMAI2UAZDZ7HIY.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/iamolvr:2",
                "plots": "https://api.plotly.com/v2/plots/iamolvr:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=iamolvr"
            },
            "owner": "iamolvr",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 85,
            "web_url": "https://chart-studio.plotly.com/~iamolvr/2/",
            "world_readable": true,
            "date_modified": "2024-04-30T07:26:30.878Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~iamolvr/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.0.x"
                            }
                        },
                        "name": "Top Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:17b305",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "lightseagreen"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.1.x"
                            }
                        },
                        "name": "Bad Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:6bd9fc",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "indianred"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.2.x"
                            }
                        },
                        "name": "Top Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:99bcd0",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "color": "lightseagreen"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.3.x"
                            }
                        },
                        "name": "Bad Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:70f102",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "color": "indianred"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.4.x"
                            }
                        },
                        "name": "Top Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:5ea87e",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "color": "lightseagreen"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.5.x"
                            }
                        },
                        "name": "Bad Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:85c11f",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "color": "indianred"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.6.x"
                            }
                        },
                        "name": "Top Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:56ef75",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "color": "lightseagreen"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.7.x"
                            }
                        },
                        "name": "Bad Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:db8225",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "color": "indianred"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.8.x"
                            }
                        },
                        "name": "Top Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:f8bfd4",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "marker": {
                            "color": "lightseagreen"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.9.x"
                            }
                        },
                        "name": "Bad Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:821c96",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "marker": {
                            "color": "indianred"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.10.x"
                            }
                        },
                        "name": "Top Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:eee3ad",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "marker": {
                            "color": "lightseagreen"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.11.x"
                            }
                        },
                        "name": "Bad Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:3fe5bb",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "marker": {
                            "color": "indianred"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.12.x"
                            }
                        },
                        "name": "Top Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:3c28d4",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "marker": {
                            "color": "lightseagreen"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.13.x"
                            }
                        },
                        "name": "Bad Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:4c468e",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "marker": {
                            "color": "indianred"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.14.x"
                            }
                        },
                        "name": "Top Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:a131aa",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "marker": {
                            "color": "lightseagreen"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.15.x"
                            }
                        },
                        "name": "Bad Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:8aea5f",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "marker": {
                            "color": "indianred"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.16.x"
                            }
                        },
                        "name": "Top Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:78e96a",
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "marker": {
                            "color": "lightseagreen"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.17.x"
                            }
                        },
                        "name": "Bad Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:b0c7a2",
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "marker": {
                            "color": "indianred"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.18.x"
                            }
                        },
                        "name": "Top Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:125fe7",
                        "xaxis": "x10",
                        "yaxis": "y10",
                        "marker": {
                            "color": "lightseagreen"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.19.x"
                            }
                        },
                        "name": "Bad Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:a2295b",
                        "xaxis": "x10",
                        "yaxis": "y10",
                        "marker": {
                            "color": "indianred"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.20.x"
                            }
                        },
                        "name": "Top Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:cb1803",
                        "xaxis": "x11",
                        "yaxis": "y11",
                        "marker": {
                            "color": "lightseagreen"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.21.x"
                            }
                        },
                        "name": "Bad Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:9c307d",
                        "xaxis": "x11",
                        "yaxis": "y11",
                        "marker": {
                            "color": "indianred"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.22.x"
                            }
                        },
                        "name": "Top Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:52c303",
                        "xaxis": "x12",
                        "yaxis": "y12",
                        "marker": {
                            "color": "lightseagreen"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.23.x"
                            }
                        },
                        "name": "Bad Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:5f2c83",
                        "xaxis": "x12",
                        "yaxis": "y12",
                        "marker": {
                            "color": "indianred"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.24.x"
                            }
                        },
                        "name": "Top Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:7348df",
                        "xaxis": "x13",
                        "yaxis": "y13",
                        "marker": {
                            "color": "lightseagreen"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.25.x"
                            }
                        },
                        "name": "Bad Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:c2b292",
                        "xaxis": "x13",
                        "yaxis": "y13",
                        "marker": {
                            "color": "indianred"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.26.x"
                            }
                        },
                        "name": "Top Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:bff664",
                        "xaxis": "x14",
                        "yaxis": "y14",
                        "marker": {
                            "color": "lightseagreen"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.27.x"
                            }
                        },
                        "name": "Bad Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:a742c8",
                        "xaxis": "x14",
                        "yaxis": "y14",
                        "marker": {
                            "color": "indianred"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.28.x"
                            }
                        },
                        "name": "Top Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:d3a334",
                        "xaxis": "x15",
                        "yaxis": "y15",
                        "marker": {
                            "color": "lightseagreen"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.29.x"
                            }
                        },
                        "name": "Bad Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:3f5d60",
                        "xaxis": "x15",
                        "yaxis": "y15",
                        "marker": {
                            "color": "indianred"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.30.x"
                            }
                        },
                        "name": "Top Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:0787d8",
                        "xaxis": "x16",
                        "yaxis": "y16",
                        "marker": {
                            "color": "lightseagreen"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.31.x"
                            }
                        },
                        "name": "Bad Agents",
                        "type": "box",
                        "xsrc": "iamolvr:1:9d3160",
                        "xaxis": "x16",
                        "yaxis": "y16",
                        "marker": {
                            "color": "indianred"
                        },
                        "boxmean": true,
                        "boxpoints": "all"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Comparison of various daily stats between top agents and other agents (starting from 2023-07-01)"
                    },
                    "width": 1000,
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.24315336463223788,
                            4.61991392801252
                        ],
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -0.5365575019040366,
                            1.5
                        ],
                        "anchor": "x",
                        "domain": [
                            0.9562499999999998,
                            0.9999999999999998
                        ],
                        "autorange": true
                    },
                    "height": 4000,
                    "xaxis2": {
                        "type": "linear",
                        "range": [
                            -2.8982873851294904,
                            55.067460317460316
                        ],
                        "anchor": "y2",
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "xaxis3": {
                        "type": "linear",
                        "range": [
                            -2.469191919191919,
                            46.91464646464647
                        ],
                        "anchor": "y3",
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "xaxis4": {
                        "type": "linear",
                        "range": [
                            -109.60074334898279,
                            2082.4141236306727
                        ],
                        "anchor": "y4",
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "xaxis5": {
                        "type": "linear",
                        "range": [
                            -32.129043256949544,
                            610.4518218820414
                        ],
                        "anchor": "y5",
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "xaxis6": {
                        "type": "linear",
                        "range": [
                            -0.05555555555555555,
                            1.0555555555555556
                        ],
                        "anchor": "y6",
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "xaxis7": {
                        "type": "linear",
                        "range": [
                            -0.07294028722600152,
                            1.3858654572940285
                        ],
                        "anchor": "y7",
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "xaxis8": {
                        "type": "linear",
                        "range": [
                            -4.418686868686868,
                            83.9550505050505
                        ],
                        "anchor": "y8",
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "xaxis9": {
                        "type": "linear",
                        "range": [
                            -4.3040404040404034,
                            81.77676767676768
                        ],
                        "anchor": "y9",
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "yaxis2": {
                        "type": "category",
                        "range": [
                            -0.5365575019040366,
                            1.5
                        ],
                        "anchor": "x2",
                        "domain": [
                            0.8925,
                            0.9362499999999999
                        ],
                        "autorange": true
                    },
                    "yaxis3": {
                        "type": "category",
                        "range": [
                            -0.5365575019040366,
                            1.5
                        ],
                        "anchor": "x3",
                        "domain": [
                            0.82875,
                            0.8724999999999999
                        ],
                        "autorange": true
                    },
                    "yaxis4": {
                        "type": "category",
                        "range": [
                            -0.5365575019040366,
                            1.5
                        ],
                        "anchor": "x4",
                        "domain": [
                            0.765,
                            0.80875
                        ],
                        "autorange": true
                    },
                    "yaxis5": {
                        "type": "category",
                        "range": [
                            -0.5365575019040366,
                            1.5
                        ],
                        "anchor": "x5",
                        "domain": [
                            0.70125,
                            0.745
                        ],
                        "autorange": true
                    },
                    "yaxis6": {
                        "type": "category",
                        "range": [
                            -0.5365575019040366,
                            1.5
                        ],
                        "anchor": "x6",
                        "domain": [
                            0.6375000000000001,
                            0.68125
                        ],
                        "autorange": true
                    },
                    "yaxis7": {
                        "type": "category",
                        "range": [
                            -0.5365575019040366,
                            1.5
                        ],
                        "anchor": "x7",
                        "domain": [
                            0.57375,
                            0.6174999999999999
                        ],
                        "autorange": true
                    },
                    "yaxis8": {
                        "type": "category",
                        "range": [
                            -0.5365575019040366,
                            1.5
                        ],
                        "anchor": "x8",
                        "domain": [
                            0.51,
                            0.55375
                        ],
                        "autorange": true
                    },
                    "yaxis9": {
                        "type": "category",
                        "range": [
                            -0.5365575019040365,
                            1.5
                        ],
                        "anchor": "x9",
                        "domain": [
                            0.44625000000000004,
                            0.49000000000000005
                        ],
                        "autorange": true
                    },
                    "xaxis10": {
                        "type": "linear",
                        "range": [
                            -21.24197965571205,
                            403.59761345852894
                        ],
                        "anchor": "y10",
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "xaxis11": {
                        "type": "linear",
                        "range": [
                            -0.6932367149758454,
                            13.171497584541061
                        ],
                        "anchor": "y11",
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "xaxis12": {
                        "type": "linear",
                        "range": [
                            -0.16,
                            3.04
                        ],
                        "anchor": "y12",
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "xaxis13": {
                        "type": "linear",
                        "range": [
                            -1.0763888888888888,
                            20.45138888888889
                        ],
                        "anchor": "y13",
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "xaxis14": {
                        "type": "linear",
                        "range": [
                            -3.4722222222222223,
                            65.97222222222223
                        ],
                        "anchor": "y14",
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "xaxis15": {
                        "type": "linear",
                        "range": [
                            -0.38333333333333336,
                            7.283333333333334
                        ],
                        "anchor": "y15",
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "xaxis16": {
                        "type": "linear",
                        "range": [
                            -1.328888888888889,
                            25.248888888888892
                        ],
                        "anchor": "y16",
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "yaxis10": {
                        "type": "category",
                        "range": [
                            -0.5365575019040365,
                            1.5
                        ],
                        "anchor": "x10",
                        "domain": [
                            0.3825,
                            0.42625
                        ],
                        "autorange": true
                    },
                    "yaxis11": {
                        "type": "category",
                        "range": [
                            -0.5365575019040365,
                            1.5
                        ],
                        "anchor": "x11",
                        "domain": [
                            0.31875,
                            0.3625
                        ],
                        "autorange": true
                    },
                    "yaxis12": {
                        "type": "category",
                        "range": [
                            -0.5365575019040365,
                            1.5
                        ],
                        "anchor": "x12",
                        "domain": [
                            0.255,
                            0.29875
                        ],
                        "autorange": true
                    },
                    "yaxis13": {
                        "type": "category",
                        "range": [
                            -0.5365575019040365,
                            1.5
                        ],
                        "anchor": "x13",
                        "domain": [
                            0.19124999999999998,
                            0.235
                        ],
                        "autorange": true
                    },
                    "yaxis14": {
                        "type": "category",
                        "range": [
                            -0.5365575019040365,
                            1.5
                        ],
                        "anchor": "x14",
                        "domain": [
                            0.1275,
                            0.17125
                        ],
                        "autorange": true
                    },
                    "yaxis15": {
                        "type": "category",
                        "range": [
                            -0.5365575019040365,
                            1.5
                        ],
                        "anchor": "x15",
                        "domain": [
                            0.06375,
                            0.1075
                        ],
                        "autorange": true
                    },
                    "yaxis16": {
                        "type": "category",
                        "range": [
                            -0.5365575019040365,
                            1.5
                        ],
                        "anchor": "x16",
                        "domain": [
                            0,
                            0.04375
                        ],
                        "autorange": true
                    },
                    "autosize": false,
                    "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,
                                            "#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,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            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,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            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,
                                            "#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,
                                            "#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,
                                            "#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,
                                            "#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,
                                            "#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,
                                            "#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,
                                            "#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,
                                        "#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,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        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,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.5,
                            "y": 0.9999999999999998,
                            "font": {
                                "size": 16
                            },
                            "text": "CALLS__successful",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.9362499999999999,
                            "font": {
                                "size": 16
                            },
                            "text": "CALLS__total",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.8724999999999999,
                            "font": {
                                "size": 16
                            },
                            "text": "CALLS__total_interacted_leads",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.80875,
                            "font": {
                                "size": 16
                            },
                            "text": "CALLS__total_duration_sec",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.745,
                            "font": {
                                "size": 16
                            },
                            "text": "CALLS__average_duration_sec",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.68125,
                            "font": {
                                "size": 16
                            },
                            "text": "CALLS__success_to_total_ratio",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.6174999999999999,
                            "font": {
                                "size": 16
                            },
                            "text": "MEETINGS__to_do",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.55375,
                            "font": {
                                "size": 16
                            },
                            "text": "FOLLOW_UPS__created",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.49000000000000005,
                            "font": {
                                "size": 16
                            },
                            "text": "FOLLOW_UPS__to_do",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.42625,
                            "font": {
                                "size": 16
                            },
                            "text": "COMMENTS__created",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.3625,
                            "font": {
                                "size": 16
                            },
                            "text": "CRM_EMAIL",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.29875,
                            "font": {
                                "size": 16
                            },
                            "text": "IMOPENLINES_SESSION",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.235,
                            "font": {
                                "size": 16
                            },
                            "text": "UNSUCCESSFUL__put_by_agent",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.17125,
                            "font": {
                                "size": 16
                            },
                            "text": "JUNK__put_by_agent",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.1075,
                            "font": {
                                "size": 16
                            },
                            "text": "AVERAGE_ACTIVE_DAYS_PER_WEEK",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.04375,
                            "font": {
                                "size": 16
                            },
                            "text": "HOURS__from_lead_to_call",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": 4000,
            "width": 1000,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~iamolvr",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/95.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-30 05:49:45",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "iamolvr",
                "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-30T06:28:22.618646Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~T_Oshima/1.embed",
            "fid": "T_Oshima:1",
            "filename": "歴史地図",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/T_Oshima:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/T_Oshima:1/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/T_Oshima:1/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/T_Oshima:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/T_Oshima:1",
                "plots": "https://api.plotly.com/v2/plots/T_Oshima:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=T_Oshima"
            },
            "owner": "T_Oshima",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 63,
            "web_url": "https://chart-studio.plotly.com/~T_Oshima/1/",
            "world_readable": true,
            "date_modified": "2024-12-06T16:03:39.907Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~T_Oshima/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "geo": "geo",
                        "mode": "markers+text",
                        "name": "01_出来事",
                        "type": "scattergeo",
                        "latsrc": "T_Oshima:209:9c588f",
                        "lonsrc": "T_Oshima:209:27a7cf",
                        "marker": {
                            "color": "#636efa",
                            "symbol": "circle"
                        },
                        "textsrc": "T_Oshima:209:87b627",
                        "showlegend": true,
                        "legendgroup": "01_出来事",
                        "hovertextsrc": "T_Oshima:209:6538ea",
                        "textposition": "top center",
                        "customdatasrc": "T_Oshima:209:31f5af",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "mode": "markers+text",
                        "name": "02_概念",
                        "type": "scattergeo",
                        "latsrc": "T_Oshima:209:3ff068",
                        "lonsrc": "T_Oshima:209:4907a0",
                        "marker": {
                            "color": "#EF553B",
                            "symbol": "circle"
                        },
                        "textsrc": "T_Oshima:209:932a3d",
                        "showlegend": true,
                        "legendgroup": "02_概念",
                        "hovertextsrc": "T_Oshima:209:f30ada",
                        "textposition": "top center",
                        "customdatasrc": "T_Oshima:209:7fb7ef",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                    },
                    {
                        "geo": "geo",
                        "mode": "markers+text",
                        "name": "03_人物",
                        "type": "scattergeo",
                        "latsrc": "T_Oshima:209:1bf649",
                        "lonsrc": "T_Oshima:209:4c2e9b",
                        "marker": {
                            "color": "#00cc96",
                            "symbol": "circle"
                        },
                        "textsrc": "T_Oshima:209:6b4d65",
                        "showlegend": true,
                        "legendgroup": "03_人物",
                        "hovertextsrc": "T_Oshima:209:0181ce",
                        "textposition": "top center",
                        "customdatasrc": "T_Oshima:209:f57d2f",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                    }
                ],
                "frames": [
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:3574ce",
                                "lonsrc": "T_Oshima:209:30b8be",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:400051",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:000d4e",
                                "customdatasrc": "T_Oshima:209:027933",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:6eb87f",
                                "lonsrc": "T_Oshima:209:93b48e",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:0e42f9",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:ce118f",
                                "customdatasrc": "T_Oshima:209:6c606c",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:6a7c5a",
                                "lonsrc": "T_Oshima:209:0f6470",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:d6a19e",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:00f68a",
                                "customdatasrc": "T_Oshima:209:f53789",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "紀元前700万年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:6db81e",
                                "lonsrc": "T_Oshima:209:215344",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:3f59a6",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:a6fde5",
                                "customdatasrc": "T_Oshima:209:9e062a",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:cab9ea",
                                "lonsrc": "T_Oshima:209:62ec85",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:210a25",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:e0479b",
                                "customdatasrc": "T_Oshima:209:8296c0",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:4a9415",
                                "lonsrc": "T_Oshima:209:85b2e7",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:14ce30",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:b968e2",
                                "customdatasrc": "T_Oshima:209:7408e4",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "紀元前100万年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:a8f4af",
                                "lonsrc": "T_Oshima:209:babd11",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:7b428e",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:3de211",
                                "customdatasrc": "T_Oshima:209:94ecd0",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:784a3e",
                                "lonsrc": "T_Oshima:209:d8209a",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:bf22fc",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:5e7bd5",
                                "customdatasrc": "T_Oshima:209:81262c",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:812d02",
                                "lonsrc": "T_Oshima:209:c06898",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:3f48ad",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:ebd12c",
                                "customdatasrc": "T_Oshima:209:1ab9f9",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "紀元前50万年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:52ae38",
                                "lonsrc": "T_Oshima:209:764d66",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:63d474",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:5b6239",
                                "customdatasrc": "T_Oshima:209:5f6096",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:dffc38",
                                "lonsrc": "T_Oshima:209:1d1866",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:e0fca6",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:119769",
                                "customdatasrc": "T_Oshima:209:c8e6bd",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:24c2c7",
                                "lonsrc": "T_Oshima:209:835724",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:898594",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:c86721",
                                "customdatasrc": "T_Oshima:209:b54c73",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "紀元前10万年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:137d7a",
                                "lonsrc": "T_Oshima:209:13c76c",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:354bda",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:b2565e",
                                "customdatasrc": "T_Oshima:209:d30c4c",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:3856d9",
                                "lonsrc": "T_Oshima:209:c79c23",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:2a7859",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:ac8985",
                                "customdatasrc": "T_Oshima:209:02725c",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:7753ef",
                                "lonsrc": "T_Oshima:209:b3fc4a",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:f8f44e",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:3d1aac",
                                "customdatasrc": "T_Oshima:209:efee4f",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "紀元前5万年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:0b3f6e",
                                "lonsrc": "T_Oshima:209:2ddd92",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:ffb163",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:84b972",
                                "customdatasrc": "T_Oshima:209:624cf4",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:9298fb",
                                "lonsrc": "T_Oshima:209:b5d2d4",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:346fcf",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:5c8724",
                                "customdatasrc": "T_Oshima:209:501952",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:d05ae6",
                                "lonsrc": "T_Oshima:209:f4b02b",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:8b94d7",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:7a832e",
                                "customdatasrc": "T_Oshima:209:68a5af",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "紀元前4万年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:e3c43d",
                                "lonsrc": "T_Oshima:209:abe081",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:dcf0f1",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:042407",
                                "customdatasrc": "T_Oshima:209:213645",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:5ef9af",
                                "lonsrc": "T_Oshima:209:b6a1b7",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:37ccce",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:6e3f46",
                                "customdatasrc": "T_Oshima:209:484009",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:2ed049",
                                "lonsrc": "T_Oshima:209:c4ee30",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:17bcee",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:2ff7d2",
                                "customdatasrc": "T_Oshima:209:e086c0",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "紀元前3万年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:768a94",
                                "lonsrc": "T_Oshima:209:c79491",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:b0133f",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:5f78fb",
                                "customdatasrc": "T_Oshima:209:f6afa0",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:e6a075",
                                "lonsrc": "T_Oshima:209:2a58e1",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:e79351",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:372b5d",
                                "customdatasrc": "T_Oshima:209:6c6181",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:1260b6",
                                "lonsrc": "T_Oshima:209:43a04f",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:803a66",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:0ac24b",
                                "customdatasrc": "T_Oshima:209:65bdf7",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "紀元前2万年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:f507b8",
                                "lonsrc": "T_Oshima:209:ecad0b",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:4c844a",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:ef87f6",
                                "customdatasrc": "T_Oshima:209:5e4820",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:0f63c0",
                                "lonsrc": "T_Oshima:209:a8071e",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:87f2b1",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:779e35",
                                "customdatasrc": "T_Oshima:209:dc095e",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:a099e8",
                                "lonsrc": "T_Oshima:209:bf4179",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:50f964",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:7d2996",
                                "customdatasrc": "T_Oshima:209:f991af",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "紀元前1万年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:e1bfe4",
                                "lonsrc": "T_Oshima:209:aa746a",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:486125",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:edeefe",
                                "customdatasrc": "T_Oshima:209:b98149",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:7a2097",
                                "lonsrc": "T_Oshima:209:9e1f24",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:819863",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:8fb1e0",
                                "customdatasrc": "T_Oshima:209:8d99bd",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:47a70e",
                                "lonsrc": "T_Oshima:209:a09eea",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:2a6320",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:a4da39",
                                "customdatasrc": "T_Oshima:209:581875",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "紀元前8000年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:b0ee1e",
                                "lonsrc": "T_Oshima:209:3480b5",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:af57b5",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:fde532",
                                "customdatasrc": "T_Oshima:209:e5b0f0",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:055d53",
                                "lonsrc": "T_Oshima:209:dcba21",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:17954d",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:562dea",
                                "customdatasrc": "T_Oshima:209:4b99c3",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:29811e",
                                "lonsrc": "T_Oshima:209:0d4e68",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:fc8385",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:f66efd",
                                "customdatasrc": "T_Oshima:209:4dca48",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "紀元前3100年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:169566",
                                "lonsrc": "T_Oshima:209:f93834",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:741f3b",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:c488fd",
                                "customdatasrc": "T_Oshima:209:2c8d57",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:28a587",
                                "lonsrc": "T_Oshima:209:46c417",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:638c60",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:d6b37d",
                                "customdatasrc": "T_Oshima:209:43e483",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:2248e4",
                                "lonsrc": "T_Oshima:209:cbd13c",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:058de0",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:bda445",
                                "customdatasrc": "T_Oshima:209:a2d563",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "紀元前1000年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:ec24d4",
                                "lonsrc": "T_Oshima:209:02796d",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:ab3df3",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:cccd91",
                                "customdatasrc": "T_Oshima:209:a54a44",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:afacdf",
                                "lonsrc": "T_Oshima:209:3c9df6",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:8cec56",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:55f7a4",
                                "customdatasrc": "T_Oshima:209:46c609",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:23d47d",
                                "lonsrc": "T_Oshima:209:0b494d",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:bca236",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:22e009",
                                "customdatasrc": "T_Oshima:209:8615d0",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "紀元前800年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:55611a",
                                "lonsrc": "T_Oshima:209:839da9",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:15dada",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:218cf3",
                                "customdatasrc": "T_Oshima:209:efe6e4",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:e1caaa",
                                "lonsrc": "T_Oshima:209:87d225",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:e6951c",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:33dea1",
                                "customdatasrc": "T_Oshima:209:a6191f",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:84389f",
                                "lonsrc": "T_Oshima:209:10bbee",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:44de1b",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:130969",
                                "customdatasrc": "T_Oshima:209:dc024d",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "紀元前600年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:ea8d92",
                                "lonsrc": "T_Oshima:209:3cbb00",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:8015d7",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:fd64a5",
                                "customdatasrc": "T_Oshima:209:a0fbb8",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:45c543",
                                "lonsrc": "T_Oshima:209:f93639",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:71a9c2",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:777fe9",
                                "customdatasrc": "T_Oshima:209:baf8af",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:352e45",
                                "lonsrc": "T_Oshima:209:4f0991",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:319cd3",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:6fac83",
                                "customdatasrc": "T_Oshima:209:3dc158",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "紀元前500年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:74c8ed",
                                "lonsrc": "T_Oshima:209:1b6bb6",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:f2980c",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:bf6a18",
                                "customdatasrc": "T_Oshima:209:d66386",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:9eb1e6",
                                "lonsrc": "T_Oshima:209:7614b4",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:9a3824",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:bcaf2b",
                                "customdatasrc": "T_Oshima:209:e6948e",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:c31277",
                                "lonsrc": "T_Oshima:209:9a2bb3",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:77a7ea",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:fb4684",
                                "customdatasrc": "T_Oshima:209:8dd6ed",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "紀元前400年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:142415",
                                "lonsrc": "T_Oshima:209:515f83",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:42a54f",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:2b47fc",
                                "customdatasrc": "T_Oshima:209:8cf8fb",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:8cb317",
                                "lonsrc": "T_Oshima:209:2f8999",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:ef14b8",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:6b92ba",
                                "customdatasrc": "T_Oshima:209:7fdd15",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:fbac4a",
                                "lonsrc": "T_Oshima:209:823fb9",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:beb867",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:0e6b0f",
                                "customdatasrc": "T_Oshima:209:216759",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "紀元前300年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:332c3d",
                                "lonsrc": "T_Oshima:209:8848bd",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:f6d829",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:5b8c03",
                                "customdatasrc": "T_Oshima:209:5f5c96",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:8607e9",
                                "lonsrc": "T_Oshima:209:3111e7",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:fa2068",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:b8d3fe",
                                "customdatasrc": "T_Oshima:209:3c371a",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:ebbd59",
                                "lonsrc": "T_Oshima:209:4ad2ea",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:5e8861",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:b50f02",
                                "customdatasrc": "T_Oshima:209:1788c1",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "紀元前200年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:3bf4e3",
                                "lonsrc": "T_Oshima:209:9877d3",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:3fa251",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:849321",
                                "customdatasrc": "T_Oshima:209:742546",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:34e4d5",
                                "lonsrc": "T_Oshima:209:5ed554",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:420868",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:1d3171",
                                "customdatasrc": "T_Oshima:209:03c0ec",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:fcabb2",
                                "lonsrc": "T_Oshima:209:8ef027",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:134b6a",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:9c2b5c",
                                "customdatasrc": "T_Oshima:209:3a237d",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "紀元前100年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:fd3670",
                                "lonsrc": "T_Oshima:209:e69b51",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:91da50",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:7ad204",
                                "customdatasrc": "T_Oshima:209:ba873c",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:ecd923",
                                "lonsrc": "T_Oshima:209:bf5a68",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:9f3c11",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:9bd655",
                                "customdatasrc": "T_Oshima:209:baa4ab",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:dddebf",
                                "lonsrc": "T_Oshima:209:75cd8e",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:678995",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:1ff477",
                                "customdatasrc": "T_Oshima:209:270109",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "紀元前0年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:a7f5ce",
                                "lonsrc": "T_Oshima:209:fcdac9",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:b4a3c7",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:8bca30",
                                "customdatasrc": "T_Oshima:209:1e36ee",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:c20d35",
                                "lonsrc": "T_Oshima:209:a8e2f3",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:883bac",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:05fa1e",
                                "customdatasrc": "T_Oshima:209:6a3ea2",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:9cef58",
                                "lonsrc": "T_Oshima:209:ef9035",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:fd34be",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:21fc7a",
                                "customdatasrc": "T_Oshima:209:e3b090",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "0年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:aa0df6",
                                "lonsrc": "T_Oshima:209:54ee4e",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:889e09",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:147039",
                                "customdatasrc": "T_Oshima:209:9e21ee",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:39663a",
                                "lonsrc": "T_Oshima:209:cb55ec",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:a11c1b",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:5a9cac",
                                "customdatasrc": "T_Oshima:209:4ca083",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:b08151",
                                "lonsrc": "T_Oshima:209:6d2b7d",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:dac380",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:9b8d8c",
                                "customdatasrc": "T_Oshima:209:12da9b",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "100年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:4f5ea0",
                                "lonsrc": "T_Oshima:209:ab67bf",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:b1ec84",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:952bce",
                                "customdatasrc": "T_Oshima:209:bac512",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:032292",
                                "lonsrc": "T_Oshima:209:76ab20",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:9b3da3",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:87dc30",
                                "customdatasrc": "T_Oshima:209:5fe043",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:66de71",
                                "lonsrc": "T_Oshima:209:7d118b",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:16cbe7",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:8d44db",
                                "customdatasrc": "T_Oshima:209:f37d24",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "200年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:42e87f",
                                "lonsrc": "T_Oshima:209:a2b2d9",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:96fc70",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:197944",
                                "customdatasrc": "T_Oshima:209:076fd8",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:813152",
                                "lonsrc": "T_Oshima:209:996a4a",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:cb4f87",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:637bfa",
                                "customdatasrc": "T_Oshima:209:e9ba35",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:d98df0",
                                "lonsrc": "T_Oshima:209:dfaaad",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:d4309a",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:e993ee",
                                "customdatasrc": "T_Oshima:209:0758f4",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "300年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:28f3d6",
                                "lonsrc": "T_Oshima:209:a932c5",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:5b7ebf",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:b6e24c",
                                "customdatasrc": "T_Oshima:209:8a1f32",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:a1acf7",
                                "lonsrc": "T_Oshima:209:00ec09",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:6914dc",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:efd6e5",
                                "customdatasrc": "T_Oshima:209:02b086",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:22d944",
                                "lonsrc": "T_Oshima:209:a2fdc3",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:5b71e6",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:a64dae",
                                "customdatasrc": "T_Oshima:209:f77c09",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "500年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:f69195",
                                "lonsrc": "T_Oshima:209:7f79cc",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:acae2a",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:8532f4",
                                "customdatasrc": "T_Oshima:209:b0ea22",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:b9c01e",
                                "lonsrc": "T_Oshima:209:b3dbec",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:61d274",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:970c57",
                                "customdatasrc": "T_Oshima:209:33cd3d",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:fe0584",
                                "lonsrc": "T_Oshima:209:adcd97",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:ac1462",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:474b1f",
                                "customdatasrc": "T_Oshima:209:9ca90a",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "600年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:fac8f3",
                                "lonsrc": "T_Oshima:209:3c5129",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:903cb3",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:557a53",
                                "customdatasrc": "T_Oshima:209:31be92",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:2f1cd6",
                                "lonsrc": "T_Oshima:209:499532",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:42a7e9",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:ee33e6",
                                "customdatasrc": "T_Oshima:209:a31d1f",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:0a8724",
                                "lonsrc": "T_Oshima:209:07de96",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:be4278",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:8be2ae",
                                "customdatasrc": "T_Oshima:209:8eee03",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "700年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:44bf86",
                                "lonsrc": "T_Oshima:209:f74e73",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:108b50",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:a5ee33",
                                "customdatasrc": "T_Oshima:209:ca36ec",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:64b5c1",
                                "lonsrc": "T_Oshima:209:979b05",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:c1da0f",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:2bed39",
                                "customdatasrc": "T_Oshima:209:1508d9",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:e80075",
                                "lonsrc": "T_Oshima:209:64fe21",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:ec5c8f",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:7b669c",
                                "customdatasrc": "T_Oshima:209:5f6eb9",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "800年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:60bc30",
                                "lonsrc": "T_Oshima:209:a42970",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:9e2c29",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:a3817c",
                                "customdatasrc": "T_Oshima:209:7b94aa",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:c98efd",
                                "lonsrc": "T_Oshima:209:7fb271",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:e38c9c",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:bda257",
                                "customdatasrc": "T_Oshima:209:927075",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:d1a8b5",
                                "lonsrc": "T_Oshima:209:d1014e",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:6c2e78",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:fcbe5e",
                                "customdatasrc": "T_Oshima:209:a32072",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "900年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:cae8a4",
                                "lonsrc": "T_Oshima:209:959025",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:e9ea5d",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:8ac921",
                                "customdatasrc": "T_Oshima:209:7e8e3b",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:64aede",
                                "lonsrc": "T_Oshima:209:331b4f",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:a360d2",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:87d25a",
                                "customdatasrc": "T_Oshima:209:8ade59",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:8151fd",
                                "lonsrc": "T_Oshima:209:c75d75",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:0f1536",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:806858",
                                "customdatasrc": "T_Oshima:209:67fca9",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "1100年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:5c4bc4",
                                "lonsrc": "T_Oshima:209:77381f",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:e279c0",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:ec59bb",
                                "customdatasrc": "T_Oshima:209:80c980",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:876dcb",
                                "lonsrc": "T_Oshima:209:799825",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:689914",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:80fe34",
                                "customdatasrc": "T_Oshima:209:dc33ff",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:f8f5b7",
                                "lonsrc": "T_Oshima:209:3f67cc",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:e8f582",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:c8cb4a",
                                "customdatasrc": "T_Oshima:209:4020ed",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "1200年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:4ae4cc",
                                "lonsrc": "T_Oshima:209:1a7992",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:82c24d",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:a994b3",
                                "customdatasrc": "T_Oshima:209:211474",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:5ce37a",
                                "lonsrc": "T_Oshima:209:6d6e7b",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:781072",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:866d81",
                                "customdatasrc": "T_Oshima:209:21f779",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:2acf99",
                                "lonsrc": "T_Oshima:209:543198",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:3b2c12",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:c7100e",
                                "customdatasrc": "T_Oshima:209:54a4a4",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "1300年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:a2a153",
                                "lonsrc": "T_Oshima:209:7db74d",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:1ecaf1",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:009601",
                                "customdatasrc": "T_Oshima:209:001a92",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:58f35f",
                                "lonsrc": "T_Oshima:209:d377da",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:176ab3",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:4f2341",
                                "customdatasrc": "T_Oshima:209:008bd1",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:d82462",
                                "lonsrc": "T_Oshima:209:26278b",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:5726b6",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:de433b",
                                "customdatasrc": "T_Oshima:209:7c8fe5",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "1400年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:1ecdd4",
                                "lonsrc": "T_Oshima:209:bb58fe",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:6876ad",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:85060c",
                                "customdatasrc": "T_Oshima:209:9e3374",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:fce2d2",
                                "lonsrc": "T_Oshima:209:ba0ed4",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:e8cf68",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:7e11eb",
                                "customdatasrc": "T_Oshima:209:9f3926",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:b53390",
                                "lonsrc": "T_Oshima:209:8ed403",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:e100c9",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:d356e1",
                                "customdatasrc": "T_Oshima:209:6948b9",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "1500年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:fe3f7d",
                                "lonsrc": "T_Oshima:209:a38e67",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:abbd53",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:aa8141",
                                "customdatasrc": "T_Oshima:209:4ba358",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:e5fa24",
                                "lonsrc": "T_Oshima:209:13d38f",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:a9b15c",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:316d4a",
                                "customdatasrc": "T_Oshima:209:732a72",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:f46da9",
                                "lonsrc": "T_Oshima:209:84eeab",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:bfb508",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:2dc673",
                                "customdatasrc": "T_Oshima:209:42ec7b",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "1600年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:27fa32",
                                "lonsrc": "T_Oshima:209:b783b0",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:f9c6da",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:a8e1b2",
                                "customdatasrc": "T_Oshima:209:fb7638",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:55e524",
                                "lonsrc": "T_Oshima:209:c11cad",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:d2c8b5",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:9a0f76",
                                "customdatasrc": "T_Oshima:209:841080",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:af121f",
                                "lonsrc": "T_Oshima:209:db84c9",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:39bae2",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:639cc8",
                                "customdatasrc": "T_Oshima:209:b0992a",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "1700年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:df69aa",
                                "lonsrc": "T_Oshima:209:d463ed",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:709923",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:e100fb",
                                "customdatasrc": "T_Oshima:209:dba717",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:ffc0ef",
                                "lonsrc": "T_Oshima:209:bc3a62",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:f020e6",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:fcfca1",
                                "customdatasrc": "T_Oshima:209:0c8e1b",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:e6089e",
                                "lonsrc": "T_Oshima:209:ecd65d",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:0a3f73",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:210e3a",
                                "customdatasrc": "T_Oshima:209:36f553",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "1800年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:d093f3",
                                "lonsrc": "T_Oshima:209:a3ea24",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:f5d271",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:2406a8",
                                "customdatasrc": "T_Oshima:209:54afae",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:89bb17",
                                "lonsrc": "T_Oshima:209:3539fd",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:80a825",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:be86e7",
                                "customdatasrc": "T_Oshima:209:b08339",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:862ee5",
                                "lonsrc": "T_Oshima:209:8de4c5",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:0445ed",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:fcd458",
                                "customdatasrc": "T_Oshima:209:4a056c",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "1900年代"
                    },
                    {
                        "data": [
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "01_出来事",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:5df428",
                                "lonsrc": "T_Oshima:209:3798b5",
                                "marker": {
                                    "color": "#636efa",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:21bed4",
                                "showlegend": true,
                                "legendgroup": "01_出来事",
                                "hovertextsrc": "T_Oshima:209:422548",
                                "customdatasrc": "T_Oshima:209:102acf",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "02_概念",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:580705",
                                "lonsrc": "T_Oshima:209:3d0185",
                                "marker": {
                                    "color": "#EF553B",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:21ab7f",
                                "showlegend": true,
                                "legendgroup": "02_概念",
                                "hovertextsrc": "T_Oshima:209:bb471e",
                                "customdatasrc": "T_Oshima:209:7b9ce8",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            },
                            {
                                "geo": "geo",
                                "mode": "markers+text",
                                "name": "03_人物",
                                "type": "scattergeo",
                                "latsrc": "T_Oshima:209:c2332b",
                                "lonsrc": "T_Oshima:209:e7a0df",
                                "marker": {
                                    "color": "#00cc96",
                                    "symbol": "circle"
                                },
                                "textsrc": "T_Oshima:209:cf4ac0",
                                "showlegend": true,
                                "legendgroup": "03_人物",
                                "hovertextsrc": "T_Oshima:209:a01fb8",
                                "customdatasrc": "T_Oshima:209:331267",
                                "hovertemplate": "<b>%{hovertext}</b><br><br>カテゴリ=%{customdata[0]}<br>年代=%{customdata[16]}<br>内容=%{customdata[2]}<br>緯度=%{customdata[6]}<br>経度=%{customdata[7]}<br>ジャンル=%{customdata[1]}<br>開始年=%{customdata[3]}<br>終了年=%{customdata[4]}<br>メインエリア=%{customdata[5]}<br>説明=%{customdata[8]}<br>キーワード=%{customdata[9]}<br>相関関係=%{customdata[10]}<br>関係性=%{customdata[11]}<br>影響の対象=%{customdata[12]}<br>影響=%{customdata[13]}<br>影響の詳細=%{customdata[14]}<br>期間=%{customdata[15]}<extra></extra>"
                            }
                        ],
                        "name": "2000年代"
                    }
                ],
                "layout": {
                    "geo": {
                        "center": {},
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.0,
                                1.0
                            ]
                        },
                        "showland": true,
                        "lakecolor": "LightBlue",
                        "landcolor": "honeydew",
                        "showlakes": true,
                        "showocean": true,
                        "oceancolor": "LightBlue",
                        "projection": {
                            "type": "equirectangular"
                        },
                        "resolution": 110,
                        "rivercolor": "LightBlue",
                        "showrivers": true
                    },
                    "title": {
                        "font": {
                            "size": 20
                        },
                        "text": "歴史マップ"
                    },
                    "legend": {
                        "title": {
                            "text": "カテゴリ"
                        },
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "t": 60
                    },
                    "sliders": [
                        {
                            "x": 0.1,
                            "y": 0,
                            "len": 0.9,
                            "pad": {
                                "b": 10,
                                "t": 60
                            },
                            "steps": [
                                {
                                    "args": [
                                        [
                                            "紀元前700万年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "紀元前700万年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "紀元前100万年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "紀元前100万年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "紀元前50万年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "紀元前50万年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "紀元前10万年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "紀元前10万年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "紀元前5万年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "紀元前5万年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "紀元前4万年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "紀元前4万年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "紀元前3万年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "紀元前3万年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "紀元前2万年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "紀元前2万年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "紀元前1万年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "紀元前1万年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "紀元前8000年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "紀元前8000年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "紀元前3100年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "紀元前3100年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "紀元前1000年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "紀元前1000年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "紀元前800年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "紀元前800年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "紀元前600年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "紀元前600年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "紀元前500年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "紀元前500年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "紀元前400年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "紀元前400年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "紀元前300年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "紀元前300年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "紀元前200年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "紀元前200年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "紀元前100年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "紀元前100年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "紀元前0年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "紀元前0年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "100年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "100年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "200年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "200年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "300年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "300年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "500年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "500年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "600年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "600年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "700年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "700年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "800年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "800年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "900年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "900年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1100年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1100年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1200年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1200年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1300年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1300年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1400年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1400年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1500年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1500年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1600年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1600年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1700年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1700年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1800年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1800年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1900年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1900年代",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2000年代"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2000年代",
                                    "method": "animate"
                                }
                            ],
                            "active": 0,
                            "xanchor": "left",
                            "yanchor": "top",
                            "currentvalue": {
                                "prefix": "年代="
                            }
                        }
                    ],
                    "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
                            }
                        }
                    },
                    "updatemenus": [
                        {
                            "x": 0.1,
                            "y": 0,
                            "pad": {
                                "r": 10,
                                "t": 70
                            },
                            "type": "buttons",
                            "buttons": [
                                {
                                    "args": [
                                        null,
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "&#9654;",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            null
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "&#9724;",
                                    "method": "animate"
                                }
                            ],
                            "xanchor": "right",
                            "yanchor": "top",
                            "direction": "left",
                            "showactive": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~T_Oshima",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-30 05:43:36",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "T_Oshima",
                "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-30T05:35:33.884505Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~gwen.rounds/13.embed",
            "fid": "gwen.rounds:13",
            "filename": "Plot 13",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/gwen.rounds/13/9_UJIKUG7XJHJFVXAHCJSPKXUSFY16QP.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/gwen.rounds/13/2_GCE9N6KUAB0WXQQWR8PZXQ6Z212P7N.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/gwen.rounds/13/8_MZHINOHUZQ0Z1DTBJ49HNEMXV2L6NV.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/gwen.rounds/13/9_UJIKUG7XJHJFVXAHCJSPKXUSFY16QP.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/gwen.rounds:13",
                "plots": "https://api.plotly.com/v2/plots/gwen.rounds:13",
                "parent": "https://api.plotly.com/v2/folders/home?user=gwen.rounds"
            },
            "owner": "gwen.rounds",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~gwen.rounds/13/",
            "world_readable": true,
            "date_modified": "2024-04-30T05:35:33.894Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~gwen.rounds/13/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Year",
                                "y": "Glob"
                            }
                        },
                        "mode": "markers",
                        "type": "bar",
                        "xsrc": "gwen.rounds:12:64aae2",
                        "ysrc": "gwen.rounds:12:fbad4c",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Southern Hemisphere Temperatures"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1879.5,
                            2014.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -53.77777777777778,
                            81.77777777777777
                        ],
                        "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/~gwen.rounds",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/57.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": "2022-04-28 05:12:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "gwen.rounds",
                "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-30T05:29:34.704181Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Kamikuz/6.embed",
            "fid": "Kamikuz:6",
            "filename": "Plot 6",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Kamikuz/6/9_8SJ6DOLGWH91D89E3CGJNUY4NZ30CN.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Kamikuz/6/2_SJGV530PQ93TIAM7M2VP4Z6CHYKN6S.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Kamikuz/6/8_N6MWOWXXFQGUK5RT91ILU9R7QKYAK8.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Kamikuz/6/9_8SJ6DOLGWH91D89E3CGJNUY4NZ30CN.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Kamikuz:6",
                "plots": "https://api.plotly.com/v2/plots/Kamikuz:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=Kamikuz"
            },
            "owner": "Kamikuz",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Kamikuz/6/",
            "world_readable": true,
            "date_modified": "2024-04-30T05:38:50.540Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Kamikuz/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "threads",
                                "y": "time"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Rust",
                        "type": "scatter",
                        "xsrc": "Kamikuz:2:250a6b",
                        "ysrc": "Kamikuz:2:f5b9de"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "threads",
                                "y": "time"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "OpenMp",
                        "type": "scatter",
                        "xsrc": "Kamikuz:3:b8b5e7",
                        "ysrc": "Kamikuz:3:2e1054",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "2048 x 2048 Matrix Runtime"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.36641524414450183,
                            6.366415244144502
                        ],
                        "title": {
                            "text": "Threads #"
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "tickson": "labels",
                        "autorange": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -30.349963883955013,
                            453.06796388395503
                        ],
                        "title": {
                            "text": "Time(s)"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "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"
                    },
                    "uniformtext": {
                        "mode": false
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Kamikuz",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/47.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-30 05:28:37",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Kamikuz",
                "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-30T05:21:13.053613Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sanketh97/1.embed",
            "fid": "sanketh97:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/sanketh97/1/9_NFAIW7YFWUSXPB4FLSUMTJO54FKC5F.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/sanketh97/1/2_VKX6OX2ADJ3V47R22SDRS3YMMTW0YD.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sanketh97/1/8_D2OF0TVYZJVW7FRHKTA391HUSPHBPK.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/sanketh97/1/9_NFAIW7YFWUSXPB4FLSUMTJO54FKC5F.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sanketh97:1",
                "plots": "https://api.plotly.com/v2/plots/sanketh97:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=sanketh97"
            },
            "owner": "sanketh97",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~sanketh97/1/",
            "world_readable": true,
            "date_modified": "2024-04-30T05:21:13.065Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sanketh97/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "type": "bar",
                        "xsrc": "sanketh97:0:26bc71",
                        "ysrc": "sanketh97:0:feb4eb",
                        "marker": {
                            "color": "rgb(14, 99, 229)"
                        },
                        "opacity": 1,
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Number of 6 digit bins"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "date",
                        "range": [
                            "2023-09-16 12:00",
                            "2024-04-15 12:00"
                        ],
                        "title": {
                            "text": "Month"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0,
                            392322.1052631579
                        ],
                        "title": {
                            "text": "Count"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "bargap": 0.78,
                    "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/~sanketh97",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/84.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-30 05:20:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sanketh97",
                "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-30T05:10:31.339798Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~srinivasanpadmini/2.embed",
            "fid": "srinivasanpadmini:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/srinivasanpadmini/2/9_L5ZB2WPX9MSJYZX52NE7APXJ4NBDA8.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/srinivasanpadmini/2/2_ZSH01Z37C0C846X0QRX3WGZWQM1NYG.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/srinivasanpadmini/2/8_SHKRX6IP15Q1ZVL9WNBKHAQRAESLTG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/srinivasanpadmini/2/9_L5ZB2WPX9MSJYZX52NE7APXJ4NBDA8.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/srinivasanpadmini:2",
                "plots": "https://api.plotly.com/v2/plots/srinivasanpadmini:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=srinivasanpadmini"
            },
            "owner": "srinivasanpadmini",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~srinivasanpadmini/2/",
            "world_readable": true,
            "date_modified": "2024-04-30T05:13:47.497Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~srinivasanpadmini/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "bar",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Lead Name  - Course  - Lead source - Place - State"
                            }
                        },
                        "mode": "markers",
                        "type": "bar",
                        "xsrc": "srinivasanpadmini:0:b257c2,a700ed,a6534e,83dea2,b024df*",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "multicategory",
                        "range": [
                            -7.666666666666667,
                            145.66666666666666
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -0.5,
                            138.5
                        ],
                        "autorange": true
                    },
                    "xaxis2": {
                        "side": "top",
                        "type": "multicategory",
                        "range": [
                            -0.5,
                            138.5
                        ],
                        "autorange": true,
                        "overlaying": "x"
                    },
                    "yaxis2": {
                        "side": "right",
                        "range": [
                            0,
                            145.26315789473685
                        ],
                        "autorange": true,
                        "overlaying": "y"
                    },
                    "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/~srinivasanpadmini",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/84.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-04-30 05:07:59",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "srinivasanpadmini",
                "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-30T03:53:27.701229Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~vishnuvinod/3.embed",
            "fid": "vishnuvinod:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/vishnuvinod/3/9_9HTRZWXKHH68YGF7GPKYX1AVF479IY.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/vishnuvinod/3/2_H8U7VSAXH122VHGOO0J4C71LOXDHRZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/vishnuvinod/3/8_N33KH6OH8018AYAEQFOGL1JGSDGSE4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/vishnuvinod/3/9_9HTRZWXKHH68YGF7GPKYX1AVF479IY.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/vishnuvinod:3",
                "plots": "https://api.plotly.com/v2/plots/vishnuvinod:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=vishnuvinod"
            },
            "owner": "vishnuvinod",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~vishnuvinod/3/",
            "world_readable": true,
            "date_modified": "2024-04-30T03:53:27.713Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~vishnuvinod/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "D - F",
                                "y": "A - B - C"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "vishnuvinod:2:673f9a,9fde71*",
                        "ysrc": "vishnuvinod:2:5f4621,bfc910,35758a*"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "multicategory",
                        "range": [
                            -3.9246954595791808,
                            67.92469545957918
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "multicategory",
                        "range": [
                            -5.2004801920768315,
                            77.20048019207684
                        ],
                        "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"
                    },
                    "annotations": []
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~vishnuvinod",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/22.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-30 03:03:46",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "vishnuvinod",
                "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-30T03:51:08.474486Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Celestaros/1.embed",
            "fid": "Celestaros:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Celestaros/1/9_AAMLNFYTNSZCZT9FO34UY98X8H9NCD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Celestaros/1/2_PMEPZBJ5VI94QGQ941CY7YJOA891TP.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Celestaros/1/8_9STQXZM6JZBJKFBM6RE3ETDFV51ZQ7.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Celestaros/1/9_AAMLNFYTNSZCZT9FO34UY98X8H9NCD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Celestaros:1",
                "plots": "https://api.plotly.com/v2/plots/Celestaros:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Celestaros"
            },
            "owner": "Celestaros",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Celestaros/1/",
            "world_readable": true,
            "date_modified": "2024-04-30T03:51:08.488Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Celestaros/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "low": "Low",
                                "high": "High",
                                "open": "Open",
                                "close": "Price"
                            }
                        },
                        "mode": "markers",
                        "type": "candlestick",
                        "xsrc": "Celestaros:0:d54916",
                        "lowsrc": "Celestaros:0:35b12d",
                        "highsrc": "Celestaros:0:ae25a6",
                        "opensrc": "Celestaros:0:b10c2d",
                        "closesrc": "Celestaros:0:ab1076"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "2014-01-01 12:00",
                            "2024-01-01 12:00"
                        ],
                        "autorange": true,
                        "rangeslider": {
                            "range": [
                                "2014-01-01 12:00",
                                "2024-01-01 12:00"
                            ],
                            "yaxis": {
                                "rangemode": "match"
                            },
                            "autorange": true
                        }
                    },
                    "yaxis": {
                        "range": [
                            983.9055555555557,
                            2213.7944444444447
                        ],
                        "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/~Celestaros",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/91.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-30 03:50:40",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Celestaros",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}