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=cj0xJnA9MjAyNS0wNy0xNiswOCUzQTIyJTNBNDYuODg5OTk2JTJCMDAlM0EwMA%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=cD0yMDI1LTA3LTE2KzA4JTNBMzclM0E0MS4zMzQ2MTUlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNS0wNy0xNisxMSUzQTA3JTNBMjYuMDkxNTc3JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-07-16T11:07:26.091577Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~yasamin/3.embed",
            "fid": "yasamin:3",
            "filename": "100epochY",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/yasamin:3/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/yasamin:3/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/yasamin/3/8_OBL0XDL1L80FJER1FST1GGK3G6ZHSN.png",
                "list-thumb": "https://api.plotly.com/v2/files/yasamin:3/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/yasamin:3",
                "plots": "https://api.plotly.com/v2/plots/yasamin:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=yasamin"
            },
            "owner": "yasamin",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~yasamin/3/",
            "world_readable": true,
            "date_modified": "2025-07-16T11:24:02.639Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~yasamin/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(0, 143, 213)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "epoch",
                                "y": "test_accuracy"
                            }
                        },
                        "mode": "lines",
                        "name": "Test",
                        "type": "scatter",
                        "xsrc": "yasamin:2:333762",
                        "ysrc": "yasamin:2:818bc2"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "epoch",
                                "y": "validation_accuracy"
                            }
                        },
                        "mode": "lines",
                        "name": "Validation",
                        "type": "scatter",
                        "xsrc": "yasamin:2:333762",
                        "ysrc": "yasamin:2:217aad",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            100
                        ],
                        "title": {
                            "font": {
                                "color": "rgb(49, 53, 57)"
                            },
                            "text": "epochs"
                        },
                        "domain": [
                            0,
                            0.61
                        ],
                        "autorange": true,
                        "gridcolor": "rgb(74, 75, 79)",
                        "gridwidth": 1,
                        "zerolinecolor": "rgb(74, 75, 79)"
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.24000000000000002,
                            0.8400000000000001
                        ],
                        "title": {
                            "text": "accuracy"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true,
                        "gridcolor": "rgb(74, 75, 79)",
                        "zerolinecolor": "rgb(74, 75, 79)"
                    },
                    "legend": {
                        "x": 0.4970491803278688,
                        "y": 0.37770090520382454,
                        "font": {
                            "color": "rgb(75, 123, 169)"
                        },
                        "bordercolor": "rgb(24, 22, 22)"
                    },
                    "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"
                    },
                    "hovermode": "x"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~yasamin",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/61.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": "2025-07-12 14:44:00",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "yasamin",
                "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": "2025-07-16T10:58:46.128992Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~DalyaB/1.embed",
            "fid": "DalyaB:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/DalyaB:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/DalyaB:1/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/DalyaB/1/8_LMPM17M7TRFG4TVFSQ7ZCVZDAUYPLW.png",
                "list-thumb": "https://api.plotly.com/v2/files/DalyaB:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/DalyaB:1",
                "plots": "https://api.plotly.com/v2/plots/DalyaB:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=DalyaB"
            },
            "owner": "DalyaB",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~DalyaB/1/",
            "world_readable": true,
            "date_modified": "2025-07-16T10:58:46.140Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~DalyaB/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "48-Texas, y"
                            }
                        },
                        "name": "48-Texas",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:69066a"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "06-California, y"
                            }
                        },
                        "name": "06-California",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:f38fe9"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "17-Illinois, y"
                            }
                        },
                        "name": "17-Illinois",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:b33453"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "42-Pennsylvania, y"
                            }
                        },
                        "name": "42-Pennsylvania",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:d85d56"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "39-Ohio, y"
                            }
                        },
                        "name": "39-Ohio",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:3adfb0"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "36-New York, y"
                            }
                        },
                        "name": "36-New York",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:b4b747"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "12-Florida, y"
                            }
                        },
                        "name": "12-Florida",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:3c0e3d"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "26-Michigan, y"
                            }
                        },
                        "name": "26-Michigan",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:52fbb0"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "13-Georgia, y"
                            }
                        },
                        "name": "13-Georgia",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:56ac01"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "34-New Jersey, y"
                            }
                        },
                        "name": "34-New Jersey",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:5d3e05"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "37-North Carolina, y"
                            }
                        },
                        "name": "37-North Carolina",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:2d0005"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "18-Indiana, y"
                            }
                        },
                        "name": "18-Indiana",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:c2ceda"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "47-Tennessee, y"
                            }
                        },
                        "name": "47-Tennessee",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:f8b0fb"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "55-Wisconsin, y"
                            }
                        },
                        "name": "55-Wisconsin",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:b44af4"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "27-Minnesota, y"
                            }
                        },
                        "name": "27-Minnesota",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:6ffdd0"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "53-Washington, y"
                            }
                        },
                        "name": "53-Washington",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:b6d25b"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "29-Missouri, y"
                            }
                        },
                        "name": "29-Missouri",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:00a73d"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "22-Louisiana, y"
                            }
                        },
                        "name": "22-Louisiana",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:763dd6"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "51-Virginia, y"
                            }
                        },
                        "name": "51-Virginia",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:176474"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "21-Kentucky, y"
                            }
                        },
                        "name": "21-Kentucky",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:2d5985"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "25-Massachusetts, y"
                            }
                        },
                        "name": "25-Massachusetts",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:840a72"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "01-Alabama, y"
                            }
                        },
                        "name": "01-Alabama",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:3216f7"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "19-Iowa, y"
                            }
                        },
                        "name": "19-Iowa",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:2e9f25"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "20-Kansas, y"
                            }
                        },
                        "name": "20-Kansas",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:cf51bc"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "45-South Carolina, y"
                            }
                        },
                        "name": "45-South Carolina",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:a493f4"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "08-Colorado, y"
                            }
                        },
                        "name": "08-Colorado",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:3c4ea9"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "04-Arizona, y"
                            }
                        },
                        "name": "04-Arizona",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:a2dae5"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "24-Maryland, y"
                            }
                        },
                        "name": "24-Maryland",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:68e65e"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "40-Oklahoma, y"
                            }
                        },
                        "name": "40-Oklahoma",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:1e4b86"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "09-Connecticut, y"
                            }
                        },
                        "name": "09-Connecticut",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:3f5952"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "28-Mississippi, y"
                            }
                        },
                        "name": "28-Mississippi",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:d0d18c"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "41-Oregon, y"
                            }
                        },
                        "name": "41-Oregon",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:dbd77e"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "05-Arkansas, y"
                            }
                        },
                        "name": "05-Arkansas",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:1b18f4"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "31-Nebraska, y"
                            }
                        },
                        "name": "31-Nebraska",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:ba8e9e"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "49-Utah, y"
                            }
                        },
                        "name": "49-Utah",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:1b6015"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "38-North Dakota, y"
                            }
                        },
                        "name": "38-North Dakota",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:61201a"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "32-Nevada, y"
                            }
                        },
                        "name": "32-Nevada",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:2e09b2"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "54-West Virginia, y"
                            }
                        },
                        "name": "54-West Virginia",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:7727f9"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "16-Idaho, y"
                            }
                        },
                        "name": "16-Idaho",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:c659e2"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "35-New Mexico, y"
                            }
                        },
                        "name": "35-New Mexico",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:d88305"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "10-Delaware, y"
                            }
                        },
                        "name": "10-Delaware",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:0c6c0a"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "33-New Hampshire, y"
                            }
                        },
                        "name": "33-New Hampshire",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:12cfa0"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "46-South Dakota, y"
                            }
                        },
                        "name": "46-South Dakota",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:a0bd6f"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "44-Rhode Island, y"
                            }
                        },
                        "name": "44-Rhode Island",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:b73378"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "23-Maine, y"
                            }
                        },
                        "name": "23-Maine",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:79d556"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "56-Wyoming, y"
                            }
                        },
                        "name": "56-Wyoming",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:a4ffb6"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "30-Montana, y"
                            }
                        },
                        "name": "30-Montana",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:712cad"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "02-Alaska, y"
                            }
                        },
                        "name": "02-Alaska",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:a37ed8"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "15-Hawaii, y"
                            }
                        },
                        "name": "15-Hawaii",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:18cf5e"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "50-Vermont, y"
                            }
                        },
                        "name": "50-Vermont",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:36c63d"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "48-Texas, x; 06-California, x; 17-Illinois, x; 42-Pennsylvania, x; 39-Ohio, x; 36-New York, x; 12-Florida, x; 26-Michigan, x; 13-Georgia, x; 34-New Jersey, x; 37-North Carolina, x; 18-Indiana, x; 47-Tennessee, x; 55-Wisconsin, x; 27-Minnesota, x; 53-Washington, x; 29-Missouri, x; 22-Louisiana, x; 51-Virginia, x; 21-Kentucky, x; 25-Massachusetts, x; 01-Alabama, x; 19-Iowa, x; 20-Kansas, x; 45-South Carolina, x; 08-Colorado, x; 04-Arizona, x; 24-Maryland, x; 40-Oklahoma, x; 09-Connecticut, x; 28-Mississippi, x; 41-Oregon, x; 05-Arkansas, x; 31-Nebraska, x; 49-Utah, x; 38-North Dakota, x; 32-Nevada, x; 54-West Virginia, x; 16-Idaho, x; 35-New Mexico, x; 10-Delaware, x; 33-New Hampshire, x; 46-South Dakota, x; 44-Rhode Island, x; 23-Maine, x; 56-Wyoming, x; 30-Montana, x; 02-Alaska, x; 15-Hawaii, x; 50-Vermont, x; 11-Washington DC, x",
                                "y": "11-Washington DC, y"
                            }
                        },
                        "name": "11-Washington DC",
                        "type": "bar",
                        "xsrc": "DalyaB:0:ba85ef",
                        "ysrc": "DalyaB:0:dd7ac3"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "size": 18
                        },
                        "text": "Total value of shipments by domestic origin"
                    },
                    "width": 951.2,
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            8.5
                        ],
                        "title": {
                            "font": {
                                "size": 18
                            },
                            "text": "Year"
                        },
                        "tickfont": {
                            "size": 18
                        },
                        "autorange": true,
                        "automargin": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            0.1249161363461995
                        ],
                        "title": {
                            "font": {
                                "size": 18
                            },
                            "text": "Total value of shipments (%)"
                        },
                        "tickfont": {
                            "size": 18
                        },
                        "autorange": true,
                        "automargin": true,
                        "tickformat": ".1%"
                    },
                    "height": 734.4,
                    "legend": {
                        "font": {
                            "size": 18
                        }
                    },
                    "barmode": "relative",
                    "template": "seaborn",
                    "hovermode": "closest"
                }
            },
            "height": 734,
            "width": 951,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~DalyaB",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/62.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-16 10:57:09",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "DalyaB",
                "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": "2025-07-16T10:30:39.948889Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dev.purohit/7.embed",
            "fid": "dev.purohit:7",
            "filename": "Section View Fall off Individual Person",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/dev.purohit:7/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/dev.purohit:7/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/dev.purohit/7/8_EJVHFLYXZHFO146APPR101T4WL2XJU.png",
                "list-thumb": "https://api.plotly.com/v2/files/dev.purohit:7/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dev.purohit:7",
                "plots": "https://api.plotly.com/v2/plots/dev.purohit:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=dev.purohit"
            },
            "owner": "dev.purohit",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~dev.purohit/7/",
            "world_readable": true,
            "date_modified": "2025-07-17T12:53:31.876Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dev.purohit/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "CEO Fails",
                        "type": "scatter",
                        "xsrc": "dev.purohit:6:ab61a5",
                        "ysrc": "dev.purohit:6:b1585d",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "Manager Fails",
                        "type": "scatter",
                        "xsrc": "dev.purohit:6:ab61a5",
                        "ysrc": "dev.purohit:6:3ca88f",
                        "xaxis": "x"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "E"
                            }
                        },
                        "mode": "lines",
                        "name": "Intern Fails",
                        "type": "scatter",
                        "xsrc": "dev.purohit:6:ab61a5",
                        "ysrc": "dev.purohit:6:3c96af",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Section View fall off for different Stakeholders"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            18.81293397576632
                        ],
                        "title": {
                            "text": "Sections viewed on Document"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            86.01031591197645,
                            100.73629916252756
                        ],
                        "title": {
                            "text": "Engagement Score"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "legend": {
                        "x": 0.845098814229249,
                        "y": 0.7439516129032258
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "hovermode": "x",
                    "annotations": [
                        {
                            "x": 18.78396871945259,
                            "y": 86.06630824372759,
                            "ax": 18.9991788856305,
                            "ay": 77.98387096774194,
                            "text": "",
                            "axref": "x",
                            "ayref": "y",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dev.purohit",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/22.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-15 13:57:27",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dev.purohit",
                "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": "2025-07-16T10:30:23.412032Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dev.purohit/5.embed",
            "fid": "dev.purohit:5",
            "filename": "Cumulative drop off for Individual Stakeholders",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/dev.purohit:5/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/dev.purohit:5/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/dev.purohit/5/8_97IMKB965WAUX82X2HFPO7SBZFMK58.png",
                "list-thumb": "https://api.plotly.com/v2/files/dev.purohit:5/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dev.purohit:5",
                "plots": "https://api.plotly.com/v2/plots/dev.purohit:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=dev.purohit"
            },
            "owner": "dev.purohit",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~dev.purohit/5/",
            "world_readable": true,
            "date_modified": "2025-07-17T06:04:00.674Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dev.purohit/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "CEO",
                        "type": "scatter",
                        "xsrc": "dev.purohit:4:9ef98e",
                        "ysrc": "dev.purohit:4:db963e",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "Manager",
                        "type": "scatter",
                        "xsrc": "dev.purohit:4:9ef98e",
                        "ysrc": "dev.purohit:4:2671de",
                        "xaxis": "x",
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "E"
                            }
                        },
                        "mode": "lines",
                        "name": "Intern",
                        "type": "scatter",
                        "xsrc": "dev.purohit:4:9ef98e",
                        "ysrc": "dev.purohit:4:5e15da",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "F"
                            }
                        },
                        "mode": "lines",
                        "name": "All Drop off together",
                        "type": "scatter",
                        "xsrc": "dev.purohit:4:9ef98e",
                        "ysrc": "dev.purohit:4:30a520",
                        "visible": true,
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Engagement Drop off for different Stakeholders"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            100
                        ],
                        "title": {
                            "text": "Engagement %"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -5.555555555555555,
                            105.55555555555556
                        ],
                        "title": {
                            "text": "Total Engagement Score"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "legend": {
                        "x": 0.845098814229249,
                        "y": 0.7439516129032258
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "hovermode": "x",
                    "annotations": [
                        {
                            "x": 18.78396871945259,
                            "y": 86.06630824372759,
                            "ax": 18.9991788856305,
                            "ay": 77.98387096774194,
                            "text": "",
                            "axref": "x",
                            "ayref": "y",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dev.purohit",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/22.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-15 13:57:27",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dev.purohit",
                "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": "2025-07-16T10:29:47.518860Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dev.purohit/3.embed",
            "fid": "dev.purohit:3",
            "filename": "0.5% Steps All Documents with % Engagement drop off",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/dev.purohit/3/9_Q3OC45S6N1JBSHZC42A6HPCE0O4S0Z.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/dev.purohit:3/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/dev.purohit/3/8_FV4EHB8XYALQFCCVDKNGT34ISURKV0.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dev.purohit/3/9_Q3OC45S6N1JBSHZC42A6HPCE0O4S0Z.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dev.purohit:3",
                "plots": "https://api.plotly.com/v2/plots/dev.purohit:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=dev.purohit"
            },
            "owner": "dev.purohit",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~dev.purohit/3/",
            "world_readable": true,
            "date_modified": "2025-07-16T12:17:33.904Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dev.purohit/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "J"
                            }
                        },
                        "mode": "lines",
                        "name": "Zero Document",
                        "type": "scatter",
                        "xsrc": "dev.purohit:2:e3ca48",
                        "ysrc": "dev.purohit:2:d4c2ba",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "Very Short",
                        "type": "scatter",
                        "xsrc": "dev.purohit:2:e3ca48",
                        "ysrc": "dev.purohit:2:422d98",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "Short",
                        "type": "scatter",
                        "xsrc": "dev.purohit:2:e3ca48",
                        "ysrc": "dev.purohit:2:1ded34",
                        "xaxis": "x"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "Standard",
                        "type": "scatter",
                        "xsrc": "dev.purohit:2:e3ca48",
                        "ysrc": "dev.purohit:2:d37dd8",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "F"
                            }
                        },
                        "mode": "lines",
                        "name": "Detailed/Technical",
                        "type": "scatter",
                        "xsrc": "dev.purohit:2:e3ca48",
                        "ysrc": "dev.purohit:2:fd003f",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "G"
                            }
                        },
                        "mode": "lines",
                        "name": "Long/Complex",
                        "type": "scatter",
                        "xsrc": "dev.purohit:2:e3ca48",
                        "ysrc": "dev.purohit:2:eb58bd",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "H"
                            }
                        },
                        "mode": "lines",
                        "name": "Enterprise/Govt",
                        "type": "scatter",
                        "xsrc": "dev.purohit:2:e3ca48",
                        "ysrc": "dev.purohit:2:6ce256",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "I"
                            }
                        },
                        "mode": "lines",
                        "name": "Very Large",
                        "type": "scatter",
                        "xsrc": "dev.purohit:2:e3ca48",
                        "ysrc": "dev.purohit:2:1709f7",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Total Time Spent fall off for different Stakeholders"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            100
                        ],
                        "autorange": true,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -5.555555555555555,
                            105.55555555555556
                        ],
                        "autorange": true,
                        "showspikes": false
                    },
                    "legend": {
                        "x": 0.8374005848220127,
                        "y": 0.4815941984545565
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "hovermode": "x",
                    "annotations": [
                        {
                            "x": 18.78396871945259,
                            "y": 86.06630824372759,
                            "ax": 18.9991788856305,
                            "ay": 77.98387096774194,
                            "text": "",
                            "axref": "x",
                            "ayref": "y",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dev.purohit",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/22.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-15 13:57:27",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dev.purohit",
                "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": "2025-07-16T10:17:26.158006Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Graphlover123/1.embed",
            "fid": "Graphlover123:1",
            "filename": "Electric Potential",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Graphlover123/1/9_351SW1SXKVRTY9Q5H563XYYCQXFXRW.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Graphlover123:1/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Graphlover123/1/8_IRZ6THQB68WC9GY6H1TN3PCJC5LX2U.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Graphlover123/1/9_351SW1SXKVRTY9Q5H563XYYCQXFXRW.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Graphlover123:1",
                "plots": "https://api.plotly.com/v2/plots/Graphlover123:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Graphlover123"
            },
            "owner": "Graphlover123",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Graphlover123/1/",
            "world_readable": true,
            "date_modified": "2025-07-16T10:17:26.169Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Graphlover123/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": "F - G - H - I - J - K - L - M - N - O - P"
                            }
                        },
                        "mode": "markers",
                        "type": "heatmap",
                        "zsrc": "Graphlover123:0:8442e9,026773,2b6fcd,591973,3ed518,f333bd,7e81c8,29c0d2,dc65f9,caff3e,c21950",
                        "contours": {
                            "end": 4,
                            "size": 0.5,
                            "start": 0.5
                        },
                        "autocontour": true,
                        "autocolorscale": true
                    },
                    {
                        "type": "heatmap",
                        "autocolorscale": true
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": 1.6623695517221906,
                                "y": 0.11909607408910743,
                                "z": 0.3039168286644601
                            },
                            "center": {
                                "x": 0,
                                "y": 0,
                                "z": 0
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "xaxis": {
                        "range": [
                            -0.5,
                            10.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -0.5,
                            15.5
                        ],
                        "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/~Graphlover123",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/80.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-16 09:59:51",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Graphlover123",
                "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": "2025-07-16T09:31:39.767848Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Aunyx/8.embed",
            "fid": "Aunyx:8",
            "filename": "Simulation d'une population validant les critères de la loi Hardy-Weinberg",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Aunyx:8/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Aunyx:8/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Aunyx/8/8_HVGDRI5UV6KR74JPURX7L652QG6XWG.png",
                "list-thumb": "https://api.plotly.com/v2/files/Aunyx:8/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Aunyx:8",
                "plots": "https://api.plotly.com/v2/plots/Aunyx:8",
                "parent": "https://api.plotly.com/v2/folders/home?user=Aunyx"
            },
            "owner": "Aunyx",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Aunyx/8/",
            "world_readable": true,
            "date_modified": "2025-07-19T06:25:21.163Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Aunyx/8/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(247, 12, 35)",
                            "shape": "linear",
                            "smoothing": 1.3
                        },
                        "meta": {
                            "columnNames": {
                                "y": "0"
                            }
                        },
                        "mode": "lines",
                        "name": "MAA",
                        "type": "scatter",
                        "ysrc": "Aunyx:24:9b6b46",
                        "opacity": 1,
                        "visible": true,
                        "connectgaps": false,
                        "orientation": "v"
                    },
                    {
                        "line": {
                            "color": "rgb(103, 25, 12)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "0"
                            }
                        },
                        "mode": "lines",
                        "name": "FAA",
                        "type": "scatter",
                        "ysrc": "Aunyx:23:511278",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "0"
                            }
                        },
                        "mode": "lines",
                        "name": "MAa",
                        "type": "scatter",
                        "ysrc": "Aunyx:21:43941e",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(20, 96, 30)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "0"
                            }
                        },
                        "mode": "lines",
                        "name": "FAa",
                        "type": "scatter",
                        "ysrc": "Aunyx:29:e0aa35",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "0"
                            }
                        },
                        "mode": "lines",
                        "name": "Maa",
                        "type": "scatter",
                        "ysrc": "Aunyx:25:cf512b",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(19, 77, 236)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "0"
                            }
                        },
                        "mode": "lines",
                        "name": "Faa",
                        "type": "scatter",
                        "ysrc": "Aunyx:22:000120",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "0"
                            }
                        },
                        "mode": "lines",
                        "name": "Période reproductive",
                        "type": "bar",
                        "ysrc": "Aunyx:30:35ccd7",
                        "marker": {
                            "color": "rgb(190, 178, 178)"
                        },
                        "visible": true,
                        "stackgroup": null,
                        "orientation": "v"
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(15, 87, 24)",
                            "shape": "linear"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "80"
                            }
                        },
                        "mode": "lines",
                        "name": "Aa",
                        "type": "scatter",
                        "ysrc": "Aunyx:27:b00ebf",
                        "visible": true,
                        "orientation": "v"
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(78, 4, 5)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "88"
                            }
                        },
                        "mode": "lines",
                        "name": "AA",
                        "type": "scatter",
                        "ysrc": "Aunyx:28:77bf49",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(1, 48, 96)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "10"
                            }
                        },
                        "mode": "lines",
                        "name": "aa",
                        "type": "scatter",
                        "ysrc": "Aunyx:20:9b7154",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(0, 0, 0)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "178"
                            }
                        },
                        "mode": "lines",
                        "name": "Nbre d'individu",
                        "type": "scatter",
                        "ysrc": "Aunyx:26:d15aea",
                        "visible": true,
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Population Harry Weindberge v2 80%A et 20%a"
                    },
                    "xaxis": {
                        "range": [
                            -0.5,
                            217.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -15.611111111111114,
                            316.6111111111111
                        ],
                        "title": {
                            "text": "Click to enter Y axis title"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "bargap": 0,
                    "legend": {
                        "x": 1.0718867924528301,
                        "y": 1.1054852320675106
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "bargroupgap": 0
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Aunyx",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/E8C9NFA0TEJ37XYD30UABQN2WZMN7D.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-12 12:20:45",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Aunyx",
                "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": "2025-07-16T09:24:54.164995Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~podolmary/3.embed",
            "fid": "podolmary:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/podolmary:3/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/podolmary:3/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/podolmary/3/8_BESTTJSRCCP1NK8EE33AKLZ7FA4SCB.png",
                "list-thumb": "https://api.plotly.com/v2/files/podolmary:3/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/podolmary:3",
                "plots": "https://api.plotly.com/v2/plots/podolmary:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=podolmary"
            },
            "owner": "podolmary",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~podolmary/3/",
            "world_readable": true,
            "date_modified": "2025-07-16T09:25:49.210Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~podolmary/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y",
                                "z": " - x"
                            }
                        },
                        "type": "heatmap",
                        "xsrc": "podolmary:0:8e655f",
                        "ysrc": "podolmary:0:13c306",
                        "zsrc": "podolmary:0:-13c306,8e655f",
                        "colorscale": [
                            [
                                0,
                                "rgb(158,1,66)"
                            ],
                            [
                                0.1,
                                "rgb(213,62,79)"
                            ],
                            [
                                0.2,
                                "rgb(244,109,67)"
                            ],
                            [
                                0.3,
                                "rgb(253,174,97)"
                            ],
                            [
                                0.4,
                                "rgb(254,224,139)"
                            ],
                            [
                                0.5,
                                "rgb(255,255,191)"
                            ],
                            [
                                0.6,
                                "rgb(230,245,152)"
                            ],
                            [
                                0.7,
                                "rgb(171,221,164)"
                            ],
                            [
                                0.8,
                                "rgb(102,194,165)"
                            ],
                            [
                                0.9,
                                "rgb(50,136,189)"
                            ],
                            [
                                1,
                                "rgb(94,79,162)"
                            ]
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -1,
                            6
                        ],
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "autorange": true,
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -1,
                            4
                        ],
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "zeroline": false,
                        "autorange": true,
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "autosize": true,
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~podolmary",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/62.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-16 09:21:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "podolmary",
                "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": "2025-07-16T08:51:40.182154Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hugogcz/3.embed",
            "fid": "hugogcz:3",
            "filename": "Impact Cost",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/hugogcz/3/9_TK4QM3KLYWXKEBAIRFC1IBVIF8NMXI.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/hugogcz/3/2_XQAH8ASAB7U4MYCTTR9HUGUET6AZ4B.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/hugogcz/3/8_BY4EHZ1CZD4FAMJPG3D3QTQVNJBWJW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/hugogcz/3/9_TK4QM3KLYWXKEBAIRFC1IBVIF8NMXI.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hugogcz:3",
                "plots": "https://api.plotly.com/v2/plots/hugogcz:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=hugogcz"
            },
            "owner": "hugogcz",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~hugogcz/3/",
            "world_readable": true,
            "date_modified": "2025-07-16T08:53:51.170Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hugogcz/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Customer - Blocking Spot",
                                "y": "FG on Hold",
                                "text": "FG on Hold"
                            }
                        },
                        "mode": "markers+text",
                        "name": "FG on Hold",
                        "type": "bar",
                        "xsrc": "hugogcz:2:25adf4,f3f5c8*",
                        "ysrc": "hugogcz:2:7c173c",
                        "textsrc": "hugogcz:2:7c173c",
                        "textfont": {
                            "size": 14
                        },
                        "orientation": "v",
                        "textposition": "auto",
                        "texttemplate": ""
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Customer - Blocking Spot",
                                "y": "Build at Risk",
                                "text": "Build at Risk"
                            }
                        },
                        "mode": "markers+text",
                        "name": "Build at Risk",
                        "type": "bar",
                        "xsrc": "hugogcz:2:25adf4,f3f5c8*",
                        "ysrc": "hugogcz:2:5bbf66",
                        "textsrc": "hugogcz:2:5bbf66",
                        "textfont": {
                            "size": 14,
                            "family": "Droid Sans"
                        },
                        "orientation": "v",
                        "textposition": "auto"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Customer - Blocking Spot",
                                "y": "Reworking",
                                "text": "Reworking"
                            }
                        },
                        "mode": "markers+text",
                        "name": "Reworking",
                        "type": "bar",
                        "xsrc": "hugogcz:2:25adf4,f3f5c8*",
                        "ysrc": "hugogcz:2:9b7561",
                        "textsrc": "hugogcz:2:9b7561",
                        "textfont": {
                            "size": 14
                        },
                        "orientation": "v",
                        "textposition": "auto"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Customer - Blocking Spot",
                                "y": "Accumulated Cost",
                                "text": "Accumulated Cost"
                            }
                        },
                        "mode": "markers+lines+text",
                        "type": "scatter",
                        "xsrc": "hugogcz:2:25adf4,f3f5c8*",
                        "ysrc": "hugogcz:2:1d8cda",
                        "textsrc": "hugogcz:2:1d8cda",
                        "textfont": {
                            "size": 15
                        },
                        "orientation": "v",
                        "textposition": "top center"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "multicategory",
                        "range": [
                            -0.5,
                            5.5
                        ],
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "<b>Customer</b>"
                        },
                        "domain": [
                            0.125,
                            0.875
                        ],
                        "showline": false,
                        "autorange": true,
                        "fixedrange": false,
                        "rangeslider": {
                            "range": [
                                -0.5,
                                5.5
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true,
                            "thickness": 0
                        }
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            1676525.710894223
                        ],
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "<b>Impact Cost</b>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "bargap": 0.4,
                    "barmode": "stack",
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hugogcz",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/31.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-16 06:55:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hugogcz",
                "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": "2025-07-16T08:37:41.334615Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Pola2305/7.embed",
            "fid": "Pola2305:7",
            "filename": "trend-change-analysis",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Pola2305/7/9_C17QM6VIVTQ2OCE2IRTP33G6VQL940.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Pola2305/7/2_87WCZJO3XHNF3UMZEVL5UX0FO8ZWEN.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Pola2305/7/8_JWCP1A0EOKQJ7JYD66Q3KBCDFILXC9.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Pola2305/7/9_C17QM6VIVTQ2OCE2IRTP33G6VQL940.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Pola2305:7",
                "plots": "https://api.plotly.com/v2/plots/Pola2305:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=Pola2305"
            },
            "owner": "Pola2305",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Pola2305/7/",
            "world_readable": true,
            "date_modified": "2025-07-16T08:37:41.345Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Pola2305/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#636efa",
                            "width": 2
                        },
                        "mode": "lines",
                        "name": "Тренд",
                        "type": "scatter",
                        "xsrc": "Pola2305:6:a61f0a",
                        "ysrc": "Pola2305:6:06ba31",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "Тренд",
                        "orientation": "v",
                        "hovertemplate": "Метрика=Тренд<br>Дата=%{x}<br>Значение=%{y}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#EF553B",
                            "width": 2
                        },
                        "mode": "lines",
                        "name": "Δ Тренд",
                        "type": "scatter",
                        "xsrc": "Pola2305:6:385c94",
                        "ysrc": "Pola2305:6:610c0f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "Δ Тренд",
                        "orientation": "v",
                        "hovertemplate": "Метрика=Δ Тренд<br>Дата=%{x}<br>Значение=%{y}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#00cc96",
                            "width": 2
                        },
                        "mode": "lines",
                        "name": "% Δ Тренда",
                        "type": "scatter",
                        "xsrc": "Pola2305:6:0ddc89",
                        "ysrc": "Pola2305:6:0f6cda",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "% Δ Тренда",
                        "orientation": "v",
                        "hovertemplate": "Метрика=% Δ Тренда<br>Дата=%{x}<br>Значение=%{y}<extra></extra>"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Динамика тренда ускорения прироста подписчиков"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Дата"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "Значение"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "title": {
                            "text": "Метрика"
                        },
                        "tracegroupgap": 0
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Pola2305",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-11 12:17:38",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Pola2305",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}