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=cj0xJnA9MjAyNS0wNi0yNSsyMiUzQTA1JTNBMDkuMDg1ODAwJTJCMDAlM0EwMA%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=cD0yMDI1LTA2LTI1KzIyJTNBNTUlM0EyMy4wNDY2MDMlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNS0wNi0yNiswMSUzQTUyJTNBMjMuMjU1MDUyJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-06-26T01:52:23.255052Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nsauer/1.embed",
            "fid": "nsauer:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nsauer/1/9_4CUSGJKDJZGW4IJW1GSEQH005829UU.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nsauer/1/2_U35PI8XF6EJO1FFAOE60X8VS3MX8BZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nsauer/1/8_ZJ3MFPTZB0YYTZY2Q6ANU354XPB1O6.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nsauer/1/9_4CUSGJKDJZGW4IJW1GSEQH005829UU.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nsauer:1",
                "plots": "https://api.plotly.com/v2/plots/nsauer:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=nsauer"
            },
            "owner": "nsauer",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~nsauer/1/",
            "world_readable": true,
            "date_modified": "2025-06-26T01:52:23.265Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nsauer/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Problem - Shed",
                                "y": "Date"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "nsauer:0:452951,a1005c*",
                        "ysrc": "nsauer:0:c905ee"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Riverview Disease and dates "
                    },
                    "xaxis": {
                        "type": "multicategory",
                        "range": [
                            -0.7891938674579625,
                            13.789193867457962
                        ],
                        "title": {
                            "text": "Click to enter X axis title"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -1.719582850521437,
                            25.719582850521437
                        ],
                        "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/~nsauer",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/27.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-26 01:50:39",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nsauer",
                "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-06-26T01:39:47.109340Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~n00r/11.embed",
            "fid": "n00r:11",
            "filename": "KNN_Training: Class vs F1-Score",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/n00r/11/9_3FJEEAITX3QTP38IM6S9XVFJ9NINX6.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/n00r/11/2_YFAEGWAG4QMW7X1PGDOBS8KMVDWXY5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/n00r/11/8_RFO9SMWP03UA00NTAZWPFK819COX2H.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/n00r/11/9_3FJEEAITX3QTP38IM6S9XVFJ9NINX6.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/n00r:11",
                "plots": "https://api.plotly.com/v2/plots/n00r:11",
                "parent": "https://api.plotly.com/v2/folders/home?user=n00r"
            },
            "owner": "n00r",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~n00r/11/",
            "world_readable": true,
            "date_modified": "2025-06-26T01:39:47.118Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~n00r/11/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "smoothing": 1.3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "class",
                                "y": "f1-score"
                            }
                        },
                        "mode": "markers",
                        "type": "histogram2dcontour",
                        "xsrc": "n00r:10:598685",
                        "ysrc": "n00r:10:e67a1c",
                        "colorbar": {
                            "title": {
                                "text": "F1-Score"
                            }
                        },
                        "contours": {
                            "end": 2.5,
                            "size": 0.2,
                            "start": 0.5,
                            "showlines": false
                        },
                        "colorscale": [
                            [
                                0,
                                "#000004"
                            ],
                            [
                                0.1111111111111111,
                                "#1b0c41"
                            ],
                            [
                                0.2222222222222222,
                                "#4a0c6b"
                            ],
                            [
                                0.3333333333333333,
                                "#781c6d"
                            ],
                            [
                                0.4444444444444444,
                                "#a52c60"
                            ],
                            [
                                0.5555555555555556,
                                "#cf4446"
                            ],
                            [
                                0.6666666666666666,
                                "#ed6925"
                            ],
                            [
                                0.7777777777777778,
                                "#fb9b06"
                            ],
                            [
                                0.8888888888888888,
                                "#f7d13d"
                            ],
                            [
                                1,
                                "#fcffa4"
                            ]
                        ],
                        "autocontour": false,
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "x": 0.5,
                        "text": "KNN Training: Class vs F1-Score"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -3,
                            12
                        ],
                        "title": {
                            "text": "Class"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.85,
                            1.05
                        ],
                        "title": {
                            "text": "F1-Score"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#506784"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#2a3f5f"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    },
                                    "baxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    }
                                }
                            ],
                            "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": "rgb(17,17,17)",
                                "showland": true,
                                "lakecolor": "rgb(17,17,17)",
                                "landcolor": "rgb(17,17,17)",
                                "showlakes": true,
                                "subunitcolor": "#506784"
                            },
                            "font": {
                                "color": "#f2f5fa"
                            },
                            "polar": {
                                "bgcolor": "rgb(17,17,17)",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "bgcolor": "rgb(17,17,17)"
                            },
                            "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": "rgb(17,17,17)",
                            "paper_bgcolor": "rgb(17,17,17)",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#f2f5fa"
                            },
                            "sliderdefaults": {
                                "bgcolor": "#C8D4E3",
                                "tickwidth": 0,
                                "bordercolor": "rgb(17,17,17)",
                                "borderwidth": 1
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#f2f5fa",
                                "arrowwidth": 1
                            },
                            "updatemenudefaults": {
                                "bgcolor": "#506784",
                                "borderwidth": 0
                            }
                        },
                        "themeRef": "PLOTLY_DARK"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~n00r",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/58.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-25 10:54:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "n00r",
                "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-06-26T01:28:56.056336Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~n00r/9.embed",
            "fid": "n00r:9",
            "filename": "KNN_Training: Class vs Recall",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/n00r/9/9_5POXY4W8Q6ROK1ZFIAD54VBFCRK345.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/n00r/9/2_V5RDZK7K5J5YW8P2TMSMK40IF56B47.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/n00r/9/8_667XL38MSWVO8IHX6R3KQNACAS99BI.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/n00r/9/9_5POXY4W8Q6ROK1ZFIAD54VBFCRK345.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/n00r:9",
                "plots": "https://api.plotly.com/v2/plots/n00r:9",
                "parent": "https://api.plotly.com/v2/folders/home?user=n00r"
            },
            "owner": "n00r",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~n00r/9/",
            "world_readable": true,
            "date_modified": "2025-06-26T01:28:56.066Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~n00r/9/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "smoothing": 1.3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "class",
                                "y": "recall"
                            }
                        },
                        "mode": "markers",
                        "type": "histogram2dcontour",
                        "xsrc": "n00r:8:a75e08",
                        "ysrc": "n00r:8:fa3662",
                        "colorbar": {
                            "title": {
                                "text": "Recall Level"
                            }
                        },
                        "contours": {
                            "end": 2.5,
                            "size": 0.2,
                            "start": 0.5,
                            "showlines": false,
                            "showlabels": false
                        },
                        "colorscale": [
                            [
                                0,
                                "#000004"
                            ],
                            [
                                0.1111111111111111,
                                "#1b0c41"
                            ],
                            [
                                0.2222222222222222,
                                "#4a0c6b"
                            ],
                            [
                                0.3333333333333333,
                                "#781c6d"
                            ],
                            [
                                0.4444444444444444,
                                "#a52c60"
                            ],
                            [
                                0.5555555555555556,
                                "#cf4446"
                            ],
                            [
                                0.6666666666666666,
                                "#ed6925"
                            ],
                            [
                                0.7777777777777778,
                                "#fb9b06"
                            ],
                            [
                                0.8888888888888888,
                                "#f7d13d"
                            ],
                            [
                                1,
                                "#fcffa4"
                            ]
                        ],
                        "autocontour": false,
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "x": 0.5,
                        "text": "KNN Training: Class vs Recall"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -3,
                            12
                        ],
                        "title": {
                            "text": "Class"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.75,
                            1.05
                        ],
                        "title": {
                            "text": "Recall"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#506784"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#2a3f5f"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    },
                                    "baxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    }
                                }
                            ],
                            "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": "rgb(17,17,17)",
                                "showland": true,
                                "lakecolor": "rgb(17,17,17)",
                                "landcolor": "rgb(17,17,17)",
                                "showlakes": true,
                                "subunitcolor": "#506784"
                            },
                            "font": {
                                "color": "#f2f5fa"
                            },
                            "polar": {
                                "bgcolor": "rgb(17,17,17)",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "bgcolor": "rgb(17,17,17)"
                            },
                            "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": "rgb(17,17,17)",
                            "paper_bgcolor": "rgb(17,17,17)",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#f2f5fa"
                            },
                            "sliderdefaults": {
                                "bgcolor": "#C8D4E3",
                                "tickwidth": 0,
                                "bordercolor": "rgb(17,17,17)",
                                "borderwidth": 1
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#f2f5fa",
                                "arrowwidth": 1
                            },
                            "updatemenudefaults": {
                                "bgcolor": "#506784",
                                "borderwidth": 0
                            }
                        },
                        "themeRef": "PLOTLY_DARK"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~n00r",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/58.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-25 10:54:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "n00r",
                "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-06-26T01:13:12.256826Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~diannelauc/3.embed",
            "fid": "diannelauc:3",
            "filename": "7th Day copy",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/diannelauc/3/9_DT3IRD5MPPJPJ5JNA3P5HMZ4S8KRZ3.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/diannelauc/3/2_LKX9ARD7K1VJ0NU204YXLUBSAKZJDP.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/3/8_BR6DQF3S9VD8QZS4YTEFV9AZNDJHSM.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/3/9_DT3IRD5MPPJPJ5JNA3P5HMZ4S8KRZ3.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/diannelauc:3",
                "plots": "https://api.plotly.com/v2/plots/diannelauc:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=diannelauc"
            },
            "owner": "diannelauc",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~diannelauc/3/",
            "world_readable": true,
            "date_modified": "2025-06-29T19:30:39.471Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~diannelauc/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "Control",
                        "type": "box",
                        "ysrc": "diannelauc:2:13edea",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "notched": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "x+y+name"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "B"
                            }
                        },
                        "name": "0% MSSA 30% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:2:8254a2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "visible": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "C"
                            }
                        },
                        "name": "0% MSSA 50% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:2:9f1d4c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "D"
                            }
                        },
                        "name": "0% MSSA 70% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:2:b05272",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "visible": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "E"
                            }
                        },
                        "name": "5% MSSA 0% CDW ",
                        "type": "box",
                        "ysrc": "diannelauc:2:608f72",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "visible": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "F"
                            }
                        },
                        "name": "5% MSSA 30% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:2:7ae72f",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "visible": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "G"
                            }
                        },
                        "name": "5% MSSA 50% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:2:6f3228",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "H"
                            }
                        },
                        "name": "5% MSSA 70% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:2:483831",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "I"
                            }
                        },
                        "name": "10% MSSA 0% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:2:a71349",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "J"
                            }
                        },
                        "name": "10% MSSA 50% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:2:8a7877",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "K"
                            }
                        },
                        "name": "15% MSSA 30% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:2:2cc518",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "color": "rgb(0, 150, 255)",
                            "opacity": 1
                        },
                        "visible": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": ""
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xaxis": "x",
                        "yaxis": "y",
                        "visible": "legendonly",
                        "boxpoints": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "7th Day Compressive Strength of M30 Concrete Mix Designs"
                    },
                    "xaxis": {
                        "type": "category",
                        "dtick": 1,
                        "range": [
                            -0.5116414435389989,
                            11
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "domain": [
                            0,
                            1
                        ],
                        "showline": false,
                        "tickmode": "auto",
                        "autorange": false,
                        "showspikes": true,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "dtick": 1,
                        "range": [
                            -4.9,
                            30
                        ],
                        "tick0": 0,
                        "title": {
                            "text": "Compressive Strength, MPa"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "tickmode": "auto",
                        "autorange": false,
                        "showspikes": true
                    },
                    "shapes": [
                        {
                            "x0": -0.5,
                            "x1": 11,
                            "y0": 23.1,
                            "y1": 23.1,
                            "line": {
                                "color": "rgb(245, 8, 8)",
                                "width": 2
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "visible": true,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 3.5,
                            "x1": 3.5,
                            "y0": 0,
                            "y1": 30,
                            "line": {
                                "dash": "solid",
                                "color": "#444444"
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 7.5,
                            "x1": 7.5,
                            "y0": 0,
                            "y1": 30,
                            "line": {
                                "color": "#444444"
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 9.5,
                            "x1": 9.5,
                            "y0": 0,
                            "y1": 30,
                            "line": {
                                "color": "#444444"
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        }
                    ],
                    "autosize": true,
                    "dragmode": "zoom",
                    "hovermode": "x",
                    "annotations": [
                        {
                            "x": -0.5,
                            "y": 23.1,
                            "ax": -7,
                            "ay": -3,
                            "text": "23.1",
                            "align": "center",
                            "arrowhead": 0,
                            "arrowcolor": "rgb(255, 255, 255)"
                        },
                        {
                            "x": 1.5,
                            "y": -0.5,
                            "ax": -10,
                            "ay": 7,
                            "text": "0% MSSA",
                            "arrowcolor": "rgb(255, 255, 255)"
                        },
                        {
                            "x": 5.5,
                            "y": -0.5,
                            "ax": 2,
                            "ay": 5,
                            "text": "5% MSSA",
                            "arrowcolor": "rgb(255, 255, 255)"
                        },
                        {
                            "x": 8.5,
                            "y": 0,
                            "ax": 3,
                            "ay": 9,
                            "text": "10% MSSA",
                            "arrowcolor": "rgb(255, 255, 255)"
                        },
                        {
                            "x": 10.000060439223788,
                            "y": -0.5,
                            "ax": 10,
                            "ay": 4,
                            "text": "15% MSSA",
                            "arrowcolor": "rgb(255, 255, 255)"
                        },
                        {
                            "x": 0.03840728859401114,
                            "y": -4.566071428571434,
                            "ax": -1,
                            "ay": -6,
                            "text": "0% CDW"
                        },
                        {
                            "x": 1,
                            "y": -4.56,
                            "ax": -1,
                            "ay": -7,
                            "text": "30% CDW"
                        },
                        {
                            "x": 2.1,
                            "y": -4.5,
                            "ax": -10,
                            "ay": -8,
                            "text": "50% CDW"
                        },
                        {
                            "x": 3,
                            "y": -4.5,
                            "ax": -10,
                            "ay": -8,
                            "text": "70% CDW"
                        },
                        {
                            "x": 5.244179278230501,
                            "y": 23.1,
                            "ax": 5,
                            "ay": -9,
                            "text": "Concrete Theoretical Strength Projection at 7th Day"
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~diannelauc",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-25 22:45:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "diannelauc",
                "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-06-26T01:08:56.178434Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~n00r/7.embed",
            "fid": "n00r:7",
            "filename": "KNN_Training: Class vs Precision",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/n00r/7/9_6GUJFH54SHZYDAT4ATN0Q8TKPC8SOP.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/n00r/7/2_NOJABOG1T0AQEFZCW275FBB4KZ5BAC.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/n00r/7/8_RM0OWXYP60XCCQFO29QE2RI33HW1LS.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/n00r/7/9_6GUJFH54SHZYDAT4ATN0Q8TKPC8SOP.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/n00r:7",
                "plots": "https://api.plotly.com/v2/plots/n00r:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=n00r"
            },
            "owner": "n00r",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~n00r/7/",
            "world_readable": true,
            "date_modified": "2025-06-26T01:11:25.916Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~n00r/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "smoothing": 1.3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "class",
                                "y": "precision"
                            }
                        },
                        "mode": "markers",
                        "type": "histogram2dcontour",
                        "xsrc": "n00r:6:9d6c4d",
                        "ysrc": "n00r:6:97775d",
                        "opacity": 1,
                        "colorbar": {
                            "title": {
                                "text": "Precision Level"
                            }
                        },
                        "contours": {
                            "end": 2.5,
                            "size": 0.2,
                            "start": 0.5,
                            "showlines": false,
                            "showlabels": false
                        },
                        "histnorm": "",
                        "colorscale": [
                            [
                                0,
                                "#000004"
                            ],
                            [
                                0.1111111111111111,
                                "#1b0c41"
                            ],
                            [
                                0.2222222222222222,
                                "#4a0c6b"
                            ],
                            [
                                0.3333333333333333,
                                "#781c6d"
                            ],
                            [
                                0.4444444444444444,
                                "#a52c60"
                            ],
                            [
                                0.5555555555555556,
                                "#cf4446"
                            ],
                            [
                                0.6666666666666666,
                                "#ed6925"
                            ],
                            [
                                0.7777777777777778,
                                "#fb9b06"
                            ],
                            [
                                0.8888888888888888,
                                "#f7d13d"
                            ],
                            [
                                1,
                                "#fcffa4"
                            ]
                        ],
                        "autocontour": false,
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "x": 0.5,
                        "text": "KNN Training: Class vs Precision"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -3,
                            12
                        ],
                        "title": {
                            "text": "Class"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.85,
                            1.05
                        ],
                        "title": {
                            "text": "Precision"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#506784"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#2a3f5f"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    },
                                    "baxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    }
                                }
                            ],
                            "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": "rgb(17,17,17)",
                                "showland": true,
                                "lakecolor": "rgb(17,17,17)",
                                "landcolor": "rgb(17,17,17)",
                                "showlakes": true,
                                "subunitcolor": "#506784"
                            },
                            "font": {
                                "color": "#f2f5fa"
                            },
                            "polar": {
                                "bgcolor": "rgb(17,17,17)",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "bgcolor": "rgb(17,17,17)"
                            },
                            "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": "rgb(17,17,17)",
                            "paper_bgcolor": "rgb(17,17,17)",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#f2f5fa"
                            },
                            "sliderdefaults": {
                                "bgcolor": "#C8D4E3",
                                "tickwidth": 0,
                                "bordercolor": "rgb(17,17,17)",
                                "borderwidth": 1
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#f2f5fa",
                                "arrowwidth": 1
                            },
                            "updatemenudefaults": {
                                "bgcolor": "#506784",
                                "borderwidth": 0
                            }
                        },
                        "themeRef": "PLOTLY_DARK"
                    },
                    "hoverlabel": {
                        "bgcolor": "rgb(169, 169, 169)"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~n00r",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/58.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-25 10:54:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "n00r",
                "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-06-26T00:27:30.811464Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jihosng/1.embed",
            "fid": "jihosng:1",
            "filename": "Pt20Ni80_Test",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jihosng/1/9_ZA5L91H6XP1FMH5Q0CM3JLHH9FAQC1.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jihosng/1/2_8YK88MDXEZVMG33MQZY4QPAOYOKQK6.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jihosng/1/8_29WEXBUL8E5VMLBF233SL1QPRH9R44.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jihosng/1/9_ZA5L91H6XP1FMH5Q0CM3JLHH9FAQC1.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jihosng:1",
                "plots": "https://api.plotly.com/v2/plots/jihosng:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=jihosng"
            },
            "owner": "jihosng",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~jihosng/1/",
            "world_readable": true,
            "date_modified": "2025-06-26T00:27:30.821Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jihosng/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "82cc0a",
                        "meta": {
                            "columnNames": {
                                "x": "20240331_111307_Pt20_Ni80_p0.0d_None_300nC_Pos_2_TDC_Sum.out, x",
                                "y": "20240331_111307_Pt20_Ni80_p0.0d_None_300nC_Pos_2_TDC_Sum.out, y"
                            }
                        },
                        "mode": "markers",
                        "name": "20240331_111307_Pt20_Ni80_p0.0d_None_300nC_Pos_2_TDC_Sum.out",
                        "size": 10,
                        "type": "scatter",
                        "xraw": [
                            50,
                            50.1,
                            50.2,
                            50.3,
                            50.4,
                            50.5,
                            50.6,
                            50.7,
                            50.8,
                            50.9,
                            51,
                            51.1,
                            51.2,
                            51.3,
                            51.4,
                            51.5,
                            51.6,
                            51.7,
                            51.8,
                            51.9,
                            52,
                            52.1,
                            52.2,
                            52.3,
                            52.4,
                            52.5,
                            52.6,
                            52.7,
                            52.8,
                            52.9,
                            53,
                            53.1,
                            53.2,
                            53.3,
                            53.4,
                            53.5,
                            53.6,
                            53.7,
                            53.8,
                            53.9,
                            54,
                            54.1,
                            54.2,
                            54.3,
                            54.4,
                            54.5,
                            54.6,
                            54.7,
                            54.8,
                            54.9,
                            55,
                            55.1,
                            55.2,
                            55.3,
                            55.4,
                            55.5,
                            55.6,
                            55.7,
                            55.8,
                            55.9,
                            56,
                            56.1,
                            56.2,
                            56.3,
                            56.4,
                            56.5,
                            56.6,
                            56.7,
                            56.8,
                            56.9,
                            57,
                            57.1,
                            57.2,
                            57.3,
                            57.4,
                            57.5,
                            57.6,
                            57.7,
                            57.8,
                            57.9,
                            58,
                            58.1,
                            58.2,
                            58.3,
                            58.4,
                            58.5,
                            58.6,
                            58.7,
                            58.8,
                            58.9,
                            59,
                            59.1,
                            59.2,
                            59.3,
                            59.4,
                            59.5,
                            59.6,
                            59.7,
                            59.8,
                            59.9,
                            60,
                            60.1,
                            60.2,
                            60.3,
                            60.4,
                            60.5,
                            60.6,
                            60.7,
                            60.8,
                            60.9,
                            61,
                            61.1,
                            61.2,
                            61.3,
                            61.4,
                            61.5,
                            61.6,
                            61.7,
                            61.8,
                            61.9,
                            62,
                            62.1,
                            62.2,
                            62.3,
                            62.4,
                            62.5,
                            62.6,
                            62.7,
                            62.8,
                            62.9,
                            63,
                            63.1,
                            63.2,
                            63.3,
                            63.4,
                            63.5,
                            63.6,
                            63.7,
                            63.8,
                            63.9,
                            64,
                            64.1,
                            64.2,
                            64.3,
                            64.4,
                            64.5,
                            64.6,
                            64.7,
                            64.8,
                            64.9,
                            65,
                            65.1,
                            65.2,
                            65.3,
                            65.4,
                            65.5,
                            65.6,
                            65.7,
                            65.8,
                            65.9,
                            66,
                            66.1,
                            66.2,
                            66.3,
                            66.4,
                            66.5,
                            66.6,
                            66.7,
                            66.8,
                            66.9,
                            67,
                            67.1,
                            67.2,
                            67.3,
                            67.4,
                            67.5,
                            67.6,
                            67.7,
                            67.8,
                            67.9,
                            68,
                            68.1,
                            68.2,
                            68.3,
                            68.4,
                            68.5,
                            68.6,
                            68.7,
                            68.8,
                            68.9,
                            69,
                            69.1,
                            69.2,
                            69.3,
                            69.4,
                            69.5,
                            69.6,
                            69.7,
                            69.8,
                            69.9,
                            70,
                            70.1,
                            70.2,
                            70.3,
                            70.4,
                            70.5,
                            70.6,
                            70.7,
                            70.8,
                            70.9,
                            71,
                            71.1,
                            71.2,
                            71.3,
                            71.4,
                            71.5,
                            71.6,
                            71.7,
                            71.8,
                            71.9,
                            72,
                            72.1,
                            72.2,
                            72.3,
                            72.4,
                            72.5,
                            72.6,
                            72.7,
                            72.8,
                            72.9,
                            73,
                            73.1,
                            73.2,
                            73.3,
                            73.4,
                            73.5,
                            73.6,
                            73.7,
                            73.8,
                            73.9,
                            74,
                            74.1,
                            74.2,
                            74.3,
                            74.4,
                            74.5,
                            74.6,
                            74.7,
                            74.8,
                            74.9,
                            75,
                            75.1,
                            75.2,
                            75.3,
                            75.4,
                            75.5,
                            75.6,
                            75.7,
                            75.8,
                            75.9,
                            76,
                            76.1,
                            76.2,
                            76.3,
                            76.4,
                            76.5,
                            76.6,
                            76.7,
                            76.8,
                            76.9,
                            77,
                            77.1,
                            77.2,
                            77.3,
                            77.4,
                            77.5,
                            77.6,
                            77.7,
                            77.8,
                            77.9,
                            78,
                            78.1,
                            78.2,
                            78.3,
                            78.4,
                            78.5,
                            78.6,
                            78.7,
                            78.8,
                            78.9,
                            79,
                            79.1,
                            79.2,
                            79.3,
                            79.4,
                            79.5,
                            79.6,
                            79.7,
                            79.8,
                            79.9,
                            80,
                            80.1,
                            80.2,
                            80.3,
                            80.4,
                            80.5,
                            80.6,
                            80.7,
                            80.8,
                            80.9,
                            81,
                            81.1,
                            81.2,
                            81.3,
                            81.4,
                            81.5,
                            81.6,
                            81.7,
                            81.8,
                            81.9,
                            82,
                            82.1,
                            82.2,
                            82.3,
                            82.4,
                            82.5,
                            82.6,
                            82.7,
                            82.8,
                            82.9,
                            83,
                            83.1,
                            83.2,
                            83.3,
                            83.4,
                            83.5,
                            83.6,
                            83.7,
                            83.8,
                            83.9,
                            84,
                            84.1,
                            84.2,
                            84.3,
                            84.4,
                            84.5,
                            84.6,
                            84.7,
                            84.8,
                            84.9,
                            85,
                            85.1,
                            85.2,
                            85.3,
                            85.4,
                            85.5,
                            85.6,
                            85.7,
                            85.8,
                            85.9,
                            86,
                            86.1,
                            86.2,
                            86.3,
                            86.4,
                            86.5,
                            86.6,
                            86.7,
                            86.8,
                            86.9,
                            87,
                            87.1,
                            87.2,
                            87.3,
                            87.4,
                            87.5,
                            87.6,
                            87.7,
                            87.8,
                            87.9,
                            88,
                            88.1,
                            88.2,
                            88.3,
                            88.4,
                            88.5,
                            88.6,
                            88.7,
                            88.8,
                            88.9,
                            89,
                            89.1,
                            89.2,
                            89.3,
                            89.4,
                            89.5,
                            89.6,
                            89.7,
                            89.8,
                            89.9,
                            90,
                            90.1,
                            90.2,
                            90.3,
                            90.4,
                            90.5,
                            90.6,
                            90.7,
                            90.8,
                            90.9,
                            91,
                            91.1,
                            91.2,
                            91.3,
                            91.4,
                            91.5,
                            91.6,
                            91.7,
                            91.8,
                            91.9,
                            92,
                            92.1,
                            92.2,
                            92.3,
                            92.4,
                            92.5,
                            92.6,
                            92.7,
                            92.8,
                            92.9,
                            93,
                            93.1,
                            93.2,
                            93.3,
                            93.4,
                            93.5,
                            93.6,
                            93.7,
                            93.8,
                            93.9,
                            94,
                            94.1,
                            94.2,
                            94.3,
                            94.4,
                            94.5,
                            94.6,
                            94.7,
                            94.8,
                            94.9,
                            95,
                            95.1,
                            95.2,
                            95.3,
                            95.4,
                            95.5,
                            95.6,
                            95.7,
                            95.8,
                            95.9,
                            96,
                            96.1,
                            96.2,
                            96.3,
                            96.4,
                            96.5,
                            96.6,
                            96.7,
                            96.8,
                            96.9,
                            97,
                            97.1,
                            97.2,
                            97.3,
                            97.4,
                            97.5,
                            97.6,
                            97.7,
                            97.8,
                            97.9,
                            98,
                            98.1,
                            98.2,
                            98.3,
                            98.4,
                            98.5,
                            98.6,
                            98.7,
                            98.8,
                            98.9,
                            99,
                            99.1,
                            99.2,
                            99.3,
                            99.4,
                            99.5,
                            99.6,
                            99.7,
                            99.8,
                            99.9,
                            100,
                            100.1,
                            100.2,
                            100.3,
                            100.4,
                            100.5,
                            100.6,
                            100.7,
                            100.8,
                            100.9,
                            101,
                            101.1,
                            101.2,
                            101.3,
                            101.4,
                            101.5,
                            101.6,
                            101.7,
                            101.8,
                            101.9,
                            102,
                            102.1,
                            102.2,
                            102.3,
                            102.4,
                            102.5,
                            102.6,
                            102.7,
                            102.8,
                            102.9,
                            103,
                            103.1,
                            103.2,
                            103.3,
                            103.4,
                            103.5,
                            103.6,
                            103.7,
                            103.8,
                            103.9,
                            104,
                            104.1,
                            104.2,
                            104.3,
                            104.4,
                            104.5,
                            104.6,
                            104.7,
                            104.8,
                            104.9,
                            105,
                            105.1,
                            105.2,
                            105.3,
                            105.4,
                            105.5,
                            105.6,
                            105.7,
                            105.8,
                            105.9,
                            106,
                            106.1,
                            106.2,
                            106.3,
                            106.4,
                            106.5,
                            106.6,
                            106.7,
                            106.8,
                            106.9,
                            107,
                            107.1,
                            107.2,
                            107.3,
                            107.4,
                            107.5,
                            107.6,
                            107.7,
                            107.8,
                            107.9,
                            108,
                            108.1,
                            108.2,
                            108.3,
                            108.4,
                            108.5,
                            108.6,
                            108.7,
                            108.8,
                            108.9,
                            109,
                            109.1,
                            109.2,
                            109.3,
                            109.4,
                            109.5,
                            109.6,
                            109.7,
                            109.8,
                            109.9,
                            110,
                            110.1,
                            110.2,
                            110.3,
                            110.4,
                            110.5,
                            110.6,
                            110.7,
                            110.8,
                            110.9,
                            111,
                            111.1,
                            111.2,
                            111.3,
                            111.4,
                            111.5,
                            111.6,
                            111.7,
                            111.8,
                            111.9,
                            112,
                            112.1,
                            112.2,
                            112.3,
                            112.4,
                            112.5,
                            112.6,
                            112.7,
                            112.8,
                            112.9,
                            113,
                            113.1,
                            113.2,
                            113.3,
                            113.4,
                            113.5,
                            113.6,
                            113.7,
                            113.8,
                            113.9,
                            114,
                            114.1,
                            114.2,
                            114.3,
                            114.4,
                            114.5,
                            114.6,
                            114.7,
                            114.8,
                            114.9,
                            115,
                            115.1,
                            115.2,
                            115.3,
                            115.4,
                            115.5,
                            115.6,
                            115.7,
                            115.8,
                            115.9,
                            116,
                            116.1,
                            116.2,
                            116.3,
                            116.4,
                            116.5,
                            116.6,
                            116.7,
                            116.8,
                            116.9,
                            117,
                            117.1,
                            117.2,
                            117.3,
                            117.4,
                            117.5,
                            117.6,
                            117.7,
                            117.8,
                            117.9,
                            118,
                            118.1,
                            118.2,
                            118.3,
                            118.4,
                            118.5,
                            118.6,
                            118.7,
                            118.8,
                            118.9,
                            119,
                            119.1,
                            119.2,
                            119.3,
                            119.4,
                            119.5,
                            119.6,
                            119.7,
                            119.8,
                            119.9,
                            120,
                            120.1,
                            120.2,
                            120.3,
                            120.4,
                            120.5,
                            120.6,
                            120.7,
                            120.8,
                            120.9,
                            121,
                            121.1,
                            121.2,
                            121.3,
                            121.4,
                            121.5,
                            121.6,
                            121.7,
                            121.8,
                            121.9,
                            122,
                            122.1,
                            122.2,
                            122.3,
                            122.4,
                            122.5,
                            122.6,
                            122.7,
                            122.8,
                            122.9,
                            123,
                            123.1,
                            123.2,
                            123.3,
                            123.4,
                            123.5,
                            123.6,
                            123.7,
                            123.8,
                            123.9,
                            124,
                            124.1,
                            124.2,
                            124.3,
                            124.4,
                            124.5,
                            124.6,
                            124.7,
                            124.8,
                            124.9,
                            125,
                            125.1,
                            125.2,
                            125.3,
                            125.4,
                            125.5,
                            125.6,
                            125.7,
                            125.8,
                            125.9,
                            126,
                            126.1,
                            126.2,
                            126.3,
                            126.4,
                            126.5,
                            126.6,
                            126.7,
                            126.8,
                            126.9,
                            127,
                            127.1,
                            127.2,
                            127.3,
                            127.4,
                            127.5,
                            127.6,
                            127.7,
                            127.8,
                            127.9,
                            128,
                            128.1,
                            128.2,
                            128.3,
                            128.4,
                            128.5,
                            128.6,
                            128.7,
                            128.8,
                            128.9,
                            129,
                            129.1,
                            129.2,
                            129.3,
                            129.4,
                            129.5,
                            129.6,
                            129.7,
                            129.8,
                            129.9,
                            130,
                            130.1,
                            130.2,
                            130.3,
                            130.4,
                            130.5,
                            130.6,
                            130.7,
                            130.8,
                            130.9,
                            131,
                            131.1,
                            131.2,
                            131.3,
                            131.4,
                            131.5,
                            131.6,
                            131.7,
                            131.8,
                            131.9,
                            132,
                            132.1,
                            132.2,
                            132.3,
                            132.4,
                            132.5,
                            132.6,
                            132.7,
                            132.8,
                            132.9,
                            133,
                            133.1,
                            133.2,
                            133.3,
                            133.4,
                            133.5,
                            133.6,
                            133.7,
                            133.8,
                            133.9,
                            134,
                            134.1,
                            134.2,
                            134.3,
                            134.4,
                            134.5,
                            134.6,
                            134.7,
                            134.8,
                            134.9,
                            135,
                            135.1,
                            135.2,
                            135.3,
                            135.4,
                            135.5,
                            135.6,
                            135.7,
                            135.8,
                            135.9,
                            136,
                            136.1,
                            136.2,
                            136.3,
                            136.4,
                            136.5,
                            136.6,
                            136.7,
                            136.8,
                            136.9,
                            137,
                            137.1,
                            137.2,
                            137.3,
                            137.4,
                            137.5,
                            137.6,
                            137.7,
                            137.8,
                            137.9,
                            138,
                            138.1,
                            138.2,
                            138.3,
                            138.4,
                            138.5,
                            138.6,
                            138.7,
                            138.8,
                            138.9,
                            139,
                            139.1,
                            139.2,
                            139.3,
                            139.4,
                            139.5,
                            139.6,
                            139.7,
                            139.8,
                            139.9,
                            140,
                            140.1,
                            140.2,
                            140.3,
                            140.4,
                            140.5,
                            140.6,
                            140.7,
                            140.8,
                            140.9,
                            141,
                            141.1,
                            141.2,
                            141.3,
                            141.4,
                            141.5,
                            141.6,
                            141.7,
                            141.8,
                            141.9,
                            142,
                            142.1,
                            142.2,
                            142.3,
                            142.4,
                            142.5,
                            142.6,
                            142.7,
                            142.8,
                            142.9,
                            143,
                            143.1,
                            143.2,
                            143.3,
                            143.4,
                            143.5,
                            143.6,
                            143.7,
                            143.8,
                            143.9,
                            144,
                            144.1,
                            144.2,
                            144.3,
                            144.4,
                            144.5,
                            144.6,
                            144.7,
                            144.8,
                            144.9,
                            145,
                            145.1,
                            145.2,
                            145.3,
                            145.4,
                            145.5,
                            145.6,
                            145.7,
                            145.8,
                            145.9,
                            146,
                            146.1,
                            146.2,
                            146.3,
                            146.4,
                            146.5,
                            146.6,
                            146.7,
                            146.8,
                            146.9,
                            147,
                            147.1,
                            147.2,
                            147.3,
                            147.4,
                            147.5,
                            147.6,
                            147.7,
                            147.8,
                            147.9,
                            148,
                            148.1,
                            148.2,
                            148.3,
                            148.4,
                            148.5,
                            148.6,
                            148.7,
                            148.8,
                            148.9,
                            149,
                            149.1,
                            149.2,
                            149.3,
                            149.4,
                            149.5,
                            149.6,
                            149.7,
                            149.8,
                            149.9,
                            150,
                            150.1,
                            150.2,
                            150.3,
                            150.4,
                            150.5,
                            150.6,
                            150.7,
                            150.8,
                            150.9,
                            151,
                            151.1,
                            151.2,
                            151.3,
                            151.4,
                            151.5,
                            151.6,
                            151.7,
                            151.8,
                            151.9,
                            152,
                            152.1,
                            152.2,
                            152.3,
                            152.4,
                            152.5,
                            152.6,
                            152.7,
                            152.8,
                            152.9,
                            153,
                            153.1,
                            153.2,
                            153.3,
                            153.4,
                            153.5,
                            153.6,
                            153.7,
                            153.8,
                            153.9,
                            154,
                            154.1,
                            154.2,
                            154.3,
                            154.4,
                            154.5,
                            154.6,
                            154.7,
                            154.8,
                            154.9,
                            155,
                            155.1,
                            155.2,
                            155.3,
                            155.4,
                            155.5,
                            155.6,
                            155.7,
                            155.8,
                            155.9,
                            156,
                            156.1,
                            156.2,
                            156.3,
                            156.4,
                            156.5,
                            156.6,
                            156.7,
                            156.8,
                            156.9,
                            157,
                            157.1,
                            157.2,
                            157.3,
                            157.4,
                            157.5,
                            157.6,
                            157.7,
                            157.8,
                            157.9,
                            158,
                            158.1,
                            158.2,
                            158.3,
                            158.4,
                            158.5,
                            158.6,
                            158.7,
                            158.8,
                            158.9,
                            159,
                            159.1,
                            159.2,
                            159.3,
                            159.4,
                            159.5,
                            159.6,
                            159.7,
                            159.8,
                            159.9,
                            160,
                            160.1,
                            160.2,
                            160.3,
                            160.4,
                            160.5,
                            160.6,
                            160.7,
                            160.8,
                            160.9,
                            161,
                            161.1,
                            161.2,
                            161.3,
                            161.4,
                            161.5,
                            161.6,
                            161.7,
                            161.8,
                            161.9,
                            162,
                            162.1,
                            162.2,
                            162.3,
                            162.4,
                            162.5,
                            162.6,
                            162.7,
                            162.8,
                            162.9,
                            163,
                            163.1,
                            163.2,
                            163.3,
                            163.4,
                            163.5,
                            163.6,
                            163.7,
                            163.8,
                            163.9,
                            164,
                            164.1,
                            164.2,
                            164.3,
                            164.4,
                            164.5,
                            164.6,
                            164.7,
                            164.8,
                            164.9,
                            165,
                            165.1,
                            165.2,
                            165.3,
                            165.4,
                            165.5,
                            165.6,
                            165.7,
                            165.8,
                            165.9,
                            166,
                            166.1,
                            166.2,
                            166.3,
                            166.4,
                            166.5,
                            166.6,
                            166.7,
                            166.8,
                            166.9,
                            167,
                            167.1,
                            167.2,
                            167.3,
                            167.4,
                            167.5,
                            167.6,
                            167.7,
                            167.8,
                            167.9,
                            168,
                            168.1,
                            168.2,
                            168.3,
                            168.4,
                            168.5,
                            168.6,
                            168.7,
                            168.8,
                            168.9,
                            169,
                            169.1,
                            169.2,
                            169.3,
                            169.4,
                            169.5,
                            169.6,
                            169.7,
                            169.8,
                            169.9,
                            170,
                            170.1,
                            170.2,
                            170.3,
                            170.4,
                            170.5,
                            170.6,
                            170.7,
                            170.8,
                            170.9,
                            171,
                            171.1,
                            171.2,
                            171.3,
                            171.4,
                            171.5,
                            171.6,
                            171.7,
                            171.8,
                            171.9,
                            172,
                            172.1,
                            172.2,
                            172.3,
                            172.4,
                            172.5,
                            172.6,
                            172.7,
                            172.8,
                            172.9,
                            173,
                            173.1,
                            173.2,
                            173.3,
                            173.4,
                            173.5,
                            173.6,
                            173.7,
                            173.8,
                            173.9,
                            174,
                            174.1,
                            174.2,
                            174.3,
                            174.4,
                            174.5,
                            174.6,
                            174.7,
                            174.8,
                            174.9,
                            175,
                            175.1,
                            175.2,
                            175.3,
                            175.4,
                            175.5,
                            175.6,
                            175.7,
                            175.8,
                            175.9,
                            176,
                            176.1,
                            176.2,
                            176.3,
                            176.4,
                            176.5,
                            176.6,
                            176.7,
                            176.8,
                            176.9,
                            177,
                            177.1,
                            177.2,
                            177.3,
                            177.4,
                            177.5,
                            177.6,
                            177.7,
                            177.8,
                            177.9,
                            178,
                            178.1,
                            178.2,
                            178.3,
                            178.4,
                            178.5,
                            178.6,
                            178.7,
                            178.8,
                            178.9,
                            179,
                            179.1,
                            179.2,
                            179.3,
                            179.4,
                            179.5,
                            179.6,
                            179.7,
                            179.8,
                            179.9,
                            180,
                            180.1,
                            180.2,
                            180.3,
                            180.4,
                            180.5,
                            180.6,
                            180.7,
                            180.8,
                            180.9,
                            181,
                            181.1,
                            181.2,
                            181.3,
                            181.4,
                            181.5,
                            181.6,
                            181.7,
                            181.8,
                            181.9,
                            182,
                            182.1,
                            182.2,
                            182.3,
                            182.4,
                            182.5,
                            182.6,
                            182.7,
                            182.8,
                            182.9,
                            183,
                            183.1,
                            183.2,
                            183.3,
                            183.4,
                            183.5,
                            183.6,
                            183.7,
                            183.8,
                            183.9,
                            184,
                            184.1,
                            184.2,
                            184.3,
                            184.4,
                            184.5,
                            184.6,
                            184.7,
                            184.8,
                            184.9,
                            185,
                            185.1,
                            185.2,
                            185.3,
                            185.4,
                            185.5,
                            185.6,
                            185.7,
                            185.8,
                            185.9,
                            186,
                            186.1,
                            186.2,
                            186.3,
                            186.4,
                            186.5,
                            186.6,
                            186.7,
                            186.8,
                            186.9,
                            187,
                            187.1,
                            187.2,
                            187.3,
                            187.4,
                            187.5,
                            187.6,
                            187.7,
                            187.8,
                            187.9,
                            188,
                            188.1,
                            188.2,
                            188.3,
                            188.4,
                            188.5,
                            188.6,
                            188.7,
                            188.8,
                            188.9,
                            189,
                            189.1,
                            189.2,
                            189.3,
                            189.4,
                            189.5,
                            189.6,
                            189.7,
                            189.8,
                            189.9,
                            190,
                            190.1,
                            190.2,
                            190.3,
                            190.4,
                            190.5,
                            190.6,
                            190.7,
                            190.8,
                            190.9,
                            191,
                            191.1,
                            191.2,
                            191.3,
                            191.4,
                            191.5,
                            191.6,
                            191.7,
                            191.8,
                            191.9,
                            192,
                            192.1,
                            192.2,
                            192.3,
                            192.4,
                            192.5,
                            192.6,
                            192.7,
                            192.8,
                            192.9,
                            193,
                            193.1,
                            193.2,
                            193.3,
                            193.4,
                            193.5,
                            193.6,
                            193.7,
                            193.8,
                            193.9,
                            194,
                            194.1,
                            194.2,
                            194.3,
                            194.4,
                            194.5,
                            194.6,
                            194.7,
                            194.8,
                            194.9,
                            195,
                            195.1,
                            195.2,
                            195.3,
                            195.4,
                            195.5,
                            195.6,
                            195.7,
                            195.8,
                            195.9,
                            196,
                            196.1,
                            196.2,
                            196.3,
                            196.4,
                            196.5,
                            196.6,
                            196.7,
                            196.8,
                            196.9,
                            197,
                            197.1,
                            197.2,
                            197.3,
                            197.4,
                            197.5,
                            197.6,
                            197.7,
                            197.8,
                            197.9,
                            198,
                            198.1,
                            198.2,
                            198.3,
                            198.4,
                            198.5,
                            198.6,
                            198.7,
                            198.8,
                            198.9,
                            199,
                            199.1,
                            199.2,
                            199.3,
                            199.4,
                            199.5,
                            199.6,
                            199.7,
                            199.8,
                            199.9,
                            null,
                            null
                        ],
                        "xsrc": "jihosng:0:fdcab6",
                        "yraw": [
                            3841.43,
                            3846.2,
                            3750.44,
                            3887.87,
                            3841.88,
                            3772.11,
                            3773.95,
                            3826.35,
                            3921.77,
                            3836.74,
                            3771.29,
                            3736.04,
                            3758.83,
                            3741.51,
                            3747.92,
                            3685.39,
                            3728.63,
                            3704.15,
                            3716.45,
                            3668.62,
                            3799.76,
                            3728.93,
                            3705.48,
                            3583.97,
                            3628.14,
                            3694.48,
                            3763.32,
                            3620.75,
                            3659.39,
                            3706.4,
                            3642.63,
                            3632.18,
                            3568.7,
                            3680.27,
                            3596.03,
                            3669.47,
                            3600.16,
                            3592.23,
                            3502.61,
                            3518.62,
                            3676.74,
                            3577.23,
                            3487.65,
                            3599.75,
                            3622.43,
                            3528.99,
                            3519.77,
                            3524.93,
                            3556.48,
                            3527.98,
                            3464.46,
                            3467.53,
                            3342.16,
                            3430.02,
                            3416.18,
                            3324.65,
                            3480.08,
                            3371.95,
                            3484.09,
                            3366.34,
                            3342.4,
                            3291.85,
                            3359.08,
                            3352.97,
                            3160.77,
                            3225.85,
                            3317.52,
                            3315.02,
                            3200.43,
                            3154.19,
                            3217.67,
                            3173.84,
                            3104.91,
                            3223.2,
                            3116.91,
                            3115.66,
                            3140.18,
                            3076.4,
                            2934.46,
                            3133.73,
                            2844.73,
                            2988.13,
                            2903.56,
                            2886.53,
                            2870.84,
                            2846.83,
                            2778.85,
                            2788.1,
                            2807.57,
                            2786.74,
                            2744.53,
                            2632.58,
                            2714.79,
                            2606.4,
                            2596.88,
                            2571.57,
                            2592.78,
                            2534.44,
                            2530.46,
                            2538.74,
                            2487.1,
                            2535.84,
                            2538.25,
                            2474.95,
                            2540.23,
                            2514.03,
                            2396.19,
                            2392.04,
                            2513.9,
                            2399.45,
                            2472.28,
                            2584.6,
                            2548.41,
                            2650.07,
                            2534.4,
                            2522.35,
                            2511.19,
                            2581.48,
                            2560.92,
                            2581.22,
                            2514.58,
                            2578.61,
                            2515.45,
                            2495.18,
                            2475.55,
                            2497.3,
                            2388.68,
                            2388.2,
                            2307.68,
                            2345.51,
                            2269.57,
                            2304.13,
                            2300.26,
                            2263.08,
                            2176.8,
                            2218.07,
                            2251.97,
                            2166.32,
                            2302.2,
                            2184.93,
                            2133.15,
                            2237.34,
                            2146.2,
                            2122.96,
                            2106.77,
                            2065.12,
                            2060.57,
                            2079.45,
                            2143.98,
                            2107.5,
                            2137.76,
                            2067.53,
                            2072.96,
                            2112.81,
                            2093.58,
                            2100.02,
                            2130.8,
                            2105.02,
                            2054.61,
                            2017.15,
                            2079.42,
                            2105.36,
                            2048.84,
                            2121.66,
                            2041.61,
                            2103.17,
                            2027.39,
                            1965.56,
                            1974.81,
                            2028.44,
                            2000.17,
                            2012.45,
                            2012.73,
                            1919.04,
                            1956.29,
                            1974.81,
                            1888,
                            2014.52,
                            1921.65,
                            1937.74,
                            2057.74,
                            2006.43,
                            1950.71,
                            1956.79,
                            1871.68,
                            1913.54,
                            1879.69,
                            1960.26,
                            1883.77,
                            1933.67,
                            1918.82,
                            1807.3,
                            1790.29,
                            1823.33,
                            1728.07,
                            1870.45,
                            1782.25,
                            1804.81,
                            1725.12,
                            1747.76,
                            1736.91,
                            1698.18,
                            1683.79,
                            1749.01,
                            1730.63,
                            1588.65,
                            1631.36,
                            1585.25,
                            1613.32,
                            1665.71,
                            1581.92,
                            1580.73,
                            1546.11,
                            1519.49,
                            1530.9,
                            1552.52,
                            1529.42,
                            1571.91,
                            1451.76,
                            1535.66,
                            1487.06,
                            1442.1,
                            1447.06,
                            1417.53,
                            1473.6,
                            1446.77,
                            1462.32,
                            1417.56,
                            1466.52,
                            1416.86,
                            1439.75,
                            1397.66,
                            1411.15,
                            1360.18,
                            1355.03,
                            1408.94,
                            1409.58,
                            1373.68,
                            1310.57,
                            1356.42,
                            1389.5,
                            1340.28,
                            1340.09,
                            1365.02,
                            1390.37,
                            1371.81,
                            1343.37,
                            1330.83,
                            1323.38,
                            1325.76,
                            1331.3,
                            1319.82,
                            1346.17,
                            1284.51,
                            1306.39,
                            1348.94,
                            1334.71,
                            1323.36,
                            1232.81,
                            1287.92,
                            1304.81,
                            1342.9,
                            1286.3,
                            1285.73,
                            1315.57,
                            1250.49,
                            1329.95,
                            1319.39,
                            1243.66,
                            1283.76,
                            1303.93,
                            1245.77,
                            1270.44,
                            1310.2,
                            1219.31,
                            1274.36,
                            1249.26,
                            1288.87,
                            1215.86,
                            1271.36,
                            1280.76,
                            1243.57,
                            1218.34,
                            1270.12,
                            1331.25,
                            1248.16,
                            1250.23,
                            1245.5,
                            1252.09,
                            1221.37,
                            1240.92,
                            1256.17,
                            1250.05,
                            1218.91,
                            1230.35,
                            1274.34,
                            1255,
                            1259.52,
                            1243.15,
                            1189.72,
                            1226.58,
                            1202.99,
                            1220.08,
                            1212.56,
                            1204.34,
                            1235.24,
                            1269.24,
                            1185.08,
                            1246.83,
                            1189.1,
                            1259.31,
                            1216.5,
                            1139.69,
                            1208.61,
                            1137.25,
                            1191.02,
                            1175.22,
                            1184.25,
                            1194.23,
                            1148.41,
                            1148.97,
                            1192.23,
                            1192.17,
                            1151.52,
                            1117.46,
                            1178.83,
                            1170.96,
                            1160.2,
                            1135.2,
                            1130.38,
                            1100.49,
                            1199.98,
                            1146.51,
                            1186.6,
                            1117.03,
                            1194.13,
                            1101.24,
                            1085.63,
                            1104.58,
                            1117.6,
                            1102.49,
                            1054.78,
                            1096.3,
                            1075.6,
                            1067.78,
                            1045.16,
                            1076.16,
                            1046.88,
                            1052.44,
                            990.397,
                            990.044,
                            937.285,
                            951.726,
                            932.948,
                            870.308,
                            855.309,
                            891.055,
                            868.939,
                            801.681,
                            766.257,
                            781.298,
                            718.62,
                            708.053,
                            628.648,
                            586.531,
                            601.616,
                            569.925,
                            514.299,
                            484.363,
                            456.604,
                            407.546,
                            407.54,
                            349.952,
                            318.508,
                            342.73,
                            314.186,
                            277.616,
                            242.175,
                            227.082,
                            231.283,
                            210.289,
                            212.99,
                            173.751,
                            165.829,
                            166.196,
                            175.716,
                            139.567,
                            122.646,
                            126.699,
                            97.9997,
                            97.8774,
                            138.568,
                            106.243,
                            119.7,
                            95.9074,
                            98.0015,
                            92.5536,
                            87.0646,
                            81.5011,
                            68.0363,
                            74.4481,
                            72.0201,
                            65.474,
                            64.6818,
                            74.0786,
                            68.0401,
                            74.7964,
                            77.3574,
                            68.0118,
                            56.031,
                            59.3754,
                            58.289,
                            66.2165,
                            67.2331,
                            62.1926,
                            63.8235,
                            40.049,
                            45.3924,
                            55.2442,
                            55.9843,
                            51.087,
                            51.4489,
                            48.0899,
                            41.5119,
                            47.5353,
                            32.4271,
                            46.98,
                            44.1039,
                            49.7243,
                            38.5338,
                            39.9014,
                            38.2548,
                            37.8109,
                            45.203,
                            44.7675,
                            33.9644,
                            51.912,
                            29.476,
                            43.7812,
                            42.9275,
                            33.0881,
                            36.5988,
                            31.5465,
                            34.3321,
                            38.5874,
                            36.7554,
                            37.5831,
                            28.1699,
                            46.4051,
                            38.4484,
                            27.2478,
                            23.934,
                            43.3556,
                            40.8049,
                            27.685,
                            32.0315,
                            29.9225,
                            39.1902,
                            38.5298,
                            36.6019,
                            37.9635,
                            34.7633,
                            40.8486,
                            42.9977,
                            37.9776,
                            23.6798,
                            39.86,
                            40.6457,
                            39.3209,
                            36.4667,
                            34.9342,
                            33.4942,
                            38.0182,
                            39.7932,
                            36.3334,
                            25.9269,
                            33.8706,
                            32.9178,
                            39.9974,
                            41.9701,
                            38.1572,
                            34.4805,
                            41.1167,
                            26.7734,
                            42.889,
                            19.0306,
                            22.0407,
                            38.3141,
                            37.5456,
                            38.8848,
                            30.3723,
                            38.8561,
                            48.6476,
                            41.9527,
                            27.2438,
                            25.0622,
                            40.2124,
                            51.6376,
                            55.653,
                            40.3385,
                            46.0746,
                            56.7104,
                            45.0865,
                            51.9395,
                            49.3347,
                            38.3006,
                            56.4863,
                            45.5325,
                            61.5956,
                            45.7448,
                            56.4785,
                            46.5529,
                            41.9469,
                            57.1654,
                            38.1769,
                            72.12,
                            53.8847,
                            60.2469,
                            55.0723,
                            49.6564,
                            45.7508,
                            43.5577,
                            54,
                            42.1484,
                            44.2869,
                            44.9689,
                            46.2535,
                            48.95,
                            45.9896,
                            48.1286,
                            45.4038,
                            54.8337,
                            59.6551,
                            47.6209,
                            50.9449,
                            46.987,
                            52.8178,
                            40.6498,
                            54.6258,
                            52.3861,
                            48.6341,
                            55.7709,
                            52.0279,
                            41.0356,
                            51.3744,
                            47.6233,
                            45.5334,
                            42.544,
                            36.4603,
                            33.4229,
                            42.1831,
                            36.3216,
                            39.3566,
                            33.9028,
                            41.3276,
                            39.7782,
                            29.4167,
                            27.2747,
                            45.3614,
                            34.7593,
                            39.6444,
                            36.666,
                            25.3511,
                            40.3172,
                            35.2593,
                            35.8209,
                            42.194,
                            38.1014,
                            35.4198,
                            47.3116,
                            41.9616,
                            33.7647,
                            38.6008,
                            40.065,
                            38.8534,
                            49.9246,
                            40.5755,
                            41.222,
                            56.5159,
                            49.4855,
                            47.3186,
                            43.884,
                            52.4627,
                            59.7861,
                            70.8006,
                            62.2075,
                            59.6124,
                            62.4741,
                            69.6437,
                            90.8517,
                            80.1921,
                            90.3569,
                            96.5346,
                            91.7865,
                            116.673,
                            120.185,
                            122.099,
                            139.983,
                            171.239,
                            157.682,
                            190.363,
                            223.756,
                            246.724,
                            276.303,
                            319.415,
                            371.013,
                            399.623,
                            446.093,
                            524.671,
                            569.693,
                            667.328,
                            745.506,
                            787.074,
                            933.218,
                            1059.63,
                            1161.88,
                            1307.24,
                            1383.63,
                            1592.95,
                            1798.9,
                            1972.07,
                            2047.88,
                            2258.03,
                            2437.14,
                            2637.47,
                            2770.29,
                            3066.46,
                            3293.91,
                            3352.28,
                            3520.74,
                            3732.36,
                            3855.98,
                            3982.53,
                            4146.2,
                            4301.48,
                            4376.26,
                            4517.67,
                            4576.64,
                            4642.43,
                            4787.1,
                            4796.02,
                            4921.16,
                            4900.78,
                            4850.99,
                            5051.14,
                            5046.07,
                            5151.77,
                            5160.66,
                            5166.23,
                            5100.44,
                            5140.77,
                            5046.05,
                            5096.1,
                            5082.52,
                            5009.94,
                            5135.26,
                            5043.36,
                            4951.98,
                            5031.7,
                            4882.93,
                            5000.41,
                            4793.23,
                            4738.81,
                            4668.25,
                            4709.68,
                            4491.66,
                            4355.69,
                            4120.95,
                            4038.87,
                            4080.98,
                            3971.14,
                            3692.21,
                            3506.45,
                            3423.77,
                            3163.4,
                            3079.44,
                            2806.46,
                            2577.22,
                            2348.75,
                            2090.74,
                            1870.53,
                            1713.69,
                            1609.35,
                            1326.33,
                            1198.36,
                            1043.81,
                            938.463,
                            796.238,
                            693.379,
                            620.372,
                            540.117,
                            453.42,
                            384.209,
                            341.872,
                            305.491,
                            257.239,
                            202.546,
                            197.328,
                            177.778,
                            163.681,
                            130.729,
                            120.637,
                            98.3593,
                            80.6603,
                            84.8025,
                            87.5209,
                            65.8435,
                            78.1662,
                            62.2477,
                            73.389,
                            72.366,
                            63.2603,
                            73.8302,
                            63.1915,
                            58.4885,
                            51.0225,
                            38.6496,
                            47.5984,
                            44.276,
                            48.8239,
                            50.6322,
                            43.9945,
                            40.3151,
                            44.4486,
                            52.5744,
                            45.5676,
                            50.1088,
                            48.7362,
                            44.1056,
                            46.004,
                            34.9732,
                            57.612,
                            51.7479,
                            50.462,
                            45.5263,
                            52.5871,
                            59.3014,
                            43.8907,
                            50.327,
                            39.1273,
                            43.4492,
                            49.3396,
                            53.0731,
                            53.2292,
                            49.5817,
                            42.9606,
                            57.841,
                            62.3103,
                            52.1542,
                            47.3394,
                            65.9927,
                            49.6417,
                            57.4708,
                            52.4798,
                            64.6287,
                            52.1257,
                            56.1439,
                            51.1388,
                            43.228,
                            44.0607,
                            47.7413,
                            59.9447,
                            54.532,
                            44.0256,
                            52.5075,
                            55.3299,
                            54.4054,
                            43.2344,
                            48.2342,
                            57.9582,
                            67.8909,
                            76.164,
                            62.3681,
                            49.582,
                            73.0475,
                            78.111,
                            73.6003,
                            65.192,
                            81.9778,
                            68.9542,
                            81.1324,
                            72.3118,
                            82.751,
                            111.2,
                            88.2445,
                            78.2622,
                            84.2125,
                            100.294,
                            95.3617,
                            115.611,
                            99.341,
                            108.216,
                            117.613,
                            142.445,
                            170.311,
                            162.641,
                            171.285,
                            181.9,
                            210.587,
                            215.271,
                            238.546,
                            275.741,
                            292.068,
                            366.645,
                            396.668,
                            454.811,
                            486.178,
                            546.121,
                            634.944,
                            654.226,
                            759.603,
                            888.642,
                            1047.54,
                            1114.32,
                            1230.71,
                            1462.28,
                            1643.54,
                            1861.29,
                            2158.24,
                            2299.8,
                            2534.55,
                            2989.12,
                            3269.96,
                            3474.84,
                            3802.24,
                            4254.55,
                            4644.66,
                            5052.96,
                            5406.64,
                            5859.6,
                            6294.37,
                            6587.53,
                            7117.67,
                            7343.02,
                            7729.74,
                            8047.94,
                            8330.63,
                            8526.08,
                            8950.34,
                            9267.44,
                            9427.99,
                            9588.54,
                            9722.48,
                            9631.14,
                            9958.27,
                            10013.1,
                            10222.8,
                            10189.2,
                            10075.9,
                            10062.8,
                            10185.6,
                            10314.5,
                            10203.7,
                            10298.2,
                            10266.7,
                            10381.1,
                            10349.4,
                            10330.6,
                            10155.9,
                            10072.4,
                            9952.69,
                            10077,
                            10146.3,
                            10252.8,
                            10127.6,
                            10271,
                            10081.3,
                            9934.25,
                            9926.51,
                            9871.69,
                            9912.79,
                            10005.5,
                            9821.25,
                            9746.78,
                            9614.8,
                            9346.16,
                            9127.16,
                            8839.98,
                            8319.72,
                            7837.92,
                            7365.69,
                            6719.89,
                            5932.05,
                            5201.28,
                            4525.38,
                            3813.59,
                            3044.07,
                            2417.1,
                            1818.9,
                            1365.27,
                            953.858,
                            651.511,
                            422.318,
                            263.344,
                            166.605,
                            80.2983,
                            53.2314,
                            27.8181,
                            23.2232,
                            10.9731,
                            8.1557,
                            6.36611,
                            4.80903,
                            0.014476,
                            1.45566,
                            -2.05295,
                            3.7729,
                            2.979,
                            -0.07879,
                            -4.2334,
                            0.939946,
                            3.68879,
                            3.92846,
                            0.568731,
                            -0.13999,
                            -1.73608,
                            3.80958,
                            2.31491,
                            -1.80882,
                            3.67663,
                            1.99476,
                            -1.00047,
                            1.4549,
                            -5.42337,
                            -3.26306,
                            -1.3487,
                            -4.39397,
                            -4.57623,
                            -3.57792,
                            5.67982,
                            -0.0043103,
                            2.12093,
                            -1.63403,
                            2.79537,
                            1.78863,
                            2.74843,
                            2.87015,
                            2.58238,
                            -3.18577,
                            1.94684,
                            -1.5885,
                            3.04358,
                            2.49608,
                            2.10073,
                            0.233106,
                            6.71026,
                            -3.4985,
                            -1.8056,
                            1.61564,
                            -1.38813,
                            -2.74863,
                            7.00207,
                            1.05171,
                            2.75017,
                            -1.07209,
                            3.99294,
                            -3.45674,
                            -1.03411,
                            -0.990186,
                            -0.649446,
                            -0.266982,
                            -1.01308,
                            5.90606,
                            -2.06201,
                            0.561417,
                            -0.915874,
                            -2.6866,
                            -1.48474,
                            5.52841,
                            0.0677,
                            -1.09154,
                            -1.23159,
                            -3.80392,
                            3.61889,
                            1.94374,
                            0.324637,
                            2.93616,
                            -0.762087,
                            1.36137,
                            -1.94449,
                            5.11714,
                            -0.050015,
                            -0.311542,
                            -0.211361,
                            0.562929,
                            -1.66718,
                            1.76984,
                            -3.2159,
                            -0.908977,
                            6.24765,
                            -0.396493,
                            -2.5553,
                            -2.01015,
                            -1.37342,
                            -6.45133,
                            0.905064,
                            -0.507259,
                            -1.15099,
                            -1.22276,
                            1.34047,
                            2.52323,
                            -0.280744,
                            -0.407135,
                            0.928515,
                            -0.347766,
                            2.6473,
                            -2.12143,
                            -1.25797,
                            -0.279371,
                            1.02822,
                            -1.62635,
                            -2.71978,
                            0.974562,
                            -3.17481,
                            -2.34272,
                            3.22798,
                            -2.75755,
                            0.486166,
                            -3.93408,
                            5.28825,
                            2.1557,
                            4.01499,
                            0.085684,
                            2.86194,
                            -0.57281,
                            -3.74426,
                            -2.02311,
                            0.00597366,
                            -2.49649,
                            7.32462,
                            -3.50885,
                            -2.65412,
                            0.850328,
                            1.80572,
                            4.04373,
                            -3.18125,
                            2.22644,
                            2.31283,
                            -2.8937,
                            -4.51457,
                            -0.577524,
                            0.198548,
                            -0.149485,
                            -4.27731,
                            -3.52603,
                            -2.77565,
                            0.323876,
                            3.18258,
                            -3.85231,
                            1.69133,
                            2.50163,
                            -1.64779,
                            -0.282519,
                            -1.81226,
                            -2.19687,
                            -2.08093,
                            -0.203087,
                            -2.75893,
                            -2.8146,
                            2.3468,
                            1.44887,
                            -2.1134,
                            -0.88091,
                            9.92681,
                            3.18853,
                            -2.5494,
                            2.80315,
                            0.0445125,
                            0.037555,
                            -1.24272,
                            0.389305,
                            -3.1316,
                            -2.33929,
                            0.604829,
                            1.36117,
                            -3.50141,
                            -3.56111,
                            0.564054,
                            -4.66976,
                            -0.278632,
                            -0.899936,
                            -1.78225,
                            5.59908,
                            0.481018,
                            0.501607,
                            4.55293,
                            1.69394,
                            0.636842,
                            -4.73989,
                            4.39066,
                            -3.84941,
                            -0.397897,
                            -2.35643,
                            1.71258,
                            -0.286557,
                            -0.058139,
                            0.685257,
                            1.53267,
                            -0.237362,
                            2.41465,
                            6.07486,
                            -2.28892,
                            5.24442,
                            1.91797,
                            5.27735,
                            2.33903,
                            0.723423,
                            -0.900822,
                            -1.8517,
                            3.627,
                            -0.324312,
                            0.849781,
                            0.145299,
                            -1.47482,
                            -2.26803,
                            -0.167961,
                            0.749838,
                            4.32408,
                            -0.548371,
                            3.7666,
                            -1.42721,
                            -1.81824,
                            -1.55296,
                            2.79422,
                            -2.59112,
                            0.075528,
                            -3.71688,
                            2.28003,
                            2.73545,
                            4.30984,
                            3.18956,
                            -1.64452,
                            -0.795864,
                            -1.58675,
                            -1.41571,
                            -1.57438,
                            3.30114,
                            1.47509,
                            -2.61537,
                            -0.852482,
                            -0.954691,
                            3.12679,
                            -0.199507,
                            -0.83925,
                            7.09968,
                            0.698327,
                            1.61489,
                            2.89635,
                            -0.320996,
                            -1.43567,
                            -0.664988,
                            0.299082,
                            -1.9663,
                            3.06365,
                            0.045739,
                            3.7925,
                            -1.81335,
                            -2.69014,
                            -0.368778,
                            -1.53728,
                            -1.49839,
                            -2.1234,
                            2.1875,
                            2.12605,
                            0.214353,
                            1.64052,
                            4.07585,
                            -1.41271,
                            2.47793,
                            -0.392157,
                            -1.42114,
                            2.86591,
                            0.03023,
                            1.50881,
                            5.2794,
                            1.77574,
                            0.559777,
                            -0.233687,
                            -4.71795,
                            -1.26034,
                            1.42062,
                            4.17588,
                            4.28798,
                            0.805854,
                            -3.54894,
                            -1.71094,
                            -2.06152,
                            -0.676441,
                            -5.33862,
                            -0.639135,
                            2.3147,
                            0.105946,
                            -1.13622,
                            0.355547,
                            -0.786714,
                            -1.63394,
                            -1.72642,
                            1.04849,
                            1.25803,
                            2.01971,
                            -3.55167,
                            -1.7711,
                            -4.16286,
                            -3.28887,
                            -0.996479,
                            -0.579947,
                            -1.7588,
                            -3.09406,
                            -2.92667,
                            -3.8834,
                            3.80257,
                            0.592798,
                            -0.324897,
                            6.45081,
                            2.20802,
                            0.857377,
                            1.85009,
                            -1.61319,
                            -3.49594,
                            -1.4409,
                            3.26657,
                            1.92017,
                            3.08799,
                            1.0411,
                            -5.04777,
                            1.09461,
                            3.22722,
                            -3.5008,
                            1.9514,
                            6.14467,
                            -2.30912,
                            -2.40042,
                            -3.07355,
                            -0.851038,
                            -2.71447,
                            3.74685,
                            1.60305,
                            -2.38544,
                            3.60415,
                            0.23429,
                            0.35143,
                            1.19132,
                            3.28639,
                            4.06115,
                            -0.799899,
                            2.82718,
                            -3.10684,
                            -3.07478,
                            2.64171,
                            -2.06137,
                            0.037762,
                            2.93538,
                            -1.00949,
                            -1.42688,
                            1.27938,
                            2.74952,
                            -0.679381,
                            -1.79116,
                            -2.35118,
                            -1.14386,
                            2.53336,
                            -2.06344,
                            -0.072018,
                            1.60229,
                            3.08013,
                            2.23573,
                            1.98773,
                            -2.45622,
                            0.360787,
                            -1.5053,
                            -0.575587,
                            3.84863,
                            -4.44994,
                            0.011987,
                            2.75893,
                            0.535963,
                            -0.751212,
                            -0.584495,
                            -1.31724,
                            2.13503,
                            -4.22509,
                            -2.15843,
                            -1.06986,
                            -2.45928,
                            0.006657,
                            -0.955783,
                            0.318499,
                            0.401131,
                            -1.53718,
                            -2.67161,
                            0.461296,
                            1.66725,
                            -4.31677,
                            0.008795,
                            -0.931242,
                            -2.86802,
                            -1.85017,
                            -3.14332,
                            -3.28239,
                            -0.111223,
                            -1.50394,
                            -1.63962,
                            -0.015228,
                            -0.235385,
                            -0.54779,
                            0.145452,
                            -1.65223,
                            -1.97659,
                            1.0317,
                            0.33233,
                            5.20862,
                            1.70507,
                            1.6256,
                            1.79634,
                            -0.322181,
                            -0.633069,
                            -2.12685,
                            1.3384,
                            2.80861,
                            2.57557,
                            0.010933,
                            4.75228,
                            -1.90288,
                            -4.1236,
                            1.23899,
                            -2.76891,
                            0.951771,
                            -1.05416,
                            0.337652,
                            -2.9379,
                            -1.23177,
                            -0.486702,
                            0.338493,
                            0.331218,
                            -1.8494,
                            2.13853,
                            -2.10256,
                            -3.32353,
                            -1.68593,
                            1.68488,
                            -0.253898,
                            1.02541,
                            -2.33934,
                            -3.0438,
                            1.03548,
                            -0.937339,
                            -0.0958948,
                            -0.162641,
                            3.35709,
                            0.601662,
                            5.10045,
                            -0.732318,
                            -1.09949,
                            -0.997217,
                            -1.73291,
                            -3.6696,
                            -1.8772,
                            -0.479723,
                            -1.47123,
                            2.23873,
                            -2.98982,
                            4.28868,
                            1.78696,
                            -2.38608,
                            -0.716546,
                            0.29484,
                            0.040236,
                            -1.30338,
                            1.58388,
                            -1.48658,
                            0.586226,
                            1.19759,
                            0.826902,
                            -2.33166,
                            -4.49657,
                            2.09692,
                            4.31917,
                            0.944415,
                            -1.69693,
                            0.597445,
                            1.15059,
                            -2.84012,
                            1.14218,
                            1.94832,
                            1.38514,
                            -1.30775,
                            -1.17006,
                            0.155102,
                            3.96168,
                            1.1513,
                            8.34826,
                            -1.29141,
                            -2.85054,
                            1.57702,
                            -1.69777,
                            -0.010652,
                            2.08366,
                            4.30153,
                            -2.53633,
                            -1.94277,
                            -2.93454,
                            -1.0587,
                            -0.835264,
                            0.589693,
                            0.510307,
                            2.07203,
                            -2.62292,
                            1.01772,
                            -2.83185,
                            1.30773,
                            -1.16701,
                            -1.87898,
                            -1.83298,
                            -0.899864,
                            4.27494,
                            1.3212,
                            2.17348,
                            3.12075,
                            1.65092,
                            -0.474458,
                            -3.05367,
                            4.99209,
                            -0.778574,
                            3.73982,
                            -0.022183,
                            -2.56115,
                            2.38155,
                            0.234044,
                            -3.87437,
                            -2.10052,
                            -3.43482,
                            0.101792,
                            0.0770622,
                            1.65901,
                            0.89642,
                            -1.90219,
                            1.72087,
                            0.406049,
                            -2.09258,
                            1.12428,
                            3.11994,
                            2.19159,
                            -0.778307,
                            -2.5845,
                            0.853985,
                            -1.89585,
                            -3.45274,
                            1.66223,
                            1.17818,
                            1.87605,
                            -0.291504,
                            2.48465,
                            -1.11907,
                            -2.562,
                            2.606,
                            -3.56602,
                            -2.13024,
                            -1.50156,
                            1.44821,
                            0.025057,
                            -0.572698,
                            1.29855,
                            0.129176,
                            -2.68769,
                            0.706976,
                            -2.41432,
                            1.22009,
                            0.235796,
                            -0.631331,
                            3.04681,
                            4.8703,
                            0.045985,
                            0.849046,
                            1.02878,
                            -1.75883,
                            1.12039,
                            -1.07104,
                            -2.11024,
                            1.47412,
                            5.57428,
                            -1.68648,
                            -0.59942,
                            -2.67316,
                            0.388052,
                            -1.94137,
                            -2.95108,
                            0.585569,
                            0.131685,
                            -1.67304,
                            1.49406,
                            1.70079,
                            -4.16528,
                            -0.285584,
                            0.215525,
                            0.06035,
                            0.936377,
                            1.88757,
                            -0.505997,
                            0.832149,
                            -2.29094,
                            null,
                            null
                        ],
                        "ysrc": "jihosng:0:31fe2d",
                        "length": 1502,
                        "symbol": "circle"
                    },
                    {
                        "z": [],
                        "uid": "6f50de",
                        "meta": {
                            "columnNames": {
                                "x": "Simulation, x",
                                "y": "Simulation, y",
                                "angle": "angle"
                            }
                        },
                        "mode": "line",
                        "name": "Simulation",
                        "type": "scatter",
                        "xsrc": "jihosng:0:37df48",
                        "ysrc": "jihosng:0:adb382",
                        "energy": [
                            50,
                            50.1,
                            50.2,
                            50.3,
                            50.4,
                            50.5,
                            50.6,
                            50.7,
                            50.8,
                            50.9,
                            51,
                            51.1,
                            51.2,
                            51.3,
                            51.4,
                            51.5,
                            51.6,
                            51.7,
                            51.8,
                            51.9,
                            52,
                            52.1,
                            52.2,
                            52.3,
                            52.4,
                            52.5,
                            52.6,
                            52.7,
                            52.8,
                            52.9,
                            53,
                            53.1,
                            53.2,
                            53.3,
                            53.4,
                            53.5,
                            53.6,
                            53.7,
                            53.8,
                            53.9,
                            54,
                            54.1,
                            54.2,
                            54.3,
                            54.4,
                            54.5,
                            54.6,
                            54.7,
                            54.8,
                            54.9,
                            55,
                            55.1,
                            55.2,
                            55.3,
                            55.4,
                            55.5,
                            55.6,
                            55.7,
                            55.8,
                            55.9,
                            56,
                            56.1,
                            56.2,
                            56.3,
                            56.4,
                            56.5,
                            56.6,
                            56.7,
                            56.8,
                            56.9,
                            57,
                            57.1,
                            57.2,
                            57.3,
                            57.4,
                            57.5,
                            57.6,
                            57.7,
                            57.8,
                            57.9,
                            58,
                            58.1,
                            58.2,
                            58.3,
                            58.4,
                            58.5,
                            58.6,
                            58.7,
                            58.8,
                            58.9,
                            59,
                            59.1,
                            59.2,
                            59.3,
                            59.4,
                            59.5,
                            59.6,
                            59.7,
                            59.8,
                            59.9,
                            60,
                            60.1,
                            60.2,
                            60.3,
                            60.4,
                            60.5,
                            60.6,
                            60.7,
                            60.8,
                            60.9,
                            61,
                            61.1,
                            61.2,
                            61.3,
                            61.4,
                            61.5,
                            61.6,
                            61.7,
                            61.8,
                            61.9,
                            62,
                            62.1,
                            62.2,
                            62.3,
                            62.4,
                            62.5,
                            62.6,
                            62.7,
                            62.8,
                            62.9,
                            63,
                            63.1,
                            63.2,
                            63.3,
                            63.4,
                            63.5,
                            63.6,
                            63.7,
                            63.8,
                            63.9,
                            64,
                            64.1,
                            64.2,
                            64.3,
                            64.4,
                            64.5,
                            64.6,
                            64.7,
                            64.8,
                            64.9,
                            65,
                            65.1,
                            65.2,
                            65.3,
                            65.4,
                            65.5,
                            65.6,
                            65.7,
                            65.8,
                            65.9,
                            66,
                            66.1,
                            66.2,
                            66.3,
                            66.4,
                            66.5,
                            66.6,
                            66.7,
                            66.8,
                            66.9,
                            67,
                            67.1,
                            67.2,
                            67.3,
                            67.4,
                            67.5,
                            67.6,
                            67.7,
                            67.8,
                            67.9,
                            68,
                            68.1,
                            68.2,
                            68.3,
                            68.4,
                            68.5,
                            68.6,
                            68.7,
                            68.8,
                            68.9,
                            69,
                            69.1,
                            69.2,
                            69.3,
                            69.4,
                            69.5,
                            69.6,
                            69.7,
                            69.8,
                            69.9,
                            70,
                            70.1,
                            70.2,
                            70.3,
                            70.4,
                            70.5,
                            70.6,
                            70.7,
                            70.8,
                            70.9,
                            71,
                            71.1,
                            71.2,
                            71.3,
                            71.4,
                            71.5,
                            71.6,
                            71.7,
                            71.8,
                            71.9,
                            72,
                            72.1,
                            72.2,
                            72.3,
                            72.4,
                            72.5,
                            72.6,
                            72.7,
                            72.8,
                            72.9,
                            73,
                            73.1,
                            73.2,
                            73.3,
                            73.4,
                            73.5,
                            73.6,
                            73.7,
                            73.8,
                            73.9,
                            74,
                            74.1,
                            74.2,
                            74.3,
                            74.4,
                            74.5,
                            74.6,
                            74.7,
                            74.8,
                            74.9,
                            75,
                            75.1,
                            75.2,
                            75.3,
                            75.4,
                            75.5,
                            75.6,
                            75.7,
                            75.8,
                            75.9,
                            76,
                            76.1,
                            76.2,
                            76.3,
                            76.4,
                            76.5,
                            76.6,
                            76.7,
                            76.8,
                            76.9,
                            77,
                            77.1,
                            77.2,
                            77.3,
                            77.4,
                            77.5,
                            77.6,
                            77.7,
                            77.8,
                            77.9,
                            78,
                            78.1,
                            78.2,
                            78.3,
                            78.4,
                            78.5,
                            78.6,
                            78.7,
                            78.8,
                            78.9,
                            79,
                            79.1,
                            79.2,
                            79.3,
                            79.4,
                            79.5,
                            79.6,
                            79.7,
                            79.8,
                            79.9,
                            80,
                            80.1,
                            80.2,
                            80.3,
                            80.4,
                            80.5,
                            80.6,
                            80.7,
                            80.8,
                            80.9,
                            81,
                            81.1,
                            81.2,
                            81.3,
                            81.4,
                            81.5,
                            81.6,
                            81.7,
                            81.8,
                            81.9,
                            82,
                            82.1,
                            82.2,
                            82.3,
                            82.4,
                            82.5,
                            82.6,
                            82.7,
                            82.8,
                            82.9,
                            83,
                            83.1,
                            83.2,
                            83.3,
                            83.4,
                            83.5,
                            83.6,
                            83.7,
                            83.8,
                            83.9,
                            84,
                            84.1,
                            84.2,
                            84.3,
                            84.4,
                            84.5,
                            84.6,
                            84.7,
                            84.8,
                            84.9,
                            85,
                            85.1,
                            85.2,
                            85.3,
                            85.4,
                            85.5,
                            85.6,
                            85.7,
                            85.8,
                            85.9,
                            86,
                            86.1,
                            86.2,
                            86.3,
                            86.4,
                            86.5,
                            86.6,
                            86.7,
                            86.8,
                            86.9,
                            87,
                            87.1,
                            87.2,
                            87.3,
                            87.4,
                            87.5,
                            87.6,
                            87.7,
                            87.8,
                            87.9,
                            88,
                            88.1,
                            88.2,
                            88.3,
                            88.4,
                            88.5,
                            88.6,
                            88.7,
                            88.8,
                            88.9,
                            89,
                            89.1,
                            89.2,
                            89.3,
                            89.4,
                            89.5,
                            89.6,
                            89.7,
                            89.8,
                            89.9,
                            90,
                            90.1,
                            90.2,
                            90.3,
                            90.4,
                            90.5,
                            90.6,
                            90.7,
                            90.8,
                            90.9,
                            91,
                            91.1,
                            91.2,
                            91.3,
                            91.4,
                            91.5,
                            91.6,
                            91.7,
                            91.8,
                            91.9,
                            92,
                            92.1,
                            92.2,
                            92.3,
                            92.4,
                            92.5,
                            92.6,
                            92.7,
                            92.8,
                            92.9,
                            93,
                            93.1,
                            93.2,
                            93.3,
                            93.4,
                            93.5,
                            93.6,
                            93.7,
                            93.8,
                            93.9,
                            94,
                            94.1,
                            94.2,
                            94.3,
                            94.4,
                            94.5,
                            94.6,
                            94.7,
                            94.8,
                            94.9,
                            95,
                            95.1,
                            95.2,
                            95.3,
                            95.4,
                            95.5,
                            95.6,
                            95.7,
                            95.8,
                            95.9,
                            96,
                            96.1,
                            96.2,
                            96.3,
                            96.4,
                            96.5,
                            96.6,
                            96.7,
                            96.8,
                            96.9,
                            97,
                            97.1,
                            97.2,
                            97.3,
                            97.4,
                            97.5,
                            97.6,
                            97.7,
                            97.8,
                            97.9,
                            98,
                            98.1,
                            98.2,
                            98.3,
                            98.4,
                            98.5,
                            98.6,
                            98.7,
                            98.8,
                            98.9,
                            99,
                            99.1,
                            99.2,
                            99.3,
                            99.4,
                            99.5,
                            99.6,
                            99.7,
                            99.8,
                            99.9,
                            100,
                            100.1,
                            100.2,
                            100.3,
                            100.4,
                            100.5,
                            100.6,
                            100.7,
                            100.8,
                            100.9,
                            101,
                            101.1,
                            101.2,
                            101.3,
                            101.4,
                            101.5,
                            101.6,
                            101.7,
                            101.8,
                            101.9,
                            102,
                            102.1,
                            102.2,
                            102.3,
                            102.4,
                            102.5,
                            102.6,
                            102.7,
                            102.8,
                            102.9,
                            103,
                            103.1,
                            103.2,
                            103.3,
                            103.4,
                            103.5,
                            103.6,
                            103.7,
                            103.8,
                            103.9,
                            104,
                            104.1,
                            104.2,
                            104.3,
                            104.4,
                            104.5,
                            104.6,
                            104.7,
                            104.8,
                            104.9,
                            105,
                            105.1,
                            105.2,
                            105.3,
                            105.4,
                            105.5,
                            105.6,
                            105.7,
                            105.8,
                            105.9,
                            106,
                            106.1,
                            106.2,
                            106.3,
                            106.4,
                            106.5,
                            106.6,
                            106.7,
                            106.8,
                            106.9,
                            107,
                            107.1,
                            107.2,
                            107.3,
                            107.4,
                            107.5,
                            107.6,
                            107.7,
                            107.8,
                            107.9,
                            108,
                            108.1,
                            108.2,
                            108.3,
                            108.4,
                            108.5,
                            108.6,
                            108.7,
                            108.8,
                            108.9,
                            109,
                            109.1,
                            109.2,
                            109.3,
                            109.4,
                            109.5,
                            109.6,
                            109.7,
                            109.8,
                            109.9,
                            110,
                            110.1,
                            110.2,
                            110.3,
                            110.4,
                            110.5,
                            110.6,
                            110.7,
                            110.8,
                            110.9,
                            111,
                            111.1,
                            111.2,
                            111.3,
                            111.4,
                            111.5,
                            111.6,
                            111.7,
                            111.8,
                            111.9,
                            112,
                            112.1,
                            112.2,
                            112.3,
                            112.4,
                            112.5,
                            112.6,
                            112.7,
                            112.8,
                            112.9,
                            113,
                            113.1,
                            113.2,
                            113.3,
                            113.4,
                            113.5,
                            113.6,
                            113.7,
                            113.8,
                            113.9,
                            114,
                            114.1,
                            114.2,
                            114.3,
                            114.4,
                            114.5,
                            114.6,
                            114.7,
                            114.8,
                            114.9,
                            115,
                            115.1,
                            115.2,
                            115.3,
                            115.4,
                            115.5,
                            115.6,
                            115.7,
                            115.8,
                            115.9,
                            116,
                            116.1,
                            116.2,
                            116.3,
                            116.4,
                            116.5,
                            116.6,
                            116.7,
                            116.8,
                            116.9,
                            117,
                            117.1,
                            117.2,
                            117.3,
                            117.4,
                            117.5,
                            117.6,
                            117.7,
                            117.8,
                            117.9,
                            118,
                            118.1,
                            118.2,
                            118.3,
                            118.4,
                            118.5,
                            118.6,
                            118.7,
                            118.8,
                            118.9,
                            119,
                            119.1,
                            119.2,
                            119.3,
                            119.4,
                            119.5,
                            119.6,
                            119.7,
                            119.8,
                            119.9,
                            120,
                            120.1,
                            120.2,
                            120.3,
                            120.4,
                            120.5,
                            120.6,
                            120.7,
                            120.8,
                            120.9,
                            121,
                            121.1,
                            121.2,
                            121.3,
                            121.4,
                            121.5,
                            121.6,
                            121.7,
                            121.8,
                            121.9,
                            122,
                            122.1,
                            122.2,
                            122.3,
                            122.4,
                            122.5,
                            122.6,
                            122.7,
                            122.8,
                            122.9,
                            123,
                            123.1,
                            123.2,
                            123.3,
                            123.4,
                            123.5,
                            123.6,
                            123.7,
                            123.8,
                            123.9,
                            124,
                            124.1,
                            124.2,
                            124.3,
                            124.4,
                            124.5,
                            124.6,
                            124.7,
                            124.8,
                            124.9,
                            125,
                            125.1,
                            125.2,
                            125.3,
                            125.4,
                            125.5,
                            125.6,
                            125.7,
                            125.8,
                            125.9,
                            126,
                            126.1,
                            126.2,
                            126.3,
                            126.4,
                            126.5,
                            126.6,
                            126.7,
                            126.8,
                            126.9,
                            127,
                            127.1,
                            127.2,
                            127.3,
                            127.4,
                            127.5,
                            127.6,
                            127.7,
                            127.8,
                            127.9,
                            128,
                            128.1,
                            128.2,
                            128.3,
                            128.4,
                            128.5,
                            128.6,
                            128.7,
                            128.8,
                            128.9,
                            129,
                            129.1,
                            129.2,
                            129.3,
                            129.4,
                            129.5,
                            129.6,
                            129.7,
                            129.8,
                            129.9,
                            130,
                            130.1,
                            130.2,
                            130.3,
                            130.4,
                            130.5,
                            130.6,
                            130.7,
                            130.8,
                            130.9,
                            131,
                            131.1,
                            131.2,
                            131.3,
                            131.4,
                            131.5,
                            131.6,
                            131.7,
                            131.8,
                            131.9,
                            132,
                            132.1,
                            132.2,
                            132.3,
                            132.4,
                            132.5,
                            132.6,
                            132.7,
                            132.8,
                            132.9,
                            133,
                            133.1,
                            133.2,
                            133.3,
                            133.4,
                            133.5,
                            133.6,
                            133.7,
                            133.8,
                            133.9,
                            134,
                            134.1,
                            134.2,
                            134.3,
                            134.4,
                            134.5,
                            134.6,
                            134.7,
                            134.8,
                            134.9,
                            135,
                            135.1,
                            135.2,
                            135.3,
                            135.4,
                            135.5,
                            135.6,
                            135.7,
                            135.8,
                            135.9,
                            136,
                            136.1,
                            136.2,
                            136.3,
                            136.4,
                            136.5,
                            136.6,
                            136.7,
                            136.8,
                            136.9,
                            137,
                            137.1,
                            137.2,
                            137.3,
                            137.4,
                            137.5,
                            137.6,
                            137.7,
                            137.8,
                            137.9,
                            138,
                            138.1,
                            138.2,
                            138.3,
                            138.4,
                            138.5,
                            138.6,
                            138.7,
                            138.8,
                            138.9,
                            139,
                            139.1,
                            139.2,
                            139.3,
                            139.4,
                            139.5,
                            139.6,
                            139.7,
                            139.8,
                            139.9,
                            140,
                            140.1,
                            140.2,
                            140.3,
                            140.4,
                            140.5,
                            140.6,
                            140.7,
                            140.8,
                            140.9,
                            141,
                            141.1,
                            141.2,
                            141.3,
                            141.4,
                            141.5,
                            141.6,
                            141.7,
                            141.8,
                            141.9,
                            142,
                            142.1,
                            142.2,
                            142.3,
                            142.4,
                            142.5,
                            142.6,
                            142.7,
                            142.8,
                            142.9,
                            143,
                            143.1,
                            143.2,
                            143.3,
                            143.4,
                            143.5,
                            143.6,
                            143.7,
                            143.8,
                            143.9,
                            144,
                            144.1,
                            144.2,
                            144.3,
                            144.4,
                            144.5,
                            144.6,
                            144.7,
                            144.8,
                            144.9,
                            145,
                            145.1,
                            145.2,
                            145.3,
                            145.4,
                            145.5,
                            145.6,
                            145.7,
                            145.8,
                            145.9,
                            146,
                            146.1,
                            146.2,
                            146.3,
                            146.4,
                            146.5,
                            146.6,
                            146.7,
                            146.8,
                            146.9,
                            147,
                            147.1,
                            147.2,
                            147.3,
                            147.4,
                            147.5,
                            147.6,
                            147.7,
                            147.8,
                            147.9,
                            148,
                            148.1,
                            148.2,
                            148.3,
                            148.4,
                            148.5,
                            148.6,
                            148.7,
                            148.8,
                            148.9,
                            149,
                            149.1,
                            149.2,
                            149.3,
                            149.4,
                            149.5,
                            149.6,
                            149.7,
                            149.8,
                            149.9
                        ],
                        "length": 1000,
                        "anglesrc": "jihosng:0:8ea402",
                        "counts1D": [
                            19.31188977876851,
                            19.31188977876851,
                            24.829572572702368,
                            22.07073117573544,
                            19.31188977876851,
                            8.276524190900789,
                            22.07073117573544,
                            24.829572572702368,
                            16.553048381801577,
                            24.829572572702368,
                            27.588413969669297,
                            16.553048381801577,
                            16.553048381801577,
                            38.62377955753702,
                            35.864938160570084,
                            19.31188977876851,
                            22.07073117573544,
                            19.31188977876851,
                            33.106096763603155,
                            30.347255366636226,
                            8.276524190900789,
                            55.176827939338594,
                            16.553048381801577,
                            35.864938160570084,
                            41.38262095450395,
                            35.864938160570084,
                            41.38262095450395,
                            33.106096763603155,
                            41.38262095450395,
                            30.347255366636226,
                            46.90030374843781,
                            41.38262095450395,
                            41.38262095450395,
                            68.97103492417324,
                            49.659145145404736,
                            46.90030374843781,
                            77.24755911507404,
                            68.97103492417324,
                            88.28292470294176,
                            68.97103492417324,
                            85.52408330597483,
                            77.24755911507404,
                            88.28292470294176,
                            102.0771316877764,
                            126.90670426047878,
                            99.31829029080947,
                            140.70091124531342,
                            121.3890214665449,
                            165.5304838180158,
                            190.36005639071814,
                            193.11889778768509,
                            154.49511823014808,
                            267.6076155057922,
                            195.877739184652,
                            267.6076155057922,
                            278.6429810936599,
                            278.6429810936599,
                            308.99023646029616,
                            413.8262095450395,
                            375.20242998750246,
                            375.20242998750246,
                            435.8969407207749,
                            546.2505965994521,
                            477.27956167527884,
                            532.4563896146175,
                            499.3502928510143,
                            568.3213277751876,
                            576.5978519660883,
                            584.8743761569891,
                            653.8454110811624,
                            582.1155347600222,
                            629.01583850846,
                            722.8164460053356,
                            689.7103492417324,
                            681.4338250508316,
                            686.9515078447655,
                            664.8807766690301,
                            700.7457148296002,
                            684.1926664477986,
                            675.9161422568978,
                            662.1219352720632,
                            640.0512040963278,
                            615.2216315236253,
                            673.1573008599308,
                            584.8743761569891,
                            606.9451073327245,
                            515.9033412328158,
                            441.41462351470875,
                            469.00303748437807,
                            411.06736814807255,
                            427.6204165298741,
                            322.78444344513076,
                            333.8198090329985,
                            292.43718807849456,
                            234.50151874218903,
                            248.29572572702367,
                            262.08993271185835,
                            173.80700800891657,
                            171.04816661194965,
                            187.60121499375123,
                            157.253959627115,
                            137.94206984834648,
                            162.77164242104885,
                            190.36005639071814,
                            137.94206984834648,
                            121.3890214665449,
                            151.73627683318114,
                            193.11889778768509,
                            176.5658494058835,
                            231.7426773452221,
                            273.12529829972607,
                            262.08993271185835,
                            344.8551746208662,
                            463.4853546904442,
                            355.89054020873397,
                            416.5850509420064,
                            496.59145145404733,
                            444.1734649116757,
                            366.9259057966017,
                            474.5207202783119,
                            502.1091342479812,
                            441.41462351470875,
                            491.0737686601135,
                            430.37925792684103,
                            422.10273373594026,
                            400.03200256020483,
                            416.5850509420064,
                            383.4789541784032,
                            320.0256020481639,
                            262.08993271185835,
                            270.3664569027591,
                            190.36005639071814,
                            193.11889778768509,
                            121.3890214665449,
                            113.11249727564412,
                            107.59481448171026,
                            82.7652419090079,
                            55.176827939338594,
                            63.45335213023939,
                            55.176827939338594,
                            68.97103492417324,
                            35.864938160570084,
                            46.90030374843781,
                            44.14146235147088,
                            52.417986542371665,
                            55.176827939338594,
                            30.347255366636226,
                            46.90030374843781,
                            52.417986542371665,
                            63.45335213023939,
                            44.14146235147088,
                            44.14146235147088,
                            41.38262095450395,
                            57.93566933630552,
                            24.829572572702368,
                            52.417986542371665,
                            30.347255366636226,
                            52.417986542371665,
                            41.38262095450395,
                            33.106096763603155,
                            52.417986542371665,
                            33.106096763603155,
                            41.38262095450395,
                            35.864938160570084,
                            24.829572572702368,
                            35.864938160570084,
                            33.106096763603155,
                            22.07073117573544,
                            27.588413969669297,
                            33.106096763603155,
                            41.38262095450395,
                            27.588413969669297,
                            30.347255366636226,
                            27.588413969669297,
                            24.829572572702368,
                            27.588413969669297,
                            24.829572572702368,
                            27.588413969669297,
                            41.38262095450395,
                            33.106096763603155,
                            30.347255366636226,
                            33.106096763603155,
                            19.31188977876851,
                            35.864938160570084,
                            16.553048381801577,
                            27.588413969669297,
                            16.553048381801577,
                            16.553048381801577,
                            38.62377955753702,
                            22.07073117573544,
                            30.347255366636226,
                            44.14146235147088,
                            22.07073117573544,
                            13.794206984834648,
                            24.829572572702368,
                            22.07073117573544,
                            19.31188977876851,
                            24.829572572702368,
                            41.38262095450395,
                            33.106096763603155,
                            24.829572572702368,
                            27.588413969669297,
                            24.829572572702368,
                            27.588413969669297,
                            16.553048381801577,
                            27.588413969669297,
                            16.553048381801577,
                            24.829572572702368,
                            27.588413969669297,
                            16.553048381801577,
                            30.347255366636226,
                            30.347255366636226,
                            35.864938160570084,
                            16.553048381801577,
                            24.829572572702368,
                            11.03536558786772,
                            27.588413969669297,
                            27.588413969669297,
                            27.588413969669297,
                            24.829572572702368,
                            35.864938160570084,
                            19.31188977876851,
                            22.07073117573544,
                            22.07073117573544,
                            8.276524190900789,
                            27.588413969669297,
                            19.31188977876851,
                            22.07073117573544,
                            27.588413969669297,
                            11.03536558786772,
                            27.588413969669297,
                            16.553048381801577,
                            13.794206984834648,
                            30.347255366636226,
                            19.31188977876851,
                            30.347255366636226,
                            16.553048381801577,
                            27.588413969669297,
                            8.276524190900789,
                            13.794206984834648,
                            22.07073117573544,
                            35.864938160570084,
                            27.588413969669297,
                            11.03536558786772,
                            27.588413969669297,
                            22.07073117573544,
                            19.31188977876851,
                            24.829572572702368,
                            27.588413969669297,
                            13.794206984834648,
                            16.553048381801577,
                            35.864938160570084,
                            22.07073117573544,
                            13.794206984834648,
                            27.588413969669297,
                            33.106096763603155,
                            27.588413969669297,
                            8.276524190900789,
                            24.829572572702368,
                            24.829572572702368,
                            24.829572572702368,
                            24.829572572702368,
                            16.553048381801577,
                            30.347255366636226,
                            44.14146235147088,
                            13.794206984834648,
                            16.553048381801577,
                            16.553048381801577,
                            13.794206984834648,
                            27.588413969669297,
                            22.07073117573544,
                            22.07073117573544,
                            11.03536558786772,
                            27.588413969669297,
                            30.347255366636226,
                            19.31188977876851,
                            13.794206984834648,
                            35.864938160570084,
                            16.553048381801577,
                            24.829572572702368,
                            35.864938160570084,
                            27.588413969669297,
                            33.106096763603155,
                            35.864938160570084,
                            24.829572572702368,
                            38.62377955753702,
                            16.553048381801577,
                            30.347255366636226,
                            19.31188977876851,
                            46.90030374843781,
                            49.659145145404736,
                            27.588413969669297,
                            30.347255366636226,
                            33.106096763603155,
                            44.14146235147088,
                            27.588413969669297,
                            30.347255366636226,
                            30.347255366636226,
                            38.62377955753702,
                            57.93566933630552,
                            55.176827939338594,
                            46.90030374843781,
                            46.90030374843781,
                            46.90030374843781,
                            71.72987632114017,
                            57.93566933630552,
                            63.45335213023939,
                            44.14146235147088,
                            74.4887177181071,
                            57.93566933630552,
                            71.72987632114017,
                            88.28292470294176,
                            66.21219352720631,
                            91.04176609990868,
                            113.11249727564412,
                            140.70091124531342,
                            129.6655456574457,
                            179.32469080285043,
                            231.7426773452221,
                            193.11889778768509,
                            237.26036013915595,
                            270.3664569027591,
                            275.88413969669296,
                            259.3310913148914,
                            419.3438923389733,
                            353.131698811767,
                            416.5850509420064,
                            435.8969407207749,
                            441.41462351470875,
                            518.6621826297828,
                            623.4981557145261,
                            623.4981557145261,
                            629.01583850846,
                            758.6813841659057,
                            742.1283357841041,
                            758.6813841659057,
                            855.2408330597482,
                            874.5527228385167,
                            871.7938814415498,
                            849.7231502658144,
                            885.5880884263845,
                            993.1829029080947,
                            976.6298545262931,
                            976.6298545262931,
                            1103.5365587867718,
                            946.2825991596569,
                            1034.5655238625986,
                            1103.5365587867718,
                            1051.1185722444002,
                            1153.1957039321767,
                            1026.2889996716979,
                            1078.7069862140695,
                            1040.0832066565324,
                            1053.8774136413672,
                            976.6298545262931,
                            1023.530158274731,
                            976.6298545262931,
                            1006.9771098929293,
                            990.4240615111278,
                            932.4883921748223,
                            910.4176609990868,
                            888.3469298233514,
                            833.1701018840128,
                            772.4755911507403,
                            722.8164460053356,
                            725.5752874023025,
                            629.01583850846,
                            642.8100454932946,
                            549.009437996419,
                            535.2152310115844,
                            477.27956167527884,
                            419.3438923389733,
                            416.5850509420064,
                            375.20242998750246,
                            361.4082230026678,
                            317.26676065119693,
                            322.78444344513076,
                            264.84877410882524,
                            256.57224991792447,
                            204.1542633755528,
                            179.32469080285043,
                            193.11889778768509,
                            179.32469080285043,
                            143.45975264228034,
                            146.21859403924728,
                            173.80700800891657,
                            173.80700800891657,
                            182.08353219981737,
                            137.94206984834648,
                            107.59481448171026,
                            129.6655456574457,
                            99.31829029080947,
                            113.11249727564412,
                            104.83597308474333,
                            104.83597308474333,
                            88.28292470294176,
                            96.55944889384254,
                            80.00640051204097,
                            85.52408330597483,
                            88.28292470294176,
                            52.417986542371665,
                            57.93566933630552,
                            46.90030374843781,
                            80.00640051204097,
                            66.21219352720631,
                            49.659145145404736,
                            88.28292470294176,
                            60.69451073327245,
                            27.588413969669297,
                            55.176827939338594,
                            27.588413969669297,
                            91.04176609990868,
                            38.62377955753702,
                            44.14146235147088,
                            30.347255366636226,
                            57.93566933630552,
                            44.14146235147088,
                            46.90030374843781,
                            38.62377955753702,
                            44.14146235147088,
                            22.07073117573544,
                            57.93566933630552,
                            44.14146235147088,
                            44.14146235147088,
                            35.864938160570084,
                            35.864938160570084,
                            33.106096763603155,
                            46.90030374843781,
                            33.106096763603155,
                            33.106096763603155,
                            24.829572572702368,
                            30.347255366636226,
                            24.829572572702368,
                            46.90030374843781,
                            38.62377955753702,
                            30.347255366636226,
                            38.62377955753702,
                            19.31188977876851,
                            46.90030374843781,
                            33.106096763603155,
                            41.38262095450395,
                            22.07073117573544,
                            38.62377955753702,
                            16.553048381801577,
                            19.31188977876851,
                            33.106096763603155,
                            27.588413969669297,
                            24.829572572702368,
                            30.347255366636226,
                            41.38262095450395,
                            16.553048381801577,
                            22.07073117573544,
                            19.31188977876851,
                            19.31188977876851,
                            24.829572572702368,
                            33.106096763603155,
                            19.31188977876851,
                            41.38262095450395,
                            41.38262095450395,
                            33.106096763603155,
                            30.347255366636226,
                            22.07073117573544,
                            38.62377955753702,
                            5.51768279393386,
                            16.553048381801577,
                            16.553048381801577,
                            33.106096763603155,
                            16.553048381801577,
                            44.14146235147088,
                            22.07073117573544,
                            22.07073117573544,
                            33.106096763603155,
                            24.829572572702368,
                            27.588413969669297,
                            27.588413969669297,
                            30.347255366636226,
                            41.38262095450395,
                            33.106096763603155,
                            27.588413969669297,
                            35.864938160570084,
                            19.31188977876851,
                            22.07073117573544,
                            24.829572572702368,
                            19.31188977876851,
                            24.829572572702368,
                            22.07073117573544,
                            27.588413969669297,
                            16.553048381801577,
                            35.864938160570084,
                            22.07073117573544,
                            27.588413969669297,
                            13.794206984834648,
                            30.347255366636226,
                            38.62377955753702,
                            41.38262095450395,
                            35.864938160570084,
                            30.347255366636226,
                            27.588413969669297,
                            44.14146235147088,
                            27.588413969669297,
                            38.62377955753702,
                            38.62377955753702,
                            27.588413969669297,
                            13.794206984834648,
                            16.553048381801577,
                            30.347255366636226,
                            13.794206984834648,
                            24.829572572702368,
                            30.347255366636226,
                            41.38262095450395,
                            19.31188977876851,
                            33.106096763603155,
                            27.588413969669297,
                            30.347255366636226,
                            41.38262095450395,
                            19.31188977876851,
                            19.31188977876851,
                            19.31188977876851,
                            16.553048381801577,
                            30.347255366636226,
                            30.347255366636226,
                            11.03536558786772,
                            33.106096763603155,
                            27.588413969669297,
                            22.07073117573544,
                            27.588413969669297,
                            24.829572572702368,
                            52.417986542371665,
                            33.106096763603155,
                            27.588413969669297,
                            13.794206984834648,
                            38.62377955753702,
                            27.588413969669297,
                            27.588413969669297,
                            24.829572572702368,
                            24.829572572702368,
                            19.31188977876851,
                            19.31188977876851,
                            38.62377955753702,
                            33.106096763603155,
                            38.62377955753702,
                            35.864938160570084,
                            27.588413969669297,
                            19.31188977876851,
                            27.588413969669297,
                            22.07073117573544,
                            41.38262095450395,
                            38.62377955753702,
                            19.31188977876851,
                            38.62377955753702,
                            30.347255366636226,
                            44.14146235147088,
                            16.553048381801577,
                            46.90030374843781,
                            19.31188977876851,
                            38.62377955753702,
                            27.588413969669297,
                            38.62377955753702,
                            24.829572572702368,
                            27.588413969669297,
                            22.07073117573544,
                            30.347255366636226,
                            46.90030374843781,
                            35.864938160570084,
                            46.90030374843781,
                            33.106096763603155,
                            33.106096763603155,
                            35.864938160570084,
                            30.347255366636226,
                            41.38262095450395,
                            66.21219352720631,
                            52.417986542371665,
                            46.90030374843781,
                            41.38262095450395,
                            35.864938160570084,
                            33.106096763603155,
                            33.106096763603155,
                            68.97103492417324,
                            41.38262095450395,
                            35.864938160570084,
                            27.588413969669297,
                            35.864938160570084,
                            49.659145145404736,
                            35.864938160570084,
                            52.417986542371665,
                            44.14146235147088,
                            52.417986542371665,
                            60.69451073327245,
                            71.72987632114017,
                            49.659145145404736,
                            74.4887177181071,
                            60.69451073327245,
                            77.24755911507404,
                            91.04176609990868,
                            63.45335213023939,
                            55.176827939338594,
                            91.04176609990868,
                            91.04176609990868,
                            77.24755911507404,
                            91.04176609990868,
                            102.0771316877764,
                            104.83597308474333,
                            110.35365587867719,
                            132.42438705441262,
                            176.5658494058835,
                            179.32469080285043,
                            195.877739184652,
                            275.88413969669296,
                            259.3310913148914,
                            366.9259057966017,
                            350.3728574148001,
                            526.9387068206836,
                            620.7393143175592,
                            717.2987632114017,
                            744.887177181071,
                            880.0704056324506,
                            1037.3243652595656,
                            1277.3435667956885,
                            1304.9319807653578,
                            1760.1408112649012,
                            1862.2179429526775,
                            1994.6423300070903,
                            2265.0087869098493,
                            2408.4685395521296,
                            2576.7578647671126,
                            2789.188652333566,
                            2982.307550121251,
                            3321.6450419481835,
                            3569.940767675207,
                            3787.8892380355946,
                            3832.0307003870653,
                            3994.802342808114,
                            4226.545020153337,
                            4160.33282662613,
                            4364.487090001683,
                            4576.917877568137,
                            4516.2233668348645,
                            4797.625189325491,
                            4913.496527998102,
                            4982.467562922275,
                            5142.480363946357,
                            5007.297135494978,
                            5222.486764458398,
                            5385.258406879447,
                            5098.338901594886,
                            5440.435234818786,
                            5388.017248276414,
                            5269.3870682068355,
                            5365.946517100679,
                            5302.4931649704395,
                            5156.274570931192,
                            5363.187675703712,
                            5434.917552024852,
                            5589.412670254999,
                            5382.49956548248,
                            5222.486764458398,
                            5349.393468718877,
                            5285.9401165886375,
                            5194.898350488729,
                            5258.351702618968,
                            5619.759925621636,
                            5263.869385412902,
                            5308.010847764373,
                            5294.2166407795385,
                            5280.4224337947035,
                            5073.509329022184,
                            5004.538294098011,
                            5156.274570931192,
                            4855.560858661796,
                            4565.882511980269,
                            4265.168799710874,
                            4143.779778244329,
                            3901.001735311239,
                            3710.6416789205205,
                            3247.1563242300763,
                            3313.3685177572825,
                            2935.4072463728135,
                            2756.082555569963,
                            2499.5103056520384,
                            2328.462139040089,
                            2099.4783030918334,
                            1994.6423300070903,
                            1536.67465811058,
                            1415.2856366440349,
                            1296.655456574457,
                            1029.0478410686649,
                            965.5944889384255,
                            753.1637013719718,
                            667.639618065997,
                            546.2505965994521,
                            488.31492726314656,
                            480.0384030722458,
                            355.89054020873397,
                            402.7908439571718,
                            344.8551746208662,
                            256.57224991792447,
                            245.53688433005675,
                            184.84237359678428,
                            179.32469080285043,
                            143.45975264228034,
                            143.45975264228034,
                            124.14786286351183,
                            151.73627683318114,
                            107.59481448171026,
                            85.52408330597483,
                            102.0771316877764,
                            88.28292470294176,
                            104.83597308474333,
                            66.21219352720631,
                            63.45335213023939,
                            88.28292470294176,
                            66.21219352720631,
                            55.176827939338594,
                            66.21219352720631,
                            74.4887177181071,
                            55.176827939338594,
                            60.69451073327245,
                            52.417986542371665,
                            63.45335213023939,
                            66.21219352720631,
                            41.38262095450395,
                            49.659145145404736,
                            57.93566933630552,
                            49.659145145404736,
                            63.45335213023939,
                            49.659145145404736,
                            33.106096763603155,
                            55.176827939338594,
                            52.417986542371665,
                            55.176827939338594,
                            46.90030374843781,
                            57.93566933630552,
                            57.93566933630552,
                            57.93566933630552,
                            46.90030374843781,
                            49.659145145404736,
                            35.864938160570084,
                            55.176827939338594,
                            41.38262095450395,
                            63.45335213023939,
                            41.38262095450395,
                            33.106096763603155,
                            52.417986542371665,
                            80.00640051204097,
                            68.97103492417324,
                            44.14146235147088,
                            55.176827939338594,
                            52.417986542371665,
                            33.106096763603155,
                            60.69451073327245,
                            35.864938160570084,
                            52.417986542371665,
                            66.21219352720631,
                            41.38262095450395,
                            44.14146235147088,
                            44.14146235147088,
                            66.21219352720631,
                            44.14146235147088,
                            60.69451073327245,
                            35.864938160570084,
                            60.69451073327245,
                            55.176827939338594,
                            35.864938160570084,
                            49.659145145404736,
                            60.69451073327245,
                            57.93566933630552,
                            46.90030374843781,
                            60.69451073327245,
                            55.176827939338594,
                            46.90030374843781,
                            66.21219352720631,
                            60.69451073327245,
                            57.93566933630552,
                            55.176827939338594,
                            49.659145145404736,
                            57.93566933630552,
                            52.417986542371665,
                            55.176827939338594,
                            66.21219352720631,
                            77.24755911507404,
                            60.69451073327245,
                            57.93566933630552,
                            77.24755911507404,
                            74.4887177181071,
                            63.45335213023939,
                            71.72987632114017,
                            68.97103492417324,
                            74.4887177181071,
                            57.93566933630552,
                            63.45335213023939,
                            57.93566933630552,
                            71.72987632114017,
                            74.4887177181071,
                            82.7652419090079,
                            71.72987632114017,
                            71.72987632114017,
                            77.24755911507404,
                            74.4887177181071,
                            93.80060749687561,
                            82.7652419090079,
                            88.28292470294176,
                            60.69451073327245,
                            124.14786286351183,
                            110.35365587867719,
                            99.31829029080947,
                            137.94206984834648,
                            115.87133867261105,
                            135.18322845137956,
                            182.08353219981737,
                            195.877739184652,
                            226.22499455128823,
                            256.57224991792447,
                            328.30212623906465,
                            488.31492726314656,
                            554.5271207903529,
                            645.5688868902615,
                            841.4466260749135,
                            1020.771316877764,
                            1282.8612495896223,
                            1514.6039269348444,
                            1925.671295082917,
                            2187.761227794775,
                            2585.034388958013,
                            3029.2078538696887,
                            3713.4005203174875,
                            4052.73801214442,
                            4794.866347928524,
                            4902.4611624102345,
                            5694.2486433397435,
                            6124.627901266584,
                            7010.215989692969,
                            7095.740072998943,
                            7984.087002822294,
                            8152.376328037278,
                            8803.462897721472,
                            8985.54642992129,
                            8966.234540142521,
                            9666.980254972123,
                            9926.311346287013,
                            10191.160120395838,
                            10676.716206262017,
                            10420.143956344094,
                            10337.378714435086,
                            10803.622910522497,
                            10944.32382176781,
                            10820.175958904298,
                            10486.3561498713,
                            10734.651875598323,
                            10616.021695528745,
                            10875.352786843638,
                            10922.253090592076,
                            10858.799738461836,
                            10960.876870149612,
                            10491.873832665235,
                            11071.230526028288,
                            10847.764372873968,
                            10800.86406912553,
                            10836.7290072861,
                            10864.31742125577,
                            10781.552179346761,
                            10638.092426704481,
                            10869.835104049704,
                            11123.64851257066,
                            10693.26925464382,
                            10751.204923980125,
                            10582.915598765143,
                            10817.417117507332,
                            10833.970165889134,
                            10585.674440162109,
                            10759.481448171025,
                            10544.291819207605,
                            10800.86406912553,
                            10726.375351407423,
                            10318.066824656318,
                            10447.732370313763,
                            10287.71956928968,
                            10174.607072014038,
                            10235.30158274731,
                            9945.623236065781,
                            9200.736058884711,
                            8795.186373530572,
                            8168.929376419079,
                            7040.563245059605,
                            5644.589498194338,
                            4836.248968883028,
                            3796.165762226495,
                            2811.2593835093016,
                            1980.8481230222555,
                            1415.2856366440349,
                            822.1347362961451,
                            515.9033412328158,
                            339.33749182693236,
                            198.63658058161894,
                            93.80060749687561,
                            46.90030374843781,
                            33.106096763603155,
                            13.794206984834648,
                            19.31188977876851,
                            0,
                            8.276524190900789,
                            0,
                            0,
                            0,
                            5.51768279393386,
                            2.75884139696693,
                            2.75884139696693,
                            5.51768279393386,
                            2.75884139696693,
                            0,
                            0,
                            2.75884139696693,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0
                        ],
                        "counts2D": [
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ],
                            [
                                0
                            ]
                        ],
                        "colorscale": "Earth"
                    },
                    {
                        "x": [],
                        "y": [],
                        "uid": "90edfa",
                        "mode": "markers",
                        "size": 10,
                        "type": "scatter",
                        "xraw": [],
                        "yraw": [],
                        "length": 0,
                        "symbol": "circle"
                    },
                    {
                        "x": [],
                        "y": [],
                        "uid": "b92380",
                        "mode": "markers",
                        "size": 10,
                        "type": "scatter",
                        "xraw": [],
                        "yraw": [],
                        "length": 0,
                        "symbol": "circle"
                    },
                    {
                        "x": [],
                        "y": [],
                        "uid": "a5bc01",
                        "mode": "markers",
                        "size": 10,
                        "type": "scatter",
                        "xraw": [],
                        "yraw": [],
                        "length": 0,
                        "symbol": "circle"
                    },
                    {
                        "x": [],
                        "y": [],
                        "uid": "7511b1",
                        "mode": "markers",
                        "size": 10,
                        "type": "scatter",
                        "xraw": [],
                        "yraw": [],
                        "length": 0,
                        "symbol": "circle"
                    },
                    {
                        "x": [],
                        "y": [],
                        "uid": "81a2a6",
                        "mode": "markers",
                        "size": 10,
                        "type": "scatter",
                        "xraw": [],
                        "yraw": [],
                        "length": 0,
                        "symbol": "circle"
                    },
                    {
                        "x": [],
                        "y": [],
                        "uid": "b589b7",
                        "mode": "markers",
                        "size": 10,
                        "type": "scatter",
                        "xraw": [],
                        "yraw": [],
                        "length": 0,
                        "symbol": "circle"
                    },
                    {
                        "x": [],
                        "y": [],
                        "uid": "7b0603",
                        "mode": "markers",
                        "size": 10,
                        "type": "scatter",
                        "xraw": [],
                        "yraw": [],
                        "length": 0,
                        "symbol": "circle"
                    },
                    {
                        "x": [],
                        "y": [],
                        "uid": "9fd573",
                        "mode": "markers",
                        "size": 10,
                        "type": "scatter",
                        "xraw": [],
                        "yraw": [],
                        "length": 0,
                        "symbol": "circle"
                    },
                    {
                        "x": [],
                        "y": [],
                        "uid": "eecd42",
                        "mode": "markers",
                        "size": 10,
                        "type": "scatter",
                        "xraw": [],
                        "yraw": [],
                        "length": 0,
                        "symbol": "circle"
                    },
                    {
                        "x": [],
                        "y": [],
                        "uid": "2aba45",
                        "mode": "markers",
                        "size": 10,
                        "type": "scatter",
                        "xraw": [],
                        "yraw": [],
                        "length": 0,
                        "symbol": "circle"
                    },
                    {
                        "x": [],
                        "y": [],
                        "uid": "99e442",
                        "mode": "markers",
                        "size": 10,
                        "type": "scatter",
                        "xraw": [],
                        "yraw": [],
                        "length": 0,
                        "symbol": "circle"
                    },
                    {
                        "x": [],
                        "y": [],
                        "uid": "3771a3",
                        "mode": "markers",
                        "size": 10,
                        "type": "scatter",
                        "xraw": [],
                        "yraw": [],
                        "length": 0,
                        "symbol": "circle"
                    },
                    {
                        "x": [],
                        "y": [],
                        "uid": "a82f3c",
                        "mode": "markers",
                        "size": 10,
                        "type": "scatter",
                        "xraw": [],
                        "yraw": [],
                        "length": 0,
                        "symbol": "circle"
                    },
                    {
                        "x": [],
                        "y": [],
                        "uid": "a82f3c",
                        "mode": "markers",
                        "size": 10,
                        "type": "scatter",
                        "xraw": [],
                        "yraw": [],
                        "length": 0,
                        "symbol": "circle"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            41.173194311281556,
                            208.72680568871846
                        ],
                        "title": {
                            "text": "Energy (keV)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -674.0963982921207,
                            11159.12727037551
                        ],
                        "autorange": true,
                        "exponentformat": "e"
                    },
                    "legend": {
                        "orientation": "h"
                    },
                    "margin": {
                        "b": 40,
                        "l": 50,
                        "r": 10,
                        "t": 10
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jihosng",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.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-06-26 00:26:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jihosng",
                "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-06-25T23:44:56.057085Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~CB97.2005/1.embed",
            "fid": "CB97.2005:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/CB97.2005/1/9_WJRTB6LB9R2VKPW7C2RJVQ0UGLCDW5.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/CB97.2005/1/2_SWLAINFBJQLIWDH06Y8M7NMYVYV0K4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/CB97.2005/1/8_XA491U2K877VJ5305LR6G0Y2L6BS4K.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/CB97.2005/1/9_WJRTB6LB9R2VKPW7C2RJVQ0UGLCDW5.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/CB97.2005:1",
                "plots": "https://api.plotly.com/v2/plots/CB97.2005:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=CB97.2005"
            },
            "owner": "CB97.2005",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~CB97.2005/1/",
            "world_readable": true,
            "date_modified": "2025-06-26T05:09:46.471Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~CB97.2005/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "violin",
                        "ysrc": "CB97.2005:0:677e40",
                        "bandwidth": 0,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "D"
                            }
                        },
                        "type": "violin",
                        "ysrc": "CB97.2005:0:d0b562",
                        "bandwidth": 0
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "F"
                            }
                        },
                        "type": "violin",
                        "ysrc": "CB97.2005:0:1b6c96",
                        "bandwidth": 0
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.2947019867549667,
                            1.705298013245033
                        ],
                        "autorange": false,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -1.1264590821720297,
                            1.1804368616080498
                        ],
                        "autorange": false,
                        "showspikes": false
                    },
                    "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"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~CB97.2005",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/33.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-06-25 23:43:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "CB97.2005",
                "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-06-25T23:44:05.080930Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~martoz/1.embed",
            "fid": "martoz:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/martoz/1/9_1NOIH8UJKYM0PCUY1H8XIDHRX7SUVH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/martoz/1/2_VMCTA5UFQMYEG5V3RAJ40A6I9VG7YA.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/martoz/1/8_HRGAJYTRHN381MT86F46N71ONHFVQ5.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/martoz/1/9_1NOIH8UJKYM0PCUY1H8XIDHRX7SUVH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/martoz:1",
                "plots": "https://api.plotly.com/v2/plots/martoz:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=martoz"
            },
            "owner": "martoz",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~martoz/1/",
            "world_readable": true,
            "date_modified": "2025-06-25T23:44:05.091Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~martoz/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "martoz:0:7b2c06",
                        "ysrc": "martoz:0:f6644f"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            86.25878616173406,
                            2973.3731508621954
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            2.472934863947211,
                            136.19921508654633
                        ],
                        "autorange": true
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~martoz",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/18.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-06-25 23:42:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "martoz",
                "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-06-25T23:40:24.592016Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~juarezr/1.embed",
            "fid": "juarezr:1",
            "filename": "HistogramaPontuacao",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/juarezr/1/9_IOKKBP58WYU2GNEOD2RUYNEAY8MU62.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/juarezr/1/2_F3JMANGH4IBOTFM2H3MOTLCJJBRVHV.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/juarezr/1/8_SE9ABVVKS4LE45OECT2KLEMNP570KU.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/juarezr/1/9_IOKKBP58WYU2GNEOD2RUYNEAY8MU62.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/juarezr:1",
                "plots": "https://api.plotly.com/v2/plots/juarezr:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=juarezr"
            },
            "owner": "juarezr",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~juarezr/1/",
            "world_readable": true,
            "date_modified": "2025-06-26T03:23:27.043Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~juarezr/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "percentual",
                                "y": "faixaspontos",
                                "text": ""
                            }
                        },
                        "mode": "markers",
                        "name": "Todos",
                        "type": "bar",
                        "xsrc": "juarezr:0:d91fe6",
                        "ysrc": "juarezr:0:8f2aab",
                        "marker": {
                            "color": "#4c78a8",
                            "opacity": 0.9
                        },
                        "error_x": {
                            "type": "percent",
                            "color": "#444",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": false,
                            "thickness": 2,
                            "valueminus": 10
                        },
                        "error_y": {
                            "type": "data",
                            "color": "#444",
                            "width": 4,
                            "visible": false,
                            "traceref": 0,
                            "symmetric": true,
                            "thickness": 2
                        },
                        "opacity": 0.76,
                        "visible": true,
                        "boxpoints": false,
                        "hoverlabel": {
                            "align": "auto"
                        },
                        "showlegend": true,
                        "orientation": "v",
                        "textposition": "middle center",
                        "hovertemplate": ""
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "percentual",
                                "y": "faixaspontosurbano"
                            }
                        },
                        "name": "Urbano",
                        "type": "bar",
                        "xsrc": "juarezr:0:d91fe6",
                        "ysrc": "juarezr:0:0d030a",
                        "xaxis": "x",
                        "marker": {
                            "color": "#f58518",
                            "opacity": 0.9
                        },
                        "opacity": 0.76,
                        "hoverlabel": {
                            "align": "auto"
                        },
                        "showlegend": true,
                        "orientation": "v",
                        "textposition": "none",
                        "hovertemplate": ""
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "percentual",
                                "y": "faixaspontosrodoviario"
                            }
                        },
                        "name": "Rodoviario",
                        "type": "bar",
                        "xsrc": "juarezr:0:d91fe6",
                        "ysrc": "juarezr:0:ec7413",
                        "marker": {
                            "color": "#e45756",
                            "opacity": 0.9
                        },
                        "opacity": 0.76,
                        "hoverlabel": {
                            "align": "auto"
                        },
                        "showlegend": true,
                        "orientation": "v",
                        "textposition": "none",
                        "hovertemplate": ""
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 14
                    },
                    "title": {
                        "font": {
                            "size": 24
                        },
                        "text": "<b>Pontuação da Frota</b>"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "dtick": 5,
                        "range": [
                            2.5,
                            102.5
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 18
                            },
                            "text": "<br>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 14
                        },
                        "tickmode": "linear",
                        "zeroline": false,
                        "autorange": true,
                        "showspikes": false,
                        "ticksuffix": "%",
                        "rangeslider": {
                            "range": [
                                2.5,
                                102.5
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "dtick": 3,
                        "range": [
                            0,
                            15.677673684210525
                        ],
                        "tick0": 2,
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 18
                            },
                            "text": "Pontos ( Menor é melhor )"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "mirror": false,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 14
                        },
                        "tickmode": "auto",
                        "zeroline": true,
                        "autorange": true,
                        "automargin": true,
                        "fixedrange": false,
                        "showspikes": true,
                        "showticklabels": true
                    },
                    "legend": {
                        "x": 0.5,
                        "y": -0.07999999999999993,
                        "font": {
                            "size": 18,
                            "color": "#2a3f5f",
                            "family": "\"Open Sans\", verdana, arial, sans-serif"
                        },
                        "title": {
                            "text": ""
                        },
                        "valign": "middle",
                        "bgcolor": "white",
                        "xanchor": "auto",
                        "yanchor": "auto",
                        "itemclick": "toggle",
                        "itemwidth": 30,
                        "itemsizing": "trace",
                        "traceorder": "normal",
                        "bordercolor": "#444",
                        "borderwidth": 1,
                        "orientation": "h",
                        "itemdoubleclick": "toggleothers"
                    },
                    "barmode": "group",
                    "barnorm": "",
                    "modebar": {
                        "orientation": "h"
                    },
                    "autosize": true,
                    "colorway": [
                        "#b3e2cd",
                        "#fdcdac",
                        "#cbd5e8",
                        "#f4cae4",
                        "#e6f5c9",
                        "#fff2ae",
                        "#f1e2cc",
                        "#cccccc"
                    ],
                    "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",
                    "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.08333333333333333,
                                "#1910d8"
                            ],
                            [
                                0.16666666666666666,
                                "#3c19f0"
                            ],
                            [
                                0.25,
                                "#6b1cfb"
                            ],
                            [
                                0.3333333333333333,
                                "#981cfd"
                            ],
                            [
                                0.4166666666666667,
                                "#bf1cfd"
                            ],
                            [
                                0.5,
                                "#dd2bfd"
                            ],
                            [
                                0.5833333333333334,
                                "#f246fe"
                            ],
                            [
                                0.6666666666666666,
                                "#fc67fd"
                            ],
                            [
                                0.75,
                                "#fe88fc"
                            ],
                            [
                                0.8333333333333334,
                                "#fea5fd"
                            ],
                            [
                                0.9166666666666666,
                                "#febefe"
                            ],
                            [
                                1,
                                "#fec3fe"
                            ]
                        ]
                    },
                    "hoverlabel": {
                        "font": {
                            "size": 15
                        },
                        "align": "auto"
                    },
                    "showlegend": true,
                    "bargroupgap": 0,
                    "uniformtext": {
                        "mode": false
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~juarezr",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/5.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-06-25 23:27:20",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "juarezr",
                "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-06-25T22:55:23.046603Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~diannelauc/1.embed",
            "fid": "diannelauc:1",
            "filename": "7th day compressive",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/diannelauc/1/9_0INC0XUU6CVDON5W74KTT2VJX22D9W.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/diannelauc/1/2_AC5MIO01DLK8INSGFUVP73G2D19OLX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/1/8_AKO0SWJNIU33I1P41SPM5R24LSH1BF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/1/9_0INC0XUU6CVDON5W74KTT2VJX22D9W.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/diannelauc:1",
                "plots": "https://api.plotly.com/v2/plots/diannelauc:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=diannelauc"
            },
            "owner": "diannelauc",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 154,
            "web_url": "https://chart-studio.plotly.com/~diannelauc/1/",
            "world_readable": true,
            "date_modified": "2025-06-29T19:33:26.236Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~diannelauc/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "Control",
                        "type": "box",
                        "ysrc": "diannelauc:0:13edea",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "notched": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "x+y+name"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "B"
                            }
                        },
                        "name": "0% MSSA 30% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:0:8254a2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "visible": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "C"
                            }
                        },
                        "name": "0% MSSA 50% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:0:9f1d4c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "D"
                            }
                        },
                        "name": "0% MSSA 70% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:0:b05272",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "visible": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "E"
                            }
                        },
                        "name": "5% MSSA 0% CDW ",
                        "type": "box",
                        "ysrc": "diannelauc:0:608f72",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "visible": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "F"
                            }
                        },
                        "name": "5% MSSA 30% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:0:7ae72f",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "visible": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "G"
                            }
                        },
                        "name": "5% MSSA 50% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:0:6f3228",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "H"
                            }
                        },
                        "name": "5% MSSA 70% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:0:483831",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "I"
                            }
                        },
                        "name": "10% MSSA 0% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:0:a71349",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "J"
                            }
                        },
                        "name": "10% MSSA 50% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:0:8a7877",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "K"
                            }
                        },
                        "name": "15% MSSA 30% CDW",
                        "type": "box",
                        "ysrc": "diannelauc:0:2cc518",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "color": "rgb(0, 150, 255)",
                            "opacity": 1
                        },
                        "visible": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": ""
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xaxis": "x",
                        "yaxis": "y",
                        "visible": "legendonly",
                        "boxpoints": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "7th Day Compressive Strength of M30 Concrete Mix Designs"
                    },
                    "xaxis": {
                        "type": "category",
                        "dtick": 1,
                        "range": [
                            -0.51,
                            11
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "domain": [
                            0,
                            1
                        ],
                        "showline": false,
                        "tickmode": "auto",
                        "autorange": false,
                        "showspikes": true,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "dtick": 1,
                        "range": [
                            -4.9,
                            30
                        ],
                        "tick0": 0,
                        "title": {
                            "text": "Compressive Strength, MPa"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "tickmode": "auto",
                        "autorange": false,
                        "showspikes": true
                    },
                    "shapes": [
                        {
                            "x0": -0.5,
                            "x1": 11,
                            "y0": 21.3,
                            "y1": 21.3,
                            "line": {
                                "color": "rgb(245, 8, 8)",
                                "width": 2
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "visible": true,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 3.5,
                            "x1": 3.5,
                            "y0": -4.5,
                            "y1": 30,
                            "line": {
                                "dash": "solid",
                                "color": "#444444"
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 7.5,
                            "x1": 7.5,
                            "y0": -4.5,
                            "y1": 30,
                            "line": {
                                "color": "#444444"
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 9.5,
                            "x1": 9.5,
                            "y0": -4.5,
                            "y1": 30,
                            "line": {
                                "color": "#444444"
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        }
                    ],
                    "autosize": true,
                    "dragmode": "zoom",
                    "hovermode": "x",
                    "annotations": [
                        {
                            "x": -0.5,
                            "y": 21.3,
                            "ax": -7,
                            "ay": -3,
                            "text": "21.3",
                            "align": "center",
                            "arrowhead": 0,
                            "arrowcolor": "rgb(255, 255, 255)"
                        },
                        {
                            "x": 1.5,
                            "y": 2,
                            "ax": -10,
                            "ay": 4,
                            "text": "0% MSSA",
                            "arrowcolor": "rgb(255, 255, 255)"
                        },
                        {
                            "x": 5.5,
                            "y": 2,
                            "ax": 7,
                            "ay": 4,
                            "text": "5% MSSA",
                            "arrowcolor": "rgb(255, 255, 255)"
                        },
                        {
                            "x": 8.5,
                            "y": 2.6,
                            "ax": -5,
                            "ay": 9,
                            "text": "10% MSSA",
                            "arrowcolor": "rgb(255, 255, 255)"
                        },
                        {
                            "x": 10.000060439223788,
                            "y": 2,
                            "ax": 10,
                            "ay": 4,
                            "text": "15% MSSA",
                            "arrowcolor": "rgb(255, 255, 255)"
                        },
                        {
                            "x": 0.03840728859401114,
                            "y": -2.5,
                            "ax": -1,
                            "ay": -6,
                            "text": "0%&nbsp;<br>"
                        },
                        {
                            "x": 1,
                            "y": -2.5,
                            "ax": -1,
                            "ay": -7,
                            "text": "30%&nbsp;"
                        },
                        {
                            "x": 2.1,
                            "y": -2.5,
                            "ax": -10,
                            "ay": -8,
                            "text": "50%&nbsp;"
                        },
                        {
                            "x": 3,
                            "y": -2.5,
                            "ax": -10,
                            "ay": -8,
                            "text": "70%&nbsp;"
                        },
                        {
                            "x": 1.3,
                            "y": -4.5,
                            "ax": 6,
                            "ay": -4,
                            "text": "CDW",
                            "arrowcolor": "rgb(46, 28, 28)"
                        },
                        {
                            "x": 4,
                            "y": -2.5,
                            "ax": 3,
                            "ay": -8,
                            "text": "0%"
                        },
                        {
                            "x": 4.9,
                            "y": -2.5,
                            "ax": 2,
                            "ay": -7,
                            "text": "30%"
                        },
                        {
                            "x": 5.999929072681703,
                            "y": -2.5,
                            "ax": -2,
                            "ay": -7,
                            "text": "50%"
                        },
                        {
                            "x": 7,
                            "y": -2.5,
                            "ax": 0,
                            "ay": -9,
                            "text": "70%"
                        },
                        {
                            "x": 5.4,
                            "y": -4.5,
                            "ax": 8,
                            "ay": -2,
                            "text": "CDW"
                        },
                        {
                            "x": 8,
                            "y": -2.5,
                            "ax": -2,
                            "ay": -8,
                            "text": "0%"
                        },
                        {
                            "x": 9,
                            "y": -2,
                            "ax": -1,
                            "ay": -4,
                            "text": "50%"
                        },
                        {
                            "x": 8.5,
                            "y": -4.5,
                            "ax": -2,
                            "ay": -2,
                            "text": "CDW"
                        },
                        {
                            "x": 10,
                            "y": -2.5,
                            "ax": 6,
                            "ay": -8,
                            "text": "30%"
                        },
                        {
                            "x": 10,
                            "y": -4.5,
                            "ax": 6,
                            "ay": -6,
                            "text": "CDW"
                        },
                        {
                            "x": 5.245,
                            "y": 21.3,
                            "ax": 0,
                            "ay": -9,
                            "text": "Concrete Theoretical Strength Projection at 7th Day"
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~diannelauc",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-25 22:45:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "diannelauc",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}