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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE3KzIzJTNBMzclM0E1OS40OTIxNjglMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xOCswMCUzQTAxJTNBMDQuMzUzNTcxJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-18T00:01:04.353571Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~SRGARRITY/34.embed",
            "fid": "SRGARRITY:34",
            "filename": "plot from API (15)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/SRGARRITY:34/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/SRGARRITY:34/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/SRGARRITY:34/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/SRGARRITY:34/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/SRGARRITY:34",
                "plots": "https://api.plotly.com/v2/plots/SRGARRITY:34",
                "parent": "https://api.plotly.com/v2/folders/home?user=SRGARRITY"
            },
            "owner": "SRGARRITY",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~SRGARRITY/34/",
            "world_readable": true,
            "date_modified": "2019-06-18T00:01:05.752Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~SRGARRITY/34/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a9406d9f-8c88-48d0-9b4f-ba9ddfeaf910",
                        "type": "scatter",
                        "ysrc": "SRGARRITY:35:c61481"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~SRGARRITY",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/91.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-10 21:15:04",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "SRGARRITY",
                "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": "2019-06-17T23:58:49.135189Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~igarousi/8.embed",
            "fid": "igarousi:8",
            "filename": "water-balance",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/igarousi:8/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/igarousi:8/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/igarousi/8/8_1E59GQ0BNBLUR62J0VG3LPXT1YW33N.png",
                "list-thumb": "https://api.plotly.com/v2/files/igarousi:8/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/igarousi:8",
                "plots": "https://api.plotly.com/v2/plots/igarousi:8",
                "parent": "https://api.plotly.com/v2/folders/home?user=igarousi"
            },
            "owner": "igarousi",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Precipitation + Initial Storage, Storage, Runoff + Storage, Evapotranspiration + Runoff + Storage",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~igarousi/8/precipitation-initial-storage-storage-runoff-storage-evapotranspiration-runoff-s/",
            "world_readable": true,
            "date_modified": "2019-07-06T19:03:22.835Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~igarousi/8/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "b9c2eadb-60dd-4975-9b2c-b9518347e7d0",
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "name": "Precipitation + Initial Storage",
                        "type": "scatter",
                        "xsrc": "igarousi:9:358be1",
                        "ysrc": "igarousi:9:bb2472"
                    },
                    {
                        "uid": "3d90d034-084d-494c-aa32-d909b30925e8",
                        "line": {
                            "color": "red",
                            "width": 2
                        },
                        "name": "Storage",
                        "type": "scatter",
                        "xsrc": "igarousi:9:358be1",
                        "ysrc": "igarousi:9:d0bcdb"
                    },
                    {
                        "uid": "5633e2c5-0ed7-4714-94e2-a3d6d8cbb2ff",
                        "line": {
                            "color": "blue",
                            "width": 2
                        },
                        "name": "Runoff + Storage",
                        "type": "scatter",
                        "xsrc": "igarousi:9:358be1",
                        "ysrc": "igarousi:9:7d5a85"
                    },
                    {
                        "uid": "73301d76-05ac-4638-865c-e916049ecf28",
                        "line": {
                            "color": "green",
                            "width": 2
                        },
                        "name": "Evapotranspiration + Runoff + Storage",
                        "type": "scatter",
                        "xsrc": "igarousi:9:358be1",
                        "ysrc": "igarousi:9:714f8d"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~igarousi",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/37.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-04-02 16:45:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "igarousi",
                "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": "2019-06-17T23:55:41.503974Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ahmad.sweed92/41.embed",
            "fid": "ahmad.sweed92:41",
            "filename": "abc.html",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ahmad.sweed92:41/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/ahmad.sweed92:41/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/ahmad.sweed92:41/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/ahmad.sweed92:41/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ahmad.sweed92:41",
                "plots": "https://api.plotly.com/v2/plots/ahmad.sweed92:41",
                "parent": "https://api.plotly.com/v2/folders/home?user=ahmad.sweed92"
            },
            "owner": "ahmad.sweed92",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "GE, Vestas, Siemens, Mitsubishi, Gamesa, Kenetech, Suzlon, Acciona, Clipper, REpower, Bonus, Zond, NEG Micon, Nordex, Enron, Enron, Goldwind, DeWind, Nordtank, Danwin, Howden, China Creative Wind, Enertech, Alstrom, Sany, BHD, W.E.G., Guodain United Power, Fuhrlander, Windmatic, Northern Power Systems, Samsung, Vensys, Westinghouse, Flowind, Entegrity, Hyundai Heavy Industries, Polenko, Windmaster, Sinovel, HZ Windpower, Turbowind, PowerWind, Emergya Wind Technologies, Kenersys, Nordic, Unison, Aeronautica, AAER, Silver Eagle, Tacke, EWT, AWE, ECO, Leitwind, Elecon, Harbec, Atlantic Orient, Wind World, UMPI, Seaforth Energy, Windspire Energy, Bora, Wind Energy Solutions, Siva, Endurance, Skystream, Bergey Energy, Evance, Xzeres",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~ahmad.sweed92/41/ge-vestas-siemens-mitsubishi-gamesa-kenetech-suzlon-acciona-clipper-repower-bonu/",
            "world_readable": true,
            "date_modified": "2019-06-17T23:55:42.318Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ahmad.sweed92/41/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "GE",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:6d1d84",
                        "lonsrc": "ahmad.sweed92:42:0c4ec3",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Vestas",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:7be6c2",
                        "lonsrc": "ahmad.sweed92:42:7c0408",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Siemens",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:0ec909",
                        "lonsrc": "ahmad.sweed92:42:98f273",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Mitsubishi",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:c52325",
                        "lonsrc": "ahmad.sweed92:42:07a78f",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Gamesa",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:099001",
                        "lonsrc": "ahmad.sweed92:42:ee7122",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Kenetech",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:4fa0d4",
                        "lonsrc": "ahmad.sweed92:42:165107",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Suzlon",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:fd3e80",
                        "lonsrc": "ahmad.sweed92:42:8b8877",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Acciona",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:62e617",
                        "lonsrc": "ahmad.sweed92:42:3c4abc",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Clipper",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:ddb95f",
                        "lonsrc": "ahmad.sweed92:42:b6f47d",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "REpower",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:4e428c",
                        "lonsrc": "ahmad.sweed92:42:be7c86",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Bonus",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:4c8fcd",
                        "lonsrc": "ahmad.sweed92:42:d9020f",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Zond",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:088a6e",
                        "lonsrc": "ahmad.sweed92:42:9fd2b7",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "NEG Micon",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:152826",
                        "lonsrc": "ahmad.sweed92:42:62cb0d",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Nordex",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:9c470f",
                        "lonsrc": "ahmad.sweed92:42:583b91",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Enron",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:db2e50",
                        "lonsrc": "ahmad.sweed92:42:09da90",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Enron",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:db2e50",
                        "lonsrc": "ahmad.sweed92:42:09da90",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Goldwind",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:377479",
                        "lonsrc": "ahmad.sweed92:42:349f60",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "DeWind",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:dc8b1b",
                        "lonsrc": "ahmad.sweed92:42:3e2c34",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Nordtank",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:22677a",
                        "lonsrc": "ahmad.sweed92:42:a49c4f",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Danwin",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:c0855a",
                        "lonsrc": "ahmad.sweed92:42:57b7bf",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Howden",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:25cec2",
                        "lonsrc": "ahmad.sweed92:42:50c624",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "China Creative Wind",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:05a579",
                        "lonsrc": "ahmad.sweed92:42:94aeda",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Enertech",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:7412c6",
                        "lonsrc": "ahmad.sweed92:42:93d49a",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Alstrom",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:e6b174",
                        "lonsrc": "ahmad.sweed92:42:ece796",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Sany",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:11d200",
                        "lonsrc": "ahmad.sweed92:42:3029cd",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "BHD",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:8d10b9",
                        "lonsrc": "ahmad.sweed92:42:1b1ad6",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "W.E.G.",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:b3f7da",
                        "lonsrc": "ahmad.sweed92:42:194f0a",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Guodain United Power",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:b032f0",
                        "lonsrc": "ahmad.sweed92:42:77c35d",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Fuhrlander",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:6727b3",
                        "lonsrc": "ahmad.sweed92:42:00f36b",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Windmatic",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:a13d0c",
                        "lonsrc": "ahmad.sweed92:42:fd5784",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Northern Power Systems",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:7e9e61",
                        "lonsrc": "ahmad.sweed92:42:7866f0",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Samsung",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:8a79bb",
                        "lonsrc": "ahmad.sweed92:42:ef79a4",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Vensys",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:98acbb",
                        "lonsrc": "ahmad.sweed92:42:45516c",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Westinghouse",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:dd7f2b",
                        "lonsrc": "ahmad.sweed92:42:930483",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Flowind",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:bbec5b",
                        "lonsrc": "ahmad.sweed92:42:343f8b",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Entegrity",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:004c97",
                        "lonsrc": "ahmad.sweed92:42:1fc33b",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Hyundai Heavy Industries",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:f617a0",
                        "lonsrc": "ahmad.sweed92:42:c823bf",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Polenko",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:3a701a",
                        "lonsrc": "ahmad.sweed92:42:b4dc7f",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Windmaster",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:2a6b1e",
                        "lonsrc": "ahmad.sweed92:42:2d4ce7",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Sinovel",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:a71b67",
                        "lonsrc": "ahmad.sweed92:42:a9a635",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "HZ Windpower",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:9e69b7",
                        "lonsrc": "ahmad.sweed92:42:1aba5c",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Turbowind",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:f68679",
                        "lonsrc": "ahmad.sweed92:42:c1ba09",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "PowerWind",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:b1d66e",
                        "lonsrc": "ahmad.sweed92:42:00cdf0",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Emergya Wind Technologies",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:553d76",
                        "lonsrc": "ahmad.sweed92:42:fd0ee8",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Kenersys",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:f8e187",
                        "lonsrc": "ahmad.sweed92:42:153d5f",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Nordic",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:97e84c",
                        "lonsrc": "ahmad.sweed92:42:70c657",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Unison",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:8a4548",
                        "lonsrc": "ahmad.sweed92:42:282a77",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Aeronautica",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:18bda5",
                        "lonsrc": "ahmad.sweed92:42:ba2b71",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "AAER",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:99f39c",
                        "lonsrc": "ahmad.sweed92:42:5ba8b3",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Silver Eagle",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:86c7a6",
                        "lonsrc": "ahmad.sweed92:42:8a15d7",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Tacke",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:e81829",
                        "lonsrc": "ahmad.sweed92:42:91c3d1",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "EWT",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:a870dc",
                        "lonsrc": "ahmad.sweed92:42:b324a3",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "AWE",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:0f0121",
                        "lonsrc": "ahmad.sweed92:42:eb7546",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "ECO",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:e278e1",
                        "lonsrc": "ahmad.sweed92:42:d4e862",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Leitwind",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:6433d7",
                        "lonsrc": "ahmad.sweed92:42:e99cc4",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Elecon",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:30b89b",
                        "lonsrc": "ahmad.sweed92:42:a4ad4e",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Harbec",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:7c56b4",
                        "lonsrc": "ahmad.sweed92:42:68406e",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Atlantic Orient",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:ca7b69",
                        "lonsrc": "ahmad.sweed92:42:9c57e9",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Wind World",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:cf3997",
                        "lonsrc": "ahmad.sweed92:42:64059e",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "UMPI",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:1bad7c",
                        "lonsrc": "ahmad.sweed92:42:a2edce",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Seaforth Energy",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:690055",
                        "lonsrc": "ahmad.sweed92:42:55f83c",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Windspire Energy",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:805bdc",
                        "lonsrc": "ahmad.sweed92:42:a1b58d",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Bora",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:58c214",
                        "lonsrc": "ahmad.sweed92:42:b4bcfe",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Wind Energy Solutions",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:5819e2",
                        "lonsrc": "ahmad.sweed92:42:6b2a2d",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Siva",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:476f23",
                        "lonsrc": "ahmad.sweed92:42:b1d0ce",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Endurance",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:cf1171",
                        "lonsrc": "ahmad.sweed92:42:9025be",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Skystream",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:93ec78",
                        "lonsrc": "ahmad.sweed92:42:a1cee9",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Bergey Energy",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:b300a6",
                        "lonsrc": "ahmad.sweed92:42:ab255b",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Evance",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:14559c",
                        "lonsrc": "ahmad.sweed92:42:a2932e",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Xzeres",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:42:084ab7",
                        "lonsrc": "ahmad.sweed92:42:c76702",
                        "marker": {
                            "size": 4
                        }
                    }
                ],
                "layout": {
                    "font": {
                        "size": 11,
                        "color": "#FFFFFF"
                    },
                    "height": 800,
                    "mapbox": {
                        "zoom": 3,
                        "pitch": 0,
                        "style": "dark",
                        "center": {
                            "lat": 38,
                            "lon": -94
                        },
                        "bearing": 0,
                        "accesstoken": "insert mapbox token here"
                    },
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    },
                    "annotations": [
                        {
                            "x": 0.05,
                            "y": 0.05,
                            "font": {
                                "size": 14,
                                "color": "magenta"
                            },
                            "text": "All US wind turbines (scroll to zoom)",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "left",
                            "bgcolor": "black",
                            "borderpad": 10,
                            "showarrow": false
                        },
                        {
                            "x": 0.01,
                            "y": 0.99,
                            "font": {
                                "size": 14
                            },
                            "text": "Wind<br>Farms",
                            "yref": "paper",
                            "align": "left",
                            "showarrow": false
                        }
                    ],
                    "updatemenus": [
                        {
                            "x": 0.1,
                            "y": 1.0,
                            "pad": {
                                "r": 0,
                                "t": 10
                            },
                            "font": {
                                "size": 11,
                                "color": "#000000"
                            },
                            "active": 99,
                            "bgcolor": "#AAAAAA",
                            "buttons": [
                                {
                                    "args": [
                                        {
                                            "mapbox.zoom": 3,
                                            "mapbox.center.lat": 38,
                                            "mapbox.center.lon": -94,
                                            "annotations[0].text": "All US wind turbines (scroll to zoom)"
                                        }
                                    ],
                                    "label": "USA",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        {
                                            "mapbox.zoom": 9,
                                            "mapbox.center.lat": 35.016,
                                            "mapbox.center.lon": -118.316,
                                            "annotations[0].text": "Alta Wind Energy Center<br>Capacity MW: 1548<br>State: California<br>Developer: Terra-Gen Power<br>Owner: Terra-Gen Power<br>First Operational: 2011"
                                        }
                                    ],
                                    "label": "Alta Wind",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        {
                                            "mapbox.zoom": 9,
                                            "mapbox.center.lat": 26.366,
                                            "mapbox.center.lon": -97.65,
                                            "annotations[0].text": "Los Vientos Wind Farm<br>Capacity MW: 900<br>State: Texas<br>Developer: Duke Energy Renewables<br>Owner: Duke Energy Renewables<br>First Operational: 2012"
                                        }
                                    ],
                                    "label": "Los Vientos",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        {
                                            "mapbox.zoom": 9,
                                            "mapbox.center.lat": 45.7,
                                            "mapbox.center.lon": -120.066,
                                            "annotations[0].text": "Shepherds Flat Wind Farm<br>Capacity MW: 845<br>State: Oregon<br>Developer: Caithness Energy<br>Owner: Caithness Energy<br>First Operational: 2012"
                                        }
                                    ],
                                    "label": "Shepherds Flat",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        {
                                            "mapbox.zoom": 9,
                                            "mapbox.center.lat": 32.266,
                                            "mapbox.center.lon": -100.35,
                                            "annotations[0].text": "Roscoe Wind Project<br>Capacity MW: 781<br>State: Texas<br>Developer: E.ON Climate & Renewables<br>Owner: E.ON Climate & Renewables<br>First Operational: 2009"
                                        }
                                    ],
                                    "label": "Roscoe Wind",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        {
                                            "mapbox.zoom": 9,
                                            "mapbox.center.lat": 32.183,
                                            "mapbox.center.lon": -100.033,
                                            "annotations[0].text": "Horse Hollow Wind Energy Center<br>Capacity MW: 736<br>State: Texas<br>Developer: Blattner Energy<br>Owner: InvestEnergyGroup<br>First Operational: 2005"
                                        }
                                    ],
                                    "label": "Horse Hollow",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        {
                                            "mapbox.zoom": 9,
                                            "mapbox.center.lat": 35.1,
                                            "mapbox.center.lon": -118.283,
                                            "annotations[0].text": "Tehachapi Pass Wind Farm<br>Capacity MW: 690<br>State: California<br>Developer: Zond Corporation"
                                        }
                                    ],
                                    "label": "Tehachapi Pass",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        {
                                            "mapbox.zoom": 9,
                                            "mapbox.center.lat": 31.9,
                                            "mapbox.center.lon": -100.9,
                                            "annotations[0].text": "Capricorn Ridge Wind Farm<br>Capacity MW: 662<br>State: Texas<br>Developer: NextEra Energy Resources<br>Owner: NextEra Energy Resources<br>First Operational: 2007"
                                        }
                                    ],
                                    "label": "Capricorn Ridge",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        {
                                            "mapbox.zoom": 9,
                                            "mapbox.center.lat": 33.916,
                                            "mapbox.center.lon": -116.583,
                                            "annotations[0].text": "San Gorgonio Pass Wind Farm<br>Capacity MW: 619<br>State: California"
                                        }
                                    ],
                                    "label": "San Gorgonio",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        {
                                            "mapbox.zoom": 9,
                                            "mapbox.center.lat": 40.6,
                                            "mapbox.center.lon": -87.316,
                                            "annotations[0].text": "Fowler Ridge Wind Farm<br>Capacity MW: 600<br>State: Indiana<br>Developer: BP Alternative Energy / Dominion Resources<br>Owner: BP Alternative Energy / Dominion Resources<br>First Operational: 2010"
                                        }
                                    ],
                                    "label": "Fowler Ridge",
                                    "method": "relayout"
                                }
                            ],
                            "xanchor": "left",
                            "yanchor": "top",
                            "bordercolor": "#FFFFFF"
                        },
                        {
                            "x": 0.75,
                            "y": 0.05,
                            "font": {
                                "size": 11
                            },
                            "bgcolor": "#000000",
                            "buttons": [
                                {
                                    "args": [
                                        "mapbox.style",
                                        "dark"
                                    ],
                                    "label": "Dark",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        "mapbox.style",
                                        "light"
                                    ],
                                    "label": "Light",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        "mapbox.style",
                                        "satellite"
                                    ],
                                    "label": "Satellite",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        "mapbox.style",
                                        "satellite-streets"
                                    ],
                                    "label": "Satellite with Streets",
                                    "method": "relayout"
                                }
                            ],
                            "xanchor": "left",
                            "yanchor": "bottom",
                            "direction": "up",
                            "bordercolor": "#FFFFFF"
                        }
                    ],
                    "paper_bgcolor": "#000000"
                }
            },
            "height": 800,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ahmad.sweed92",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/48.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-05-23 21:07:36",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ahmad.sweed92",
                "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": "2019-06-17T23:53:56.604788Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~manuel.morais/755.embed",
            "fid": "manuel.morais:755",
            "filename": "Plot 755",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/manuel.morais/755/9_5MZA4Y18BEI75FYWJFFJV1Z5YHH6O4.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/manuel.morais:755/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/manuel.morais/755/8_BGOSV3WRUORX647B815YN2YAD1YKFZ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/manuel.morais/755/9_5MZA4Y18BEI75FYWJFFJV1Z5YHH6O4.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/manuel.morais:755",
                "plots": "https://api.plotly.com/v2/plots/manuel.morais:755",
                "parent": "https://api.plotly.com/v2/folders/manuel.morais:756"
            },
            "owner": "manuel.morais",
            "parent": 756,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~manuel.morais/755/",
            "world_readable": true,
            "date_modified": "2019-07-30T09:07:39.105Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~manuel.morais/755/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "e905d34d-d627-4ed5-b5da-33e0462fe896",
                        "fill": "none",
                        "line": {
                            "color": "rgb(38, 70, 83)",
                            "shape": "linear",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Price",
                        "type": "scatter",
                        "xsrc": "manuel.morais:754:0d9285",
                        "ysrc": "manuel.morais:754:5d2cc8",
                        "error_x": {
                            "type": "percent",
                            "color": "rgb(76,114,176)",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": true,
                            "thickness": 2
                        },
                        "hoveron": "points",
                        "opacity": 0.8,
                        "hoverinfo": "x+y",
                        "showlegend": true
                    },
                    {
                        "uid": "b1eaa63d-c149-42c1-a761-2b0443f7dae0",
                        "line": {
                            "dash": "dashdot",
                            "color": "rgb(255, 233, 0)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "Overshoot",
                        "type": "scatter",
                        "xsrc": "manuel.morais:754:5711e6",
                        "ysrc": "manuel.morais:754:3ce363",
                        "opacity": 0.8
                    },
                    {
                        "uid": "06abdbd9-c4dc-42b1-a82c-0ffc173a8e83",
                        "line": {
                            "color": "rgb(204, 41, 54)",
                            "width": 2
                        },
                        "mode": "lines+markers",
                        "name": "Down Turn",
                        "type": "scatter",
                        "xsrc": "manuel.morais:754:73bf50",
                        "ysrc": "manuel.morais:754:668414",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 6,
                            "color": "rgb(204, 41, 54)",
                            "opacity": 1
                        }
                    },
                    {
                        "uid": "018eb0b5-d928-47e0-83e0-53febad805c2",
                        "line": {
                            "color": "rgb(21, 114, 21)",
                            "width": 2
                        },
                        "mode": "lines+markers",
                        "name": "Up Turn",
                        "type": "scatter",
                        "xsrc": "manuel.morais:754:9be5d0",
                        "ysrc": "manuel.morais:754:55b25a"
                    },
                    {
                        "uid": "7d3c0aad-a57c-4c71-8e82-50210e131ed2",
                        "line": {
                            "dash": "dot",
                            "color": "rgb(11, 8, 45)"
                        },
                        "mode": "lines",
                        "name": "sub_Overshoot",
                        "type": "scatter",
                        "xsrc": "manuel.morais:754:8b272f",
                        "ysrc": "manuel.morais:754:e9d10e"
                    },
                    {
                        "uid": "842db133-d855-4b22-b789-d92a49f8130b",
                        "mode": "lines+markers",
                        "name": "sub_Down Turn",
                        "type": "scatter",
                        "xsrc": "manuel.morais:754:48f157",
                        "ysrc": "manuel.morais:754:034b85",
                        "marker": {
                            "color": "rgb(134, 57, 205)"
                        }
                    },
                    {
                        "uid": "7a95bc99-e21e-4e50-9bb2-28585b16abdc",
                        "mode": "lines+markers",
                        "name": "sub_Up Turn",
                        "type": "scatter",
                        "xsrc": "manuel.morais:754:af00d8",
                        "ysrc": "manuel.morais:754:6313de",
                        "marker": {
                            "color": "rgb(211, 113, 9)"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "color": "rgb(38, 70, 83)"
                    },
                    "title": {
                        "font": {
                            "size": 25,
                            "color": "rgb(38, 70, 83)",
                            "family": "Raleway"
                        },
                        "text": ""
                    },
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "2017-11-02 06:03:39.1721",
                            "2017-11-06 03:01:34.9341"
                        ],
                        "title": {
                            "font": {
                                "size": 20,
                                "family": "Raleway"
                            },
                            "text": ""
                        },
                        "tickmode": "auto",
                        "autorange": false,
                        "tickangle": 45,
                        "tickprefix": "",
                        "rangeselector": {
                            "visible": true
                        }
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            6901.157947579281,
                            7758.601089866137
                        ],
                        "title": {
                            "font": {
                                "size": 20,
                                "family": "Raleway"
                            },
                            "text": ""
                        },
                        "autorange": false,
                        "tickprefix": "$"
                    },
                    "legend": {
                        "font": {
                            "size": 12,
                            "family": "Raleway"
                        },
                        "xanchor": "auto",
                        "borderwidth": 1
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "updatemenus": [
                        {
                            "type": "buttons",
                            "active": -1,
                            "buttons": [
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                true,
                                                false,
                                                false,
                                                false
                                            ]
                                        }
                                    ],
                                    "label": "Price",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                true,
                                                false,
                                                false
                                            ]
                                        }
                                    ],
                                    "label": "Overshoot",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                true,
                                                false
                                            ]
                                        }
                                    ],
                                    "label": "Down",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                true
                                            ]
                                        }
                                    ],
                                    "label": "Up",
                                    "method": "update"
                                }
                            ],
                            "visible": false
                        }
                    ],
                    "plot_bgcolor": "rgb(235, 245, 238)",
                    "paper_bgcolor": "rgb(235, 245, 238)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~manuel.morais",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/39.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-08-16 16:35:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "manuel.morais",
                "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": "2019-06-17T23:52:09.230761Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mmoriguela/3.embed",
            "fid": "mmoriguela:3",
            "filename": "Template",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/mmoriguela/3/9_UEFOMDRWWPVKGE2RAOE5DWH3HGNRA7.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/mmoriguela:3/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mmoriguela/3/8_PUF5GNY9IWJXI9M1272SD2VMO39OQF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/mmoriguela/3/9_UEFOMDRWWPVKGE2RAOE5DWH3HGNRA7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mmoriguela:3",
                "plots": "https://api.plotly.com/v2/plots/mmoriguela:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=mmoriguela"
            },
            "owner": "mmoriguela",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~mmoriguela/3/",
            "world_readable": true,
            "date_modified": "2019-06-19T22:59:19.403Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mmoriguela/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": true,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines",
                        "name": "PWR-GVC190",
                        "type": "scatter",
                        "xsrc": "mmoriguela:2:322199",
                        "ysrc": "mmoriguela:2:9e6eac"
                    },
                    {
                        "mode": "lines",
                        "name": "PWR-GVC220",
                        "type": "scatter",
                        "xsrc": "mmoriguela:2:cabee3",
                        "ysrc": "mmoriguela:2:4ca511",
                        "stackgroup": null
                    },
                    {
                        "mode": "lines",
                        "name": "PWR-GVC250",
                        "type": "scatter",
                        "xsrc": "mmoriguela:2:c1eb38",
                        "ysrc": "mmoriguela:2:5d12e5",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            1800
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": "qv &nbsp;&nbsp;[m<sup>3</sup>/h]"
                        },
                        "nticks": 0,
                        "showgrid": true,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false,
                        "linecolor": "rgb(153, 153, 153)",
                        "showspikes": false,
                        "rangeslider": {
                            "range": [
                                147.2971605000759,
                                1603.383610872096
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "zerolinewidth": 1
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            1000
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": "psF &nbsp;&nbsp;[Pa]"
                        },
                        "showgrid": true,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false,
                        "gridwidth": 1,
                        "linecolor": "rgb(153, 153, 153)",
                        "linewidth": 1,
                        "showspikes": false
                    },
                    "autosize": true,
                    "colorway": [
                        "#e41a1c",
                        "#377eb8",
                        "#4daf4a",
                        "#984ea3",
                        "#ff7f00",
                        "#ffff33",
                        "#a65628",
                        "#f781bf",
                        "#999999"
                    ],
                    "paper_bgcolor": "rgb(255, 255, 255)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mmoriguela",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/32.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-16 18:47:38",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mmoriguela",
                "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": "2019-06-17T23:50:55.913278Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~lmartin550/0.embed",
            "fid": "lmartin550:0",
            "filename": "test",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/lmartin550:0/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/lmartin550:0/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/lmartin550:0/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/lmartin550:0/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/lmartin550:0",
                "plots": "https://api.plotly.com/v2/plots/lmartin550:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=lmartin550"
            },
            "owner": "lmartin550",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "test",
            "views": 6,
            "web_url": "https://chart-studio.plotly.com/~lmartin550/0/test/",
            "world_readable": true,
            "date_modified": "2019-06-17T23:57:50.833Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~lmartin550/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "c554813e-b338-4e4f-ae07-7191cf303715",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "InvoiceDate",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "lmartin550:1:9cc12d",
                        "ysrc": "lmartin550:1:8ff90a"
                    },
                    {
                        "uid": "c6af03f8-00ca-451a-8679-d336651611ec",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Quantity",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "lmartin550:1:9cc12d",
                        "ysrc": "lmartin550:1:9f92db"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "text": "test"
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~lmartin550",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/64.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": "2019-06-17 23:47:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "lmartin550",
                "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": "2019-06-17T23:46:33.103344Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mjara899/32.embed",
            "fid": "mjara899:32",
            "filename": "Plot 32",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/mjara899:32/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mjara899/32/2_R55RYHXWCWUVMQK0ADXZQ9LGQNVOYS.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mjara899/32/8_P9DQALVIF28RHV3UVQXKRE7OQ0V1XW.png",
                "list-thumb": "https://api.plotly.com/v2/files/mjara899:32/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mjara899:32",
                "plots": "https://api.plotly.com/v2/plots/mjara899:32",
                "parent": "https://api.plotly.com/v2/folders/home?user=mjara899"
            },
            "owner": "mjara899",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 13,
            "web_url": "https://chart-studio.plotly.com/~mjara899/32/",
            "world_readable": true,
            "date_modified": "2019-06-17T23:46:33.117Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mjara899/32/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "mjara899:31:5c5e85",
                        "ysrc": "mjara899:31:cd91b8",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(220, 10, 44, 0.8)",
                                "width": 2
                            },
                            "size": 10,
                            "color": "rgba(16, 15, 16, 0.9)"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "<b>Gráfico de Dispersión</b>"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -325479.3802435724,
                            5339393.380243572
                        ],
                        "title": {
                            "text": "<b>Impuestos</b>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "zeroline": false,
                        "autorange": true,
                        "automargin": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -261656.47735442125,
                            3511336.4773544213
                        ],
                        "title": {
                            "text": "<b>Formación bruta de Capital&nbsp;</b>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "zeroline": false,
                        "autorange": true,
                        "automargin": true
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "hovermode": "closest",
                    "showlegend": false,
                    "plot_bgcolor": "rgb(166, 161, 161)",
                    "paper_bgcolor": "rgb(240, 220, 220)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mjara899",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/61.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-04-16 22:18:28",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mjara899",
                "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": "2019-06-17T23:43:58.302614Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~avikentiev/61.embed",
            "fid": "avikentiev:61",
            "filename": "interval1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/avikentiev/61/9_6UGUWIQ0PP4MFWN0NBO046GR8V366L.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/avikentiev:61/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/avikentiev/61/8_G3AICRXF6YMS7E2Z957KFNPY6F6FBG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/avikentiev/61/9_6UGUWIQ0PP4MFWN0NBO046GR8V366L.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/avikentiev:61",
                "plots": "https://api.plotly.com/v2/plots/avikentiev:61",
                "parent": "https://api.plotly.com/v2/folders/home?user=avikentiev"
            },
            "owner": "avikentiev",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 13,
            "web_url": "https://chart-studio.plotly.com/~avikentiev/61/",
            "world_readable": true,
            "date_modified": "2019-06-18T07:52:54.501Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~avikentiev/61/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "e6a99dcb-1deb-4c5b-9a26-9ecba2cdf616",
                        "type": "bar",
                        "xsrc": "avikentiev:62:99e290",
                        "ysrc": "avikentiev:62:263654"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~avikentiev",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/24.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-12-13 01:10:34",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "avikentiev",
                "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": "2019-06-17T23:43:39.492521Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ahmad.sweed92/39.embed",
            "fid": "ahmad.sweed92:39",
            "filename": "wind-turbine-territory-dropdown.html",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ahmad.sweed92:39/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/ahmad.sweed92:39/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/ahmad.sweed92:39/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/ahmad.sweed92:39/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ahmad.sweed92:39",
                "plots": "https://api.plotly.com/v2/plots/ahmad.sweed92:39",
                "parent": "https://api.plotly.com/v2/folders/home?user=ahmad.sweed92"
            },
            "owner": "ahmad.sweed92",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "GE, Vestas, Siemens, Mitsubishi, Gamesa, Kenetech, Suzlon, Acciona, Clipper, REpower, Bonus, Zond, NEG Micon, Nordex, Enron, Enron, Goldwind, DeWind, Nordtank, Danwin, Howden, China Creative Wind, Enertech, Alstrom, Sany, BHD, W.E.G., Guodain United Power, Fuhrlander, Windmatic, Northern Power Systems, Samsung, Vensys, Westinghouse, Flowind, Entegrity, Hyundai Heavy Industries, Polenko, Windmaster, Sinovel, HZ Windpower, Turbowind, PowerWind, Emergya Wind Technologies, Kenersys, Nordic, Unison, Aeronautica, AAER, Silver Eagle, Tacke, EWT, AWE, ECO, Leitwind, Elecon, Harbec, Atlantic Orient, Wind World, UMPI, Seaforth Energy, Windspire Energy, Bora, Wind Energy Solutions, Siva, Endurance, Skystream, Bergey Energy, Evance, Xzeres",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~ahmad.sweed92/39/ge-vestas-siemens-mitsubishi-gamesa-kenetech-suzlon-acciona-clipper-repower-bonu/",
            "world_readable": true,
            "date_modified": "2019-06-17T23:52:24.066Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ahmad.sweed92/39/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "GE",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Vestas",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Siemens",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Mitsubishi",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Gamesa",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Kenetech",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Suzlon",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Acciona",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Clipper",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "REpower",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Bonus",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Zond",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "NEG Micon",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Nordex",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Enron",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Enron",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Goldwind",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "DeWind",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Nordtank",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Danwin",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Howden",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "China Creative Wind",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Enertech",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Alstrom",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Sany",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "BHD",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "W.E.G.",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Guodain United Power",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Fuhrlander",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Windmatic",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Northern Power Systems",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Samsung",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Vensys",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Westinghouse",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Flowind",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Entegrity",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Hyundai Heavy Industries",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Polenko",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Windmaster",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Sinovel",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "HZ Windpower",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Turbowind",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "PowerWind",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Emergya Wind Technologies",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Kenersys",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Nordic",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Unison",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Aeronautica",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "AAER",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Silver Eagle",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Tacke",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "EWT",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "AWE",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "ECO",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Leitwind",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Elecon",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Harbec",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Atlantic Orient",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Wind World",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "UMPI",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Seaforth Energy",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Windspire Energy",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Bora",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Wind Energy Solutions",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Siva",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Endurance",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Skystream",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Bergey Energy",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Evance",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    },
                    {
                        "name": "Xzeres",
                        "type": "scattermapbox",
                        "latsrc": "ahmad.sweed92:40:efbc70",
                        "lonsrc": "ahmad.sweed92:40:767a65",
                        "marker": {
                            "size": 4
                        }
                    }
                ],
                "layout": {
                    "font": {
                        "size": 11,
                        "color": "#FFFFFF"
                    },
                    "height": 800,
                    "mapbox": {
                        "zoom": 3,
                        "pitch": 0,
                        "style": "dark",
                        "center": {
                            "lat": 38,
                            "lon": -94
                        },
                        "bearing": 0,
                        "accesstoken": "insert mapbox token here"
                    },
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    },
                    "annotations": [
                        {
                            "x": 0.05,
                            "y": 0.05,
                            "font": {
                                "size": 14,
                                "color": "magenta"
                            },
                            "text": "All US wind turbines (scroll to zoom)",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "left",
                            "bgcolor": "black",
                            "borderpad": 10,
                            "showarrow": false
                        },
                        {
                            "x": 0.01,
                            "y": 0.99,
                            "font": {
                                "size": 14
                            },
                            "text": "Wind<br>Farms",
                            "yref": "paper",
                            "align": "left",
                            "showarrow": false
                        }
                    ],
                    "updatemenus": [
                        {
                            "x": 0.1,
                            "y": 1.0,
                            "pad": {
                                "r": 0,
                                "t": 10
                            },
                            "font": {
                                "size": 11,
                                "color": "#000000"
                            },
                            "active": 99,
                            "bgcolor": "#AAAAAA",
                            "buttons": [
                                {
                                    "args": [
                                        {
                                            "mapbox.zoom": 3,
                                            "mapbox.center.lat": 38,
                                            "mapbox.center.lon": -94,
                                            "annotations[0].text": "All US wind turbines (scroll to zoom)"
                                        }
                                    ],
                                    "label": "USA",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        {
                                            "mapbox.zoom": 9,
                                            "mapbox.center.lat": 35.016,
                                            "mapbox.center.lon": -118.316,
                                            "annotations[0].text": "Alta Wind Energy Center<br>Capacity MW: 1548<br>State: California<br>Developer: Terra-Gen Power<br>Owner: Terra-Gen Power<br>First Operational: 2011"
                                        }
                                    ],
                                    "label": "Alta Wind",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        {
                                            "mapbox.zoom": 9,
                                            "mapbox.center.lat": 26.366,
                                            "mapbox.center.lon": -97.65,
                                            "annotations[0].text": "Los Vientos Wind Farm<br>Capacity MW: 900<br>State: Texas<br>Developer: Duke Energy Renewables<br>Owner: Duke Energy Renewables<br>First Operational: 2012"
                                        }
                                    ],
                                    "label": "Los Vientos",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        {
                                            "mapbox.zoom": 9,
                                            "mapbox.center.lat": 45.7,
                                            "mapbox.center.lon": -120.066,
                                            "annotations[0].text": "Shepherds Flat Wind Farm<br>Capacity MW: 845<br>State: Oregon<br>Developer: Caithness Energy<br>Owner: Caithness Energy<br>First Operational: 2012"
                                        }
                                    ],
                                    "label": "Shepherds Flat",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        {
                                            "mapbox.zoom": 9,
                                            "mapbox.center.lat": 32.266,
                                            "mapbox.center.lon": -100.35,
                                            "annotations[0].text": "Roscoe Wind Project<br>Capacity MW: 781<br>State: Texas<br>Developer: E.ON Climate & Renewables<br>Owner: E.ON Climate & Renewables<br>First Operational: 2009"
                                        }
                                    ],
                                    "label": "Roscoe Wind",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        {
                                            "mapbox.zoom": 9,
                                            "mapbox.center.lat": 32.183,
                                            "mapbox.center.lon": -100.033,
                                            "annotations[0].text": "Horse Hollow Wind Energy Center<br>Capacity MW: 736<br>State: Texas<br>Developer: Blattner Energy<br>Owner: InvestEnergyGroup<br>First Operational: 2005"
                                        }
                                    ],
                                    "label": "Horse Hollow",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        {
                                            "mapbox.zoom": 9,
                                            "mapbox.center.lat": 35.1,
                                            "mapbox.center.lon": -118.283,
                                            "annotations[0].text": "Tehachapi Pass Wind Farm<br>Capacity MW: 690<br>State: California<br>Developer: Zond Corporation"
                                        }
                                    ],
                                    "label": "Tehachapi Pass",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        {
                                            "mapbox.zoom": 9,
                                            "mapbox.center.lat": 31.9,
                                            "mapbox.center.lon": -100.9,
                                            "annotations[0].text": "Capricorn Ridge Wind Farm<br>Capacity MW: 662<br>State: Texas<br>Developer: NextEra Energy Resources<br>Owner: NextEra Energy Resources<br>First Operational: 2007"
                                        }
                                    ],
                                    "label": "Capricorn Ridge",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        {
                                            "mapbox.zoom": 9,
                                            "mapbox.center.lat": 33.916,
                                            "mapbox.center.lon": -116.583,
                                            "annotations[0].text": "San Gorgonio Pass Wind Farm<br>Capacity MW: 619<br>State: California"
                                        }
                                    ],
                                    "label": "San Gorgonio",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        {
                                            "mapbox.zoom": 9,
                                            "mapbox.center.lat": 40.6,
                                            "mapbox.center.lon": -87.316,
                                            "annotations[0].text": "Fowler Ridge Wind Farm<br>Capacity MW: 600<br>State: Indiana<br>Developer: BP Alternative Energy / Dominion Resources<br>Owner: BP Alternative Energy / Dominion Resources<br>First Operational: 2010"
                                        }
                                    ],
                                    "label": "Fowler Ridge",
                                    "method": "relayout"
                                }
                            ],
                            "xanchor": "left",
                            "yanchor": "top",
                            "bordercolor": "#FFFFFF"
                        },
                        {
                            "x": 0.75,
                            "y": 0.05,
                            "font": {
                                "size": 11
                            },
                            "bgcolor": "#000000",
                            "buttons": [
                                {
                                    "args": [
                                        "mapbox.style",
                                        "dark"
                                    ],
                                    "label": "Dark",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        "mapbox.style",
                                        "light"
                                    ],
                                    "label": "Light",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        "mapbox.style",
                                        "satellite"
                                    ],
                                    "label": "Satellite",
                                    "method": "relayout"
                                },
                                {
                                    "args": [
                                        "mapbox.style",
                                        "satellite-streets"
                                    ],
                                    "label": "Satellite with Streets",
                                    "method": "relayout"
                                }
                            ],
                            "xanchor": "left",
                            "yanchor": "bottom",
                            "direction": "up",
                            "bordercolor": "#FFFFFF"
                        }
                    ],
                    "paper_bgcolor": "#000000"
                }
            },
            "height": 800,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ahmad.sweed92",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/48.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-05-23 21:07:36",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ahmad.sweed92",
                "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": "2019-06-17T23:37:59.492168Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~igarousi/6.embed",
            "fid": "igarousi:6",
            "filename": "line-mode-styled",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/igarousi:6/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/igarousi:6/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/igarousi/6/8_9HKHPDZ306SFNESJ70KGZDGMCKUWY5.png",
                "list-thumb": "https://api.plotly.com/v2/files/igarousi:6/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/igarousi:6",
                "plots": "https://api.plotly.com/v2/plots/igarousi:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=igarousi"
            },
            "owner": "igarousi",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Precipitation + Initial Storage",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~igarousi/6/precipitation-initial-storage/",
            "world_readable": true,
            "date_modified": "2019-06-17T23:45:19.738Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~igarousi/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "ba71bd27-8747-4c89-9270-3a6325398f5a",
                        "line": {
                            "color": "aliceblue",
                            "width": 2
                        },
                        "name": "Precipitation + Initial Storage",
                        "type": "scatter",
                        "xsrc": "igarousi:7:e49024",
                        "ysrc": "igarousi:7:aab90d"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~igarousi",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/37.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-04-02 16:45:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "igarousi",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}