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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTA0LTEwKzA2JTNBMTIlM0ExMi41MjQzNDklMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0xMCswNiUzQTE2JTNBNTIuNTg4MzIzJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-10T06:16:52.588323Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ussitussi/9.embed",
            "fid": "ussitussi:9",
            "filename": "box-plot",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ussitussi/9/9_V2YJP6GYE4LESL9WTTKHHGGK9HC1DG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ussitussi/9/2_524J8J192HHUQ1Q0NTJGHUFWE5XD6T.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ussitussi/9/8_TWKXH02AQENV0270U85SM4AUX0U28A.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ussitussi/9/9_V2YJP6GYE4LESL9WTTKHHGGK9HC1DG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ussitussi:9",
                "plots": "https://api.plotly.com/v2/plots/ussitussi:9",
                "parent": "https://api.plotly.com/v2/folders/home?user=ussitussi"
            },
            "owner": "ussitussi",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~ussitussi/9/",
            "world_readable": true,
            "date_modified": "2024-04-10T06:17:30.699Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ussitussi/9/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "x0": " ",
                        "y0": " ",
                        "name": "",
                        "type": "box",
                        "ysrc": "ussitussi:10:297509",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa"
                        },
                        "notched": false,
                        "showlegend": false,
                        "legendgroup": "",
                        "offsetgroup": "",
                        "orientation": "v",
                        "hovertemplate": "color_intensity=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    }
                ],
                "layout": {
                    "xaxis": {
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "color_intensity"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "t": 60
                    },
                    "boxmode": "group",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ussitussi",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-10 05:34:49",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ussitussi",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-10T06:16:39.992387Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~yashchoudhary05/12.embed",
            "fid": "yashchoudhary05:12",
            "filename": "Box Plot Example",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/yashchoudhary05/12/9_7WVEI3ZF9ZOY0R303O3F3R7MJR1ZCJ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/yashchoudhary05/12/2_UEH1BMMOTOTGNPMR42ESSYPLSH6AE4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/yashchoudhary05/12/8_WBU5LSEZ6GWFZIO3LV66ZB6K2SE0XA.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/yashchoudhary05/12/9_7WVEI3ZF9ZOY0R303O3F3R7MJR1ZCJ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/yashchoudhary05:12",
                "plots": "https://api.plotly.com/v2/plots/yashchoudhary05:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=yashchoudhary05"
            },
            "owner": "yashchoudhary05",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~yashchoudhary05/12/",
            "world_readable": true,
            "date_modified": "2024-04-10T06:16:40.005Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~yashchoudhary05/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "Sample A",
                        "type": "box",
                        "ysrc": "yashchoudhary05:11:92add1"
                    },
                    {
                        "name": "Sample B",
                        "type": "box",
                        "ysrc": "yashchoudhary05:11:fce389"
                    }
                ],
                "layout": {
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~yashchoudhary05",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/47.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-10 05:38:02",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "yashchoudhary05",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-10T06:16:37.262935Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Anjali333/3.embed",
            "fid": "Anjali333:3",
            "filename": "Box Plot Example",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Anjali333/3/9_8S7KJV8FQKJIDQA13RM9069ZHOW4T2.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Anjali333/3/2_HAXEX14HIMKWZOW0ZPP8A7MG8LPBN3.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Anjali333/3/8_7PC9MNO48QDGGIOL4UAHIUALHHUOER.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Anjali333/3/9_8S7KJV8FQKJIDQA13RM9069ZHOW4T2.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Anjali333:3",
                "plots": "https://api.plotly.com/v2/plots/Anjali333:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=Anjali333"
            },
            "owner": "Anjali333",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Anjali333/3/",
            "world_readable": true,
            "date_modified": "2024-04-10T06:16:37.271Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Anjali333/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "Sample A",
                        "type": "box",
                        "ysrc": "Anjali333:2:ce95bf"
                    },
                    {
                        "name": "Sample B",
                        "type": "box",
                        "ysrc": "Anjali333:2:6ff073"
                    }
                ],
                "layout": {
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Anjali333",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/17.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-10 05:56:46",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Anjali333",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-10T06:16:34.786405Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mado24/1.embed",
            "fid": "mado24:1",
            "filename": "my_plot",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/mado24/1/9_D809QVZYIBPIMOKC0L1CRZXQJT599B.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mado24/1/2_PH2EBT11OMD9L1KDPAEWPP70BS20AR.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mado24/1/8_0H3AGV0FP37OD4A5FE7HEELP27EVY4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/mado24/1/9_D809QVZYIBPIMOKC0L1CRZXQJT599B.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mado24:1",
                "plots": "https://api.plotly.com/v2/plots/mado24:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=mado24"
            },
            "owner": "mado24",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~mado24/1/",
            "world_readable": true,
            "date_modified": "2024-04-10T06:23:34.445Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mado24/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#636efa"
                        },
                        "mode": "markers+lines",
                        "name": "Wrist",
                        "type": "scatter3d",
                        "xsrc": "mado24:4:6bbdb6",
                        "ysrc": "mado24:4:bfb064",
                        "zsrc": "mado24:4:61e1e6",
                        "scene": "scene",
                        "marker": {
                            "size": 5,
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "Wrist",
                        "hovertemplate": "finger=Wrist<br>timestamp=0.0<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#EF553B"
                        },
                        "mode": "markers+lines",
                        "name": "Palm",
                        "type": "scatter3d",
                        "xsrc": "mado24:4:93925a",
                        "ysrc": "mado24:4:a39815",
                        "zsrc": "mado24:4:a0d950",
                        "scene": "scene",
                        "marker": {
                            "size": 5,
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "Palm",
                        "hovertemplate": "finger=Palm<br>timestamp=0.0<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#00cc96"
                        },
                        "mode": "markers+lines",
                        "name": "Thumb",
                        "type": "scatter3d",
                        "xsrc": "mado24:4:ef377f",
                        "ysrc": "mado24:4:65165b",
                        "zsrc": "mado24:4:39accb",
                        "scene": "scene",
                        "marker": {
                            "size": 5,
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "Thumb",
                        "hovertemplate": "finger=Thumb<br>timestamp=0.0<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#ab63fa"
                        },
                        "mode": "markers+lines",
                        "name": "Index",
                        "type": "scatter3d",
                        "xsrc": "mado24:4:edd587",
                        "ysrc": "mado24:4:bcc421",
                        "zsrc": "mado24:4:497b38",
                        "scene": "scene",
                        "marker": {
                            "size": 5,
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "Index",
                        "hovertemplate": "finger=Index<br>timestamp=0.0<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#FFA15A"
                        },
                        "mode": "markers+lines",
                        "name": "Middle",
                        "type": "scatter3d",
                        "xsrc": "mado24:4:48cce1",
                        "ysrc": "mado24:4:d082ae",
                        "zsrc": "mado24:4:2aa76f",
                        "scene": "scene",
                        "marker": {
                            "size": 5,
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "Middle",
                        "hovertemplate": "finger=Middle<br>timestamp=0.0<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#19d3f3"
                        },
                        "mode": "markers+lines",
                        "name": "Ring",
                        "type": "scatter3d",
                        "xsrc": "mado24:4:041d22",
                        "ysrc": "mado24:4:39d162",
                        "zsrc": "mado24:4:3152e3",
                        "scene": "scene",
                        "marker": {
                            "size": 5,
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "Ring",
                        "hovertemplate": "finger=Ring<br>timestamp=0.0<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#FF6692"
                        },
                        "mode": "markers+lines",
                        "name": "Pinky",
                        "type": "scatter3d",
                        "xsrc": "mado24:4:c486db",
                        "ysrc": "mado24:4:f46128",
                        "zsrc": "mado24:4:b969bf",
                        "scene": "scene",
                        "marker": {
                            "size": 5,
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "Pinky",
                        "hovertemplate": "finger=Pinky<br>timestamp=0.0<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                    }
                ],
                "frames": [
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:52a44b",
                                "ysrc": "mado24:4:296381",
                                "zsrc": "mado24:4:db2374",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.0<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:7e9538",
                                "ysrc": "mado24:4:8e1851",
                                "zsrc": "mado24:4:e58648",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.0<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:80069d",
                                "ysrc": "mado24:4:b6635f",
                                "zsrc": "mado24:4:eb9611",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.0<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:53b5ab",
                                "ysrc": "mado24:4:02927c",
                                "zsrc": "mado24:4:73e96a",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.0<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:12425e",
                                "ysrc": "mado24:4:8570bc",
                                "zsrc": "mado24:4:016dbc",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.0<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:b2ffec",
                                "ysrc": "mado24:4:fee118",
                                "zsrc": "mado24:4:66bf99",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.0<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:6f7a65",
                                "ysrc": "mado24:4:f83f9f",
                                "zsrc": "mado24:4:4bbcbc",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.0<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.0"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a0bf74",
                                "ysrc": "mado24:4:27dcc2",
                                "zsrc": "mado24:4:eaccfa",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.0362992<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:1cc666",
                                "ysrc": "mado24:4:edcef1",
                                "zsrc": "mado24:4:3a7c66",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.0362992<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:b6b009",
                                "ysrc": "mado24:4:2823c1",
                                "zsrc": "mado24:4:01bd4c",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.0362992<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:0afb20",
                                "ysrc": "mado24:4:a2b17d",
                                "zsrc": "mado24:4:0e11a0",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.0362992<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:55a926",
                                "ysrc": "mado24:4:2ec019",
                                "zsrc": "mado24:4:2d2382",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.0362992<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:8d77dd",
                                "ysrc": "mado24:4:3b95b5",
                                "zsrc": "mado24:4:c06920",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.0362992<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:6b6d79",
                                "ysrc": "mado24:4:2b08b2",
                                "zsrc": "mado24:4:79cc86",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.0362992<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.0362992"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:571eac",
                                "ysrc": "mado24:4:1b9bc6",
                                "zsrc": "mado24:4:01c4da",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.0726<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d49dde",
                                "ysrc": "mado24:4:466aa0",
                                "zsrc": "mado24:4:0c7bdc",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.0726<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a4d160",
                                "ysrc": "mado24:4:e9aa80",
                                "zsrc": "mado24:4:2f599f",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.0726<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a29af5",
                                "ysrc": "mado24:4:8ad02d",
                                "zsrc": "mado24:4:004e61",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.0726<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:8110a4",
                                "ysrc": "mado24:4:de3d4e",
                                "zsrc": "mado24:4:4b239d",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.0726<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:f52a62",
                                "ysrc": "mado24:4:ae72d2",
                                "zsrc": "mado24:4:bb7710",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.0726<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:1505c4",
                                "ysrc": "mado24:4:96411a",
                                "zsrc": "mado24:4:e591ce",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.0726<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.0726"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a36659",
                                "ysrc": "mado24:4:d0f2c0",
                                "zsrc": "mado24:4:e30e64",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.090752<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a22ea0",
                                "ysrc": "mado24:4:ed4492",
                                "zsrc": "mado24:4:ecfcb8",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.090752<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:144fe6",
                                "ysrc": "mado24:4:a0aadc",
                                "zsrc": "mado24:4:c1ed0e",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.090752<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:389513",
                                "ysrc": "mado24:4:7b7d06",
                                "zsrc": "mado24:4:176910",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.090752<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:90da18",
                                "ysrc": "mado24:4:fd579c",
                                "zsrc": "mado24:4:69a570",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.090752<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:caedcb",
                                "ysrc": "mado24:4:4071bb",
                                "zsrc": "mado24:4:0c56e3",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.090752<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d54037",
                                "ysrc": "mado24:4:289b15",
                                "zsrc": "mado24:4:dc8d3e",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.090752<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.090752"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:172da6",
                                "ysrc": "mado24:4:df1eb9",
                                "zsrc": "mado24:4:46a324",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.12705439999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:6d0d9a",
                                "ysrc": "mado24:4:9382ee",
                                "zsrc": "mado24:4:bff871",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.12705439999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c55955",
                                "ysrc": "mado24:4:64cb21",
                                "zsrc": "mado24:4:397add",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.12705439999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:5be364",
                                "ysrc": "mado24:4:b6eec5",
                                "zsrc": "mado24:4:4623e2",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.12705439999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:932bf2",
                                "ysrc": "mado24:4:e16859",
                                "zsrc": "mado24:4:2dbd2f",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.12705439999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:60df0e",
                                "ysrc": "mado24:4:bae9ff",
                                "zsrc": "mado24:4:9cabac",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.12705439999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:eaec65",
                                "ysrc": "mado24:4:c41437",
                                "zsrc": "mado24:4:909689",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.12705439999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.12705439999999998"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:646132",
                                "ysrc": "mado24:4:4ade2b",
                                "zsrc": "mado24:4:26dfef",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.1633552<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:334cd4",
                                "ysrc": "mado24:4:29036a",
                                "zsrc": "mado24:4:19d0c4",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.1633552<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:5a8585",
                                "ysrc": "mado24:4:a8b6d1",
                                "zsrc": "mado24:4:bdcbbc",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.1633552<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:14564d",
                                "ysrc": "mado24:4:c64519",
                                "zsrc": "mado24:4:d62e2e",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.1633552<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:63063e",
                                "ysrc": "mado24:4:678472",
                                "zsrc": "mado24:4:b83f31",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.1633552<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:9ef584",
                                "ysrc": "mado24:4:ac1b29",
                                "zsrc": "mado24:4:07fa67",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.1633552<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:539264",
                                "ysrc": "mado24:4:f66a73",
                                "zsrc": "mado24:4:5c8bf1",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.1633552<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.1633552"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:bd7707",
                                "ysrc": "mado24:4:5100f6",
                                "zsrc": "mado24:4:bcf30f",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.18150719999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:69f235",
                                "ysrc": "mado24:4:3e3e58",
                                "zsrc": "mado24:4:9c705b",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.18150719999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:16a513",
                                "ysrc": "mado24:4:29e094",
                                "zsrc": "mado24:4:b34536",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.18150719999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:8c6efa",
                                "ysrc": "mado24:4:99aacd",
                                "zsrc": "mado24:4:b66cab",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.18150719999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:5fe211",
                                "ysrc": "mado24:4:af1f4c",
                                "zsrc": "mado24:4:ef1cd7",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.18150719999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:fd0185",
                                "ysrc": "mado24:4:7db792",
                                "zsrc": "mado24:4:3cff76",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.18150719999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:fdb059",
                                "ysrc": "mado24:4:52d8db",
                                "zsrc": "mado24:4:e6959f",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.18150719999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.18150719999999998"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d61ff2",
                                "ysrc": "mado24:4:8a8f42",
                                "zsrc": "mado24:4:ef93dd",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.21780639999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:e94f8d",
                                "ysrc": "mado24:4:8b08e7",
                                "zsrc": "mado24:4:2b451a",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.21780639999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:399df7",
                                "ysrc": "mado24:4:1a3608",
                                "zsrc": "mado24:4:04a6c6",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.21780639999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a86612",
                                "ysrc": "mado24:4:f1abe3",
                                "zsrc": "mado24:4:564ed3",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.21780639999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:5a091f",
                                "ysrc": "mado24:4:ea0d55",
                                "zsrc": "mado24:4:711c3b",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.21780639999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:8a3f64",
                                "ysrc": "mado24:4:449770",
                                "zsrc": "mado24:4:3e51eb",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.21780639999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d7811b",
                                "ysrc": "mado24:4:9bac22",
                                "zsrc": "mado24:4:4780c4",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.21780639999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.21780639999999998"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:142485",
                                "ysrc": "mado24:4:440a7c",
                                "zsrc": "mado24:4:59924a",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.2541104<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:784749",
                                "ysrc": "mado24:4:361167",
                                "zsrc": "mado24:4:c93601",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.2541104<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:ef94a4",
                                "ysrc": "mado24:4:9b5a64",
                                "zsrc": "mado24:4:7657f2",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.2541104<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c4fa09",
                                "ysrc": "mado24:4:87d32a",
                                "zsrc": "mado24:4:96f00d",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.2541104<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:0a9a5f",
                                "ysrc": "mado24:4:70f6f2",
                                "zsrc": "mado24:4:d028ee",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.2541104<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:cdbf16",
                                "ysrc": "mado24:4:1e5006",
                                "zsrc": "mado24:4:e9616c",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.2541104<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:f9539e",
                                "ysrc": "mado24:4:b18990",
                                "zsrc": "mado24:4:61d5c9",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.2541104<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.2541104"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:104d10",
                                "ysrc": "mado24:4:2fe1a5",
                                "zsrc": "mado24:4:a8f059",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.2904096<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:24eebf",
                                "ysrc": "mado24:4:5d8a9b",
                                "zsrc": "mado24:4:ec6f29",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.2904096<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a51f48",
                                "ysrc": "mado24:4:d74b1e",
                                "zsrc": "mado24:4:155e12",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.2904096<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:2250cd",
                                "ysrc": "mado24:4:11f62e",
                                "zsrc": "mado24:4:78c336",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.2904096<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a27792",
                                "ysrc": "mado24:4:dee156",
                                "zsrc": "mado24:4:1d37d0",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.2904096<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:9f383e",
                                "ysrc": "mado24:4:c4df7a",
                                "zsrc": "mado24:4:71b25b",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.2904096<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a2a445",
                                "ysrc": "mado24:4:de35a6",
                                "zsrc": "mado24:4:4a5ddd",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.2904096<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.2904096"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:f4c300",
                                "ysrc": "mado24:4:9f637d",
                                "zsrc": "mado24:4:c96807",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.3085616<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c7772d",
                                "ysrc": "mado24:4:5ad953",
                                "zsrc": "mado24:4:664c5e",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.3085616<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:2bf22d",
                                "ysrc": "mado24:4:2a1302",
                                "zsrc": "mado24:4:2c74e6",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.3085616<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:da60b3",
                                "ysrc": "mado24:4:5036c5",
                                "zsrc": "mado24:4:affad6",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.3085616<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:93adb3",
                                "ysrc": "mado24:4:572f6e",
                                "zsrc": "mado24:4:5a7c7d",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.3085616<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c4915d",
                                "ysrc": "mado24:4:11d916",
                                "zsrc": "mado24:4:f37f11",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.3085616<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:3baf44",
                                "ysrc": "mado24:4:f033d9",
                                "zsrc": "mado24:4:f75bbd",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.3085616<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.3085616"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:2340fe",
                                "ysrc": "mado24:4:ed9294",
                                "zsrc": "mado24:4:eaedf9",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.34486239999999996<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:350c66",
                                "ysrc": "mado24:4:58f36a",
                                "zsrc": "mado24:4:2970bf",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.34486239999999996<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:fcdd14",
                                "ysrc": "mado24:4:3f197e",
                                "zsrc": "mado24:4:77ddd5",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.34486239999999996<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:6a2727",
                                "ysrc": "mado24:4:c50376",
                                "zsrc": "mado24:4:faa0bf",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.34486239999999996<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:3c6c52",
                                "ysrc": "mado24:4:995688",
                                "zsrc": "mado24:4:330eae",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.34486239999999996<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:cba569",
                                "ysrc": "mado24:4:76dfab",
                                "zsrc": "mado24:4:91591a",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.34486239999999996<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d88492",
                                "ysrc": "mado24:4:2cfeb2",
                                "zsrc": "mado24:4:321ede",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.34486239999999996<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.34486239999999996"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:7715eb",
                                "ysrc": "mado24:4:260d29",
                                "zsrc": "mado24:4:eefd61",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.38116479999999997<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:af32b4",
                                "ysrc": "mado24:4:4e3123",
                                "zsrc": "mado24:4:4d3817",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.38116479999999997<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:36c826",
                                "ysrc": "mado24:4:7dd5ba",
                                "zsrc": "mado24:4:b70fda",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.38116479999999997<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:ba7d25",
                                "ysrc": "mado24:4:748256",
                                "zsrc": "mado24:4:eabc48",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.38116479999999997<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a9bf3f",
                                "ysrc": "mado24:4:53563c",
                                "zsrc": "mado24:4:5905a3",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.38116479999999997<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:ee1290",
                                "ysrc": "mado24:4:b41334",
                                "zsrc": "mado24:4:346d90",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.38116479999999997<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a47f94",
                                "ysrc": "mado24:4:93dbfa",
                                "zsrc": "mado24:4:95425c",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.38116479999999997<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.38116479999999997"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:462d23",
                                "ysrc": "mado24:4:d468a5",
                                "zsrc": "mado24:4:37238d",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.4174656<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:04648f",
                                "ysrc": "mado24:4:cfc8a4",
                                "zsrc": "mado24:4:36417a",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.4174656<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:2b5a9e",
                                "ysrc": "mado24:4:3528f6",
                                "zsrc": "mado24:4:0cd1cb",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.4174656<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:83d600",
                                "ysrc": "mado24:4:7f1f3c",
                                "zsrc": "mado24:4:939c23",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.4174656<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:41cc0c",
                                "ysrc": "mado24:4:76f4d6",
                                "zsrc": "mado24:4:87ad93",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.4174656<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:dd0f9e",
                                "ysrc": "mado24:4:c5a521",
                                "zsrc": "mado24:4:25f0cb",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.4174656<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:206347",
                                "ysrc": "mado24:4:ab6f8b",
                                "zsrc": "mado24:4:ceef01",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.4174656<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.4174656"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:dc9a4e",
                                "ysrc": "mado24:4:e2b802",
                                "zsrc": "mado24:4:73bb5c",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.45376479999999997<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:485379",
                                "ysrc": "mado24:4:718e1d",
                                "zsrc": "mado24:4:7a0907",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.45376479999999997<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:6ee7c8",
                                "ysrc": "mado24:4:aaf938",
                                "zsrc": "mado24:4:f6c84f",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.45376479999999997<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:1bf4e5",
                                "ysrc": "mado24:4:639422",
                                "zsrc": "mado24:4:781540",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.45376479999999997<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:150087",
                                "ysrc": "mado24:4:d8f4bc",
                                "zsrc": "mado24:4:ea97c7",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.45376479999999997<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:11e5c7",
                                "ysrc": "mado24:4:2f5161",
                                "zsrc": "mado24:4:0f672d",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.45376479999999997<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:445c26",
                                "ysrc": "mado24:4:0cb106",
                                "zsrc": "mado24:4:34307f",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.45376479999999997<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.45376479999999997"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:b502b1",
                                "ysrc": "mado24:4:2f82cc",
                                "zsrc": "mado24:4:1b2b71",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.49006879999999997<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:167841",
                                "ysrc": "mado24:4:81bd77",
                                "zsrc": "mado24:4:bd4979",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.49006879999999997<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:98c866",
                                "ysrc": "mado24:4:bdd2bd",
                                "zsrc": "mado24:4:99f31b",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.49006879999999997<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:2f2eb4",
                                "ysrc": "mado24:4:d4f72d",
                                "zsrc": "mado24:4:3872fb",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.49006879999999997<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:cea928",
                                "ysrc": "mado24:4:6cb050",
                                "zsrc": "mado24:4:e563dc",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.49006879999999997<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:3f1af6",
                                "ysrc": "mado24:4:988e6d",
                                "zsrc": "mado24:4:1edcd1",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.49006879999999997<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:1272bf",
                                "ysrc": "mado24:4:a77ff8",
                                "zsrc": "mado24:4:8fcb50",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.49006879999999997<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.49006879999999997"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:1d24a9",
                                "ysrc": "mado24:4:ee8566",
                                "zsrc": "mado24:4:b93b87",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.526368<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:24d9ed",
                                "ysrc": "mado24:4:9ed6b3",
                                "zsrc": "mado24:4:338135",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.526368<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:6e2818",
                                "ysrc": "mado24:4:951a88",
                                "zsrc": "mado24:4:29775f",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.526368<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:dba64c",
                                "ysrc": "mado24:4:5103fe",
                                "zsrc": "mado24:4:ddb70b",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.526368<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:4b588d",
                                "ysrc": "mado24:4:4c7e17",
                                "zsrc": "mado24:4:d6cfa5",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.526368<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:84eea9",
                                "ysrc": "mado24:4:b830ff",
                                "zsrc": "mado24:4:f44dc2",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.526368<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:66da39",
                                "ysrc": "mado24:4:e1de6d",
                                "zsrc": "mado24:4:934205",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.526368<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.526368"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:12c65c",
                                "ysrc": "mado24:4:6d261c",
                                "zsrc": "mado24:4:95964f",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.54452<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a43f26",
                                "ysrc": "mado24:4:6cc803",
                                "zsrc": "mado24:4:a01517",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.54452<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:cad467",
                                "ysrc": "mado24:4:50e0f9",
                                "zsrc": "mado24:4:8f2307",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.54452<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:1cb91b",
                                "ysrc": "mado24:4:6df2ea",
                                "zsrc": "mado24:4:f222a0",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.54452<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:df406d",
                                "ysrc": "mado24:4:b10010",
                                "zsrc": "mado24:4:675a32",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.54452<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:68ddc9",
                                "ysrc": "mado24:4:e56000",
                                "zsrc": "mado24:4:c62b1e",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.54452<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:053172",
                                "ysrc": "mado24:4:4ae54a",
                                "zsrc": "mado24:4:730642",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.54452<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.54452"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:836c3a",
                                "ysrc": "mado24:4:94e0b7",
                                "zsrc": "mado24:4:0c340a",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.580824<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d3271e",
                                "ysrc": "mado24:4:94860d",
                                "zsrc": "mado24:4:29bcf1",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.580824<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:2ffc61",
                                "ysrc": "mado24:4:d4cc14",
                                "zsrc": "mado24:4:ca8040",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.580824<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:528689",
                                "ysrc": "mado24:4:36464b",
                                "zsrc": "mado24:4:1fb32e",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.580824<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:7b50e1",
                                "ysrc": "mado24:4:6ddc36",
                                "zsrc": "mado24:4:392e10",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.580824<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:4e9bd0",
                                "ysrc": "mado24:4:87bdbc",
                                "zsrc": "mado24:4:0fd90a",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.580824<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:02b960",
                                "ysrc": "mado24:4:088b19",
                                "zsrc": "mado24:4:5552b7",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.580824<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.580824"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:5cb536",
                                "ysrc": "mado24:4:b0ccba",
                                "zsrc": "mado24:4:c3f59f",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.6171232<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d2edc3",
                                "ysrc": "mado24:4:ed71d0",
                                "zsrc": "mado24:4:7c1765",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.6171232<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:21b02e",
                                "ysrc": "mado24:4:eed330",
                                "zsrc": "mado24:4:9e8282",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.6171232<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:12bad8",
                                "ysrc": "mado24:4:85d7a5",
                                "zsrc": "mado24:4:c6307d",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.6171232<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a3aed7",
                                "ysrc": "mado24:4:5fc275",
                                "zsrc": "mado24:4:4f285f",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.6171232<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:816376",
                                "ysrc": "mado24:4:257609",
                                "zsrc": "mado24:4:71db68",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.6171232<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:ea64e3",
                                "ysrc": "mado24:4:049d3a",
                                "zsrc": "mado24:4:bc758f",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.6171232<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.6171232"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:b5a9d4",
                                "ysrc": "mado24:4:d5c9a3",
                                "zsrc": "mado24:4:5ba82e",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.653424<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:b29fe0",
                                "ysrc": "mado24:4:dbb8e5",
                                "zsrc": "mado24:4:43c9b5",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.653424<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:df5803",
                                "ysrc": "mado24:4:6593ff",
                                "zsrc": "mado24:4:ea17da",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.653424<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:5eb461",
                                "ysrc": "mado24:4:acca72",
                                "zsrc": "mado24:4:9dee6c",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.653424<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:5f90d0",
                                "ysrc": "mado24:4:3bcb3e",
                                "zsrc": "mado24:4:7be508",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.653424<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:3c77b8",
                                "ysrc": "mado24:4:a213fb",
                                "zsrc": "mado24:4:cdc348",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.653424<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:14562e",
                                "ysrc": "mado24:4:bd3c98",
                                "zsrc": "mado24:4:965560",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.653424<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.653424"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:204561",
                                "ysrc": "mado24:4:0e1db0",
                                "zsrc": "mado24:4:7b3b63",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.6897264<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:7d060b",
                                "ysrc": "mado24:4:468e43",
                                "zsrc": "mado24:4:a27960",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.6897264<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:6f3626",
                                "ysrc": "mado24:4:df46ae",
                                "zsrc": "mado24:4:1ef787",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.6897264<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:62b7da",
                                "ysrc": "mado24:4:89ad89",
                                "zsrc": "mado24:4:888773",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.6897264<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:33fdc7",
                                "ysrc": "mado24:4:d652de",
                                "zsrc": "mado24:4:a96db6",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.6897264<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:8ff1a6",
                                "ysrc": "mado24:4:1fd8ee",
                                "zsrc": "mado24:4:702f13",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.6897264<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:b2e769",
                                "ysrc": "mado24:4:ccdc9c",
                                "zsrc": "mado24:4:8ea65e",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.6897264<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.6897264"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:adc8b7",
                                "ysrc": "mado24:4:c13fdb",
                                "zsrc": "mado24:4:983c21",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.7260272<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d3e7d5",
                                "ysrc": "mado24:4:3181be",
                                "zsrc": "mado24:4:c032eb",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.7260272<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:2dbb11",
                                "ysrc": "mado24:4:ffc219",
                                "zsrc": "mado24:4:04a486",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.7260272<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:54d48c",
                                "ysrc": "mado24:4:4b9621",
                                "zsrc": "mado24:4:b1ed13",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.7260272<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:f82930",
                                "ysrc": "mado24:4:c8bfdd",
                                "zsrc": "mado24:4:01deee",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.7260272<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:387fab",
                                "ysrc": "mado24:4:395b0d",
                                "zsrc": "mado24:4:64c907",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.7260272<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:b7dd90",
                                "ysrc": "mado24:4:d9a268",
                                "zsrc": "mado24:4:572747",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.7260272<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.7260272"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:ab72cf",
                                "ysrc": "mado24:4:80d7f8",
                                "zsrc": "mado24:4:899253",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.7441791999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:805e21",
                                "ysrc": "mado24:4:e321de",
                                "zsrc": "mado24:4:658f49",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.7441791999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:9f997f",
                                "ysrc": "mado24:4:897ed4",
                                "zsrc": "mado24:4:e16275",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.7441791999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:429946",
                                "ysrc": "mado24:4:e34258",
                                "zsrc": "mado24:4:ab11fb",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.7441791999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:4c2eda",
                                "ysrc": "mado24:4:310d2d",
                                "zsrc": "mado24:4:e18a8b",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.7441791999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:42a44b",
                                "ysrc": "mado24:4:d01b46",
                                "zsrc": "mado24:4:0acd17",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.7441791999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:86a4f6",
                                "ysrc": "mado24:4:72bef7",
                                "zsrc": "mado24:4:84e1bb",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.7441791999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.7441791999999999"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:0ed863",
                                "ysrc": "mado24:4:efdc2b",
                                "zsrc": "mado24:4:599ba6",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.7804816<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d5cbb7",
                                "ysrc": "mado24:4:f8b98c",
                                "zsrc": "mado24:4:551405",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.7804816<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:ce174d",
                                "ysrc": "mado24:4:b14ef4",
                                "zsrc": "mado24:4:91de99",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.7804816<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:e6a993",
                                "ysrc": "mado24:4:005087",
                                "zsrc": "mado24:4:860656",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.7804816<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:80daab",
                                "ysrc": "mado24:4:4eac67",
                                "zsrc": "mado24:4:6031cf",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.7804816<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d23298",
                                "ysrc": "mado24:4:42f6c6",
                                "zsrc": "mado24:4:fd4122",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.7804816<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:9b29c2",
                                "ysrc": "mado24:4:83e955",
                                "zsrc": "mado24:4:9ac852",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.7804816<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.7804816"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:dcfb8b",
                                "ysrc": "mado24:4:c30767",
                                "zsrc": "mado24:4:b8d374",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.8167823999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:e94f7a",
                                "ysrc": "mado24:4:5608b8",
                                "zsrc": "mado24:4:f6a2a2",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.8167823999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:1254a3",
                                "ysrc": "mado24:4:8d8ee9",
                                "zsrc": "mado24:4:7e4b8d",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.8167823999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:02b4ec",
                                "ysrc": "mado24:4:49d4e2",
                                "zsrc": "mado24:4:7b7060",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.8167823999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c89176",
                                "ysrc": "mado24:4:42a42b",
                                "zsrc": "mado24:4:6af258",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.8167823999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:272f66",
                                "ysrc": "mado24:4:4c1664",
                                "zsrc": "mado24:4:ee2f7e",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.8167823999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:4a8a6a",
                                "ysrc": "mado24:4:940fe7",
                                "zsrc": "mado24:4:d3aac2",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.8167823999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.8167823999999999"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:9c692c",
                                "ysrc": "mado24:4:a0b4f0",
                                "zsrc": "mado24:4:eff3b7",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.8530848<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:edfef9",
                                "ysrc": "mado24:4:05cfc4",
                                "zsrc": "mado24:4:6cfb5c",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.8530848<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c5c5ec",
                                "ysrc": "mado24:4:6bfb31",
                                "zsrc": "mado24:4:0d077c",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.8530848<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:60ee4d",
                                "ysrc": "mado24:4:824eb9",
                                "zsrc": "mado24:4:f6cb14",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.8530848<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:ae6ff4",
                                "ysrc": "mado24:4:5b8c47",
                                "zsrc": "mado24:4:c54cfd",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.8530848<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:aff06c",
                                "ysrc": "mado24:4:85fce5",
                                "zsrc": "mado24:4:57014b",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.8530848<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:649ee4",
                                "ysrc": "mado24:4:642725",
                                "zsrc": "mado24:4:ba6ec3",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.8530848<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.8530848"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c1422b",
                                "ysrc": "mado24:4:fd3209",
                                "zsrc": "mado24:4:c1ae74",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.8893856<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:1b1cd4",
                                "ysrc": "mado24:4:a0113f",
                                "zsrc": "mado24:4:33ff19",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.8893856<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:947b04",
                                "ysrc": "mado24:4:975dc8",
                                "zsrc": "mado24:4:2ae063",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.8893856<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:f25a97",
                                "ysrc": "mado24:4:c66b95",
                                "zsrc": "mado24:4:e614b1",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.8893856<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:93e82b",
                                "ysrc": "mado24:4:84e77c",
                                "zsrc": "mado24:4:4208d8",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.8893856<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:4a54d5",
                                "ysrc": "mado24:4:2fb86b",
                                "zsrc": "mado24:4:846169",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.8893856<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c5c31c",
                                "ysrc": "mado24:4:3adcec",
                                "zsrc": "mado24:4:b9bc68",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.8893856<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.8893856"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:462d81",
                                "ysrc": "mado24:4:4b1910",
                                "zsrc": "mado24:4:1537cd",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.9256848<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:ac3609",
                                "ysrc": "mado24:4:186c08",
                                "zsrc": "mado24:4:a82a09",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.9256848<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:f06198",
                                "ysrc": "mado24:4:ecd52c",
                                "zsrc": "mado24:4:774e11",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.9256848<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:526450",
                                "ysrc": "mado24:4:3d8cf4",
                                "zsrc": "mado24:4:c999f5",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.9256848<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:5c2135",
                                "ysrc": "mado24:4:4cebfd",
                                "zsrc": "mado24:4:a4bd52",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.9256848<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:5af1f2",
                                "ysrc": "mado24:4:7f236b",
                                "zsrc": "mado24:4:9c90f1",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.9256848<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:47b790",
                                "ysrc": "mado24:4:17e537",
                                "zsrc": "mado24:4:3ed856",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.9256848<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.9256848"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:9389e9",
                                "ysrc": "mado24:4:95247c",
                                "zsrc": "mado24:4:da360d",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.9438367999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:af23db",
                                "ysrc": "mado24:4:091d01",
                                "zsrc": "mado24:4:b2551e",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.9438367999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:63e6b8",
                                "ysrc": "mado24:4:cb0733",
                                "zsrc": "mado24:4:ddbc31",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.9438367999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:4c7108",
                                "ysrc": "mado24:4:f73d0c",
                                "zsrc": "mado24:4:647e72",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.9438367999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c6b9df",
                                "ysrc": "mado24:4:3d922a",
                                "zsrc": "mado24:4:4af44c",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.9438367999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:81e087",
                                "ysrc": "mado24:4:9c56dc",
                                "zsrc": "mado24:4:cef3a7",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.9438367999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:2b4608",
                                "ysrc": "mado24:4:b92440",
                                "zsrc": "mado24:4:329133",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.9438367999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.9438367999999999"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:25c989",
                                "ysrc": "mado24:4:7d0646",
                                "zsrc": "mado24:4:52ea45",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=0.9801407999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:752b1f",
                                "ysrc": "mado24:4:ba8684",
                                "zsrc": "mado24:4:0b6830",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=0.9801407999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:9bbb44",
                                "ysrc": "mado24:4:25690c",
                                "zsrc": "mado24:4:ba9d65",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=0.9801407999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:13ada3",
                                "ysrc": "mado24:4:587d51",
                                "zsrc": "mado24:4:059623",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=0.9801407999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c9efab",
                                "ysrc": "mado24:4:11a8a4",
                                "zsrc": "mado24:4:56170b",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=0.9801407999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a4a19d",
                                "ysrc": "mado24:4:cb064a",
                                "zsrc": "mado24:4:ba117e",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=0.9801407999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:27c492",
                                "ysrc": "mado24:4:6edf6f",
                                "zsrc": "mado24:4:c98e5c",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=0.9801407999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "0.9801407999999999"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a77365",
                                "ysrc": "mado24:4:fd8264",
                                "zsrc": "mado24:4:c684ea",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.01644<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:081693",
                                "ysrc": "mado24:4:c54c90",
                                "zsrc": "mado24:4:477938",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.01644<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:ac2dd9",
                                "ysrc": "mado24:4:77731e",
                                "zsrc": "mado24:4:24c5fc",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.01644<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a43887",
                                "ysrc": "mado24:4:b32f3d",
                                "zsrc": "mado24:4:8127aa",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.01644<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:5b2baf",
                                "ysrc": "mado24:4:66f607",
                                "zsrc": "mado24:4:76d886",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.01644<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:524594",
                                "ysrc": "mado24:4:0d1f93",
                                "zsrc": "mado24:4:5921b4",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.01644<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:adbdba",
                                "ysrc": "mado24:4:2dd120",
                                "zsrc": "mado24:4:80b385",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.01644<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.01644"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:83e47a",
                                "ysrc": "mado24:4:b4305b",
                                "zsrc": "mado24:4:0edb9a",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.052744<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:81eacb",
                                "ysrc": "mado24:4:9bc15b",
                                "zsrc": "mado24:4:02ff4f",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.052744<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:dec3a6",
                                "ysrc": "mado24:4:cc7f7a",
                                "zsrc": "mado24:4:18b5e6",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.052744<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:314b86",
                                "ysrc": "mado24:4:6d8e6f",
                                "zsrc": "mado24:4:e978ad",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.052744<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c54f25",
                                "ysrc": "mado24:4:536f70",
                                "zsrc": "mado24:4:5e73ac",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.052744<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:bc2443",
                                "ysrc": "mado24:4:f34eb7",
                                "zsrc": "mado24:4:cefcaa",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.052744<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:f713f1",
                                "ysrc": "mado24:4:ef3c57",
                                "zsrc": "mado24:4:a827d6",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.052744<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.052744"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c9aeee",
                                "ysrc": "mado24:4:24c0cf",
                                "zsrc": "mado24:4:684634",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.0890431999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:6c5e16",
                                "ysrc": "mado24:4:cebc75",
                                "zsrc": "mado24:4:bf8476",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.0890431999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:98dd99",
                                "ysrc": "mado24:4:42bc86",
                                "zsrc": "mado24:4:1d53a3",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.0890431999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:fa4d48",
                                "ysrc": "mado24:4:2cbdcc",
                                "zsrc": "mado24:4:df25eb",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.0890431999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:9443b7",
                                "ysrc": "mado24:4:e2d6ab",
                                "zsrc": "mado24:4:6328ad",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.0890431999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:676e3c",
                                "ysrc": "mado24:4:6c7ee8",
                                "zsrc": "mado24:4:044ae0",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.0890431999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:12b71d",
                                "ysrc": "mado24:4:cd4219",
                                "zsrc": "mado24:4:6ee244",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.0890431999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.0890431999999999"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:777dc0",
                                "ysrc": "mado24:4:311e26",
                                "zsrc": "mado24:4:6bb02a",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.1071952<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:38e6ae",
                                "ysrc": "mado24:4:306920",
                                "zsrc": "mado24:4:95c65e",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.1071952<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d1c901",
                                "ysrc": "mado24:4:1177c3",
                                "zsrc": "mado24:4:566ead",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.1071952<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:6c1518",
                                "ysrc": "mado24:4:5e6ba6",
                                "zsrc": "mado24:4:df47e2",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.1071952<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:7f272a",
                                "ysrc": "mado24:4:381391",
                                "zsrc": "mado24:4:3a7b45",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.1071952<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:dc9079",
                                "ysrc": "mado24:4:05f3da",
                                "zsrc": "mado24:4:5b323b",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.1071952<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:b94921",
                                "ysrc": "mado24:4:c704a7",
                                "zsrc": "mado24:4:9afe16",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.1071952<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.1071952"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:988dbc",
                                "ysrc": "mado24:4:78b838",
                                "zsrc": "mado24:4:716645",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.1434959999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:470ede",
                                "ysrc": "mado24:4:35cb82",
                                "zsrc": "mado24:4:011ddb",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.1434959999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:e6cdf9",
                                "ysrc": "mado24:4:c68723",
                                "zsrc": "mado24:4:d5f90b",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.1434959999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d39fa1",
                                "ysrc": "mado24:4:a65b78",
                                "zsrc": "mado24:4:c23496",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.1434959999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a4f883",
                                "ysrc": "mado24:4:caa4a2",
                                "zsrc": "mado24:4:639e53",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.1434959999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:925a5d",
                                "ysrc": "mado24:4:4a9c68",
                                "zsrc": "mado24:4:b1a183",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.1434959999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:88d616",
                                "ysrc": "mado24:4:e63f28",
                                "zsrc": "mado24:4:bd556c",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.1434959999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.1434959999999998"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:0b24db",
                                "ysrc": "mado24:4:40048b",
                                "zsrc": "mado24:4:dc3bad",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.1797984<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:5fcbef",
                                "ysrc": "mado24:4:a2b994",
                                "zsrc": "mado24:4:b3b553",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.1797984<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:ec5609",
                                "ysrc": "mado24:4:19ac97",
                                "zsrc": "mado24:4:8c44ab",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.1797984<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:cef1f6",
                                "ysrc": "mado24:4:82614b",
                                "zsrc": "mado24:4:5dba77",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.1797984<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:ba2a92",
                                "ysrc": "mado24:4:e73ffc",
                                "zsrc": "mado24:4:a4bbc5",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.1797984<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:b60e71",
                                "ysrc": "mado24:4:a338b6",
                                "zsrc": "mado24:4:07afb8",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.1797984<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:6109d1",
                                "ysrc": "mado24:4:cee64c",
                                "zsrc": "mado24:4:dcd107",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.1797984<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.1797984"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:7ad7da",
                                "ysrc": "mado24:4:b29d3a",
                                "zsrc": "mado24:4:ce00bf",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.2160992<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:3645e4",
                                "ysrc": "mado24:4:c14d51",
                                "zsrc": "mado24:4:cf6d82",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.2160992<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:bdb216",
                                "ysrc": "mado24:4:9ccfeb",
                                "zsrc": "mado24:4:8b48a8",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.2160992<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:b59f81",
                                "ysrc": "mado24:4:64dcdd",
                                "zsrc": "mado24:4:9de14b",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.2160992<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:da3f61",
                                "ysrc": "mado24:4:0c1186",
                                "zsrc": "mado24:4:fe1d7c",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.2160992<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:dc576d",
                                "ysrc": "mado24:4:f56e30",
                                "zsrc": "mado24:4:16b023",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.2160992<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:8c50a4",
                                "ysrc": "mado24:4:3e21ea",
                                "zsrc": "mado24:4:498897",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.2160992<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.2160992"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:07eddd",
                                "ysrc": "mado24:4:4b51cd",
                                "zsrc": "mado24:4:006c4e",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.2524032<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:4cb3b9",
                                "ysrc": "mado24:4:24e030",
                                "zsrc": "mado24:4:fae7bf",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.2524032<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:f89842",
                                "ysrc": "mado24:4:f20b18",
                                "zsrc": "mado24:4:e38ed3",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.2524032<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a54174",
                                "ysrc": "mado24:4:edc22c",
                                "zsrc": "mado24:4:2757ba",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.2524032<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c0fabc",
                                "ysrc": "mado24:4:ba6138",
                                "zsrc": "mado24:4:527296",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.2524032<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:e9cc0f",
                                "ysrc": "mado24:4:a30ea4",
                                "zsrc": "mado24:4:2e1fce",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.2524032<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:fb6979",
                                "ysrc": "mado24:4:d54826",
                                "zsrc": "mado24:4:03ad6d",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.2524032<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.2524032"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:5f6b30",
                                "ysrc": "mado24:4:54ea1c",
                                "zsrc": "mado24:4:ad3b06",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.2887024<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:bcb503",
                                "ysrc": "mado24:4:7765d7",
                                "zsrc": "mado24:4:4284c2",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.2887024<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:96dd99",
                                "ysrc": "mado24:4:debf74",
                                "zsrc": "mado24:4:627a62",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.2887024<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:0714d8",
                                "ysrc": "mado24:4:f506d9",
                                "zsrc": "mado24:4:ba484a",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.2887024<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:27891b",
                                "ysrc": "mado24:4:7bbcc5",
                                "zsrc": "mado24:4:f63d61",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.2887024<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:824b79",
                                "ysrc": "mado24:4:1eb6b4",
                                "zsrc": "mado24:4:7bfc84",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.2887024<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:bb5bbc",
                                "ysrc": "mado24:4:5ab12a",
                                "zsrc": "mado24:4:40202b",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.2887024<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.2887024"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:cdb5ee",
                                "ysrc": "mado24:4:830ff3",
                                "zsrc": "mado24:4:537801",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.3068544<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:76f35a",
                                "ysrc": "mado24:4:060392",
                                "zsrc": "mado24:4:c41116",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.3068544<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:e2e531",
                                "ysrc": "mado24:4:892413",
                                "zsrc": "mado24:4:2be57c",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.3068544<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:8aba7d",
                                "ysrc": "mado24:4:2807e8",
                                "zsrc": "mado24:4:ffb049",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.3068544<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:1da311",
                                "ysrc": "mado24:4:22b6cf",
                                "zsrc": "mado24:4:5221be",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.3068544<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:364716",
                                "ysrc": "mado24:4:ed7e15",
                                "zsrc": "mado24:4:41f241",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.3068544<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c649ca",
                                "ysrc": "mado24:4:d82f74",
                                "zsrc": "mado24:4:868450",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.3068544<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.3068544"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:19b68e",
                                "ysrc": "mado24:4:6254e1",
                                "zsrc": "mado24:4:616a80",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.3431568<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c7c602",
                                "ysrc": "mado24:4:af7926",
                                "zsrc": "mado24:4:6054f7",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.3431568<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:6ec8ec",
                                "ysrc": "mado24:4:8ece7d",
                                "zsrc": "mado24:4:36bfd6",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.3431568<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:fbdc74",
                                "ysrc": "mado24:4:f33615",
                                "zsrc": "mado24:4:bdc321",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.3431568<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:47d79c",
                                "ysrc": "mado24:4:aeba65",
                                "zsrc": "mado24:4:d981e6",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.3431568<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:712e38",
                                "ysrc": "mado24:4:6486cf",
                                "zsrc": "mado24:4:eacc60",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.3431568<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c3a100",
                                "ysrc": "mado24:4:9f3b3a",
                                "zsrc": "mado24:4:099378",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.3431568<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.3431568"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:36d47a",
                                "ysrc": "mado24:4:bc3935",
                                "zsrc": "mado24:4:a7c6c4",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.3794575999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:6a3677",
                                "ysrc": "mado24:4:e806de",
                                "zsrc": "mado24:4:bf831f",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.3794575999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:6bd7d4",
                                "ysrc": "mado24:4:bff2cf",
                                "zsrc": "mado24:4:8c12a9",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.3794575999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:9d8141",
                                "ysrc": "mado24:4:b8e5a5",
                                "zsrc": "mado24:4:413e2a",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.3794575999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:f82544",
                                "ysrc": "mado24:4:d982a4",
                                "zsrc": "mado24:4:518438",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.3794575999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:1adf15",
                                "ysrc": "mado24:4:4d9b83",
                                "zsrc": "mado24:4:c63d1e",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.3794575999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:124a48",
                                "ysrc": "mado24:4:8e0068",
                                "zsrc": "mado24:4:7d99ae",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.3794575999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.3794575999999998"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:272607",
                                "ysrc": "mado24:4:f7df0c",
                                "zsrc": "mado24:4:b401d0",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.41576<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:fe8249",
                                "ysrc": "mado24:4:57ab06",
                                "zsrc": "mado24:4:1639c8",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.41576<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:407b80",
                                "ysrc": "mado24:4:5d4172",
                                "zsrc": "mado24:4:8b49b0",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.41576<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:05ffbd",
                                "ysrc": "mado24:4:40feb1",
                                "zsrc": "mado24:4:3f52fa",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.41576<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:214da6",
                                "ysrc": "mado24:4:a30387",
                                "zsrc": "mado24:4:026cda",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.41576<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:22b81c",
                                "ysrc": "mado24:4:5dd8cc",
                                "zsrc": "mado24:4:2af91e",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.41576<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:08f430",
                                "ysrc": "mado24:4:aca685",
                                "zsrc": "mado24:4:03dd14",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.41576<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.41576"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c6f6ad",
                                "ysrc": "mado24:4:ae05a4",
                                "zsrc": "mado24:4:84eb70",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.4520608<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:bb5482",
                                "ysrc": "mado24:4:94260d",
                                "zsrc": "mado24:4:83b509",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.4520608<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a0be10",
                                "ysrc": "mado24:4:c23a71",
                                "zsrc": "mado24:4:7e98d0",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.4520608<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:050dbc",
                                "ysrc": "mado24:4:29f8d4",
                                "zsrc": "mado24:4:dc402a",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.4520608<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:1dbf69",
                                "ysrc": "mado24:4:44e310",
                                "zsrc": "mado24:4:5861fb",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.4520608<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:fc1086",
                                "ysrc": "mado24:4:6317dc",
                                "zsrc": "mado24:4:0ef263",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.4520608<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:83d0e3",
                                "ysrc": "mado24:4:b94445",
                                "zsrc": "mado24:4:e4e781",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.4520608<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.4520608"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d75889",
                                "ysrc": "mado24:4:af9b96",
                                "zsrc": "mado24:4:1a6406",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.4883648<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:5fcfcd",
                                "ysrc": "mado24:4:a681d2",
                                "zsrc": "mado24:4:1c1463",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.4883648<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:e2834a",
                                "ysrc": "mado24:4:55f654",
                                "zsrc": "mado24:4:1cfd16",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.4883648<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:6f2cc8",
                                "ysrc": "mado24:4:0be24d",
                                "zsrc": "mado24:4:064e98",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.4883648<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:0706ba",
                                "ysrc": "mado24:4:d315cb",
                                "zsrc": "mado24:4:4d345c",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.4883648<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d910e1",
                                "ysrc": "mado24:4:dceaf8",
                                "zsrc": "mado24:4:9c5db7",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.4883648<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:5354cc",
                                "ysrc": "mado24:4:d4fb8d",
                                "zsrc": "mado24:4:96c2c4",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.4883648<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.4883648"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:ecc249",
                                "ysrc": "mado24:4:136f51",
                                "zsrc": "mado24:4:d29acd",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.524664<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:48a47b",
                                "ysrc": "mado24:4:5d4a4c",
                                "zsrc": "mado24:4:55451d",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.524664<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:af7127",
                                "ysrc": "mado24:4:016497",
                                "zsrc": "mado24:4:90c081",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.524664<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:921d6a",
                                "ysrc": "mado24:4:3e7fea",
                                "zsrc": "mado24:4:185ada",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.524664<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:6f4916",
                                "ysrc": "mado24:4:bcbe89",
                                "zsrc": "mado24:4:170795",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.524664<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:6f9c37",
                                "ysrc": "mado24:4:7e8525",
                                "zsrc": "mado24:4:2a1fad",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.524664<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:9c5146",
                                "ysrc": "mado24:4:f4389a",
                                "zsrc": "mado24:4:bda439",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.524664<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.524664"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:debb00",
                                "ysrc": "mado24:4:1c7faa",
                                "zsrc": "mado24:4:6ce72e",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.542816<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:3cfe81",
                                "ysrc": "mado24:4:b8ff3a",
                                "zsrc": "mado24:4:fb48fb",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.542816<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:17cada",
                                "ysrc": "mado24:4:13dd49",
                                "zsrc": "mado24:4:161a4c",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.542816<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:380047",
                                "ysrc": "mado24:4:f6260e",
                                "zsrc": "mado24:4:62eb84",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.542816<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:fb6e18",
                                "ysrc": "mado24:4:a239db",
                                "zsrc": "mado24:4:8c8b38",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.542816<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d54501",
                                "ysrc": "mado24:4:f3dbd0",
                                "zsrc": "mado24:4:a3944c",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.542816<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:717b01",
                                "ysrc": "mado24:4:c6c705",
                                "zsrc": "mado24:4:80c27d",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.542816<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.542816"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:4d2c38",
                                "ysrc": "mado24:4:8b497a",
                                "zsrc": "mado24:4:dd5a19",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.5791152<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:8edce0",
                                "ysrc": "mado24:4:b4b7c3",
                                "zsrc": "mado24:4:1aa5d6",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.5791152<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:8f7011",
                                "ysrc": "mado24:4:14325a",
                                "zsrc": "mado24:4:8db606",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.5791152<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:232059",
                                "ysrc": "mado24:4:a48817",
                                "zsrc": "mado24:4:d6f929",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.5791152<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:66d1f6",
                                "ysrc": "mado24:4:530181",
                                "zsrc": "mado24:4:2c8ce1",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.5791152<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:495c68",
                                "ysrc": "mado24:4:e539fa",
                                "zsrc": "mado24:4:96034f",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.5791152<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:3ad8df",
                                "ysrc": "mado24:4:3175c3",
                                "zsrc": "mado24:4:49f254",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.5791152<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.5791152"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:41095a",
                                "ysrc": "mado24:4:c60fd2",
                                "zsrc": "mado24:4:d90431",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.6154191999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:0e2011",
                                "ysrc": "mado24:4:eb3cba",
                                "zsrc": "mado24:4:7f49f2",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.6154191999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:fd00a1",
                                "ysrc": "mado24:4:cb67e0",
                                "zsrc": "mado24:4:f70985",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.6154191999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:70c7ce",
                                "ysrc": "mado24:4:f5da32",
                                "zsrc": "mado24:4:a113ab",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.6154191999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a63b7f",
                                "ysrc": "mado24:4:ff52d0",
                                "zsrc": "mado24:4:cc50d3",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.6154191999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:0d68da",
                                "ysrc": "mado24:4:758ea2",
                                "zsrc": "mado24:4:b88e74",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.6154191999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d69606",
                                "ysrc": "mado24:4:7ec6d9",
                                "zsrc": "mado24:4:2b21ae",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.6154191999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.6154191999999998"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:b5646f",
                                "ysrc": "mado24:4:03786b",
                                "zsrc": "mado24:4:426101",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.6517199999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:088d71",
                                "ysrc": "mado24:4:f7bf14",
                                "zsrc": "mado24:4:bbe742",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.6517199999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:abe8e4",
                                "ysrc": "mado24:4:edb420",
                                "zsrc": "mado24:4:addbd5",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.6517199999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:0111d4",
                                "ysrc": "mado24:4:ef1573",
                                "zsrc": "mado24:4:26bcda",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.6517199999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:7cfa05",
                                "ysrc": "mado24:4:2a5909",
                                "zsrc": "mado24:4:c0308d",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.6517199999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:ba4a44",
                                "ysrc": "mado24:4:e26677",
                                "zsrc": "mado24:4:951eca",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.6517199999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d92738",
                                "ysrc": "mado24:4:5f3e6f",
                                "zsrc": "mado24:4:29cd39",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.6517199999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.6517199999999999"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:212e72",
                                "ysrc": "mado24:4:781498",
                                "zsrc": "mado24:4:db86a3",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.6880224<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:5969f1",
                                "ysrc": "mado24:4:c207d2",
                                "zsrc": "mado24:4:946430",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.6880224<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:07f1e6",
                                "ysrc": "mado24:4:24aedd",
                                "zsrc": "mado24:4:437d21",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.6880224<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:ddaf5a",
                                "ysrc": "mado24:4:2486f4",
                                "zsrc": "mado24:4:e20ae7",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.6880224<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:170e59",
                                "ysrc": "mado24:4:827460",
                                "zsrc": "mado24:4:c07d52",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.6880224<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:248cbd",
                                "ysrc": "mado24:4:b506be",
                                "zsrc": "mado24:4:262ba4",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.6880224<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:b99736",
                                "ysrc": "mado24:4:fe1899",
                                "zsrc": "mado24:4:02821f",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.6880224<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.6880224"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:56075e",
                                "ysrc": "mado24:4:9f9d86",
                                "zsrc": "mado24:4:32845f",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.7243232<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:77bb46",
                                "ysrc": "mado24:4:b981b6",
                                "zsrc": "mado24:4:53efa0",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.7243232<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a40c01",
                                "ysrc": "mado24:4:e5db71",
                                "zsrc": "mado24:4:db4d98",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.7243232<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:8f0ec0",
                                "ysrc": "mado24:4:0361c4",
                                "zsrc": "mado24:4:7cbf43",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.7243232<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:20e9d2",
                                "ysrc": "mado24:4:6e0b1a",
                                "zsrc": "mado24:4:cc3d28",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.7243232<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c76768",
                                "ysrc": "mado24:4:9e545f",
                                "zsrc": "mado24:4:37cf4e",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.7243232<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:1208fd",
                                "ysrc": "mado24:4:4ff82f",
                                "zsrc": "mado24:4:f1bb11",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.7243232<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.7243232"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:94990b",
                                "ysrc": "mado24:4:f45879",
                                "zsrc": "mado24:4:fb1c8c",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.7424735999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:ff2c86",
                                "ysrc": "mado24:4:d8a2dc",
                                "zsrc": "mado24:4:e4ff73",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.7424735999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:603508",
                                "ysrc": "mado24:4:ce1e93",
                                "zsrc": "mado24:4:6ff225",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.7424735999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:ec9564",
                                "ysrc": "mado24:4:8109cf",
                                "zsrc": "mado24:4:782674",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.7424735999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:069ce6",
                                "ysrc": "mado24:4:950dd4",
                                "zsrc": "mado24:4:eec008",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.7424735999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:837976",
                                "ysrc": "mado24:4:eb5cad",
                                "zsrc": "mado24:4:3ffeeb",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.7424735999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:ff1e2d",
                                "ysrc": "mado24:4:534c1b",
                                "zsrc": "mado24:4:56ad06",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.7424735999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.7424735999999998"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:305a95",
                                "ysrc": "mado24:4:afd6b9",
                                "zsrc": "mado24:4:289aea",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.7787776<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d5f355",
                                "ysrc": "mado24:4:3832d6",
                                "zsrc": "mado24:4:236449",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.7787776<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:7a5bc4",
                                "ysrc": "mado24:4:d825a0",
                                "zsrc": "mado24:4:4dfff5",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.7787776<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:ee09a4",
                                "ysrc": "mado24:4:c33780",
                                "zsrc": "mado24:4:e3a76d",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.7787776<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:37259f",
                                "ysrc": "mado24:4:7766b3",
                                "zsrc": "mado24:4:9bcafb",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.7787776<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:88f28e",
                                "ysrc": "mado24:4:118d93",
                                "zsrc": "mado24:4:32da11",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.7787776<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:4895fb",
                                "ysrc": "mado24:4:144d25",
                                "zsrc": "mado24:4:dfb757",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.7787776<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.7787776"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:f8470d",
                                "ysrc": "mado24:4:71db06",
                                "zsrc": "mado24:4:324fb8",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.8150784<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:0bee6f",
                                "ysrc": "mado24:4:4935e1",
                                "zsrc": "mado24:4:e32581",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.8150784<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:b5d4bb",
                                "ysrc": "mado24:4:46fe95",
                                "zsrc": "mado24:4:0a96ee",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.8150784<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:8090d1",
                                "ysrc": "mado24:4:27af24",
                                "zsrc": "mado24:4:2e8e2e",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.8150784<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:edc0dc",
                                "ysrc": "mado24:4:6cef8d",
                                "zsrc": "mado24:4:24bc1a",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.8150784<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:691720",
                                "ysrc": "mado24:4:b57ef1",
                                "zsrc": "mado24:4:3147f0",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.8150784<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:892a46",
                                "ysrc": "mado24:4:2bac51",
                                "zsrc": "mado24:4:f78654",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.8150784<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.8150784"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c6f818",
                                "ysrc": "mado24:4:ebaef8",
                                "zsrc": "mado24:4:8c1017",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.8513807999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:f457d2",
                                "ysrc": "mado24:4:2e4228",
                                "zsrc": "mado24:4:f27fbd",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.8513807999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:8c925c",
                                "ysrc": "mado24:4:aa3d6b",
                                "zsrc": "mado24:4:cb81a5",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.8513807999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:e0e6d9",
                                "ysrc": "mado24:4:347463",
                                "zsrc": "mado24:4:b56f1f",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.8513807999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:6e0b24",
                                "ysrc": "mado24:4:07be20",
                                "zsrc": "mado24:4:1227af",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.8513807999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:219fe3",
                                "ysrc": "mado24:4:38205d",
                                "zsrc": "mado24:4:e55600",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.8513807999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c6b486",
                                "ysrc": "mado24:4:e8b305",
                                "zsrc": "mado24:4:aa8fea",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.8513807999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.8513807999999998"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c3ae8a",
                                "ysrc": "mado24:4:d24bb0",
                                "zsrc": "mado24:4:124c57",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.8876815999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:9aa46c",
                                "ysrc": "mado24:4:a51307",
                                "zsrc": "mado24:4:46ea93",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.8876815999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:80cc2e",
                                "ysrc": "mado24:4:59e6e8",
                                "zsrc": "mado24:4:321538",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.8876815999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:09c28e",
                                "ysrc": "mado24:4:de2414",
                                "zsrc": "mado24:4:831077",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.8876815999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:2f23e9",
                                "ysrc": "mado24:4:6e09da",
                                "zsrc": "mado24:4:015137",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.8876815999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:441e5b",
                                "ysrc": "mado24:4:2fddb6",
                                "zsrc": "mado24:4:69b8a0",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.8876815999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:dcd1b6",
                                "ysrc": "mado24:4:e48834",
                                "zsrc": "mado24:4:ca6c4b",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.8876815999999998<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.8876815999999998"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:e7c5af",
                                "ysrc": "mado24:4:ca61c4",
                                "zsrc": "mado24:4:0a8e91",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.9058336<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:2a631e",
                                "ysrc": "mado24:4:342682",
                                "zsrc": "mado24:4:7cafe1",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.9058336<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:3e3de3",
                                "ysrc": "mado24:4:fe9412",
                                "zsrc": "mado24:4:7ab476",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.9058336<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:362239",
                                "ysrc": "mado24:4:c5cae8",
                                "zsrc": "mado24:4:78e477",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.9058336<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:154d1f",
                                "ysrc": "mado24:4:0d9ad7",
                                "zsrc": "mado24:4:eea44d",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.9058336<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:1ce9f6",
                                "ysrc": "mado24:4:61ff19",
                                "zsrc": "mado24:4:4b9ec0",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.9058336<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d77f54",
                                "ysrc": "mado24:4:a7acb5",
                                "zsrc": "mado24:4:a6b695",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.9058336<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.9058336"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:da5622",
                                "ysrc": "mado24:4:28e334",
                                "zsrc": "mado24:4:59cf18",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.9421328<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:1f1f89",
                                "ysrc": "mado24:4:76b3fe",
                                "zsrc": "mado24:4:ba7e08",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.9421328<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:f1ecd9",
                                "ysrc": "mado24:4:bd70d3",
                                "zsrc": "mado24:4:d7e34e",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.9421328<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a12001",
                                "ysrc": "mado24:4:5aad3c",
                                "zsrc": "mado24:4:105658",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.9421328<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:8e08c5",
                                "ysrc": "mado24:4:7d8c55",
                                "zsrc": "mado24:4:9c7456",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.9421328<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:8920f2",
                                "ysrc": "mado24:4:9b7fca",
                                "zsrc": "mado24:4:813f85",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.9421328<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:e6e41e",
                                "ysrc": "mado24:4:92ce55",
                                "zsrc": "mado24:4:13b250",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.9421328<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.9421328"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d3a9df",
                                "ysrc": "mado24:4:d99ee8",
                                "zsrc": "mado24:4:c2cd38",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=1.9784367999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:6c84a4",
                                "ysrc": "mado24:4:19a671",
                                "zsrc": "mado24:4:1cf1bb",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=1.9784367999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:206231",
                                "ysrc": "mado24:4:130414",
                                "zsrc": "mado24:4:25fb26",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=1.9784367999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d297ab",
                                "ysrc": "mado24:4:f2b918",
                                "zsrc": "mado24:4:b7f5ea",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=1.9784367999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d0e55c",
                                "ysrc": "mado24:4:2ea049",
                                "zsrc": "mado24:4:4b0d39",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=1.9784367999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:7a60f6",
                                "ysrc": "mado24:4:513af6",
                                "zsrc": "mado24:4:d24116",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=1.9784367999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d4e634",
                                "ysrc": "mado24:4:258781",
                                "zsrc": "mado24:4:eff239",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=1.9784367999999999<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "1.9784367999999999"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:4661e3",
                                "ysrc": "mado24:4:7d6a3d",
                                "zsrc": "mado24:4:5a93ca",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=2.014736<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:1a4e6d",
                                "ysrc": "mado24:4:15b3e9",
                                "zsrc": "mado24:4:dcfa58",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=2.014736<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:9ecd7d",
                                "ysrc": "mado24:4:cb3560",
                                "zsrc": "mado24:4:79e211",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=2.014736<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:369cf1",
                                "ysrc": "mado24:4:a80a8d",
                                "zsrc": "mado24:4:7bdcbb",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=2.014736<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:b0e62b",
                                "ysrc": "mado24:4:46759c",
                                "zsrc": "mado24:4:4ab553",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=2.014736<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:887e87",
                                "ysrc": "mado24:4:0ce933",
                                "zsrc": "mado24:4:882ba9",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=2.014736<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a2bb86",
                                "ysrc": "mado24:4:d2f65b",
                                "zsrc": "mado24:4:48a79b",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=2.014736<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2.014736"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:1239e9",
                                "ysrc": "mado24:4:037d01",
                                "zsrc": "mado24:4:152d47",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=2.05104<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:232c79",
                                "ysrc": "mado24:4:e6ceee",
                                "zsrc": "mado24:4:5d8b62",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=2.05104<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:54951e",
                                "ysrc": "mado24:4:892899",
                                "zsrc": "mado24:4:994f40",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=2.05104<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:59b290",
                                "ysrc": "mado24:4:d80975",
                                "zsrc": "mado24:4:337470",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=2.05104<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:288c8f",
                                "ysrc": "mado24:4:c5ae1c",
                                "zsrc": "mado24:4:5dd975",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=2.05104<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:275f0b",
                                "ysrc": "mado24:4:d9cc6c",
                                "zsrc": "mado24:4:f18e93",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=2.05104<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:16c0c7",
                                "ysrc": "mado24:4:99fe33",
                                "zsrc": "mado24:4:7c0712",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=2.05104<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2.05104"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:5126af",
                                "ysrc": "mado24:4:f23db5",
                                "zsrc": "mado24:4:d9d21d",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=2.0873424<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:735c78",
                                "ysrc": "mado24:4:61d2bc",
                                "zsrc": "mado24:4:bea52d",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=2.0873424<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:89713d",
                                "ysrc": "mado24:4:a41feb",
                                "zsrc": "mado24:4:3c6ec7",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=2.0873424<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:e1f067",
                                "ysrc": "mado24:4:984fae",
                                "zsrc": "mado24:4:234e03",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=2.0873424<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:78563a",
                                "ysrc": "mado24:4:f72e9e",
                                "zsrc": "mado24:4:70ca5f",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=2.0873424<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:74b228",
                                "ysrc": "mado24:4:ac6f07",
                                "zsrc": "mado24:4:14bd67",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=2.0873424<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:4b5797",
                                "ysrc": "mado24:4:6dafa0",
                                "zsrc": "mado24:4:752623",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=2.0873424<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2.0873424"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:553391",
                                "ysrc": "mado24:4:3198e9",
                                "zsrc": "mado24:4:ef88de",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=2.1236432<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:671cba",
                                "ysrc": "mado24:4:51c490",
                                "zsrc": "mado24:4:957b54",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=2.1236432<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:4269af",
                                "ysrc": "mado24:4:a9f2c9",
                                "zsrc": "mado24:4:eae854",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=2.1236432<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:2a25ed",
                                "ysrc": "mado24:4:037c72",
                                "zsrc": "mado24:4:9913d2",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=2.1236432<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:49229e",
                                "ysrc": "mado24:4:6fbb79",
                                "zsrc": "mado24:4:1866d6",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=2.1236432<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:cbabd1",
                                "ysrc": "mado24:4:a2e314",
                                "zsrc": "mado24:4:64172a",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=2.1236432<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:f7b848",
                                "ysrc": "mado24:4:1213f7",
                                "zsrc": "mado24:4:3cfabc",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=2.1236432<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2.1236432"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:02cc25",
                                "ysrc": "mado24:4:9b3429",
                                "zsrc": "mado24:4:f63cc4",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=2.1417952<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:11f0af",
                                "ysrc": "mado24:4:51316a",
                                "zsrc": "mado24:4:d8c800",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=2.1417952<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d07601",
                                "ysrc": "mado24:4:6e4716",
                                "zsrc": "mado24:4:946316",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=2.1417952<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:fe3b75",
                                "ysrc": "mado24:4:e4f190",
                                "zsrc": "mado24:4:e592ee",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=2.1417952<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:3291e7",
                                "ysrc": "mado24:4:2aea47",
                                "zsrc": "mado24:4:86c114",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=2.1417952<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:3b2d48",
                                "ysrc": "mado24:4:9b8345",
                                "zsrc": "mado24:4:f58f42",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=2.1417952<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:dad396",
                                "ysrc": "mado24:4:ce4fb1",
                                "zsrc": "mado24:4:7682f5",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=2.1417952<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2.1417952"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:ac7731",
                                "ysrc": "mado24:4:d5e85f",
                                "zsrc": "mado24:4:862ed4",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=2.1780944<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:85e461",
                                "ysrc": "mado24:4:8c4bef",
                                "zsrc": "mado24:4:554c33",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=2.1780944<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d506eb",
                                "ysrc": "mado24:4:5341ea",
                                "zsrc": "mado24:4:331914",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=2.1780944<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:77e435",
                                "ysrc": "mado24:4:1ab666",
                                "zsrc": "mado24:4:dd6c32",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=2.1780944<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c9ea50",
                                "ysrc": "mado24:4:e2c7ab",
                                "zsrc": "mado24:4:7e74a3",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=2.1780944<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a7eee5",
                                "ysrc": "mado24:4:df05ba",
                                "zsrc": "mado24:4:68fccf",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=2.1780944<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:cfedab",
                                "ysrc": "mado24:4:5cf168",
                                "zsrc": "mado24:4:2c98ac",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=2.1780944<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2.1780944"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c105bd",
                                "ysrc": "mado24:4:c16ad7",
                                "zsrc": "mado24:4:87201d",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=2.2143984<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:50940e",
                                "ysrc": "mado24:4:b4d559",
                                "zsrc": "mado24:4:e00ada",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=2.2143984<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:24d642",
                                "ysrc": "mado24:4:85617d",
                                "zsrc": "mado24:4:cd12a8",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=2.2143984<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:46b430",
                                "ysrc": "mado24:4:6c2d1b",
                                "zsrc": "mado24:4:6cb743",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=2.2143984<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:e91049",
                                "ysrc": "mado24:4:24ed65",
                                "zsrc": "mado24:4:8c975d",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=2.2143984<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:f24e71",
                                "ysrc": "mado24:4:fdb94c",
                                "zsrc": "mado24:4:15e230",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=2.2143984<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:45c012",
                                "ysrc": "mado24:4:534c8b",
                                "zsrc": "mado24:4:13f652",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=2.2143984<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2.2143984"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:3e2080",
                                "ysrc": "mado24:4:00c931",
                                "zsrc": "mado24:4:8cd120",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=2.2506976<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:135913",
                                "ysrc": "mado24:4:61a25e",
                                "zsrc": "mado24:4:03ac5a",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=2.2506976<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:ffa1fe",
                                "ysrc": "mado24:4:1a557e",
                                "zsrc": "mado24:4:10dab2",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=2.2506976<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:d40ade",
                                "ysrc": "mado24:4:9e9dc7",
                                "zsrc": "mado24:4:56d57c",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=2.2506976<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:946b69",
                                "ysrc": "mado24:4:8e0149",
                                "zsrc": "mado24:4:269cf1",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=2.2506976<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:3c3f7d",
                                "ysrc": "mado24:4:9f4661",
                                "zsrc": "mado24:4:b7315a",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=2.2506976<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:4c557d",
                                "ysrc": "mado24:4:aec640",
                                "zsrc": "mado24:4:712e99",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=2.2506976<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2.2506976"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:bc4e45",
                                "ysrc": "mado24:4:12bde4",
                                "zsrc": "mado24:4:5e5631",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=2.2870016<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:b00e9b",
                                "ysrc": "mado24:4:cf52ee",
                                "zsrc": "mado24:4:71cca4",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=2.2870016<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:ba8ea9",
                                "ysrc": "mado24:4:fe240a",
                                "zsrc": "mado24:4:83a0ef",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=2.2870016<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a414ec",
                                "ysrc": "mado24:4:3ea80f",
                                "zsrc": "mado24:4:14289b",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=2.2870016<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:21d95a",
                                "ysrc": "mado24:4:740b42",
                                "zsrc": "mado24:4:966d37",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=2.2870016<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:c14344",
                                "ysrc": "mado24:4:4ef33b",
                                "zsrc": "mado24:4:158799",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=2.2870016<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:49eeea",
                                "ysrc": "mado24:4:c20812",
                                "zsrc": "mado24:4:304668",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=2.2870016<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2.2870016"
                    },
                    {
                        "data": [
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#636efa"
                                },
                                "mode": "markers+lines",
                                "name": "Wrist",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:92d043",
                                "ysrc": "mado24:4:16e75b",
                                "zsrc": "mado24:4:d95813",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Wrist",
                                "hovertemplate": "finger=Wrist<br>timestamp=2.3233056<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#EF553B"
                                },
                                "mode": "markers+lines",
                                "name": "Palm",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:202c12",
                                "ysrc": "mado24:4:d070c5",
                                "zsrc": "mado24:4:e65b4f",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Palm",
                                "hovertemplate": "finger=Palm<br>timestamp=2.3233056<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#00cc96"
                                },
                                "mode": "markers+lines",
                                "name": "Thumb",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:a8547e",
                                "ysrc": "mado24:4:d559c6",
                                "zsrc": "mado24:4:310252",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Thumb",
                                "hovertemplate": "finger=Thumb<br>timestamp=2.3233056<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#ab63fa"
                                },
                                "mode": "markers+lines",
                                "name": "Index",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:b20ed4",
                                "ysrc": "mado24:4:8cce3b",
                                "zsrc": "mado24:4:268ecc",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Index",
                                "hovertemplate": "finger=Index<br>timestamp=2.3233056<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FFA15A"
                                },
                                "mode": "markers+lines",
                                "name": "Middle",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:384826",
                                "ysrc": "mado24:4:cb067a",
                                "zsrc": "mado24:4:34d333",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Middle",
                                "hovertemplate": "finger=Middle<br>timestamp=2.3233056<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#19d3f3"
                                },
                                "mode": "markers+lines",
                                "name": "Ring",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:3a898f",
                                "ysrc": "mado24:4:b21c0d",
                                "zsrc": "mado24:4:13452c",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Ring",
                                "hovertemplate": "finger=Ring<br>timestamp=2.3233056<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            },
                            {
                                "line": {
                                    "dash": "solid",
                                    "color": "#FF6692"
                                },
                                "mode": "markers+lines",
                                "name": "Pinky",
                                "type": "scatter3d",
                                "xsrc": "mado24:4:877351",
                                "ysrc": "mado24:4:60e697",
                                "zsrc": "mado24:4:1ebffd",
                                "scene": "scene",
                                "marker": {
                                    "symbol": "circle"
                                },
                                "showlegend": true,
                                "legendgroup": "Pinky",
                                "hovertemplate": "finger=Pinky<br>timestamp=2.3233056<br>x=%{x}<br>y=%{y}<br>z=%{z}<extra></extra>"
                            }
                        ],
                        "name": "2.3233056"
                    }
                ],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "range": [
                                200,
                                500
                            ],
                            "title": {
                                "text": "x"
                            }
                        },
                        "yaxis": {
                            "range": [
                                -400,
                                -100
                            ],
                            "title": {
                                "text": "y"
                            }
                        },
                        "zaxis": {
                            "range": [
                                350,
                                500
                            ],
                            "title": {
                                "text": "z"
                            }
                        },
                        "camera": {
                            "eye": {
                                "x": 2.0,
                                "y": 0.0,
                                "z": 1
                            }
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.0,
                                1.0
                            ]
                        },
                        "aspectmode": "cube"
                    },
                    "legend": {
                        "title": {
                            "text": "finger"
                        },
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "t": 60
                    },
                    "sliders": [
                        {
                            "x": 0.1,
                            "y": 0,
                            "len": 0.9,
                            "pad": {
                                "b": 10,
                                "t": 60
                            },
                            "steps": [
                                {
                                    "args": [
                                        [
                                            "0.0"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.0",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.0362992"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.0362992",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.0726"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.0726",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.090752"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.090752",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.12705439999999998"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.12705439999999998",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.1633552"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.1633552",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.18150719999999998"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.18150719999999998",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.21780639999999998"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.21780639999999998",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.2541104"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.2541104",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.2904096"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.2904096",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.3085616"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.3085616",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.34486239999999996"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.34486239999999996",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.38116479999999997"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.38116479999999997",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.4174656"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.4174656",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.45376479999999997"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.45376479999999997",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.49006879999999997"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.49006879999999997",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.526368"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.526368",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.54452"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.54452",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.580824"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.580824",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.6171232"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.6171232",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.653424"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.653424",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.6897264"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.6897264",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.7260272"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.7260272",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.7441791999999999"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.7441791999999999",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.7804816"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.7804816",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.8167823999999999"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.8167823999999999",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.8530848"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.8530848",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.8893856"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.8893856",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.9256848"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.9256848",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.9438367999999999"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.9438367999999999",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "0.9801407999999999"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "0.9801407999999999",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.01644"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.01644",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.052744"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.052744",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.0890431999999999"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.0890431999999999",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.1071952"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.1071952",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.1434959999999998"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.1434959999999998",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.1797984"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.1797984",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.2160992"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.2160992",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.2524032"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.2524032",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.2887024"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.2887024",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.3068544"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.3068544",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.3431568"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.3431568",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.3794575999999998"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.3794575999999998",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.41576"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.41576",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.4520608"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.4520608",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.4883648"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.4883648",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.524664"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.524664",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.542816"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.542816",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.5791152"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.5791152",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.6154191999999998"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.6154191999999998",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.6517199999999999"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.6517199999999999",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.6880224"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.6880224",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.7243232"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.7243232",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.7424735999999998"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.7424735999999998",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.7787776"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.7787776",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.8150784"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.8150784",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.8513807999999998"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.8513807999999998",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.8876815999999998"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.8876815999999998",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.9058336"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.9058336",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.9421328"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.9421328",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "1.9784367999999999"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "1.9784367999999999",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2.014736"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2.014736",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2.05104"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2.05104",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2.0873424"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2.0873424",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2.1236432"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2.1236432",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2.1417952"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2.1417952",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2.1780944"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2.1780944",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2.2143984"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2.2143984",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2.2506976"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2.2506976",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2.2870016"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2.2870016",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2.3233056"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "2.3233056",
                                    "method": "animate"
                                }
                            ],
                            "active": 0,
                            "xanchor": "left",
                            "yanchor": "top",
                            "currentvalue": {
                                "prefix": "timestamp="
                            }
                        }
                    ],
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "updatemenus": [
                        {
                            "x": 0.1,
                            "y": 0,
                            "pad": {
                                "r": 10,
                                "t": 70
                            },
                            "type": "buttons",
                            "buttons": [
                                {
                                    "args": [
                                        null,
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "&#9654;",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            null
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": true,
                                                "duration": 0
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "&#9724;",
                                    "method": "animate"
                                }
                            ],
                            "xanchor": "right",
                            "yanchor": "top",
                            "direction": "left",
                            "showactive": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mado24",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/29.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": "2024-04-10 06:09:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mado24",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-10T06:15:19.402870Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Anjali333/1.embed",
            "fid": "Anjali333:1",
            "filename": "Simple Scatter Plot",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Anjali333/1/9_BKDS8G91A4D478APPCPJFPPZJSGU1E.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Anjali333/1/2_JDCG0AHVIO2ZC32ASJHTD1HHSRN0CW.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Anjali333/1/8_LIS340911S49Q65HT2UL80ZQ2TQ6KV.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Anjali333/1/9_BKDS8G91A4D478APPCPJFPPZJSGU1E.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Anjali333:1",
                "plots": "https://api.plotly.com/v2/plots/Anjali333:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Anjali333"
            },
            "owner": "Anjali333",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Anjali333/1/",
            "world_readable": true,
            "date_modified": "2024-04-10T06:15:19.411Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Anjali333/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "Anjali333:0:c5d0c7",
                        "ysrc": "Anjali333:0:fce451"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Simple Scatter Plot"
                    },
                    "xaxis": {
                        "title": {
                            "text": "X-axis"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Y-axis"
                        }
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Anjali333",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/17.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-10 05:56:46",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Anjali333",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-10T06:14:56.234332Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~akshatkumar0110/10.embed",
            "fid": "akshatkumar0110:10",
            "filename": "iris_box_plot",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/akshatkumar0110/10/9_CVF9UEY30Z4V58V2AJGKGFR8SWDVWV.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/akshatkumar0110/10/2_N9ZUPRTLS9IP0PJ4022C9C9QEXZUXX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/akshatkumar0110/10/8_1X96BIT8LH5BI6CZ68ZKJYV4T96HLQ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/akshatkumar0110/10/9_CVF9UEY30Z4V58V2AJGKGFR8SWDVWV.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/akshatkumar0110:10",
                "plots": "https://api.plotly.com/v2/plots/akshatkumar0110:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=akshatkumar0110"
            },
            "owner": "akshatkumar0110",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~akshatkumar0110/10/",
            "world_readable": true,
            "date_modified": "2024-04-10T07:07:12.659Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~akshatkumar0110/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "setosa",
                        "type": "box",
                        "ysrc": "akshatkumar0110:18:9892e2"
                    },
                    {
                        "name": "versicolor",
                        "type": "box",
                        "ysrc": "akshatkumar0110:18:6e3c1e"
                    },
                    {
                        "name": "virginica",
                        "type": "box",
                        "ysrc": "akshatkumar0110:18:f7593e"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Petal Length Box Plot"
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~akshatkumar0110",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/68.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-10 05:32:03",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "akshatkumar0110",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-10T06:14:33.781684Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~yashchoudhary05/9.embed",
            "fid": "yashchoudhary05:9",
            "filename": "Dashboard Layout Example",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/yashchoudhary05/9/9_E433H4S7IRVVQX8WTCDQ2C91EXLCLP.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/yashchoudhary05/9/2_8OZ86DQC1H11BZMW1FPSGEC5AA8Q2T.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/yashchoudhary05/9/8_Q9WTJ5SAPD9Y4OT2KQ2B97H3C2DA29.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/yashchoudhary05/9/9_E433H4S7IRVVQX8WTCDQ2C91EXLCLP.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/yashchoudhary05:9",
                "plots": "https://api.plotly.com/v2/plots/yashchoudhary05:9",
                "parent": "https://api.plotly.com/v2/folders/home?user=yashchoudhary05"
            },
            "owner": "yashchoudhary05",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~yashchoudhary05/9/",
            "world_readable": true,
            "date_modified": "2024-04-10T06:14:42.540Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~yashchoudhary05/9/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "yashchoudhary05:10:69d39d",
                        "ysrc": "yashchoudhary05:10:f851fc",
                        "xaxis": "x2",
                        "yaxis": "y2"
                    },
                    {
                        "name": "Sample A",
                        "type": "box",
                        "ysrc": "yashchoudhary05:10:a403bd",
                        "xaxis": "x3",
                        "yaxis": "y3"
                    },
                    {
                        "name": "Sample B",
                        "type": "box",
                        "ysrc": "yashchoudhary05:10:bdf1ca",
                        "xaxis": "x3",
                        "yaxis": "y3"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 12,
                        "color": "blue"
                    },
                    "title": {
                        "font": {
                            "size": 24,
                            "color": "green"
                        },
                        "text": "My Dashboard"
                    },
                    "xaxis": {
                        "anchor": "y",
                        "domain": [
                            0.0,
                            0.45
                        ]
                    },
                    "yaxis": {
                        "anchor": "x",
                        "domain": [
                            0.625,
                            1.0
                        ]
                    },
                    "xaxis2": {
                        "anchor": "y2",
                        "domain": [
                            0.55,
                            1.0
                        ]
                    },
                    "xaxis3": {
                        "anchor": "y3",
                        "domain": [
                            0.0,
                            0.45
                        ]
                    },
                    "xaxis4": {
                        "anchor": "y4",
                        "domain": [
                            0.55,
                            1.0
                        ]
                    },
                    "yaxis2": {
                        "anchor": "x2",
                        "domain": [
                            0.625,
                            1.0
                        ]
                    },
                    "yaxis3": {
                        "anchor": "x3",
                        "domain": [
                            0.0,
                            0.375
                        ]
                    },
                    "yaxis4": {
                        "anchor": "x4",
                        "domain": [
                            0.0,
                            0.375
                        ]
                    },
                    "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
                            }
                        }
                    },
                    "annotations": [
                        {
                            "x": 0.225,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Custom Text",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Scatter Plot",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.375,
                            "font": {
                                "size": 16
                            },
                            "text": "Box Plot",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.25,
                            "y": 1,
                            "font": {
                                "size": 20
                            },
                            "text": "This is some custom text",
                            "xref": "paper",
                            "yref": "paper",
                            "showarrow": false
                        }
                    ],
                    "plot_bgcolor": "rgba(0, 0, 0, 0)",
                    "paper_bgcolor": "rgba(0, 0, 0, 0)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~yashchoudhary05",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/47.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-10 05:38:02",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "yashchoudhary05",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-10T06:13:47.377414Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ussitussi/6.embed",
            "fid": "ussitussi:6",
            "filename": "iscatter-plot",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ussitussi/6/9_0BLHMKEN97R874G32S96S8X1DFW05M.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ussitussi/6/2_V7PA30ZOWPQRQ63WO1QY2CUR0GXGPY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ussitussi/6/8_VNF7NF3O1YNBP3DENX34RE91TORCVL.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ussitussi/6/9_0BLHMKEN97R874G32S96S8X1DFW05M.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ussitussi:6",
                "plots": "https://api.plotly.com/v2/plots/ussitussi:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=ussitussi"
            },
            "owner": "ussitussi",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~ussitussi/6/",
            "world_readable": true,
            "date_modified": "2024-04-10T06:13:47.386Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ussitussi/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "ussitussi:5:dfb0d2",
                        "ysrc": "ussitussi:5:799d5e"
                    }
                ],
                "layout": {
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ussitussi",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-10 05:34:49",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ussitussi",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-10T06:12:45.971245Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~yashchoudhary05/7.embed",
            "fid": "yashchoudhary05:7",
            "filename": "Simple Scatter Plot",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/yashchoudhary05/7/9_DHV2ITN6D8HACF4EWA4X2W5LKGUG2U.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/yashchoudhary05/7/2_E2J1I0SNMR4DZNYDZF6TX7FHVNACFM.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/yashchoudhary05/7/8_OTFZZ7FPRU6O0V1GU34QRZDNPTESEE.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/yashchoudhary05/7/9_DHV2ITN6D8HACF4EWA4X2W5LKGUG2U.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/yashchoudhary05:7",
                "plots": "https://api.plotly.com/v2/plots/yashchoudhary05:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=yashchoudhary05"
            },
            "owner": "yashchoudhary05",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~yashchoudhary05/7/",
            "world_readable": true,
            "date_modified": "2024-04-10T06:20:44.859Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~yashchoudhary05/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "yashchoudhary05:13:2b1317",
                        "ysrc": "yashchoudhary05:13:63e635"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Simple Scatter Plot"
                    },
                    "xaxis": {
                        "title": {
                            "text": "X-axis"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Y-axis"
                        }
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~yashchoudhary05",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/47.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-10 05:38:02",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "yashchoudhary05",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-10T06:12:12.524349Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~akshatkumar0110/6.embed",
            "fid": "akshatkumar0110:6",
            "filename": "iris_scatter_plot",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/akshatkumar0110/6/9_1GYYYJKD280NUX7HORDSF81D0H9EK8.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/akshatkumar0110/6/2_3QQQKWCUX9KVZU2IXCY0ZDTYV2G6R8.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/akshatkumar0110/6/8_39664I06IQHN1XMVWXCA0C6GXBD56L.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/akshatkumar0110/6/9_1GYYYJKD280NUX7HORDSF81D0H9EK8.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/akshatkumar0110:6",
                "plots": "https://api.plotly.com/v2/plots/akshatkumar0110:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=akshatkumar0110"
            },
            "owner": "akshatkumar0110",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~akshatkumar0110/6/",
            "world_readable": true,
            "date_modified": "2024-04-10T07:07:05.009Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~akshatkumar0110/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "setosa",
                        "type": "scatter",
                        "xsrc": "akshatkumar0110:17:f3a095",
                        "ysrc": "akshatkumar0110:17:aca95d"
                    },
                    {
                        "mode": "markers",
                        "name": "versicolor",
                        "type": "scatter",
                        "xsrc": "akshatkumar0110:17:aab5f9",
                        "ysrc": "akshatkumar0110:17:8e4c8e"
                    },
                    {
                        "mode": "markers",
                        "name": "virginica",
                        "type": "scatter",
                        "xsrc": "akshatkumar0110:17:0424db",
                        "ysrc": "akshatkumar0110:17:42fcaa"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Sepal Length vs Sepal Width"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Sepal Length (cm)"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Sepal Width (cm)"
                        }
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~akshatkumar0110",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/68.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-10 05:32:03",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "akshatkumar0110",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}