Grids


Jump to API response

Grids are the core of Plotly's data API. A plot's traces reference underlying grid data. This endpoint allows API creation and manipulation of grids.

Reference

Authorization


Any user with or without a Plotly account may view public grid files. For private files, see authentication.

Grid Meta Information

The grid meta information extends the file meta information with the following fields:


write-only fields:

  • data only accessible from the create endpoint

read-write fields:

  • cols only writable from the col endpoint
  • rows only accessible from the row endpoint
  • metadata

Actions


create

To create a grid, POST to this endpoint with any of the writable grid fields included in the body of the request. The only required field is data.

The data field takes the following form:

{
    "cols":
        {
            "first column": {"data": ["a", "b", "c"], "order": 0},
            "second column": {"data": [1, 2, 3], "order": 1}
        }
}

Note: each column of the cols field is a key-value pair with the key corresponding to the column header name and the value corresponding to an object specifying the column's order and data.

Example:

// POST https://api.plotly.com/v2/grids --> 201 Created
{
    "data": {"cols": {"first": {"data": [1,2,3], "order": 0}}}
}

// POST https://api.plotly.com/v2/grids --> 201 Created
{
    "data": "{\"cols\": {\"first\": {\"data\": [1,2,3], \"order\": 0}}}",
    "parent": 932,
    "filename": "new grid"
}

Note: the integer associated with the parent field corresponds to a file with idlocal 932. This file must have filetype fold for a sucessful POST.

When creating a grid, you can optionally specify source fields to indicate where a grid has come from:

  • source_fid: the fid of a grid that was copied (and presumably edited) to produce this one

  • source_url: the URL this grid was imported from

  • source_referer: if source_url is given, you can optionally add this field to give the URL of an index page where the source_url link appears. (This could give more information about the data, or present it in alternate formats.)


upload

A raw file may be uploaded by making a POST request to the upload endpoint. This will create a new grid for a single 2D data source, or a folder containing multiple grids when there are multiple data sources (e.g. a spreadsheet with many tabs, or a zip archive). To determine which type of file has been created, check the filetype key in the response, which will either be grid or fold.

The following options may be passed as HTTP headers to control the upload.

  • X-File-Name: gives the filename of the file being uploaded. The extension is used as a first guess of the file type for parsing and will be used as the created filename if possible.

  • Plotly-World-Readable: controls the visibility of the created grid or folder. May be true or false. Defaults to false.

  • Plotly-Parent: gives the parent folder id, like for create.

  • Plotly-Parent-Path: gives the path to the parent folder, like for create.


row

The row endpoint allows you to append existing grids with new information. This endpoint requires a POST and returns a 201 Created response on success.

Examples:

// POST https://api.plotly.com/v2/grids/henreitta:88/row --> 201 Created
// Add three rows to the existing grid with fid henrietta:88
{
    "rows": [[1, 0.5], [2, 0.1], [3, 0.7]]
}


col

The col endpoint allows you to retrieve existing columns of a grid via a GET request, completely replace existing columns of a grid via a PUT request, or append existing grids with full columns of new data via a POST request. Both the GET and PUT requests require the existing columns to be specified via a uid query (see examples below) and return a 200 OK response on success. The data, name and order fields of a column can be updated via a PUT request. The POST request does not take a column query and returns a 201 Created response on success.

Example GET:

// GET https://api.plotly.com/v2/grids/henreitta:88/col?uid=some_uid --> 200 OK
// Retrieve a column with uid "some_uid"

// GET https://api.plotly.com/v2/grids/henreitta:88/col?uid=some_uid,some_other_uid --> 200 OK
// Retrieve multiple columns with uids "some_uid" and "some_other_uid"

// GET https://api.plotly.com/v2/grids/henreitta:88/col?uid=not_contained_in_grid --> 400 Bad Request
// Attempt to retrieve a column not contained in grid

Example PUT:

// PUT https://api.plotly.com/v2/grids/henreitta:88/col?uid=some_uid --> 200 OK
// Replace a column with uid "some_uid"
{
    "cols": "[{\"data\": [0, 1], \"name\": \"new name\"}]"
}

// PUT https://api.plotly.com/v2/grids/henreitta:88/col?uid=some_uid,some_other_uid --> 200 OK
// Replace multiple columns with uids "some_uid" and "some_other_uid"
{
    "cols": "[{\"data\": [0, 1], \"order\": 0}, {\"data\": [\"a\", \"b\"]}]"
}

// PUT https://api.plotly.com/v2/grids/henreitta:88/col?uid=not_contained_in_grid --> 400 Bad Request
// Attempt to replace a column not contained in grid
{
    "cols": "[{\"data\": [0, 1]}]"
}

// PUT https://api.plotly.com/v2/grids/henreitta:88/col?uid=only_one_uid_specified --> 400 Bad Request
// Attempt to update a column with multiple columns of data
{
    "cols": "[{\"data\": [0, 1]}, {\"data\": [\"a\", \"b\"]}]"
}

Note: The data to be updated via a PUT request will respect the order of the columns specified by the uids of the query.

Example POST:

// POST https://api.plotly.com/v2/grids/henreitta:88/col --> 400 Bad Request
// Add two columns
{
    "cols": [{"name": "col name 1", "data": [0, 1]}, {"name": "col name 2", "data": [9, 9]}]
}

