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=cj0xJnA9MjAyNS0wOC0zMSsxNSUzQTA4JTNBMDYuNDUxNDIyJTJCMDAlM0EwMA%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=cD0yMDI1LTA4LTMxKzE1JTNBMDglM0ExMS4xMDE4OTYlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNS0wOC0zMSsxOSUzQTI4JTNBMzcuMDc3ODAyJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "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://storage.googleapis.com/plotly-prod-images/yass777/35/9_PMOO26DHYLIG4569Q5EPCY7PNOV7YZ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/yass777/35/2_FBVQGYQBT99H1PEW51C7BG15W9RYB9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/yass777/35/8_89Q6GPEQ5B02PD8WAGEUUNK3YI8K4S.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/yass777/35/9_PMOO26DHYLIG4569Q5EPCY7PNOV7YZ.png"
            },
            "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://storage.googleapis.com/plotly-prod-images/yass777/33/9_FTVYVD6Y3NU92B16O1IJ5KBRUY0BEV.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/yass777/33/2_XMSMX4MKLNGSVGG4SHWE3WCG6312EM.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/yass777/33/8_2L85G6IS4CMZRYMDYRJALIND6EGTY1.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/yass777/33/9_FTVYVD6Y3NU92B16O1IJ5KBRUY0BEV.png"
            },
            "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
            }
        },
        {
            "creation_time": "2025-08-31T15:08:25.851608Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~yass777/31.embed",
            "fid": "yass777:31",
            "filename": "Criado_lignina_5_n2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/yass777/31/9_XILCCYUTG4FXYZCB4X5LSUAIOL33OM.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/yass777/31/2_L9VC44IBOW1HUZHCFW704M3Y4AQT86.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/yass777/31/8_DD3029TCXLMOYZF4BFGKQDV6DNVJUH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/yass777/31/9_XILCCYUTG4FXYZCB4X5LSUAIOL33OM.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/yass777:31",
                "plots": "https://api.plotly.com/v2/plots/yass777:31",
                "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/31/",
            "world_readable": true,
            "date_modified": "2025-09-06T01:24:00.287Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~yass777/31/",
            "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:105:d9b776",
                        "ysrc": "yass777:105:22de54",
                        "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:105:6b5889",
                        "ysrc": "yass777:105:955c9d",
                        "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:105:90960b",
                        "ysrc": "yass777:105:bc81e4",
                        "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:105:42feef",
                        "ysrc": "yass777:105:e28dcb",
                        "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:105:63df82",
                        "ysrc": "yass777:105:f9d25d",
                        "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:105:5d79fd",
                        "ysrc": "yass777:105:df454a",
                        "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:105:8d4bd6",
                        "ysrc": "yass777:105:2a366a",
                        "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:105:5a21bd",
                        "ysrc": "yass777:105:b778d4",
                        "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:105:498a52",
                        "ysrc": "yass777:105:75ae47",
                        "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:105:4108cf",
                        "ysrc": "yass777:105:ba1afd",
                        "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:105:b71758",
                        "ysrc": "yass777:105:4f0df6",
                        "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:105:77490d",
                        "ysrc": "yass777:105:fad70d",
                        "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:105:1c9400",
                        "ysrc": "yass777:105:214309",
                        "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:105:b853f0",
                        "ysrc": "yass777:105:00f39a",
                        "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:105:15ab78",
                        "ysrc": "yass777:105:a3117d",
                        "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:105:ea6601",
                        "ysrc": "yass777:105:a5704c",
                        "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:105:343353",
                        "ysrc": "yass777:105:38e967",
                        "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:105:8ae6ac",
                        "ysrc": "yass777:105:afb28c",
                        "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:105:ee81fa",
                        "ysrc": "yass777:105:db9525",
                        "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:105:c177ac",
                        "ysrc": "yass777:105:95bfad",
                        "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:105:afec24",
                        "ysrc": "yass777:105:3f9986",
                        "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:105:4685d0",
                        "ysrc": "yass777:105:06cf5f",
                        "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:105:6a4991",
                        "ysrc": "yass777:105:64af71",
                        "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:105:965f57",
                        "ysrc": "yass777:105:d1455b",
                        "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:105:b0f1bc",
                        "ysrc": "yass777:105:15f69b",
                        "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:105:02cc43",
                        "ysrc": "yass777:105:1fe6f0",
                        "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:105:ade914",
                        "ysrc": "yass777:105:157920",
                        "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 β=5",
                        "type": "scatter",
                        "xsrc": "yass777:105:389643",
                        "ysrc": "yass777:105:59e077",
                        "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 β=5",
                        "type": "scatter",
                        "xsrc": "yass777:105:c6c507",
                        "ysrc": "yass777:105:b69bef",
                        "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:105:b3302c",
                        "ysrc": "yass777:105:5bdd56",
                        "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:105:0cc6da",
                        "ysrc": "yass777:105:9753a4",
                        "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:105:43a2c2",
                        "ysrc": "yass777:105:ffc8f5",
                        "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:105:52762d",
                        "ysrc": "yass777:105:8b6a85",
                        "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:105:3102fb",
                        "ysrc": "yass777:105:3896cc",
                        "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:105:ab697c",
                        "ysrc": "yass777:105:f44eec",
                        "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:105:adb53f",
                        "ysrc": "yass777:105:623d2e",
                        "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:105:5853dd",
                        "ysrc": "yass777:105:32c1ac",
                        "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:105:d41534",
                        "ysrc": "yass777:105:c377f1",
                        "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:105:97e548",
                        "ysrc": "yass777:105:f724d4",
                        "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:105:477635",
                        "ysrc": "yass777:105:b01d04",
                        "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:105:a58e6a",
                        "ysrc": "yass777:105:f971ac",
                        "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:105:40944e",
                        "ysrc": "yass777:105:32a657",
                        "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:105:233b15",
                        "ysrc": "yass777:105:cad7e2",
                        "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:105:56fda2",
                        "ysrc": "yass777:105:b5d06d",
                        "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:105:57e1c9",
                        "ysrc": "yass777:105:969435",
                        "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:105:ded1cc",
                        "ysrc": "yass777:105:4b5a4d",
                        "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:105:e78067",
                        "ysrc": "yass777:105:680cfb",
                        "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:105:39f692",
                        "ysrc": "yass777:105:8df4fa",
                        "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:105:d5e93f",
                        "ysrc": "yass777:105:bddc58",
                        "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:105:7ceadc",
                        "ysrc": "yass777:105:d19933",
                        "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:105:e99ea9",
                        "ysrc": "yass777:105:cda0db",
                        "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:105:e7a54a",
                        "ysrc": "yass777:105:0f9bf9",
                        "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:105:b5d885",
                        "ysrc": "yass777:105:69af60",
                        "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:105:013619",
                        "ysrc": "yass777:105:46d78c",
                        "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:105:936fca",
                        "ysrc": "yass777:105:d9e1de",
                        "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:105:75f3c3",
                        "ysrc": "yass777:105:9aa43b",
                        "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 β=5",
                        "type": "scatter",
                        "xsrc": "yass777:105:82f823",
                        "ysrc": "yass777:105:3823c8",
                        "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 β=5",
                        "type": "scatter",
                        "xsrc": "yass777:105:a7f021",
                        "ysrc": "yass777:105:7106d1",
                        "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:105:1f8867",
                        "ysrc": "yass777:105:47a5cf",
                        "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:105:986796",
                        "ysrc": "yass777:105:cc5d96",
                        "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:105:688ef2",
                        "ysrc": "yass777:105:96d216",
                        "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:105:789cc0",
                        "ysrc": "yass777:105:b70262",
                        "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:105:75e45f",
                        "ysrc": "yass777:105:8436c9",
                        "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:105:2dd833",
                        "ysrc": "yass777:105:8a10e3",
                        "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:105:765870",
                        "ysrc": "yass777:105:b01989",
                        "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:105:785368",
                        "ysrc": "yass777:105:369e3c",
                        "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:105:316cff",
                        "ysrc": "yass777:105:f1c012",
                        "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:105:b5d330",
                        "ysrc": "yass777:105:b3e7d4",
                        "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:105:646321",
                        "ysrc": "yass777:105:f56b11",
                        "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:105:25dbc7",
                        "ysrc": "yass777:105:ca6626",
                        "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:105:12db8b",
                        "ysrc": "yass777:105:1de3b4",
                        "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:105:b0ae85",
                        "ysrc": "yass777:105:69f7bc",
                        "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:105:4b589a",
                        "ysrc": "yass777:105:b0691d",
                        "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:105:4d80f6",
                        "ysrc": "yass777:105:f20bf4",
                        "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:105:60a577",
                        "ysrc": "yass777:105:1d80dc",
                        "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:105:0dfef6",
                        "ysrc": "yass777:105:f75e7d",
                        "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:105:2b4366",
                        "ysrc": "yass777:105:ae894c",
                        "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:105:02b655",
                        "ysrc": "yass777:105:ce0a5c",
                        "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:105:d74cc2",
                        "ysrc": "yass777:105:82ed44",
                        "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:105:07dee3",
                        "ysrc": "yass777:105:2989b1",
                        "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:105:3c6e64",
                        "ysrc": "yass777:105:81fc8b",
                        "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:105:d35714",
                        "ysrc": "yass777:105:001f0d",
                        "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:105:c9cc2d",
                        "ysrc": "yass777:105:addf88",
                        "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:105:88f932",
                        "ysrc": "yass777:105:5e488a",
                        "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:105:fdf9f7",
                        "ysrc": "yass777:105:a9b610",
                        "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 β=5",
                        "type": "scatter",
                        "xsrc": "yass777:105:7025f9",
                        "ysrc": "yass777:105:4fbd11",
                        "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 β=5",
                        "type": "scatter",
                        "xsrc": "yass777:105:449b48",
                        "ysrc": "yass777:105:2f5abe",
                        "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 (β=5 º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:21.317284Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~yass777/29.embed",
            "fid": "yass777:29",
            "filename": "Criado_lignina_30_aire",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/yass777/29/9_9ITG2TL5AQ935JNZ09I3TP7GC0M61C.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/yass777/29/2_DSAYN441OM43LB10JNSLKO02GH4UJV.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/yass777/29/8_X4P62P5NSGNXG3KI4CGWP2CZBOA2ND.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/yass777/29/9_9ITG2TL5AQ935JNZ09I3TP7GC0M61C.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/yass777:29",
                "plots": "https://api.plotly.com/v2/plots/yass777:29",
                "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/29/",
            "world_readable": true,
            "date_modified": "2025-09-06T01:23:47.027Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~yass777/29/",
            "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:104:3f10b9",
                        "ysrc": "yass777:104:c0f8bf",
                        "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:104:b466d2",
                        "ysrc": "yass777:104:869057",
                        "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:104:528208",
                        "ysrc": "yass777:104:a90284",
                        "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:104:be9488",
                        "ysrc": "yass777:104:a0c513",
                        "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:104:46a093",
                        "ysrc": "yass777:104:e493a8",
                        "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:104:fbaf81",
                        "ysrc": "yass777:104:1e419b",
                        "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:104:55f1b2",
                        "ysrc": "yass777:104:197b12",
                        "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:104:f5eb20",
                        "ysrc": "yass777:104:bb69b1",
                        "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:104:7923ee",
                        "ysrc": "yass777:104:73c2d5",
                        "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:104:7d4cfe",
                        "ysrc": "yass777:104:89249c",
                        "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:104:c2f10f",
                        "ysrc": "yass777:104:0b6776",
                        "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:104:fd0879",
                        "ysrc": "yass777:104:bfec40",
                        "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:104:09b084",
                        "ysrc": "yass777:104:e93ac7",
                        "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:104:14f034",
                        "ysrc": "yass777:104:b6a30d",
                        "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:104:e33cde",
                        "ysrc": "yass777:104:87c453",
                        "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:104:db44eb",
                        "ysrc": "yass777:104:8f8942",
                        "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:104:b2a7a4",
                        "ysrc": "yass777:104:1f45ea",
                        "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:104:b24a0d",
                        "ysrc": "yass777:104:1cd988",
                        "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:104:5962e8",
                        "ysrc": "yass777:104:d29fd2",
                        "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:104:f08478",
                        "ysrc": "yass777:104:5e713c",
                        "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:104:3a054e",
                        "ysrc": "yass777:104:aeb541",
                        "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:104:c7ee68",
                        "ysrc": "yass777:104:52b870",
                        "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:104:4a7d32",
                        "ysrc": "yass777:104:9f4106",
                        "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:104:f7f37f",
                        "ysrc": "yass777:104:aa98be",
                        "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:104:bb96fc",
                        "ysrc": "yass777:104:689851",
                        "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:104:90f1a5",
                        "ysrc": "yass777:104:11a8d1",
                        "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:104:7aea3c",
                        "ysrc": "yass777:104:a62595",
                        "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:104:4e68ec",
                        "ysrc": "yass777:104:929486",
                        "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:104:7522d9",
                        "ysrc": "yass777:104:e166a4",
                        "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:104:afd5ec",
                        "ysrc": "yass777:104:ac4960",
                        "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:104:cb1b85",
                        "ysrc": "yass777:104:101896",
                        "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:104:a1d912",
                        "ysrc": "yass777:104:151d1a",
                        "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:104:8061cb",
                        "ysrc": "yass777:104:e6c5bf",
                        "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:104:83960b",
                        "ysrc": "yass777:104:658058",
                        "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:104:773a3f",
                        "ysrc": "yass777:104:931d60",
                        "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:104:1d9a5a",
                        "ysrc": "yass777:104:b4121d",
                        "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:104:c9bc14",
                        "ysrc": "yass777:104:3da1bd",
                        "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:104:6d79e6",
                        "ysrc": "yass777:104:92d0e3",
                        "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:104:f11f0f",
                        "ysrc": "yass777:104:ee67ee",
                        "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:104:c43004",
                        "ysrc": "yass777:104:e3ca19",
                        "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:104:18b6af",
                        "ysrc": "yass777:104:428fb6",
                        "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:104:147211",
                        "ysrc": "yass777:104:aa36d0",
                        "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:104:88d29d",
                        "ysrc": "yass777:104:045adf",
                        "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:104:c27180",
                        "ysrc": "yass777:104:8f8f77",
                        "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:104:b021c2",
                        "ysrc": "yass777:104:4a0aa0",
                        "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:104:361262",
                        "ysrc": "yass777:104:ecf54a",
                        "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:104:816ee9",
                        "ysrc": "yass777:104:63efaa",
                        "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:104:3e07bc",
                        "ysrc": "yass777:104:9a9b78",
                        "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:104:47e9f6",
                        "ysrc": "yass777:104:60cbfc",
                        "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:104:a06823",
                        "ysrc": "yass777:104:488185",
                        "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:104:050427",
                        "ysrc": "yass777:104:515c4b",
                        "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:104:ec56c4",
                        "ysrc": "yass777:104:8f14c4",
                        "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:104:2b529b",
                        "ysrc": "yass777:104:60ea1d",
                        "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:104:cb8b65",
                        "ysrc": "yass777:104:a7546e",
                        "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:104:f1ad9d",
                        "ysrc": "yass777:104:49a7b9",
                        "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:104:cd518f",
                        "ysrc": "yass777:104:7e6a07",
                        "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:104:8e5bf3",
                        "ysrc": "yass777:104:0f956b",
                        "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:104:431d6a",
                        "ysrc": "yass777:104:acca06",
                        "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:104:02c49f",
                        "ysrc": "yass777:104:441163",
                        "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:104:253e8f",
                        "ysrc": "yass777:104:9215f7",
                        "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:104:0d2131",
                        "ysrc": "yass777:104:08d355",
                        "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:104:3ef761",
                        "ysrc": "yass777:104:889c0c",
                        "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:104:f546bd",
                        "ysrc": "yass777:104:95136e",
                        "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:104:b80e6d",
                        "ysrc": "yass777:104:515ebb",
                        "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:104:20b629",
                        "ysrc": "yass777:104:c374f3",
                        "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:104:5bae3a",
                        "ysrc": "yass777:104:daa5d9",
                        "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:104:efee39",
                        "ysrc": "yass777:104:0133c8",
                        "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:104:fae8fe",
                        "ysrc": "yass777:104:0658fa",
                        "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:104:22a915",
                        "ysrc": "yass777:104:d0efd2",
                        "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:104:6213a0",
                        "ysrc": "yass777:104:3e59d8",
                        "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:104:3d6bea",
                        "ysrc": "yass777:104:3e6f79",
                        "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:104:ef24de",
                        "ysrc": "yass777:104:7615a0",
                        "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:104:569bf4",
                        "ysrc": "yass777:104:e62a6c",
                        "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:104:9bc505",
                        "ysrc": "yass777:104:db4d04",
                        "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:104:5560c7",
                        "ysrc": "yass777:104:97f28d",
                        "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:104:fd9065",
                        "ysrc": "yass777:104:2243f9",
                        "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:104:b8d25d",
                        "ysrc": "yass777:104:d9feca",
                        "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:104:b9eb87",
                        "ysrc": "yass777:104:31104c",
                        "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:104:2ee8bf",
                        "ysrc": "yass777:104:1ed1e2",
                        "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:104:cf858a",
                        "ysrc": "yass777:104:6ea923",
                        "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:104:2d8c50",
                        "ysrc": "yass777:104:e86694",
                        "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:104:bf174e",
                        "ysrc": "yass777:104:7744fb",
                        "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:104:70e198",
                        "ysrc": "yass777:104:83ea25",
                        "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:104:714383",
                        "ysrc": "yass777:104:1e7c27",
                        "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:104:f8bf29",
                        "ysrc": "yass777:104:036036",
                        "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:104:9a45f1",
                        "ysrc": "yass777:104:dbb5de",
                        "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:104:2d250e",
                        "ysrc": "yass777:104:b3a7d2",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "size": 6,
                            "color": "gray",
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "exp"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Criado's Master Plots: Lignina en AIRE (β=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:16.192299Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~yass777/27.embed",
            "fid": "yass777:27",
            "filename": "Criado_lignina_15_aire",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/yass777/27/9_WOEKXTZFG71RYSPXJVLYCEFU0ZXROX.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/yass777/27/2_6DVUVH1DC723TOZLNN61MPNFS8I12P.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/yass777/27/8_9M5GZ6EJTUU33HNMXAL1Z23GZ3TG3A.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/yass777/27/9_WOEKXTZFG71RYSPXJVLYCEFU0ZXROX.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/yass777:27",
                "plots": "https://api.plotly.com/v2/plots/yass777:27",
                "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/27/",
            "world_readable": true,
            "date_modified": "2025-09-06T01:23:33.579Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~yass777/27/",
            "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:103:06e44e",
                        "ysrc": "yass777:103:074897",
                        "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:103:345142",
                        "ysrc": "yass777:103:437445",
                        "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:103:7a0a1e",
                        "ysrc": "yass777:103:771dbc",
                        "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:103:4b2d15",
                        "ysrc": "yass777:103:b4d2df",
                        "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:103:43ea1a",
                        "ysrc": "yass777:103:38dec4",
                        "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:103:c42987",
                        "ysrc": "yass777:103:d9fb06",
                        "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:103:52fee8",
                        "ysrc": "yass777:103:96cd0b",
                        "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:103:5f2178",
                        "ysrc": "yass777:103:51c1e3",
                        "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:103:c9e3fe",
                        "ysrc": "yass777:103:c721d7",
                        "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:103:d5a87a",
                        "ysrc": "yass777:103:33117c",
                        "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:103:7849d2",
                        "ysrc": "yass777:103:5b3374",
                        "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:103:0a14dd",
                        "ysrc": "yass777:103:fd628c",
                        "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:103:b658bb",
                        "ysrc": "yass777:103:8c9902",
                        "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:103:8c5a13",
                        "ysrc": "yass777:103:42904e",
                        "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:103:4ef441",
                        "ysrc": "yass777:103:77915f",
                        "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:103:2b248d",
                        "ysrc": "yass777:103:505ad0",
                        "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:103:239ea7",
                        "ysrc": "yass777:103:ca26c1",
                        "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:103:a96660",
                        "ysrc": "yass777:103:fbcfcf",
                        "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:103:1ad57c",
                        "ysrc": "yass777:103:dac946",
                        "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:103:e3f369",
                        "ysrc": "yass777:103:17966d",
                        "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:103:ad525a",
                        "ysrc": "yass777:103:7d5c9d",
                        "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:103:fcedf7",
                        "ysrc": "yass777:103:dfed81",
                        "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:103:9eedae",
                        "ysrc": "yass777:103:77ed74",
                        "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:103:2ed1da",
                        "ysrc": "yass777:103:6ec557",
                        "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:103:d41872",
                        "ysrc": "yass777:103:474678",
                        "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:103:d34fca",
                        "ysrc": "yass777:103:5217e0",
                        "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:103:916c3e",
                        "ysrc": "yass777:103:8f860b",
                        "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:103:0dcefa",
                        "ysrc": "yass777:103:d0c9f3",
                        "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:103:e202a9",
                        "ysrc": "yass777:103:3844c5",
                        "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:103:67e129",
                        "ysrc": "yass777:103:60ff7d",
                        "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:103:68a994",
                        "ysrc": "yass777:103:9ea1e5",
                        "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:103:e87bac",
                        "ysrc": "yass777:103:4f7ca5",
                        "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:103:1f4b0f",
                        "ysrc": "yass777:103:ab1538",
                        "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:103:71b33b",
                        "ysrc": "yass777:103:8f923e",
                        "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:103:a057b2",
                        "ysrc": "yass777:103:8d0037",
                        "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:103:8ff9a2",
                        "ysrc": "yass777:103:de5d03",
                        "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:103:cebe86",
                        "ysrc": "yass777:103:959420",
                        "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:103:5c2376",
                        "ysrc": "yass777:103:3c9096",
                        "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:103:32534e",
                        "ysrc": "yass777:103:a4e4c7",
                        "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:103:90aa18",
                        "ysrc": "yass777:103:919205",
                        "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:103:729d6e",
                        "ysrc": "yass777:103:2fa2fe",
                        "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:103:df3fd3",
                        "ysrc": "yass777:103:c3a9e4",
                        "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:103:e7e0b0",
                        "ysrc": "yass777:103:fb2c0c",
                        "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:103:7eb3bb",
                        "ysrc": "yass777:103:a8f3c5",
                        "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:103:c24815",
                        "ysrc": "yass777:103:7d7a01",
                        "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:103:719e4d",
                        "ysrc": "yass777:103:4e0f4b",
                        "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:103:1601a9",
                        "ysrc": "yass777:103:9cfbf6",
                        "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:103:b918e4",
                        "ysrc": "yass777:103:0f4d9d",
                        "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:103:3a318c",
                        "ysrc": "yass777:103:c069b7",
                        "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:103:84a393",
                        "ysrc": "yass777:103:db5fb6",
                        "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:103:07cbc5",
                        "ysrc": "yass777:103:bbb6ab",
                        "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:103:a35a84",
                        "ysrc": "yass777:103:10fac7",
                        "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:103:92e1a3",
                        "ysrc": "yass777:103:d4bc51",
                        "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:103:f9093b",
                        "ysrc": "yass777:103:1fe082",
                        "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:103:c332d2",
                        "ysrc": "yass777:103:fd9e40",
                        "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:103:bf0263",
                        "ysrc": "yass777:103:ed5542",
                        "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:103:eaa979",
                        "ysrc": "yass777:103:beaefc",
                        "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:103:409f15",
                        "ysrc": "yass777:103:18e009",
                        "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:103:71663d",
                        "ysrc": "yass777:103:31aa09",
                        "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:103:ff88df",
                        "ysrc": "yass777:103:e3948e",
                        "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:103:e3ace9",
                        "ysrc": "yass777:103:e3af0a",
                        "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:103:b9236c",
                        "ysrc": "yass777:103:09958c",
                        "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:103:e85129",
                        "ysrc": "yass777:103:753cfc",
                        "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:103:217975",
                        "ysrc": "yass777:103:a763d7",
                        "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:103:a9f5e9",
                        "ysrc": "yass777:103:0326d1",
                        "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:103:23789c",
                        "ysrc": "yass777:103:88374d",
                        "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:103:86b5ac",
                        "ysrc": "yass777:103:9815a8",
                        "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:103:4571ca",
                        "ysrc": "yass777:103:c31a16",
                        "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:103:1b943b",
                        "ysrc": "yass777:103:cabfcd",
                        "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:103:b71496",
                        "ysrc": "yass777:103:48aa14",
                        "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:103:520818",
                        "ysrc": "yass777:103:4bca71",
                        "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:103:96f014",
                        "ysrc": "yass777:103:b735f7",
                        "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:103:3da1c9",
                        "ysrc": "yass777:103:5cc422",
                        "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:103:241726",
                        "ysrc": "yass777:103:f3b664",
                        "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:103:b006c6",
                        "ysrc": "yass777:103:844b62",
                        "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:103:4d87c8",
                        "ysrc": "yass777:103:33ade6",
                        "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:103:b1d9eb",
                        "ysrc": "yass777:103:e0de6f",
                        "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:103:a7e209",
                        "ysrc": "yass777:103:24890b",
                        "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:103:8c4dc1",
                        "ysrc": "yass777:103:030ad8",
                        "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:103:266150",
                        "ysrc": "yass777:103:522723",
                        "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:103:9029de",
                        "ysrc": "yass777:103:c14409",
                        "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:103:17d082",
                        "ysrc": "yass777:103:7d6660",
                        "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:103:fc215e",
                        "ysrc": "yass777:103:a3406d",
                        "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:103:0f3ca8",
                        "ysrc": "yass777:103:048775",
                        "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:103:2c27f1",
                        "ysrc": "yass777:103:16b6f2",
                        "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:103:533808",
                        "ysrc": "yass777:103:864cc8",
                        "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:103:7ce9cf",
                        "ysrc": "yass777:103:28ee37",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "size": 6,
                            "color": "gray",
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "exp"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Criado's Master Plots: Lignina en AIRE (β=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
            }
        },
        {
            "creation_time": "2025-08-31T15:08:11.101896Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~yass777/25.embed",
            "fid": "yass777:25",
            "filename": "Criado_lignina_5_aire",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/yass777/25/9_IZM4ET0Q88LVID2PGS629QPW26V4WG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/yass777/25/2_VKJYVW5YU4MQ6OVWJZG5UJ9S8GUB82.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/yass777/25/8_SQIAY3BEV75EFT2AP3FOOX98YQ63PW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/yass777/25/9_IZM4ET0Q88LVID2PGS629QPW26V4WG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/yass777:25",
                "plots": "https://api.plotly.com/v2/plots/yass777:25",
                "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/25/",
            "world_readable": true,
            "date_modified": "2025-09-06T01:23:23.267Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~yass777/25/",
            "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:102:354951",
                        "ysrc": "yass777:102:0f008d",
                        "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:102:cfa528",
                        "ysrc": "yass777:102:59dee9",
                        "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:102:4078d7",
                        "ysrc": "yass777:102:93f456",
                        "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:102:a2d926",
                        "ysrc": "yass777:102:75ea8c",
                        "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:102:5354a0",
                        "ysrc": "yass777:102:6b280f",
                        "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:102:8fba38",
                        "ysrc": "yass777:102:845f1f",
                        "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:102:851e75",
                        "ysrc": "yass777:102:e57982",
                        "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:102:ff1f0c",
                        "ysrc": "yass777:102:a96582",
                        "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:102:339018",
                        "ysrc": "yass777:102:163232",
                        "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:102:f7c464",
                        "ysrc": "yass777:102:e418c8",
                        "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:102:9164d2",
                        "ysrc": "yass777:102:eb6c64",
                        "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:102:77f816",
                        "ysrc": "yass777:102:f2dc0e",
                        "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:102:2a2598",
                        "ysrc": "yass777:102:cb7c45",
                        "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:102:a0c8aa",
                        "ysrc": "yass777:102:34e0bc",
                        "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:102:03d257",
                        "ysrc": "yass777:102:34fe98",
                        "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:102:895726",
                        "ysrc": "yass777:102:5831fd",
                        "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:102:03077e",
                        "ysrc": "yass777:102:9a404f",
                        "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:102:1f6cdf",
                        "ysrc": "yass777:102:6620ae",
                        "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:102:c35d5f",
                        "ysrc": "yass777:102:0b42ee",
                        "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:102:b49520",
                        "ysrc": "yass777:102:28a2ee",
                        "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:102:ca9ee2",
                        "ysrc": "yass777:102:4204b4",
                        "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:102:416fc4",
                        "ysrc": "yass777:102:3ec1f1",
                        "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:102:6a2573",
                        "ysrc": "yass777:102:ff6f52",
                        "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:102:7f36a6",
                        "ysrc": "yass777:102:2585cb",
                        "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:102:c464da",
                        "ysrc": "yass777:102:41e8a2",
                        "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:102:600713",
                        "ysrc": "yass777:102:944d40",
                        "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:102:bcd6a8",
                        "ysrc": "yass777:102:2144ce",
                        "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 β=5",
                        "type": "scatter",
                        "xsrc": "yass777:102:2ce45d",
                        "ysrc": "yass777:102:bd78a6",
                        "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 β=5",
                        "type": "scatter",
                        "xsrc": "yass777:102:89fa2b",
                        "ysrc": "yass777:102:c58823",
                        "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:102:170ca1",
                        "ysrc": "yass777:102:8746cd",
                        "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:102:a83f31",
                        "ysrc": "yass777:102:cfdce0",
                        "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:102:118286",
                        "ysrc": "yass777:102:8f9922",
                        "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:102:957191",
                        "ysrc": "yass777:102:412ad5",
                        "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:102:24832c",
                        "ysrc": "yass777:102:b75d5d",
                        "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:102:f0cfa6",
                        "ysrc": "yass777:102:41cb4a",
                        "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:102:f07e65",
                        "ysrc": "yass777:102:b94440",
                        "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:102:05e6e2",
                        "ysrc": "yass777:102:2314f5",
                        "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:102:f71841",
                        "ysrc": "yass777:102:16448a",
                        "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:102:95460e",
                        "ysrc": "yass777:102:7c5419",
                        "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:102:05aaff",
                        "ysrc": "yass777:102:c6be38",
                        "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:102:40ba84",
                        "ysrc": "yass777:102:e42b1a",
                        "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:102:b2c1f4",
                        "ysrc": "yass777:102:f3e777",
                        "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:102:6bf82d",
                        "ysrc": "yass777:102:1c666b",
                        "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:102:234bc8",
                        "ysrc": "yass777:102:dc7ab8",
                        "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:102:e2f3a4",
                        "ysrc": "yass777:102:aa1925",
                        "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:102:3f1cef",
                        "ysrc": "yass777:102:ba3c0f",
                        "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:102:9cbff4",
                        "ysrc": "yass777:102:3a654a",
                        "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:102:cfc84d",
                        "ysrc": "yass777:102:3ca8c0",
                        "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:102:1b2b46",
                        "ysrc": "yass777:102:cd8af6",
                        "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:102:ec7546",
                        "ysrc": "yass777:102:7dbca6",
                        "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:102:dcbc22",
                        "ysrc": "yass777:102:141494",
                        "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:102:421532",
                        "ysrc": "yass777:102:1384b5",
                        "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:102:3142e3",
                        "ysrc": "yass777:102:81e0f2",
                        "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:102:0ca0b3",
                        "ysrc": "yass777:102:8d4778",
                        "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:102:2f6540",
                        "ysrc": "yass777:102:2079e9",
                        "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:102:9c57e1",
                        "ysrc": "yass777:102:5cf66a",
                        "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 β=5",
                        "type": "scatter",
                        "xsrc": "yass777:102:bab3f3",
                        "ysrc": "yass777:102:6ada16",
                        "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 β=5",
                        "type": "scatter",
                        "xsrc": "yass777:102:406811",
                        "ysrc": "yass777:102:fa59f1",
                        "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:102:4fa613",
                        "ysrc": "yass777:102:a3396f",
                        "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:102:3ada57",
                        "ysrc": "yass777:102:e11e86",
                        "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:102:ad88a6",
                        "ysrc": "yass777:102:a44486",
                        "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:102:f476d3",
                        "ysrc": "yass777:102:67498f",
                        "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:102:4e5ec8",
                        "ysrc": "yass777:102:183105",
                        "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:102:1f3aa7",
                        "ysrc": "yass777:102:f4509b",
                        "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:102:dc595f",
                        "ysrc": "yass777:102:738b3e",
                        "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:102:752bb5",
                        "ysrc": "yass777:102:7f0669",
                        "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:102:c3a92d",
                        "ysrc": "yass777:102:c04c35",
                        "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:102:198b8e",
                        "ysrc": "yass777:102:98c5a9",
                        "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:102:6092c3",
                        "ysrc": "yass777:102:358179",
                        "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:102:81a774",
                        "ysrc": "yass777:102:84f6f6",
                        "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:102:978b55",
                        "ysrc": "yass777:102:d74c11",
                        "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:102:49ff82",
                        "ysrc": "yass777:102:75316e",
                        "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:102:773e77",
                        "ysrc": "yass777:102:f0ce88",
                        "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:102:9a879e",
                        "ysrc": "yass777:102:512aa2",
                        "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:102:e68730",
                        "ysrc": "yass777:102:179c7b",
                        "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:102:ef1e07",
                        "ysrc": "yass777:102:516e6b",
                        "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:102:75f7a6",
                        "ysrc": "yass777:102:0d8bd4",
                        "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:102:76b07a",
                        "ysrc": "yass777:102:f75f53",
                        "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:102:1dd2c5",
                        "ysrc": "yass777:102:71f5ff",
                        "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:102:fa50bf",
                        "ysrc": "yass777:102:6223d3",
                        "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:102:f736cb",
                        "ysrc": "yass777:102:5e5cdc",
                        "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:102:587387",
                        "ysrc": "yass777:102:928d60",
                        "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:102:62b18b",
                        "ysrc": "yass777:102:ba9d76",
                        "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:102:d6707b",
                        "ysrc": "yass777:102:76c5b5",
                        "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:102:b6b611",
                        "ysrc": "yass777:102:2f24c7",
                        "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 β=5",
                        "type": "scatter",
                        "xsrc": "yass777:102:f91cfa",
                        "ysrc": "yass777:102:dd79bd",
                        "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 β=5",
                        "type": "scatter",
                        "xsrc": "yass777:102:4b9246",
                        "ysrc": "yass777:102:f8a0d9",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "size": 6,
                            "color": "gray",
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "exp"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Criado's Master Plots: Lignina en AIRE (β=5 º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
            }
        }
    ]
}