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

{
    "next": "https://api.plotly.com/v2/plots/?cursor=cD0yMDI1LTA4LTMxKzE1JTNBMDglM0EzMC44OTMzNzglMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots/?cursor=cj0xJnA9MjAyNS0wOS0wMSswMyUzQTIwJTNBMzIuODczMzU5JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-09-01T03:20:32.873359Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sagaust/5.embed",
            "fid": "sagaust:5",
            "filename": "Replies",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/sagaust/5/9_RJWWNV3W5PO47UIV689FGONW0LC98E.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/sagaust/5/2_KCYTK8CP5SHIPF589KGTHUK93UOZ4Q.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sagaust/5/8_X4U52A0R3T8L2S9PRU8IRIN741T8HA.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/sagaust/5/9_RJWWNV3W5PO47UIV689FGONW0LC98E.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sagaust:5",
                "plots": "https://api.plotly.com/v2/plots/sagaust:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=sagaust"
            },
            "owner": "sagaust",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~sagaust/5/",
            "world_readable": true,
            "date_modified": "2025-09-01T03:20:32.887Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sagaust/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Comments, x",
                                "y": "Comments, y"
                            }
                        },
                        "name": "Comments",
                        "type": "bar",
                        "xsrc": "sagaust:4:0e0385",
                        "ysrc": "sagaust:4:f216b6",
                        "marker": {
                            "color": "rgb(252,0,92)"
                        },
                        "visible": "legendonly"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Replies, x",
                                "y": "Replies, y"
                            }
                        },
                        "name": "Replies",
                        "type": "bar",
                        "xsrc": "sagaust:4:24e697",
                        "ysrc": "sagaust:4:9c7a27",
                        "marker": {
                            "color": "rgb(255,154,8)"
                        },
                        "visible": true
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "2019-01-10 12:00",
                            "2025-08-11 12:00"
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            18204.21052631579
                        ],
                        "autorange": true
                    },
                    "barmode": "stack",
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sagaust",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/62.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-19 12:37:38",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sagaust",
                "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-09-01T03:19:09.338312Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sagaust/3.embed",
            "fid": "sagaust:3",
            "filename": "Top 10 Posters",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/sagaust/3/9_TYAA8M78TYA19H1C4MKLUUD0N6S17W.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/sagaust/3/2_OD9SACWBNC2B3F974QW9DEKFW2K60T.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sagaust/3/8_L5L4KN4XLD5XU7PYW1GKGAX8IT9DO1.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/sagaust/3/9_TYAA8M78TYA19H1C4MKLUUD0N6S17W.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sagaust:3",
                "plots": "https://api.plotly.com/v2/plots/sagaust:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=sagaust"
            },
            "owner": "sagaust",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~sagaust/3/",
            "world_readable": true,
            "date_modified": "2025-09-01T03:19:09.348Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sagaust/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "labels": "labels",
                                "values": "values"
                            }
                        },
                        "type": "pie",
                        "textfont": {
                            "size": "14",
                            "color": "#FFFFFF"
                        },
                        "labelssrc": "sagaust:2:2c920f",
                        "valuessrc": "sagaust:2:1e16bc",
                        "time_created": "2025-08-15T21:22:43.715",
                        "insidetextfont": {
                            "size": "14",
                            "color": "#FFFFFF"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "legend": {
                        "x": 1,
                        "y": 1
                    },
                    "autosize": true,
                    "showlegend": true,
                    "hiddenlabels": [
                        "[not provided]"
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sagaust",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/62.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-19 12:37:38",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sagaust",
                "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-09-01T00:45:21.671407Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~viveksankuru/74.embed",
            "fid": "viveksankuru:74",
            "filename": "convection plot",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/viveksankuru/74/9_BIJCNYYD0R8G6WUH4S81LGRY1M8DED.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/viveksankuru/74/2_GDSDMPJJO68S4CXAPNWDBZ4RD6UD9U.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/viveksankuru/74/8_H6N6MOZXG0G8MU3WMDJPA1JN5N2PJH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/viveksankuru/74/9_BIJCNYYD0R8G6WUH4S81LGRY1M8DED.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/viveksankuru:74",
                "plots": "https://api.plotly.com/v2/plots/viveksankuru:74",
                "parent": "https://api.plotly.com/v2/folders/home?user=viveksankuru"
            },
            "owner": "viveksankuru",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~viveksankuru/74/",
            "world_readable": true,
            "date_modified": "2025-09-01T00:46:34.937Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~viveksankuru/74/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "Analytical solution",
                        "type": "scatter",
                        "xsrc": "viveksankuru:73:70a96f",
                        "ysrc": "viveksankuru:73:521072",
                        "showlegend": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "E"
                            }
                        },
                        "mode": "markers",
                        "name": "Numerical solution",
                        "type": "scatter",
                        "xsrc": "viveksankuru:73:cb5f97",
                        "ysrc": "viveksankuru:73:5534fe",
                        "marker": {
                            "line": {
                                "width": 3
                            }
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 15
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.6148590947907773,
                            10.614859094790777
                        ],
                        "title": {
                            "text": "Non-dimensional time"
                        },
                        "mirror": "ticks",
                        "showline": true,
                        "autorange": true,
                        "linecolor": "rgb(20, 21, 22)",
                        "linewidth": 2
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.06967299010576596,
                            1.069764990105766
                        ],
                        "title": {
                            "text": "ψ (interface concentration)"
                        },
                        "mirror": "ticks",
                        "showgrid": true,
                        "showline": true,
                        "autorange": true,
                        "linecolor": "rgb(11, 11, 12)",
                        "linewidth": 2
                    },
                    "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/~viveksankuru",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/31.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-03-03 18:49:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "viveksankuru",
                "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-08-31T20:51:55.313387Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cprater2/1.embed",
            "fid": "cprater2:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/cprater2/1/9_BXCN8YAVQZ5773ZZYY3S79AWYHFBPL.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cprater2/1/2_8XN3RK9V32U10N52E33VBWLXT5JP3L.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cprater2/1/8_J1226Q18P8O6Y2JYBI2NMP608T1SDZ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cprater2/1/9_BXCN8YAVQZ5773ZZYY3S79AWYHFBPL.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cprater2:1",
                "plots": "https://api.plotly.com/v2/plots/cprater2:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=cprater2"
            },
            "owner": "cprater2",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~cprater2/1/",
            "world_readable": true,
            "date_modified": "2025-08-31T20:51:55.323Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cprater2/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "transparent",
                            "fillcolor": "rgba(31,119,180,1)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "High 2014, x; Low 2014, x; Average, x",
                                "y": "High 2014, y"
                            }
                        },
                        "mode": "lines",
                        "name": "High 2014",
                        "type": "scatter",
                        "xsrc": "cprater2:0:9c99e2",
                        "ysrc": "cprater2:0:77dbb3",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "showlegend": false
                    },
                    {
                        "fill": "tonexty",
                        "line": {
                            "color": "transparent",
                            "fillcolor": "rgba(255,127,14,1)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "High 2014, x; Low 2014, x; Average, x",
                                "y": "Low 2014, y"
                            }
                        },
                        "mode": "lines",
                        "name": "Low 2014",
                        "type": "scatter",
                        "xsrc": "cprater2:0:9c99e2",
                        "ysrc": "cprater2:0:f8ede3",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "fillcolor": "rgba(0,100,80,0.2)",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(0,100,80)",
                            "fillcolor": "rgba(44,160,44,1)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "High 2014, x; Low 2014, x; Average, x",
                                "y": "Average, y"
                            }
                        },
                        "mode": "lines",
                        "name": "Average",
                        "type": "scatter",
                        "xsrc": "cprater2:0:9c99e2",
                        "ysrc": "cprater2:0:760a62",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "showlegend": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Average, High and Low Temperatures in New York"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            11
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": "Months"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showgrid": true,
                        "showline": false,
                        "zeroline": false,
                        "autorange": true,
                        "gridcolor": "rgb(255,255,255)",
                        "tickcolor": "rgb(127,127,127)",
                        "categoryarray": [
                            "January",
                            "February",
                            "March",
                            "April",
                            "May",
                            "June",
                            "July",
                            "August",
                            "September",
                            "October",
                            "November",
                            "December"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            8.977777777777776,
                            83.42222222222223
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": "Temperature (degrees F)"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showgrid": true,
                        "showline": false,
                        "zeroline": false,
                        "autorange": true,
                        "gridcolor": "rgb(255,255,255)",
                        "tickcolor": "rgb(127,127,127)",
                        "showticklabels": true
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "themeRef": "PLOTLY_CLASSIC"
                    },
                    "showlegend": true,
                    "plot_bgcolor": "rgb(229,229,229)",
                    "paper_bgcolor": "rgb(255,255,255)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cprater2",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/4.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-31 20:30:13",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cprater2",
                "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-08-31T19:28:37.077802Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~WanyaHall/1.embed",
            "fid": "WanyaHall:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/WanyaHall/1/9_6ZO6BG7VZ8300ZPK1KPC353A1AGVAM.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/WanyaHall/1/2_J7RNI9Y8C6EAIGW7AJR64RVJNLUZ1F.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/WanyaHall/1/8_GUP9YLRJ3WJV3JK8L9M04O4IA9HVCK.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/WanyaHall/1/9_6ZO6BG7VZ8300ZPK1KPC353A1AGVAM.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/WanyaHall:1",
                "plots": "https://api.plotly.com/v2/plots/WanyaHall:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=WanyaHall"
            },
            "owner": "WanyaHall",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~WanyaHall/1/",
            "world_readable": true,
            "date_modified": "2025-08-31T19:28:37.092Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~WanyaHall/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Volcano name\n(reference only)",
                                "y": "Distance from Kilauea along trend of chain (km)"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "WanyaHall:0:0d140a",
                        "ysrc": "WanyaHall:0:da49d1"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            24
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -1.3333333333333337,
                            25.333333333333332
                        ],
                        "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/~WanyaHall",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/89.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-31 19:27:45",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "WanyaHall",
                "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-08-31T19:02:51.943793Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ZDL/1.embed",
            "fid": "ZDL:1",
            "filename": "Plant Project Graph",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ZDL/1/9_52JB8N5EWD9MEA8E757B1ABA7GKSEI.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ZDL/1/2_0YG8FF8MHVLBE0ANUACGZ15BJZ73PZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ZDL/1/8_NXTBWN9GER5DRODCTFX1TJM6SBTILF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ZDL/1/9_52JB8N5EWD9MEA8E757B1ABA7GKSEI.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ZDL:1",
                "plots": "https://api.plotly.com/v2/plots/ZDL:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=ZDL"
            },
            "owner": "ZDL",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~ZDL/1/",
            "world_readable": true,
            "date_modified": "2025-08-31T19:02:51.953Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ZDL/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "error_y": {
                                    "array": "C"
                                }
                            }
                        },
                        "mode": "markers",
                        "type": "bar",
                        "xsrc": "ZDL:0:b027e3",
                        "ysrc": "ZDL:0:c48891",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "C"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "ZDL:0:427f50",
                            "symmetric": true
                        },
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            1.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            18.32715789473684
                        ],
                        "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/~ZDL",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/85.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-08-29 18:32:06",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ZDL",
                "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-08-31T17:56:50.466182Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~fredstat/203.embed",
            "fid": "fredstat:203",
            "filename": "Plot 203",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/fredstat/203/9_Z0VRT04QZ7TZ777WZCAUECVXWESRSB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/fredstat/203/2_P9QDAKRV7AHJS4G6S51ZX5C898U3FC.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/fredstat/203/8_IXRBAMV6ELH1NELS3SY5699RH3RKD4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/fredstat/203/9_Z0VRT04QZ7TZ777WZCAUECVXWESRSB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/fredstat:203",
                "plots": "https://api.plotly.com/v2/plots/fredstat:203",
                "parent": "https://api.plotly.com/v2/folders/home?user=fredstat"
            },
            "owner": "fredstat",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~fredstat/203/",
            "world_readable": true,
            "date_modified": "2025-08-31T18:12:31.399Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~fredstat/203/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(38, 41, 89)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "A - B",
                                "marker": {
                                    "color": "D"
                                }
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "fredstat:202:c95826",
                        "ysrc": "fredstat:202:4950f4,fc857a*",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "color": "D"
                                }
                            },
                            "colorsrc": "fredstat:202:77a53a"
                        },
                        "connectgaps": false
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.27461139896373066,
                            23.27461139896373
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "multicategory",
                        "range": [
                            -0.3518123667377399,
                            5.3518123667377395
                        ],
                        "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/~fredstat",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/40.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2021-05-16 16:21:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "fredstat",
                "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-08-31T17:31:38.542098Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Guinv/1.embed",
            "fid": "Guinv:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Guinv/1/9_U5L2HE6VFBKMIHRJEM476F6B37BPWK.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Guinv/1/2_CY00N3Y9G73G2S146M2BZ1D2SBWMXS.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Guinv/1/8_YY0N6Y0N537VEZHTX6P5LJ342R2SD8.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Guinv/1/9_U5L2HE6VFBKMIHRJEM476F6B37BPWK.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Guinv:1",
                "plots": "https://api.plotly.com/v2/plots/Guinv:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Guinv"
            },
            "owner": "Guinv",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Guinv/1/",
            "world_readable": true,
            "date_modified": "2025-08-31T17:31:38.552Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Guinv/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "Guinv:0:4b9955",
                        "ysrc": "Guinv:0:cd2f93"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            19.18170878459687,
                            65.63176895306859
                        ],
                        "title": {
                            "text": " Frequency (Hz) "
                        },
                        "autorange": false,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            7.2,
                            43.72
                        ],
                        "title": {
                            "text": "Time to extinguish fire (s)"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "autosize": true,
                    "dragmode": "lasso",
                    "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": "closest",
                    "annotations": [
                        {
                            "text": "new text"
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Guinv",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/50.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-31 17:25:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Guinv",
                "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-08-31T15:08:35.809095Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~yass777/35.embed",
            "fid": "yass777:35",
            "filename": "Criado_lignina_30_n2",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/yass777:35/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/yass777:35/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/yass777/35/8_89Q6GPEQ5B02PD8WAGEUUNK3YI8K4S.png",
                "list-thumb": "https://api.plotly.com/v2/files/yass777:35/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/yass777:35",
                "plots": "https://api.plotly.com/v2/plots/yass777:35",
                "parent": "https://api.plotly.com/v2/folders/home?user=yass777"
            },
            "owner": "yass777",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~yass777/35/",
            "world_readable": true,
            "date_modified": "2025-09-06T01:24:26.030Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~yass777/35/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR0",
                        "type": "scatter",
                        "xsrc": "yass777:107:210109",
                        "ysrc": "yass777:107:b30d12",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "CR0"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR05",
                        "type": "scatter",
                        "xsrc": "yass777:107:04dd7a",
                        "ysrc": "yass777:107:1eef84",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "CR05"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR1",
                        "type": "scatter",
                        "xsrc": "yass777:107:019834",
                        "ysrc": "yass777:107:36e655",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "CR1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR15",
                        "type": "scatter",
                        "xsrc": "yass777:107:a4ac6f",
                        "ysrc": "yass777:107:c1d76c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "CR15"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR2",
                        "type": "scatter",
                        "xsrc": "yass777:107:8c3716",
                        "ysrc": "yass777:107:dc47fd",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "x"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "CR2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR25",
                        "type": "scatter",
                        "xsrc": "yass777:107:96ef53",
                        "ysrc": "yass777:107:048dae",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "triangle-up"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "CR25"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR3",
                        "type": "scatter",
                        "xsrc": "yass777:107:94cc23",
                        "ysrc": "yass777:107:4b0a3c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "triangle-down"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "CR3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR35",
                        "type": "scatter",
                        "xsrc": "yass777:107:6dcc57",
                        "ysrc": "yass777:107:fc43c1",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "pentagon"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "CR35"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR4",
                        "type": "scatter",
                        "xsrc": "yass777:107:76cd21",
                        "ysrc": "yass777:107:3f8df8",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "hexagon"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "CR4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM1",
                        "type": "scatter",
                        "xsrc": "yass777:107:4fa76a",
                        "ysrc": "yass777:107:e1c069",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "DM1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM2",
                        "type": "scatter",
                        "xsrc": "yass777:107:545d08",
                        "ysrc": "yass777:107:de501f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "DM2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM3",
                        "type": "scatter",
                        "xsrc": "yass777:107:6e3b1c",
                        "ysrc": "yass777:107:e615b6",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "DM3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM4",
                        "type": "scatter",
                        "xsrc": "yass777:107:54ef15",
                        "ysrc": "yass777:107:5af91d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "DM4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM5",
                        "type": "scatter",
                        "xsrc": "yass777:107:ae00ce",
                        "ysrc": "yass777:107:da2eef",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "x"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "DM5"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG15",
                        "type": "scatter",
                        "xsrc": "yass777:107:3f55c8",
                        "ysrc": "yass777:107:270287",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "NG15"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG2",
                        "type": "scatter",
                        "xsrc": "yass777:107:057d01",
                        "ysrc": "yass777:107:fec3e0",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "NG2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG3",
                        "type": "scatter",
                        "xsrc": "yass777:107:6c19a1",
                        "ysrc": "yass777:107:81229e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "NG3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG4",
                        "type": "scatter",
                        "xsrc": "yass777:107:0ffd9f",
                        "ysrc": "yass777:107:aa29c3",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "NG4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "B1",
                        "type": "scatter",
                        "xsrc": "yass777:107:446ff0",
                        "ysrc": "yass777:107:05628a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "B1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P23",
                        "type": "scatter",
                        "xsrc": "yass777:107:e253d4",
                        "ysrc": "yass777:107:f8763b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "P23"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P2",
                        "type": "scatter",
                        "xsrc": "yass777:107:f5e7ef",
                        "ysrc": "yass777:107:77d974",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "P2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P3",
                        "type": "scatter",
                        "xsrc": "yass777:107:0114b1",
                        "ysrc": "yass777:107:47936d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "P3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P4",
                        "type": "scatter",
                        "xsrc": "yass777:107:8cb02a",
                        "ysrc": "yass777:107:78df9d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "x"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "P4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "E1",
                        "type": "scatter",
                        "xsrc": "yass777:107:7c1aa4",
                        "ysrc": "yass777:107:3aaa2a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "E1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "E2",
                        "type": "scatter",
                        "xsrc": "yass777:107:56c334",
                        "ysrc": "yass777:107:6e5c8b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "E2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "R2",
                        "type": "scatter",
                        "xsrc": "yass777:107:08bd26",
                        "ysrc": "yass777:107:1d7023",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "R2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "R3",
                        "type": "scatter",
                        "xsrc": "yass777:107:05c041",
                        "ysrc": "yass777:107:06ded4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "R3"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "FWO β=30",
                        "type": "scatter",
                        "xsrc": "yass777:107:e27177",
                        "ysrc": "yass777:107:db162a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 6,
                            "color": "black",
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "exp"
                    },
                    {
                        "line": {
                            "color": "gray",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "Starink β=30",
                        "type": "scatter",
                        "xsrc": "yass777:107:6c06dc",
                        "ysrc": "yass777:107:4cd4d9",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 6,
                            "color": "gray",
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "exp"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR0",
                        "type": "scatter",
                        "xsrc": "yass777:107:078049",
                        "ysrc": "yass777:107:494c25",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR0"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR05",
                        "type": "scatter",
                        "xsrc": "yass777:107:8e721d",
                        "ysrc": "yass777:107:68eb43",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR05"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR1",
                        "type": "scatter",
                        "xsrc": "yass777:107:e1128b",
                        "ysrc": "yass777:107:e2c0b5",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR15",
                        "type": "scatter",
                        "xsrc": "yass777:107:d4df54",
                        "ysrc": "yass777:107:f4f73a",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR15"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR2",
                        "type": "scatter",
                        "xsrc": "yass777:107:a3f50f",
                        "ysrc": "yass777:107:3efab7",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "x"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR25",
                        "type": "scatter",
                        "xsrc": "yass777:107:fc7f14",
                        "ysrc": "yass777:107:94c8d3",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "triangle-up"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR25"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR3",
                        "type": "scatter",
                        "xsrc": "yass777:107:c73efa",
                        "ysrc": "yass777:107:9c8b36",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "triangle-down"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR35",
                        "type": "scatter",
                        "xsrc": "yass777:107:cc4d2a",
                        "ysrc": "yass777:107:3b60f8",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "pentagon"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR35"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR4",
                        "type": "scatter",
                        "xsrc": "yass777:107:cf9fcd",
                        "ysrc": "yass777:107:1c9f61",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "hexagon"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM1",
                        "type": "scatter",
                        "xsrc": "yass777:107:5a1989",
                        "ysrc": "yass777:107:928a7a",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "DM1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM2",
                        "type": "scatter",
                        "xsrc": "yass777:107:9173f7",
                        "ysrc": "yass777:107:ddd46d",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "DM2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM3",
                        "type": "scatter",
                        "xsrc": "yass777:107:868844",
                        "ysrc": "yass777:107:f99d22",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "DM3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM4",
                        "type": "scatter",
                        "xsrc": "yass777:107:e86c1d",
                        "ysrc": "yass777:107:a7156e",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "DM4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM5",
                        "type": "scatter",
                        "xsrc": "yass777:107:c4c41b",
                        "ysrc": "yass777:107:ec58f0",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "x"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "DM5"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG15",
                        "type": "scatter",
                        "xsrc": "yass777:107:d84cdb",
                        "ysrc": "yass777:107:b4162f",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "NG15"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG2",
                        "type": "scatter",
                        "xsrc": "yass777:107:b18337",
                        "ysrc": "yass777:107:8ee766",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "NG2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG3",
                        "type": "scatter",
                        "xsrc": "yass777:107:81a87b",
                        "ysrc": "yass777:107:5a5365",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "NG3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG4",
                        "type": "scatter",
                        "xsrc": "yass777:107:7056cc",
                        "ysrc": "yass777:107:b37f31",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "NG4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "B1",
                        "type": "scatter",
                        "xsrc": "yass777:107:958777",
                        "ysrc": "yass777:107:a148d3",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "B1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P23",
                        "type": "scatter",
                        "xsrc": "yass777:107:e32a54",
                        "ysrc": "yass777:107:79d751",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "P23"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P2",
                        "type": "scatter",
                        "xsrc": "yass777:107:2e2be1",
                        "ysrc": "yass777:107:35bb1f",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "P2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P3",
                        "type": "scatter",
                        "xsrc": "yass777:107:e8c6bd",
                        "ysrc": "yass777:107:44017e",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "P3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P4",
                        "type": "scatter",
                        "xsrc": "yass777:107:1b54fa",
                        "ysrc": "yass777:107:250a87",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "x"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "P4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "E1",
                        "type": "scatter",
                        "xsrc": "yass777:107:fc923e",
                        "ysrc": "yass777:107:5f52fb",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "E1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "E2",
                        "type": "scatter",
                        "xsrc": "yass777:107:a9c09f",
                        "ysrc": "yass777:107:26d7f6",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "E2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "R2",
                        "type": "scatter",
                        "xsrc": "yass777:107:d1d4fc",
                        "ysrc": "yass777:107:5140ac",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "R2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "R3",
                        "type": "scatter",
                        "xsrc": "yass777:107:db32a3",
                        "ysrc": "yass777:107:95ceca",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "R3"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "FWO β=30",
                        "type": "scatter",
                        "xsrc": "yass777:107:6c40e6",
                        "ysrc": "yass777:107:323043",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "size": 6,
                            "color": "black",
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "exp"
                    },
                    {
                        "line": {
                            "color": "gray",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "Starink β=30",
                        "type": "scatter",
                        "xsrc": "yass777:107:30a6a6",
                        "ysrc": "yass777:107:4fb563",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "size": 6,
                            "color": "gray",
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "exp"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR0",
                        "type": "scatter",
                        "xsrc": "yass777:107:e732e2",
                        "ysrc": "yass777:107:b0aacc",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR0"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR05",
                        "type": "scatter",
                        "xsrc": "yass777:107:84911a",
                        "ysrc": "yass777:107:eedb69",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR05"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR1",
                        "type": "scatter",
                        "xsrc": "yass777:107:8ed78e",
                        "ysrc": "yass777:107:4e2d3c",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR15",
                        "type": "scatter",
                        "xsrc": "yass777:107:94a946",
                        "ysrc": "yass777:107:67c9d9",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR15"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR2",
                        "type": "scatter",
                        "xsrc": "yass777:107:065c59",
                        "ysrc": "yass777:107:c765de",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "x"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR25",
                        "type": "scatter",
                        "xsrc": "yass777:107:0f6dea",
                        "ysrc": "yass777:107:c0f920",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "triangle-up"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR25"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR3",
                        "type": "scatter",
                        "xsrc": "yass777:107:d2b921",
                        "ysrc": "yass777:107:54cd63",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "triangle-down"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR35",
                        "type": "scatter",
                        "xsrc": "yass777:107:85d3ef",
                        "ysrc": "yass777:107:b01965",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "pentagon"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR35"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR4",
                        "type": "scatter",
                        "xsrc": "yass777:107:fd94d4",
                        "ysrc": "yass777:107:c9af22",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "hexagon"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM1",
                        "type": "scatter",
                        "xsrc": "yass777:107:aa87c0",
                        "ysrc": "yass777:107:4dbede",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "DM1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM2",
                        "type": "scatter",
                        "xsrc": "yass777:107:72119c",
                        "ysrc": "yass777:107:7095ae",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "DM2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM3",
                        "type": "scatter",
                        "xsrc": "yass777:107:69f571",
                        "ysrc": "yass777:107:c36261",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "DM3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM4",
                        "type": "scatter",
                        "xsrc": "yass777:107:c6da4b",
                        "ysrc": "yass777:107:705fdd",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "DM4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM5",
                        "type": "scatter",
                        "xsrc": "yass777:107:f6d719",
                        "ysrc": "yass777:107:6edf93",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "x"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "DM5"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG15",
                        "type": "scatter",
                        "xsrc": "yass777:107:8b22db",
                        "ysrc": "yass777:107:e953a1",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "NG15"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG2",
                        "type": "scatter",
                        "xsrc": "yass777:107:559f2f",
                        "ysrc": "yass777:107:e54462",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "NG2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG3",
                        "type": "scatter",
                        "xsrc": "yass777:107:11e9ce",
                        "ysrc": "yass777:107:a4c011",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "NG3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG4",
                        "type": "scatter",
                        "xsrc": "yass777:107:849687",
                        "ysrc": "yass777:107:9e2d7e",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "NG4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "B1",
                        "type": "scatter",
                        "xsrc": "yass777:107:63208c",
                        "ysrc": "yass777:107:2eecd6",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "B1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P23",
                        "type": "scatter",
                        "xsrc": "yass777:107:e502e0",
                        "ysrc": "yass777:107:702758",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "P23"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P2",
                        "type": "scatter",
                        "xsrc": "yass777:107:807eb8",
                        "ysrc": "yass777:107:26218c",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "P2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P3",
                        "type": "scatter",
                        "xsrc": "yass777:107:1ac37b",
                        "ysrc": "yass777:107:1a8e84",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "P3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P4",
                        "type": "scatter",
                        "xsrc": "yass777:107:ebb6a6",
                        "ysrc": "yass777:107:c97666",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "x"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "P4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "E1",
                        "type": "scatter",
                        "xsrc": "yass777:107:c9d126",
                        "ysrc": "yass777:107:961559",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "E1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "E2",
                        "type": "scatter",
                        "xsrc": "yass777:107:d3781e",
                        "ysrc": "yass777:107:0356a9",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "E2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "R2",
                        "type": "scatter",
                        "xsrc": "yass777:107:efd84f",
                        "ysrc": "yass777:107:1fdd33",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "R2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "R3",
                        "type": "scatter",
                        "xsrc": "yass777:107:3f6c2f",
                        "ysrc": "yass777:107:5a0ed6",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "R3"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "FWO β=30",
                        "type": "scatter",
                        "xsrc": "yass777:107:0c9be6",
                        "ysrc": "yass777:107:187f27",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "size": 6,
                            "color": "black",
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "exp"
                    },
                    {
                        "line": {
                            "color": "gray",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "Starink β=30",
                        "type": "scatter",
                        "xsrc": "yass777:107:4d7d8f",
                        "ysrc": "yass777:107:236382",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "size": 6,
                            "color": "gray",
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "exp"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Criado's Master Plots: Lignina en N2 (β=30 ºC/min)"
                    },
                    "width": 2400,
                    "xaxis": {
                        "title": {
                            "text": "α"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            0.3
                        ]
                    },
                    "yaxis": {
                        "range": [
                            0,
                            3.5
                        ],
                        "title": {
                            "text": "f(α)/f(0.5)"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "height": 700,
                    "legend": {
                        "x": 0.5,
                        "y": -0.3,
                        "xanchor": "center",
                        "yanchor": "bottom",
                        "itemsizing": "constant",
                        "orientation": "h"
                    },
                    "margin": {
                        "b": 100,
                        "l": 80,
                        "r": 40
                    },
                    "xaxis2": {
                        "title": {
                            "text": "α"
                        },
                        "anchor": "y2",
                        "domain": [
                            0.35,
                            0.6499999999999999
                        ]
                    },
                    "xaxis3": {
                        "title": {
                            "text": "α"
                        },
                        "anchor": "y3",
                        "domain": [
                            0.7,
                            1.0
                        ]
                    },
                    "yaxis2": {
                        "range": [
                            0,
                            5
                        ],
                        "title": {
                            "text": "g(α)/g(0.5)"
                        },
                        "anchor": "x2",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis3": {
                        "range": [
                            0,
                            1.5
                        ],
                        "title": {
                            "text": "Z(α) = f(α)*g(α)"
                        },
                        "anchor": "x3",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "hovermode": "x unified",
                    "annotations": [
                        {
                            "x": 0.15,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Forma Diferencial Normalizada",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.49999999999999994,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Formal Integral Normalizada",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.85,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Forma Integral*Diferencial",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ],
                    "updatemenus": [
                        {
                            "x": 1.0,
                            "y": 1.15,
                            "type": "dropdown",
                            "buttons": [
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "Todos",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "Ninguno",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "CR4",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "DM1",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "P2",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "R2",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "B1",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "NG15",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "CR0",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "E1",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "CR15",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "CR1",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "DM5",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "CR2",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "NG2",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "P23",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "DM4",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "CR3",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "CR25",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "NG3",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "NG4",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "P3",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "CR35",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "E2",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "R3",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "P4",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "CR05",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "DM2",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "DM3",
                                    "method": "update"
                                }
                            ],
                            "xanchor": "right",
                            "yanchor": "top",
                            "direction": "down"
                        }
                    ],
                    "plot_bgcolor": "rgba(240,240,240,0.9)"
                }
            },
            "height": 700,
            "width": 2400,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~yass777",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/33.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-31 14:38:59",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "yass777",
                "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-08-31T15:08:30.893378Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~yass777/33.embed",
            "fid": "yass777:33",
            "filename": "Criado_lignina_15_n2",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/yass777:33/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/yass777:33/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/yass777/33/8_2L85G6IS4CMZRYMDYRJALIND6EGTY1.png",
                "list-thumb": "https://api.plotly.com/v2/files/yass777:33/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/yass777:33",
                "plots": "https://api.plotly.com/v2/plots/yass777:33",
                "parent": "https://api.plotly.com/v2/folders/home?user=yass777"
            },
            "owner": "yass777",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~yass777/33/",
            "world_readable": true,
            "date_modified": "2025-09-06T01:24:13.420Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~yass777/33/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR0",
                        "type": "scatter",
                        "xsrc": "yass777:106:6dc218",
                        "ysrc": "yass777:106:010ba8",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "CR0"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR05",
                        "type": "scatter",
                        "xsrc": "yass777:106:aebce3",
                        "ysrc": "yass777:106:b8b7b8",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "CR05"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR1",
                        "type": "scatter",
                        "xsrc": "yass777:106:c4cecc",
                        "ysrc": "yass777:106:652244",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "CR1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR15",
                        "type": "scatter",
                        "xsrc": "yass777:106:c91932",
                        "ysrc": "yass777:106:2c1367",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "CR15"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR2",
                        "type": "scatter",
                        "xsrc": "yass777:106:c682f7",
                        "ysrc": "yass777:106:abc879",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "x"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "CR2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR25",
                        "type": "scatter",
                        "xsrc": "yass777:106:14478d",
                        "ysrc": "yass777:106:4b018c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "triangle-up"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "CR25"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR3",
                        "type": "scatter",
                        "xsrc": "yass777:106:3470ae",
                        "ysrc": "yass777:106:789370",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "triangle-down"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "CR3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR35",
                        "type": "scatter",
                        "xsrc": "yass777:106:208b57",
                        "ysrc": "yass777:106:474742",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "pentagon"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "CR35"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR4",
                        "type": "scatter",
                        "xsrc": "yass777:106:77f4ba",
                        "ysrc": "yass777:106:0861a3",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "hexagon"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "CR4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM1",
                        "type": "scatter",
                        "xsrc": "yass777:106:d826f4",
                        "ysrc": "yass777:106:78f76c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "DM1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM2",
                        "type": "scatter",
                        "xsrc": "yass777:106:6a325d",
                        "ysrc": "yass777:106:eacd1e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "DM2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM3",
                        "type": "scatter",
                        "xsrc": "yass777:106:eedefa",
                        "ysrc": "yass777:106:64af6a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "DM3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM4",
                        "type": "scatter",
                        "xsrc": "yass777:106:501c6c",
                        "ysrc": "yass777:106:11fabc",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "DM4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM5",
                        "type": "scatter",
                        "xsrc": "yass777:106:4466e0",
                        "ysrc": "yass777:106:7e717e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "x"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "DM5"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG15",
                        "type": "scatter",
                        "xsrc": "yass777:106:f6a39e",
                        "ysrc": "yass777:106:c042b8",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "NG15"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG2",
                        "type": "scatter",
                        "xsrc": "yass777:106:266c30",
                        "ysrc": "yass777:106:a61d49",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "NG2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG3",
                        "type": "scatter",
                        "xsrc": "yass777:106:b35493",
                        "ysrc": "yass777:106:c6df92",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "NG3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG4",
                        "type": "scatter",
                        "xsrc": "yass777:106:a5e328",
                        "ysrc": "yass777:106:4599af",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "NG4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "B1",
                        "type": "scatter",
                        "xsrc": "yass777:106:8eda29",
                        "ysrc": "yass777:106:d1c182",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "B1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P23",
                        "type": "scatter",
                        "xsrc": "yass777:106:b13d7f",
                        "ysrc": "yass777:106:dc4d95",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "P23"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P2",
                        "type": "scatter",
                        "xsrc": "yass777:106:46e94c",
                        "ysrc": "yass777:106:f43070",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "P2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P3",
                        "type": "scatter",
                        "xsrc": "yass777:106:d763d1",
                        "ysrc": "yass777:106:53391f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "P3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P4",
                        "type": "scatter",
                        "xsrc": "yass777:106:8737d8",
                        "ysrc": "yass777:106:408ce4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "x"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "P4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "E1",
                        "type": "scatter",
                        "xsrc": "yass777:106:52e9e6",
                        "ysrc": "yass777:106:4d9a3a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "E1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "E2",
                        "type": "scatter",
                        "xsrc": "yass777:106:987147",
                        "ysrc": "yass777:106:928572",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "E2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "R2",
                        "type": "scatter",
                        "xsrc": "yass777:106:bd48cb",
                        "ysrc": "yass777:106:c2924e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "R2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "R3",
                        "type": "scatter",
                        "xsrc": "yass777:106:7e0c78",
                        "ysrc": "yass777:106:d81ca7",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": true,
                        "legendgroup": "R3"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "FWO β=15",
                        "type": "scatter",
                        "xsrc": "yass777:106:22e714",
                        "ysrc": "yass777:106:110b04",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 6,
                            "color": "black",
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "exp"
                    },
                    {
                        "line": {
                            "color": "gray",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "Starink β=15",
                        "type": "scatter",
                        "xsrc": "yass777:106:5cd347",
                        "ysrc": "yass777:106:f223c5",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 6,
                            "color": "gray",
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "exp"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR0",
                        "type": "scatter",
                        "xsrc": "yass777:106:768896",
                        "ysrc": "yass777:106:033bb9",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR0"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR05",
                        "type": "scatter",
                        "xsrc": "yass777:106:e1c601",
                        "ysrc": "yass777:106:0fa79f",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR05"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR1",
                        "type": "scatter",
                        "xsrc": "yass777:106:249b7a",
                        "ysrc": "yass777:106:b01ad6",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR15",
                        "type": "scatter",
                        "xsrc": "yass777:106:30c7d1",
                        "ysrc": "yass777:106:7fa20e",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR15"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR2",
                        "type": "scatter",
                        "xsrc": "yass777:106:f05ec8",
                        "ysrc": "yass777:106:d1fb0f",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "x"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR25",
                        "type": "scatter",
                        "xsrc": "yass777:106:ae1134",
                        "ysrc": "yass777:106:4da54f",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "triangle-up"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR25"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR3",
                        "type": "scatter",
                        "xsrc": "yass777:106:2bbcce",
                        "ysrc": "yass777:106:720ab6",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "triangle-down"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR35",
                        "type": "scatter",
                        "xsrc": "yass777:106:eee24d",
                        "ysrc": "yass777:106:7a4237",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "pentagon"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR35"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR4",
                        "type": "scatter",
                        "xsrc": "yass777:106:4caf45",
                        "ysrc": "yass777:106:a804f5",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "hexagon"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM1",
                        "type": "scatter",
                        "xsrc": "yass777:106:2d8dbb",
                        "ysrc": "yass777:106:89f93d",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "DM1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM2",
                        "type": "scatter",
                        "xsrc": "yass777:106:db5ad8",
                        "ysrc": "yass777:106:eb60bf",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "DM2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM3",
                        "type": "scatter",
                        "xsrc": "yass777:106:0d60a7",
                        "ysrc": "yass777:106:11fd55",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "DM3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM4",
                        "type": "scatter",
                        "xsrc": "yass777:106:80dc35",
                        "ysrc": "yass777:106:26dcc5",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "DM4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM5",
                        "type": "scatter",
                        "xsrc": "yass777:106:56fdb0",
                        "ysrc": "yass777:106:503c62",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "x"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "DM5"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG15",
                        "type": "scatter",
                        "xsrc": "yass777:106:8211d4",
                        "ysrc": "yass777:106:2fab74",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "NG15"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG2",
                        "type": "scatter",
                        "xsrc": "yass777:106:9c17de",
                        "ysrc": "yass777:106:1d379e",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "NG2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG3",
                        "type": "scatter",
                        "xsrc": "yass777:106:f4831e",
                        "ysrc": "yass777:106:bea891",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "NG3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG4",
                        "type": "scatter",
                        "xsrc": "yass777:106:1cf17b",
                        "ysrc": "yass777:106:cc2464",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "NG4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "B1",
                        "type": "scatter",
                        "xsrc": "yass777:106:3beef4",
                        "ysrc": "yass777:106:511d41",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "B1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P23",
                        "type": "scatter",
                        "xsrc": "yass777:106:c68f6f",
                        "ysrc": "yass777:106:3b0543",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "P23"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P2",
                        "type": "scatter",
                        "xsrc": "yass777:106:1e503d",
                        "ysrc": "yass777:106:638134",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "P2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P3",
                        "type": "scatter",
                        "xsrc": "yass777:106:0c8806",
                        "ysrc": "yass777:106:a41609",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "P3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P4",
                        "type": "scatter",
                        "xsrc": "yass777:106:b64354",
                        "ysrc": "yass777:106:496339",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "x"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "P4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "E1",
                        "type": "scatter",
                        "xsrc": "yass777:106:fa2b9c",
                        "ysrc": "yass777:106:9cfaa1",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "E1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "E2",
                        "type": "scatter",
                        "xsrc": "yass777:106:85cad2",
                        "ysrc": "yass777:106:e606d5",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "E2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "R2",
                        "type": "scatter",
                        "xsrc": "yass777:106:a109d5",
                        "ysrc": "yass777:106:a7207d",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "R2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "R3",
                        "type": "scatter",
                        "xsrc": "yass777:106:d6df05",
                        "ysrc": "yass777:106:b7b289",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "R3"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "FWO β=15",
                        "type": "scatter",
                        "xsrc": "yass777:106:9c6ac1",
                        "ysrc": "yass777:106:944ee7",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "size": 6,
                            "color": "black",
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "exp"
                    },
                    {
                        "line": {
                            "color": "gray",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "Starink β=15",
                        "type": "scatter",
                        "xsrc": "yass777:106:87d4df",
                        "ysrc": "yass777:106:4f7204",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "size": 6,
                            "color": "gray",
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "exp"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR0",
                        "type": "scatter",
                        "xsrc": "yass777:106:11c5c6",
                        "ysrc": "yass777:106:cc4333",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR0"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR05",
                        "type": "scatter",
                        "xsrc": "yass777:106:05832e",
                        "ysrc": "yass777:106:bd6baa",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR05"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR1",
                        "type": "scatter",
                        "xsrc": "yass777:106:cd90c0",
                        "ysrc": "yass777:106:f3c0c4",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR15",
                        "type": "scatter",
                        "xsrc": "yass777:106:39e07c",
                        "ysrc": "yass777:106:ece8d9",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR15"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR2",
                        "type": "scatter",
                        "xsrc": "yass777:106:17876d",
                        "ysrc": "yass777:106:a541a1",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "x"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR25",
                        "type": "scatter",
                        "xsrc": "yass777:106:66e53c",
                        "ysrc": "yass777:106:b30d1b",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "triangle-up"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR25"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR3",
                        "type": "scatter",
                        "xsrc": "yass777:106:daeab0",
                        "ysrc": "yass777:106:96fd09",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "triangle-down"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR35",
                        "type": "scatter",
                        "xsrc": "yass777:106:2698c9",
                        "ysrc": "yass777:106:30eae9",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "pentagon"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR35"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFB3BA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "CR4",
                        "type": "scatter",
                        "xsrc": "yass777:106:5a842e",
                        "ysrc": "yass777:106:7242f1",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFB3BA",
                            "symbol": "hexagon"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "CR4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM1",
                        "type": "scatter",
                        "xsrc": "yass777:106:66827a",
                        "ysrc": "yass777:106:b319b1",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "DM1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM2",
                        "type": "scatter",
                        "xsrc": "yass777:106:c0f650",
                        "ysrc": "yass777:106:f51fae",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "DM2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM3",
                        "type": "scatter",
                        "xsrc": "yass777:106:146320",
                        "ysrc": "yass777:106:c92ce9",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "DM3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM4",
                        "type": "scatter",
                        "xsrc": "yass777:106:536a10",
                        "ysrc": "yass777:106:0a3231",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "DM4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAFFC9",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "DM5",
                        "type": "scatter",
                        "xsrc": "yass777:106:43b1bd",
                        "ysrc": "yass777:106:8e115b",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAFFC9",
                            "symbol": "x"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "DM5"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG15",
                        "type": "scatter",
                        "xsrc": "yass777:106:6b9588",
                        "ysrc": "yass777:106:e4a86a",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "NG15"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG2",
                        "type": "scatter",
                        "xsrc": "yass777:106:f6920b",
                        "ysrc": "yass777:106:f1314f",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "NG2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG3",
                        "type": "scatter",
                        "xsrc": "yass777:106:d3eafe",
                        "ysrc": "yass777:106:678e65",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "NG3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#BAE1FF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "NG4",
                        "type": "scatter",
                        "xsrc": "yass777:106:af2b87",
                        "ysrc": "yass777:106:37b1e7",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#BAE1FF",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "NG4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "B1",
                        "type": "scatter",
                        "xsrc": "yass777:106:b74226",
                        "ysrc": "yass777:106:076d9b",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "B1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P23",
                        "type": "scatter",
                        "xsrc": "yass777:106:814b02",
                        "ysrc": "yass777:106:835ed0",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "P23"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P2",
                        "type": "scatter",
                        "xsrc": "yass777:106:be173e",
                        "ysrc": "yass777:106:02fcb2",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "P2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P3",
                        "type": "scatter",
                        "xsrc": "yass777:106:42e2ca",
                        "ysrc": "yass777:106:2b8eae",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "P3"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FFFFBA",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "P4",
                        "type": "scatter",
                        "xsrc": "yass777:106:a8e265",
                        "ysrc": "yass777:106:6af0bb",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#FFFFBA",
                            "symbol": "x"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "P4"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "E1",
                        "type": "scatter",
                        "xsrc": "yass777:106:002c82",
                        "ysrc": "yass777:106:198aad",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "circle"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "E1"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "E2",
                        "type": "scatter",
                        "xsrc": "yass777:106:7157ac",
                        "ysrc": "yass777:106:ee79b2",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "square"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "E2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "R2",
                        "type": "scatter",
                        "xsrc": "yass777:106:492fd6",
                        "ysrc": "yass777:106:1deeae",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "diamond"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "R2"
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#D0BAFF",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "R3",
                        "type": "scatter",
                        "xsrc": "yass777:106:62bc3a",
                        "ysrc": "yass777:106:377c5a",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,0.5)",
                                "width": 0.5
                            },
                            "size": 4,
                            "color": "#D0BAFF",
                            "symbol": "cross"
                        },
                        "visible": true,
                        "showlegend": false,
                        "legendgroup": "R3"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "FWO β=15",
                        "type": "scatter",
                        "xsrc": "yass777:106:35e7c6",
                        "ysrc": "yass777:106:75c37e",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "size": 6,
                            "color": "black",
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "exp"
                    },
                    {
                        "line": {
                            "color": "gray",
                            "width": 1
                        },
                        "mode": "lines+markers",
                        "name": "Starink β=15",
                        "type": "scatter",
                        "xsrc": "yass777:106:2780ae",
                        "ysrc": "yass777:106:3e196f",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "size": 6,
                            "color": "gray",
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "exp"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Criado's Master Plots: Lignina en N2 (β=15 ºC/min)"
                    },
                    "width": 2400,
                    "xaxis": {
                        "title": {
                            "text": "α"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            0.3
                        ]
                    },
                    "yaxis": {
                        "range": [
                            0,
                            3.5
                        ],
                        "title": {
                            "text": "f(α)/f(0.5)"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "height": 700,
                    "legend": {
                        "x": 0.5,
                        "y": -0.3,
                        "xanchor": "center",
                        "yanchor": "bottom",
                        "itemsizing": "constant",
                        "orientation": "h"
                    },
                    "margin": {
                        "b": 100,
                        "l": 80,
                        "r": 40
                    },
                    "xaxis2": {
                        "title": {
                            "text": "α"
                        },
                        "anchor": "y2",
                        "domain": [
                            0.35,
                            0.6499999999999999
                        ]
                    },
                    "xaxis3": {
                        "title": {
                            "text": "α"
                        },
                        "anchor": "y3",
                        "domain": [
                            0.7,
                            1.0
                        ]
                    },
                    "yaxis2": {
                        "range": [
                            0,
                            5
                        ],
                        "title": {
                            "text": "g(α)/g(0.5)"
                        },
                        "anchor": "x2",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis3": {
                        "range": [
                            0,
                            1.5
                        ],
                        "title": {
                            "text": "Z(α) = f(α)*g(α)"
                        },
                        "anchor": "x3",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "hovermode": "x unified",
                    "annotations": [
                        {
                            "x": 0.15,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Forma Diferencial Normalizada",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.49999999999999994,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Formal Integral Normalizada",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.85,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Forma Integral*Diferencial",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ],
                    "updatemenus": [
                        {
                            "x": 1.0,
                            "y": 1.15,
                            "type": "dropdown",
                            "buttons": [
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "Todos",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "Ninguno",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "CR4",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "DM1",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "P2",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "R2",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "B1",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "NG15",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "CR0",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "E1",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "CR15",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "CR1",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "DM5",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "CR2",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "NG2",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "P23",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "DM4",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "CR3",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "CR25",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "NG3",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "NG4",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "P3",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "CR35",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "E2",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "R3",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "P4",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "CR05",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "DM2",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "DM3",
                                    "method": "update"
                                }
                            ],
                            "xanchor": "right",
                            "yanchor": "top",
                            "direction": "down"
                        }
                    ],
                    "plot_bgcolor": "rgba(240,240,240,0.9)"
                }
            },
            "height": 700,
            "width": 2400,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~yass777",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/33.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-31 14:38:59",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "yass777",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}