// POST https://api.plotly.com/v2/grids/henreitta:88/col --> 201 Created
// Add two columns
{
    "cols": "[{\"name\": \"col name 1\", \"data\": [0, 1]}, {\"name\": \"col name 2\", \"data\": [9, 9]}]"
}


retrieve

The grid meta information can be retrieved by making a GET request to the grids endpoint.

Example:

// GET https://api.plotly.com/v2/grids/henrietta:88


content

The contents of a grid can be downloaded via a GET request to the content resource. The Content-Type header will be appropriately set for the response body.

Example:

// GET https://api.plotly.com/v2/grids/henrietta:88/content


destroy

To delete an grid, make a DELETE request to the grids endpoint and include the fid for the grid file. A successful response will have a status code of 204 No Content.

Example:

// DELETE https://api.plotly.com/v2/grids/henrietta:88 --> 204 No Content


partial update

To update the writable meta information of an existing grid, you make a PATCH request to the grids endpoint and include the fid for the grid file. A successful response will have a status code of 200 OK.

Example:

// PATCH https://api.plotly.com/v2/grids/henrietta:88 --> 200 OK
{
    "metadata": "{\"content\": \"copy copy copy copy copy\"}",
    "filename": "my new and unique grid name",
    "parent": 123
}


update

To completely replace the writable meta information of an existing grid, you make a PUT request to the grids endpoint and include the fid for the grid file. A successful response will have a status code of 200 OK.

Example:

// PUT https://api.plotly.com/v2/grids/henrietta:88 --> 200 OK
{
    "parent": -1,
    "world_readable": true,
    "filename": "my new and unique grid name"
    "metadata": "{\"content\": \"copy copy copy copy copy\"}",
}


drop reference

Grids may reference other files in Plotly called extras. Because extras may be referenced from many files, instead of deleting them to remove them, you may just dereference them via a POST request to this endpoint. This is a safer approach and is used to manage extras in the Plotly webapp. A successful response will have a status code of 200 OK.

Example:

// POST https://api.plotly.com/v2/grids/henrietta:88/drop_reference --> 200 OK
{
    "fid": "henrietta:99"
}


trash

A POST request to this endpoint allows for the recoverable trashing of the grid specified in the detail. A successful response will have a status code of 200 OK.

Example:

// POST https://api.plotly.com/v2/grids/henrietta:88/trash ---> 200 OK

Note: This request is idempotent. Trashing a folder that is already trashed will also succeed and return 200 OK.


restore

This endpoint allows for a trashed grid to be restored via a POST request. Only the owner of the grid has permission to restore that grid. A successful restore response will have a status code of 200 OK.

Example:

// POST https://api.plotly.com/v2/grids/henrietta:88/restore ---> 200

Note: This request is idempotent. Restoring a grid that is not yet trashed will also succeed and return 200 OK.


permanent delete

A DELETE request to this endpoint allows for the permanent deletion of the grid specified in the endpoint detail. A successful response will have a status code of 204 No Content.

Example:

// DELETE https://api.plotly.com/v2/grids/plotlvr:9/permanent_delete ---> 204 No Content


lookup

Get a grid using its path and parent instead of using its fid. If the parent is not specified, it's assumed to be a user's home folder. The path given is assumed to be relative to the parent.

By default, the user making the request is assumed to be the owner of the file being found. However, this is controlled via the user query param.

query params

Only the path param is required.

  • path (required) The '/'-delimited path specifying the grid location.
  • parent (optional) The parent id, an integer, which the path is relative to.
  • user (optional) The username of the owner of the file.

Examples:

// GET https://api.plotly.com/v2/grids/lookup?path=my_folder/my_file ---> 200 OK

// GET https://api.plotly.com/v2/grids/lookup?parent=200&path=my_file ---> 200 OK

// GET https://api.plotly.com/v2/grids/lookup?user=wonderwoman&path=her_folder/her_file ---> 200 OK

// GET https://api.plotly.com/v2/grids/lookup?user=wonderwoman&parent=22&path=her_file ---> 200 OK


GET /v2/grids/IPython.Demo:12077/col?format=api
HTTP 200 OK
Allow: GET, POST, PUT, DELETE, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "cols": [
        {
            "data": [
                0,
                1,
                2,
                3,
                4,
                5,
                6,
                7,
                8,
                9,
                10,
                11,
                12,
                13,
                14,
                15,
                16,
                17,
                18,
                19,
                20,
                21,
                22,
                23,
                24,
                25,
                26,
                27,
                28,
                29,
                30,
                31,
                32,
                33,
                34,
                35,
                36,
                37,
                38,
                39,
                40,
                41,
                42,
                43,
                44,
                45,
                46,
                47,
                48,
                49,
                50,
                51,
                52,
                53,
                54,
                55,
                56,
                57,
                58,
                59,
                60,
                61,
                62,
                63,
                64,
                65,
                66,
                67,
                68,
                69,
                70,
                71,
                72,
                73,
                74,
                75,
                76,
                77,
                78,
                79,
                80,
                81,
                82,
                83,
                84,
                85,
                86,
                87,
                88,
                89,
                90,
                91,
                92,
                93,
                94,
                95,
                96,
                97,
                98,
                99,
                100,
                101,
                102,
                103,
                104,
                105,
                106,
                107,
                108,
                109,
                110,
                111,
                112,
                113,
                114,
                115,
                116,
                117,
                118,
                119,
                120,
                121,
                122,
                123,
                124,
                125,
                126,
                127,
                128,
                129,
                130,
                131,
                132,
                133,
                134,
                135,
                136,
                137,
                138,
                139,
                140,
                141,
                142,
                143,
                144,
                145,
                146,
                147,
                148,
                149,
                150,
                151,
                152,
                153,
                154,
                155,
                156,
                157,
                158,
                159,
                160,
                161,
                162,
                163,
                164,
                165,
                166,
                167,
                168,
                169,
                170,
                171,
                172,
                173,
                174,
                175,
                176,
                177,
                178,
                179,
                180,
                181,
                182,
                183,
                184,
                185,
                186,
                187,
                188,
                189,
                190,
                191,
                192,
                193,
                194,
                195,
                196,
                197,
                198,
                199,
                200,
                201,
                202,
                203,
                204,
                205,
                206,
                207,
                208,
                209,
                210,
                211,
                212,
                213,
                214,
                215,
                216,
                217,
                218,
                219,
                220,
                221,
                222,
                223,
                224,
                225,
                226,
                227,
                228,
                229,
                230,
                231,
                232,
                233,
                234,
                235,
                236,
                237,
                238,
                239,
                240,
                241,
                242,
                243
            ],
            "order": 0,
            "uid": "80d143",
            "name": "data.0.x"
        },
        {
            "data": [
                16.99,
                10.34,
                21.01,
                23.68,
                24.59,
                25.29,
                8.77,
                26.88,
                15.04,
                14.78,
                10.27,
                35.26,
                15.42,
                18.43,
                14.83,
                21.58,
                10.33,
                16.29,
                16.97,
                20.65,
                17.92,
                20.29,
                15.77,
                39.42,
                19.82,
                17.81,
                13.37,
                12.69,
                21.7,
                19.65,
                9.55,
                18.35,
                15.06,
                20.69,
                17.78,
                24.06,
                16.31,
                16.93,
                18.69,
                31.27,
                16.04,
                17.46,
                13.94,
                9.68,
                30.4,
                18.29,
                22.23,
                32.4,
                28.55,
                18.04,
                12.54,
                10.29,
                34.81,
                9.94,
                25.56,
                19.49,
                38.01,
                26.41,
                11.24,
                48.27,
                20.29,
                13.81,
                11.02,
                18.29,
                17.59,
                20.08,
                16.45,
                3.07,
                20.23,
                15.01,
                12.02,
                17.07,
                26.86,
                25.28,
                14.73,
                10.51,
                17.92,
                27.2,
                22.76,
                17.29,
                19.44,
                16.66,
                10.07,
                32.68,
                15.98,
                34.83,
                13.03,
                18.28,
                24.71,
                21.16,
                28.97,
                22.49,
                5.75,
                16.32,
                22.75,
                40.17,
                27.28,
                12.03,
                21.01,
                12.46,
                11.35,
                15.38,
                44.3,
                22.42,
                20.92,
                15.36,
                20.49,
                25.21,
                18.24,
                14.31,
                14.0,
                7.25,
                38.07,
                23.95,
                25.71,
                17.31,
                29.93,
                10.65,
                12.43,
                24.08,
                11.69,
                13.42,
                14.26,
                15.95,
                12.48,
                29.8,
                8.52,
                14.52,
                11.38,
                22.82,
                19.08,
                20.27,
                11.17,
                12.26,
                18.26,
                8.51,
                10.33,
                14.15,
                16.0,
                13.16,
                17.47,
                34.3,
                41.19,
                27.05,
                16.43,
                8.35,
                18.64,
                11.87,
                9.78,
                7.51,
                14.07,
                13.13,
                17.26,
                24.55,
                19.77,
                29.85,
                48.17,
                25.0,
                13.39,
                16.49,
                21.5,
                12.66,
                16.21,
                13.81,
                17.51,
                24.52,
                20.76,
                31.71,
                10.59,
                10.63,
                50.81,
                15.81,
                7.25,
                31.85,
                16.82,
                32.9,
                17.89,
                14.48,
                9.6,
                34.63,
                34.65,
                23.33,
                45.35,
                23.17,
                40.55,
                20.69,
                20.9,
                30.46,
                18.15,
                23.1,
                15.69,
                19.81,
                28.44,
                15.48,
                16.58,
                7.56,
                10.34,
                43.11,
                13.0,
                13.51,
                18.71,
                12.74,
                13.0,
                16.4,
                20.53,
                16.47,
                26.59,
                38.73,
                24.27,
                12.76,
                30.06,
                25.89,
                48.33,
                13.27,
                28.17,
                12.9,
                28.15,
                11.59,
                7.74,
                30.14,
                12.16,
                13.42,
                8.58,
                15.98,
                13.42,
                16.27,
                10.09,
                20.45,
                13.28,
                22.12,
                24.01,
                15.69,
                11.61,
                10.77,
                15.53,
                10.07,
                12.6,
                32.83,
                35.83,
                29.03,
                27.18,
                22.67,
                17.82,
                18.78
            ],
            "order": 1,
            "uid": "797504",
            "name": "data.0.y"
        },
        {
            "data": [
                0,
                1,
                2,
                3,
                4,
                5,
                6,
                7,
                8,
                9,
                10,
                11,
                12,
                13,
                14,
                15,
                16,
                17,
                18,
                19,
                20,
                21,
                22,
                23,
                24,
                25,
                26,
                27,
                28,
                29,
                30,
                31,
                32,
                33,
                34,
                35,
                36,
                37,
                38,
                39,
                40,
                41,
                42,
                43,
                44,
                45,
                46,
                47,
                48,
                49,
                50,
                51,
                52,
                53,
                54,
                55,
                56,
                57,
                58,
                59,
                60,
                61,
                62,
                63,
                64,
                65,
                66,
                67,
                68,
                69,
                70,
                71,
                72,
                73,
                74,
                75,
                76,
                77,
                78,
                79,
                80,
                81,
                82,
                83,
                84,
                85,
                86,
                87,
                88,
                89,
                90,
                91,
                92,
                93,
                94,
                95,
                96,
                97,
                98,
                99,
                100,
                101,
                102,
                103,
                104,
                105,
                106,
                107,
                108,
                109,
                110,
                111,
                112,
                113,
                114,
                115,
                116,
                117,
                118,
                119,
                120,
                121,
                122,
                123,
                124,
                125,
                126,
                127,
                128,
                129,
                130,
                131,
                132,
                133,
                134,
                135,
                136,
                137,
                138,
                139,
                140,
                141,
                142,
                143,
                144,
                145,
                146,
                147,
                148,
                149,
                150,
                151,
                152,
                153,
                154,
                155,
                156,
                157,
                158,
                159,
                160,
                161,
                162,
                163,
                164,
                165,
                166,
                167,
                168,
                169,
                170,
                171,
                172,
                173,
                174,
                175,
                176,
                177,
                178,
                179,
                180,
                181,
                182,
                183,
                184,
                185,
                186,
                187,
                188,
                189,
                190,
                191,
                192,
                193,
                194,
                195,
                196,
                197,
                198,
                199,
                200,
                201,
                202,
                203,
                204,
                205,
                206,
                207,
                208,
                209,
                210,
                211,
                212,
                213,
                214,
                215,
                216,
                217,
                218,
                219,
                220,
                221,
                222,
                223,
                224,
                225,
                226,
                227,
                228,
                229,
                230,
                231,
                232,
                233,
                234,
                235,
                236,
                237,
                238,
                239,
                240,
                241,
                242,
                243
            ],
            "order": 2,
            "uid": "7b3669",
            "name": "data.1.x"
        },
        {
            "data": [
                1.01,
                1.66,
                3.5,
                3.31,
                3.61,
                4.71,
                2.0,
                3.12,
                1.96,
                3.23,
                1.71,
                5.0,
                1.57,
                3.0,
                3.02,
                3.92,
                1.67,
                3.71,
                3.5,
                3.35,
                4.08,
                2.75,
                2.23,
                7.58,
                3.18,
                2.34,
                2.0,
                2.0,
                4.3,
                3.0,
                1.45,
                2.5,
                3.0,
                2.45,
                3.27,
                3.6,
                2.0,
                3.07,
                2.31,
                5.0,
                2.24,
                2.54,
                3.06,
                1.32,
                5.6,
                3.0,
                5.0,
                6.0,
                2.05,
                3.0,
                2.5,
                2.6,
                5.2,
                1.56,
                4.34,
                3.51,
                3.0,
                1.5,
                1.76,
                6.73,
                3.21,
                2.0,
                1.98,
                3.76,
                2.64,
                3.15,
                2.47,
                1.0,
                2.01,
                2.09,
                1.97,
                3.0,
                3.14,
                5.0,
                2.2,
                1.25,
                3.08,
                4.0,
                3.0,
                2.71,
                3.0,
                3.4,
                1.83,
                5.0,
                2.03,
                5.17,
                2.0,
                4.0,
                5.85,
                3.0,
                3.0,
                3.5,
                1.0,
                4.3,
                3.25,
                4.73,
                4.0,
                1.5,
                3.0,
                1.5,
                2.5,
                3.0,
                2.5,
                3.48,
                4.08,
                1.64,
                4.06,
                4.29,
                3.76,
                4.0,
                3.0,
                1.0,
                4.0,
                2.55,
                4.0,
                3.5,
                5.07,
                1.5,
                1.8,
                2.92,
                2.31,
                1.68,
                2.5,
                2.0,
                2.52,
                4.2,
                1.48,
                2.0,
                2.0,
                2.18,
                1.5,
                2.83,
                1.5,
                2.0,
                3.25,
                1.25,
                2.0,
                2.0,
                2.0,
                2.75,
                3.5,
                6.7,
                5.0,
                5.0,
                2.3,
                1.5,
                1.36,
                1.63,
                1.73,
                2.0,
                2.5,
                2.0,
                2.74,
                2.0,
                2.0,
                5.14,
                5.0,
                3.75,
                2.61,
                2.0,
                3.5,
                2.5,
                2.0,
                2.0,
                3.0,
                3.48,
                2.24,
                4.5,
                1.61,
                2.0,
                10.0,
                3.16,
                5.15,
                3.18,
                4.0,
                3.11,
                2.0,
                2.0,
                4.0,
                3.55,
                3.68,
                5.65,
                3.5,
                6.5,
                3.0,
                5.0,
                3.5,
                2.0,
                3.5,
                4.0,
                1.5,
                4.19,
                2.56,
                2.02,
                4.0,
                1.44,
                2.0,
                5.0,
                2.0,
                2.0,
                4.0,
                2.01,
                2.0,
                2.5,
                4.0,
                3.23,
                3.41,
                3.0,
                2.03,
                2.23,
                2.0,
                5.16,
                9.0,
                2.5,
                6.5,
                1.1,
                3.0,
                1.5,
                1.44,
                3.09,
                2.2,
                3.48,
                1.92,
                3.0,
                1.58,
                2.5,
                2.0,
                3.0,
                2.72,
                2.88,
                2.0,
                3.0,
                3.39,
                1.47,
                3.0,
                1.25,
                1.0,
                1.17,
                4.67,
                5.92,
                2.0,
                2.0,
                1.75,
                3.0
            ],
            "order": 3,
            "uid": "531b65",
            "name": "data.1.y"
        },
        {
            "data": [
                0,
                1,
                2,
                3,
                4,
                5,
                6,
                7,
                8,
                9,
                10,
                11,
                12,
                13,
                14,
                15,
                16,
                17,
                18,
                19,
                20,
                21,
                22,
                23,
                24,
                25,
                26,
                27,
                28,
                29,
                30,
                31,
                32,
                33,
                34,
                35,
                36,
                37,
                38,
                39,
                40,
                41,
                42,
                43,
                44,
                45,
                46,
                47,
                48,
                49,
                50,
                51,
                52,
                53,
                54,
                55,
                56,
                57,
                58,
                59,
                60,
                61,
                62,
                63,
                64,
                65,
                66,
                67,
                68,
                69,
                70,
                71,
                72,
                73,
                74,
                75,
                76,
                77,
                78,
                79,
                80,
                81,
                82,
                83,
                84,
                85,
                86,
                87,
                88,
                89,
                90,
                91,
                92,
                93,
                94,
                95,
                96,
                97,
                98,
                99,
                100,
                101,
                102,
                103,
                104,
                105,
                106,
                107,
                108,
                109,
                110,
                111,
                112,
                113,
                114,
                115,
                116,
                117,
                118,
                119,
                120,
                121,
                122,
                123,
                124,
                125,
                126,
                127,
                128,
                129,
                130,
                131,
                132,
                133,
                134,
                135,
                136,
                137,
                138,
                139,
                140,
                141,
                142,
                143,
                144,
                145,
                146,
                147,
                148,
                149,
                150,
                151,
                152,
                153,
                154,
                155,
                156,
                157,
                158,
                159,
                160,
                161,
                162,
                163,
                164,
                165,
                166,
                167,
                168,
                169,
                170,
                171,
                172,
                173,
                174,
                175,
                176,
                177,
                178,
                179,
                180,
                181,
                182,
                183,
                184,
                185,
                186,
                187,
                188,
                189,
                190,
                191,
                192,
                193,
                194,
                195,
                196,
                197,
                198,
                199,
                200,
                201,
                202,
                203,
                204,
                205,
                206,
                207,
                208,
                209,
                210,
                211,
                212,
                213,
                214,
                215,
                216,
                217,
                218,
                219,
                220,
                221,
                222,
                223,
                224,
                225,
                226,
                227,
                228,
                229,
                230,
                231,
                232,
                233,
                234,
                235,
                236,
                237,
                238,
                239,
                240,
                241,
                242,
                243
            ],
            "order": 4,
            "uid": "6725eb",
            "name": "data.2.x"
        },
        {
            "data": [
                "Female",
                "Male",
                "Male",
                "Male",
                "Female",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Female",
                "Male",
                "Male",
                "Female",
                "Male",
                "Female",
                "Male",
                "Female",
                "Male",
                "Male",
                "Female",
                "Female",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Female",
                "Male",
                "Male",
                "Female",
                "Female",
                "Male",
                "Male",
                "Male",
                "Female",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Female",
                "Female",
                "Male",
                "Male",
                "Male",
                "Male",
                "Female",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Female",
                "Female",
                "Male",
                "Male",
                "Male",
                "Female",
                "Female",
                "Female",
                "Female",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Female",
                "Male",
                "Male",
                "Female",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Female",
                "Female",
                "Female",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Female",
                "Female",
                "Female",
                "Female",
                "Female",
                "Male",
                "Male",
                "Male",
                "Male",
                "Female",
                "Male",
                "Female",
                "Male",
                "Male",
                "Female",
                "Female",
                "Male",
                "Female",
                "Female",
                "Female",
                "Male",
                "Female",
                "Male",
                "Male",
                "Female",
                "Female",
                "Male",
                "Female",
                "Female",
                "Male",
                "Male",
                "Female",
                "Female",
                "Female",
                "Female",
                "Female",
                "Female",
                "Female",
                "Male",
                "Female",
                "Female",
                "Male",
                "Male",
                "Female",
                "Female",
                "Female",
                "Female",
                "Female",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Female",
                "Male",
                "Female",
                "Female",
                "Male",
                "Male",
                "Male",
                "Female",
                "Male",
                "Female",
                "Male",
                "Male",
                "Male",
                "Female",
                "Female",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Female",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Female",
                "Male",
                "Female",
                "Male",
                "Male",
                "Female",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Female",
                "Female",
                "Male",
                "Male",
                "Female",
                "Female",
                "Female",
                "Male",
                "Female",
                "Male",
                "Male",
                "Male",
                "Female",
                "Male",
                "Male",
                "Male",
                "Female",
                "Female",
                "Female",
                "Male",
                "Male",
                "Male",
                "Female",
                "Male",
                "Female",
                "Male",
                "Female",
                "Male",
                "Female",
                "Female",
                "Male",
                "Male",
                "Female",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Male",
                "Female",
                "Male",
                "Female",
                "Male",
                "Male",
                "Female"
            ],
            "order": 5,
            "uid": "90efbf",
            "name": "data.2.y"
        },
        {
            "data": [
                0,
                1,
                2,
                3,
                4,
                5,
                6,
                7,
                8,
                9,
                10,
                11,
                12,
                13,
                14,
                15,
                16,
                17,
                18,
                19,
                20,
                21,
                22,
                23,
                24,
                25,
                26,
                27,
                28,
                29,
                30,
                31,
                32,
                33,
                34,
                35,
                36,
                37,
                38,
                39,
                40,
                41,
                42,
                43,
                44,
                45,
                46,
                47,
                48,
                49,
                50,
                51,
                52,
                53,
                54,
                55,
                56,
                57,
                58,
                59,
                60,
                61,
                62,
                63,
                64,
                65,
                66,
                67,
                68,
                69,
                70,
                71,
                72,
                73,
                74,
                75,
                76,
                77,
                78,
                79,
                80,
                81,
                82,
                83,
                84,
                85,
                86,
                87,
                88,
                89,
                90,
                91,
                92,
                93,
                94,
                95,
                96,
                97,
                98,
                99,
                100,
                101,
                102,
                103,
                104,
                105,
                106,
                107,
                108,
                109,
                110,
                111,
                112,
                113,
                114,
                115,
                116,
                117,
                118,
                119,
                120,
                121,
                122,
                123,
                124,
                125,
                126,
                127,
                128,
                129,
                130,
                131,
                132,
                133,
                134,
                135,
                136,
                137,
                138,
                139,
                140,
                141,
                142,
                143,
                144,
                145,
                146,
                147,
                148,
                149,
                150,
                151,
                152,
                153,
                154,
                155,
                156,
                157,
                158,
                159,
                160,
                161,
                162,
                163,
                164,
                165,
                166,
                167,
                168,
                169,
                170,
                171,
                172,
                173,
                174,
                175,
                176,
                177,
                178,
                179,
                180,
                181,
                182,
                183,
                184,
                185,
                186,
                187,
                188,
                189,
                190,
                191,
                192,
                193,
                194,
                195,
                196,
                197,
                198,
                199,
                200,
                201,
                202,
                203,
                204,
                205,
                206,
                207,
                208,
                209,
                210,
                211,
                212,
                213,
                214,
                215,
                216,
                217,
                218,
                219,
                220,
                221,
                222,
                223,
                224,
                225,
                226,
                227,
                228,
                229,
                230,
                231,
                232,
                233,
                234,
                235,
                236,
                237,
                238,
                239,
                240,
                241,
                242,
                243
            ],
            "order": 6,
            "uid": "979b93",
            "name": "data.3.x"
        },
        {
            "data": [
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "Yes",
                "No",
                "Yes",
                "No",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "No",
                "No",
                "No",
                "Yes",
                "No",
                "Yes",
                "No",
                "No",
                "Yes",
                "Yes",
                "No",
                "No",
                "Yes",
                "No",
                "No",
                "No",
                "Yes",
                "No",
                "No",
                "Yes",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "Yes",
                "No",
                "Yes",
                "Yes",
                "No",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "No",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "No",
                "Yes",
                "Yes",
                "Yes",
                "No",
                "Yes",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "Yes",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "No",
                "Yes",
                "No",
                "No",
                "No",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "No",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "No",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "No",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "Yes",
                "No",
                "Yes",
                "Yes",
                "Yes",
                "No",
                "No",
                "Yes",
                "Yes",
                "Yes",
                "No",
                "No",
                "Yes",
                "No",
                "Yes",
                "Yes",
                "No",
                "No",
                "Yes",
                "Yes",
                "No",
                "No"
            ],
            "order": 7,
            "uid": "0ae2f1",
            "name": "data.3.y"
        },
        {
            "data": [
                0,
                1,
                2,
                3,
                4,
                5,
                6,
                7,
                8,
                9,
                10,
                11,
                12,
                13,
                14,
                15,
                16,
                17,
                18,
                19,
                20,
                21,
                22,
                23,
                24,
                25,
                26,
                27,
                28,
                29,
                30,
                31,
                32,
                33,
                34,
                35,
                36,
                37,
                38,
                39,
                40,
                41,
                42,
                43,
                44,
                45,
                46,
                47,
                48,
                49,
                50,
                51,
                52,
                53,
                54,
                55,
                56,
                57,
                58,
                59,
                60,
                61,
                62,
                63,
                64,
                65,
                66,
                67,
                68,
                69,
                70,
                71,
                72,
                73,
                74,
                75,
                76,
                77,
                78,
                79,
                80,
                81,
                82,
                83,
                84,
                85,
                86,
                87,
                88,
                89,
                90,
                91,
                92,
                93,
                94,
                95,
                96,
                97,
                98,
                99,
                100,
                101,
                102,
                103,
                104,
                105,
                106,
                107,
                108,
                109,
                110,
                111,
                112,
                113,
                114,
                115,
                116,
                117,
                118,
                119,
                120,
                121,
                122,
                123,
                124,
                125,
                126,
                127,
                128,
                129,
                130,
                131,
                132,
                133,
                134,
                135,
                136,
                137,
                138,
                139,
                140,
                141,
                142,
                143,
                144,
                145,
                146,
                147,
                148,
                149,
                150,
                151,
                152,
                153,
                154,
                155,
                156,
                157,
                158,
                159,
                160,
                161,
                162,
                163,
                164,
                165,
                166,
                167,
                168,
                169,
                170,
                171,
                172,
                173,
                174,
                175,
                176,
                177,
                178,
                179,
                180,
                181,
                182,
                183,
                184,
                185,
                186,
                187,
                188,
                189,
                190,
                191,
                192,
                193,
                194,
                195,
                196,
                197,
                198,
                199,
                200,
                201,
                202,
                203,
                204,
                205,
                206,
                207,
                208,
                209,
                210,
                211,
                212,
                213,
                214,
                215,
                216,
                217,
                218,
                219,
                220,
                221,
                222,
                223,
                224,
                225,
                226,
                227,
                228,
                229,
                230,
                231,
                232,
                233,
                234,
                235,
                236,
                237,
                238,
                239,
                240,
                241,
                242,
                243
            ],
            "order": 8,
            "uid": "4be11e",
            "name": "data.4.x"
        },
        {
            "data": [
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Fri",
                "Fri",
                "Fri",
                "Fri",
                "Fri",
                "Fri",
                "Fri",
                "Fri",
                "Fri",
                "Fri",
                "Fri",
                "Fri",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Sun",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Thur",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Fri",
                "Fri",
                "Fri",
                "Fri",
                "Fri",
                "Fri",
                "Fri",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Sat",
                "Thur"
            ],
            "order": 9,
            "uid": "5718c9",
            "name": "data.4.y"
        },
        {
            "data": [
                0,
                1,
                2,
                3,
                4,
                5,
                6,
                7,
                8,
                9,
                10,
                11,
                12,
                13,
                14,
                15,
                16,
                17,
                18,
                19,
                20,
                21,
                22,
                23,
                24,
                25,
                26,
                27,
                28,
                29,
                30,
                31,
                32,
                33,
                34,
                35,
                36,
                37,
                38,
                39,
                40,
                41,
                42,
                43,
                44,
                45,
                46,
                47,
                48,
                49,
                50,
                51,
                52,
                53,
                54,
                55,
                56,
                57,
                58,
                59,
                60,
                61,
                62,
                63,
                64,
                65,
                66,
                67,
                68,
                69,
                70,
                71,
                72,
                73,
                74,
                75,
                76,
                77,
                78,
                79,
                80,
                81,
                82,
                83,
                84,
                85,
                86,
                87,
                88,
                89,
                90,
                91,
                92,
                93,
                94,
                95,
                96,
                97,
                98,
                99,
                100,
                101,
                102,
                103,
                104,
                105,
                106,
                107,
                108,
                109,
                110,
                111,
                112,
                113,
                114,
                115,
                116,
                117,
                118,
                119,
                120,
                121,
                122,
                123,
                124,
                125,
                126,
                127,
                128,
                129,
                130,
                131,
                132,
                133,
                134,
                135,
                136,
                137,
                138,
                139,
                140,
                141,
                142,
                143,
                144,
                145,
                146,
                147,
                148,
                149,
                150,
                151,
                152,
                153,
                154,
                155,
                156,
                157,
                158,
                159,
                160,
                161,
                162,
                163,
                164,
                165,
                166,
                167,
                168,
                169,
                170,
                171,
                172,
                173,
                174,
                175,
                176,
                177,
                178,
                179,
                180,
                181,
                182,
                183,
                184,
                185,
                186,
                187,
                188,
                189,
                190,
                191,
                192,
                193,
                194,
                195,
                196,
                197,
                198,
                199,
                200,
                201,
                202,
                203,
                204,
                205,
                206,
                207,
                208,
                209,
                210,
                211,
                212,
                213,
                214,
                215,
                216,
                217,
                218,
                219,
                220,
                221,
                222,
                223,
                224,
                225,
                226,
                227,
                228,
                229,
                230,
                231,
                232,
                233,
                234,
                235,
                236,
                237,
                238,
                239,
                240,
                241,
                242,
                243
            ],
            "order": 10,
            "uid": "f05f24",
            "name": "data.5.x"
        },
        {
            "data": [
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Lunch",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner",
                "Dinner"
            ],
            "order": 11,
            "uid": "a286ce",
            "name": "data.5.y"
        },
        {
            "data": [
                0,
                1,
                2,
                3,
                4,
                5,
                6,
                7,
                8,
                9,
                10,
                11,
                12,
                13,
                14,
                15,
                16,
                17,
                18,
                19,
                20,
                21,
                22,
                23,
                24,
                25,
                26,
                27,
                28,
                29,
                30,
                31,
                32,
                33,
                34,
                35,
                36,
                37,
                38,
                39,
                40,
                41,
                42,
                43,
                44,
                45,
                46,
                47,
                48,
                49,
                50,
                51,
                52,
                53,
                54,
                55,
                56,
                57,
                58,
                59,
                60,
                61,
                62,
                63,
                64,
                65,
                66,
                67,
                68,
                69,
                70,
                71,
                72,
                73,
                74,
                75,
                76,
                77,
                78,
                79,
                80,
                81,
                82,
                83,
                84,
                85,
                86,
                87,
                88,
                89,
                90,
                91,
                92,
                93,
                94,
                95,
                96,
                97,
                98,
                99,
                100,
                101,
                102,
                103,
                104,
                105,
                106,
                107,
                108,
                109,
                110,
                111,
                112,
                113,
                114,
                115,
                116,
                117,
                118,
                119,
                120,
                121,
                122,
                123,
                124,
                125,
                126,
                127,
                128,
                129,
                130,
                131,
                132,
                133,
                134,
                135,
                136,
                137,
                138,
                139,
                140,
                141,
                142,
                143,
                144,
                145,
                146,
                147,
                148,
                149,
                150,
                151,
                152,
                153,
                154,
                155,
                156,
                157,
                158,
                159,
                160,
                161,
                162,
                163,
                164,
                165,
                166,
                167,
                168,
                169,
                170,
                171,
                172,
                173,
                174,
                175,
                176,
                177,
                178,
                179,
                180,
                181,
                182,
                183,
                184,
                185,
                186,
                187,
                188,
                189,
                190,
                191,
                192,
                193,
                194,
                195,
                196,
                197,
                198,
                199,
                200,
                201,
                202,
                203,
                204,
                205,
                206,
                207,
                208,
                209,
                210,
                211,
                212,
                213,
                214,
                215,
                216,
                217,
                218,
                219,
                220,
                221,
                222,
                223,
                224,
                225,
                226,
                227,
                228,
                229,
                230,
                231,
                232,
                233,
                234,
                235,
                236,
                237,
                238,
                239,
                240,
                241,
                242,
                243
            ],
            "order": 12,
            "uid": "e1abb1",
            "name": "data.6.x"
        },
        {
            "data": [
                2,
                3,
                3,
                2,
                4,
                4,
                2,
                4,
                2,
                2,
                2,
                4,
                2,
                4,
                2,
                2,
                3,
                3,
                3,
                3,
                2,
                2,
                2,
                4,
                2,
                4,
                2,
                2,
                2,
                2,
                2,
                4,
                2,
                4,
                2,
                3,
                3,
                3,
                3,
                3,
                3,
                2,
                2,
                2,
                4,
                2,
                2,
                4,
                3,
                2,
                2,
                2,
                4,
                2,
                4,
                2,
                4,
                2,
                2,
                4,
                2,
                2,
                2,
                4,
                3,
                3,
                2,
                1,
                2,
                2,
                2,
                3,
                2,
                2,
                2,
                2,
                2,
                4,
                2,
                2,
                2,
                2,
                1,
                2,
                2,
                4,
                2,
                2,
                2,
                2,
                2,
                2,
                2,
                2,
                2,
                4,
                2,
                2,
                2,
                2,
                2,
                2,
                3,
                2,
                2,
                2,
                2,
                2,
                2,
                2,
                2,
                1,
                3,
                2,
                3,
                2,
                4,
                2,
                2,
                4,
                2,
                2,
                2,
                2,
                2,
                6,
                2,
                2,
                2,
                3,
                2,
                2,
                2,
                2,
                2,
                2,
                2,
                2,
                2,
                2,
                2,
                6,
                5,
                6,
                2,
                2,
                3,
                2,
                2,
                2,
                2,
                2,
                3,
                4,
                4,
                5,
                6,
                4,
                2,
                4,
                4,
                2,
                3,
                2,
                2,
                3,
                2,
                4,
                2,
                2,
                3,
                2,
                2,
                2,
                2,
                2,
                2,
                2,
                2,
                2,
                4,
                2,
                3,
                4,
                2,
                5,
                3,
                5,
                3,
                3,
                2,
                2,
                2,
                2,
                2,
                2,
                2,
                4,
                2,
                2,
                3,
                2,
                2,
                2,
                4,
                3,
                3,
                4,
                2,
                2,
                3,
                4,
                4,
                2,
                3,
                2,
                5,
                2,
                2,
                4,
                2,
                2,
                1,
                3,
                2,
                2,
                2,
                4,
                2,
                2,
                4,
                3,
                2,
                2,
                2,
                2,
                2,
                2,
                3,
                3,
                2,
                2,
                2,
                2
            ],
            "order": 13,
            "uid": "e50c5c",
            "name": "data.6.y"
        }
    ]
}